GET api/getcountries
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of KaasiCountry| Name | Description | Type | Additional information |
|---|---|---|---|
| CountryName | string |
None. |
|
| Currency | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"countryName": "sample string 1",
"currency": "sample string 2"
},
{
"countryName": "sample string 1",
"currency": "sample string 2"
}
]
application/xml, text/xml
Sample:
<ArrayOfKaasiCountry xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApiKaasi.Models">
<KaasiCountry>
<CountryName>sample string 1</CountryName>
<Currency>sample string 2</Currency>
</KaasiCountry>
<KaasiCountry>
<CountryName>sample string 1</CountryName>
<Currency>sample string 2</Currency>
</KaasiCountry>
</ArrayOfKaasiCountry>