GET api/v1/countries
List country
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Retrieve a list of countries based on the ISO 3166-1 standard
ListCountryV1Response| Name | Description | Type | Additional information |
|---|---|---|---|
| Countries |
List of countries |
Collection of ListCountryV1ResponseCountry |
None. |
| Total |
Total number of records matching the request |
integer (32 bits) |
Required Example value: 249 Range: inclusive between 0 and 2147483647 |
Response Formats
application/json
Sample:
{
"Countries": [
{
"CountryId": "23214cee-0964-4e50-9538-3c5333b0935f",
"Name": "Netherlands (the)",
"Alpha2Code": "NL",
"Alpha3Code": "NLD",
"NumericCode": 528
},
{
"CountryId": "23214cee-0964-4e50-9538-3c5333b0935f",
"Name": "Netherlands (the)",
"Alpha2Code": "NL",
"Alpha3Code": "NLD",
"NumericCode": 528
}
],
"Total": 249
}