Returns list of all countries available in Simplify.hr
In order to access this endpoint ensure that you do a GET request with an Authorization header containing your access token.
Headers:
Authorization : {token}
Result codes
403 Forbidden
200 OK
400 Bad request
500 Internal server error
Result
Country objects returned will have the following fields:
Field Name | Type | Description |
---|---|---|
Id | int | Country Id |
Name | string | Country Name |
CountryCode | string | Two character country code e.g. ZA |
Response format
[
{
"Id": 1,
"Name": "South Africa",
"CountryCode": "ZA"
},
{
"Id": 201,
"Name": "Afghanistan",
"CountryCode": "AF"
},
{
"Id": 202,
"Name": "Aland Islands",
"CountryCode": "AX"
}
]