GET countries/ISO/{isocode}

Returns a specific country based on ISO code

Request Information

URI Parameters

NameDescriptionTypeAdditional information
isocode The ISO code string Required

Body Parameters

None.

Response Information

Resource Description

Returns a specific country based on ISO code

CountryResponseModel
NameDescriptionTypeAdditional 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": "be75e37b-3518-483e-8ad6-96161a9a5ce7"
}