GET api/Symbol
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of SymbolModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| SymbolName | string |
None. |
|
| InstrumentToken | string |
None. |
|
| InstrumentType | string |
None. |
|
| LotSize | integer |
None. |
|
| Interval | integer |
None. |
|
| Expiry | string |
None. |
|
| Price | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"SymbolName": "sample string 2",
"InstrumentToken": "sample string 3",
"InstrumentType": "sample string 4",
"LotSize": 5,
"Interval": 6,
"Expiry": "sample string 7",
"Price": 8.1
},
{
"Id": 1,
"SymbolName": "sample string 2",
"InstrumentToken": "sample string 3",
"InstrumentType": "sample string 4",
"LotSize": 5,
"Interval": 6,
"Expiry": "sample string 7",
"Price": 8.1
}
]
application/xml, text/xml
Sample:
<ArrayOfSymbolModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/R2RDataManager.Library.Models">
<SymbolModel>
<Expiry>sample string 7</Expiry>
<Id>1</Id>
<InstrumentToken>sample string 3</InstrumentToken>
<InstrumentType>sample string 4</InstrumentType>
<Interval>6</Interval>
<LotSize>5</LotSize>
<Price>8.1</Price>
<SymbolName>sample string 2</SymbolName>
</SymbolModel>
<SymbolModel>
<Expiry>sample string 7</Expiry>
<Id>1</Id>
<InstrumentToken>sample string 3</InstrumentToken>
<InstrumentType>sample string 4</InstrumentType>
<Interval>6</Interval>
<LotSize>5</LotSize>
<Price>8.1</Price>
<SymbolName>sample string 2</SymbolName>
</SymbolModel>
</ArrayOfSymbolModel>