Countries

Get country details

Use this method to obtain detailed information about a specific country.

GET
/api/v2/my/countries/{country}

Authorization

bearerAuth
AuthorizationBearer <token>

In: header

Path Parameters

country*integer

The country identifier.

Header Parameters

accept-language?string

Response Body

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/api/v2/my/countries/1" \  -H "accept-language: ja"
{  "countryId": 840,  "alpha2Code": "US",  "alpha3Code": "USA",  "countryName": "United States",  "numericCode": "840",  "enabled": true}
{  "error": {    "message": "Not Found"  }}
{  "error": {    "message": "Too Many Requests"  }}
{  "error": {    "message": "Service Unavailable"  }}