GET api/Exchange/GetExchanges?t={t}

Retrieve list of exchanges.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
t

Authentication token.

string

Required

Body Parameters

None.

Response Information

Resource Description

List of Exchanges.

Collection of Exchange
NameDescriptionTypeAdditional information
Id

integer

None.

BECode

string

None.

MQCode

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "BECode": "sample string 2",
    "MQCode": "sample string 3"
  },
  {
    "Id": 1,
    "BECode": "sample string 2",
    "MQCode": "sample string 3"
  }
]

application/xml, text/xml

Sample:
<ArrayOfExchange xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BondEdge.Equity">
  <Exchange>
    <BECode>sample string 2</BECode>
    <Id>1</Id>
    <MQCode>sample string 3</MQCode>
  </Exchange>
  <Exchange>
    <BECode>sample string 2</BECode>
    <Id>1</Id>
    <MQCode>sample string 3</MQCode>
  </Exchange>
</ArrayOfExchange>