GET api/BookingInfo/GetCurrencies

Gets list of currencies this booking supports.

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Country
NameDescriptionTypeAdditional information
ISOCurrencyCode

ISO Currency

string

String length: inclusive between 0 and 3

CountryName

string

None.

Currency

string

None.

CurrencyMask

string

None.

Symbol

string

String length: inclusive between 0 and 1

Response Formats

application/json, text/json

Sample:
{
  "ISOCurrencyCode": "sample string 1",
  "CountryName": "sample string 2",
  "Currency": "sample string 3",
  "CurrencyMask": "sample string 4",
  "Symbol": "sample string 5"
}

application/xml, text/xml

Sample:
<Country xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Radical.Entities.Web.Type">
  <CountryName>sample string 2</CountryName>
  <Currency>sample string 3</Currency>
  <CurrencyMask>sample string 4</CurrencyMask>
  <ISOCurrencyCode>sample string 1</ISOCurrencyCode>
  <Symbol>sample string 5</Symbol>
</Country>