GET
/
core
/
countries
/
{country}
curl --request GET \
  --url https://api.enterprise.sandbox.uphold.com/core/countries/{country} \
  --header 'Authorization: Bearer <token>'
{
"country": {
"code": "GB",
"name": "United Kingdom",
"asset": "GBP",
"restrictions": [],
"subdivisions": [
{
"code": "GB-BAS",
"name": "Bath and North East Somerset",
"restrictions": []
},
{
"code": "GB-LND",
"name": "London, City of",
"restrictions": []
}
]
}
}

Authorizations

Authorization
string
header
required

OAuth 2.0 authentication.

Path Parameters

country
string
required

The unique code of the country.

Response

200
application/json

Country retrieved.

The response is of type object.