GET v1/CountryCurrency?sort={sort}
Fetches the Countries and their Currency Codes and ISOCodes joining the country and currency tables
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| sort |
A comma delimited list of columns to sort by. Field are sorted in ascending order by default. To have a field sort in descending order, preface it with the minus (-) sign. |
string |
Default value is |
Body Parameters
None.
Response Information
Resource Description
Collection of CountryCurrency| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
None. |
|
| CurrencySymbol | string |
None. |
|
| TradingSymbol | string |
None. |
|
| ISOCode | string |
None. |
|
| Country | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"id": 1,
"CurrencySymbol": "sample string 2",
"TradingSymbol": "sample string 3",
"ISOCode": "sample string 4",
"Country": "sample string 5"
},
{
"id": 1,
"CurrencySymbol": "sample string 2",
"TradingSymbol": "sample string 3",
"ISOCode": "sample string 4",
"Country": "sample string 5"
}
]
text/html
Sample:
[{"id":1,"CurrencySymbol":"sample string 2","TradingSymbol":"sample string 3","ISOCode":"sample string 4","Country":"sample string 5"},{"id":1,"CurrencySymbol":"sample string 2","TradingSymbol":"sample string 3","ISOCode":"sample string 4","Country":"sample string 5"}]
application/xml, text/xml
Sample:
<ArrayOfv1_Countries_CountryEndpointController.CountryCurrency xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aptify.Services.Generated.v1_Countries_CountryEndpoint">
<v1_Countries_CountryEndpointController.CountryCurrency>
<Country>sample string 5</Country>
<CurrencySymbol>sample string 2</CurrencySymbol>
<ISOCode>sample string 4</ISOCode>
<TradingSymbol>sample string 3</TradingSymbol>
<id>1</id>
</v1_Countries_CountryEndpointController.CountryCurrency>
<v1_Countries_CountryEndpointController.CountryCurrency>
<Country>sample string 5</Country>
<CurrencySymbol>sample string 2</CurrencySymbol>
<ISOCode>sample string 4</ISOCode>
<TradingSymbol>sample string 3</TradingSymbol>
<id>1</id>
</v1_Countries_CountryEndpointController.CountryCurrency>
</ArrayOfv1_Countries_CountryEndpointController.CountryCurrency>