GET api/Rates/Lowests
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of CountryWithLowestRates| Name | Description | Type | Additional information |
|---|---|---|---|
| CountryId | integer |
None. |
|
| CountryName | string |
None. |
|
| CountryCode | string |
None. |
|
| UsLandLineRate | decimal number |
None. |
|
| UsMobileRate | decimal number |
None. |
|
| CanadaLandLineRate | decimal number |
None. |
|
| CanadaMobileRate | decimal number |
None. |
|
| UkLandLineRate | decimal number |
None. |
|
| UkMobileRate | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"CountryId": 1,
"CountryName": "sample string 2",
"CountryCode": "sample string 3",
"UsLandLineRate": 4.1,
"UsMobileRate": 5.1,
"CanadaLandLineRate": 6.1,
"CanadaMobileRate": 7.1,
"UkLandLineRate": 8.1,
"UkMobileRate": 9.1
},
{
"CountryId": 1,
"CountryName": "sample string 2",
"CountryCode": "sample string 3",
"UsLandLineRate": 4.1,
"UsMobileRate": 5.1,
"CanadaLandLineRate": 6.1,
"CanadaMobileRate": 7.1,
"UkLandLineRate": 8.1,
"UkMobileRate": 9.1
}
]
application/xml, text/xml
Sample:
<ArrayOfCountryWithLowestRates xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Raza.Objects.Business.Rates">
<CountryWithLowestRates>
<CanadaLandLineRate>6.1</CanadaLandLineRate>
<CanadaMobileRate>7.1</CanadaMobileRate>
<CountryCode>sample string 3</CountryCode>
<CountryId>1</CountryId>
<CountryName>sample string 2</CountryName>
<UkLandLineRate>8.1</UkLandLineRate>
<UkMobileRate>9.1</UkMobileRate>
<UsLandLineRate>4.1</UsLandLineRate>
<UsMobileRate>5.1</UsMobileRate>
</CountryWithLowestRates>
<CountryWithLowestRates>
<CanadaLandLineRate>6.1</CanadaLandLineRate>
<CanadaMobileRate>7.1</CanadaMobileRate>
<CountryCode>sample string 3</CountryCode>
<CountryId>1</CountryId>
<CountryName>sample string 2</CountryName>
<UkLandLineRate>8.1</UkLandLineRate>
<UkMobileRate>9.1</UkMobileRate>
<UsLandLineRate>4.1</UsLandLineRate>
<UsMobileRate>5.1</UsMobileRate>
</CountryWithLowestRates>
</ArrayOfCountryWithLowestRates>