GET /api/v3/country

Retrieves a list of all possible countries

GetCountriesV3

Request Headers

Header Value Required Description
ECI-ApiKey string Yes Your API key. See Authentication.
Content-Type application/json Yes All requests must specify JSON content type.

Responses

200 OK The request succeeded and the response body contains the requested data.

Response Body Parameters

Array of:

Country
Property Description Type
alpha2Code string
countryId integer (int32)
name string
possibleSpellings string[]
Example Response application/json
[
  {    "alpha2Code": "string",    "countryId": 1,    "name": "string",    "possibleSpellings": [
      "string"
    ]
  }
]