GET countries
Returns a list of available Countries
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Returns a list of available Countries
Collection of CountryResponseModel| Name | Description | Type | Additional information |
|---|---|---|---|
| CountryID | The ID of the country | integer | None. |
| Name | The Name of the country | string | None. |
| TwoLetterISOCode | The ISO 2 letter code | string | Max length: 2 Min length: 2 |
| CountryGUID | The GUID of the country | globally unique identifier | None. |
Response Formats
application/json, text/json
Sample:
[
{
"CountryID": 100,
"Name": "MAURITIUS",
"TwoLetterISOCode": "MU",
"CountryGUID": "bb4d015a-9fae-453b-851a-e26583f2e89f"
},
{
"CountryID": 120,
"Name": "BARBADOS",
"TwoLetterISOCode": "BB",
"CountryGUID": "a2fe5a9c-e0fe-4578-a609-ba72d3fc2aac"
}
]