GET api/currencies

Gets a list of available currencies.

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

List of currencies

Collection of Currency
NameDescriptionTypeAdditional information
CurrencyCode

string

None.

CurrencyName

string

None.

ExchangeRate

decimal number

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "currencyCode": "sample string 1",
    "currencyName": "sample string 2",
    "exchangeRate": 3.1
  },
  {
    "currencyCode": "sample string 1",
    "currencyName": "sample string 2",
    "exchangeRate": 3.1
  }
]

application/xml, text/xml

Sample:
<ArrayOfCurrency xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ProIT.MobileConnector.ORM.Entities">
  <Currency>
    <CurrencyCode>sample string 1</CurrencyCode>
    <CurrencyName>sample string 2</CurrencyName>
    <ExchangeRate>3.1</ExchangeRate>
  </Currency>
  <Currency>
    <CurrencyCode>sample string 1</CurrencyCode>
    <CurrencyName>sample string 2</CurrencyName>
    <ExchangeRate>3.1</ExchangeRate>
  </Currency>
</ArrayOfCurrency>