GET api/Countries/XChageRateInfo/{countryFrom}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| countryFrom | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
ExchangeRateInformation| Name | Description | Type | Additional information |
|---|---|---|---|
| ExchangeRate | decimal number |
None. |
|
| CurrencyCode | string |
None. |
|
| AmountChargedCurrencyCode | string |
None. |
|
| CurrencySymbol | string |
None. |
|
| SubCurrencyCode | string |
None. |
|
| SubCurrencySymbol | string |
None. |
|
| MultiplyFactor | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"ExchangeRate": 1.0,
"CurrencyCode": "sample string 2",
"AmountChargedCurrencyCode": "sample string 3",
"CurrencySymbol": "sample string 4",
"SubCurrencyCode": "sample string 5",
"SubCurrencySymbol": "sample string 6",
"MultiplyFactor": 7
}
application/xml, text/xml
Sample:
<ExchangeRateInformation xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Raza.Objects"> <AmountChargedCurrencyCode>sample string 3</AmountChargedCurrencyCode> <CurrencyCode>sample string 2</CurrencyCode> <CurrencySymbol>sample string 4</CurrencySymbol> <ExchangeRate>1</ExchangeRate> <MultiplyFactor>7</MultiplyFactor> <SubCurrencyCode>sample string 5</SubCurrencyCode> <SubCurrencySymbol>sample string 6</SubCurrencySymbol> </ExchangeRateInformation>