GET countries/{countryid}
Returns a specific country based on the country ID
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| countryid | The ID of the Country | integer | Required |
Body Parameters
None.
Response Information
Resource Description
Returns a specific country based on the country ID
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": "218c3adb-cf16-4a15-b3f5-b712cf84cdc7"
}