GET api/Common/CurrencyCodeList

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of Currency
NameDescriptionTypeAdditional information
RowId

integer

None.

CurrencyCode

string

None.

CurrencyName

string

None.

IsDeleted

boolean

None.

CountryID

globally unique identifier

None.

CountyCode

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "RowId": 1,
    "CurrencyCode": "sample string 2",
    "CurrencyName": "sample string 3",
    "IsDeleted": true,
    "CountryID": "3107ab8b-e852-4c21-b074-43ba1cc6afe0",
    "CountyCode": "sample string 5"
  },
  {
    "RowId": 1,
    "CurrencyCode": "sample string 2",
    "CurrencyName": "sample string 3",
    "IsDeleted": true,
    "CountryID": "3107ab8b-e852-4c21-b074-43ba1cc6afe0",
    "CountyCode": "sample string 5"
  }
]

application/xml, text/xml

Sample:
<ArrayOfCurrency xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ConsoleAPI.Internal.Models.Common">
  <Currency>
    <CountryID>3107ab8b-e852-4c21-b074-43ba1cc6afe0</CountryID>
    <CountyCode>sample string 5</CountyCode>
    <CurrencyCode>sample string 2</CurrencyCode>
    <CurrencyName>sample string 3</CurrencyName>
    <IsDeleted>true</IsDeleted>
    <RowId>1</RowId>
  </Currency>
  <Currency>
    <CountryID>3107ab8b-e852-4c21-b074-43ba1cc6afe0</CountryID>
    <CountyCode>sample string 5</CountyCode>
    <CurrencyCode>sample string 2</CurrencyCode>
    <CurrencyName>sample string 3</CurrencyName>
    <IsDeleted>true</IsDeleted>
    <RowId>1</RowId>
  </Currency>
</ArrayOfCurrency>