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
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": "e5dfb0dd-7a33-49e4-827d-be80847b8117"
  },
  {
    "CountryID": 120,
    "Name": "BARBADOS",
    "TwoLetterISOCode": "BB",
    "CountryGUID": "2b66b878-eb48-40f4-936d-c538f89b5190"
  }
]