GET api/v1/countries/listitems
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of CountryListItem| Name | Description | Type | Additional information |
|---|---|---|---|
| CountryId | globally unique identifier |
None. |
|
| CountryName | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"CountryId": "aeaad719-2584-4232-94d9-a6d4dba049dc",
"CountryName": "sample string 2"
},
{
"CountryId": "aeaad719-2584-4232-94d9-a6d4dba049dc",
"CountryName": "sample string 2"
}
]
text/html
Sample:
[{"CountryId":"aeaad719-2584-4232-94d9-a6d4dba049dc","CountryName":"sample string 2"},{"CountryId":"aeaad719-2584-4232-94d9-a6d4dba049dc","CountryName":"sample string 2"}]
application/xml, text/xml
Sample:
<ArrayOfCountryListItem xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FLS.Data.WebApi.Location">
<CountryListItem>
<CountryId>aeaad719-2584-4232-94d9-a6d4dba049dc</CountryId>
<CountryName>sample string 2</CountryName>
</CountryListItem>
<CountryListItem>
<CountryId>aeaad719-2584-4232-94d9-a6d4dba049dc</CountryId>
<CountryName>sample string 2</CountryName>
</CountryListItem>
</ArrayOfCountryListItem>