GET api/Common/GetCurrency?countryId={countryId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| countryId | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of Currency| Name | Description | Type | Additional 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": "0d507a10-9961-4287-9e58-11520fe2eaa1",
"CountyCode": "sample string 5"
},
{
"RowId": 1,
"CurrencyCode": "sample string 2",
"CurrencyName": "sample string 3",
"IsDeleted": true,
"CountryID": "0d507a10-9961-4287-9e58-11520fe2eaa1",
"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>0d507a10-9961-4287-9e58-11520fe2eaa1</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>0d507a10-9961-4287-9e58-11520fe2eaa1</CountryID>
<CountyCode>sample string 5</CountyCode>
<CurrencyCode>sample string 2</CurrencyCode>
<CurrencyName>sample string 3</CurrencyName>
<IsDeleted>true</IsDeleted>
<RowId>1</RowId>
</Currency>
</ArrayOfCurrency>