Skip to main content
GET
/
core
/
countries
/
{country}
Get country
curl --request GET \
  --url https://api.enterprise.sandbox.uphold.com/core/countries/{country} \
  --header 'Authorization: Bearer <token>'
{
  "country": {
    "code": "<string>",
    "name": "<string>",
    "asset": "<string>",
    "restrictions": [
      {
        "scope": "citizenship"
      }
    ],
    "subdivisions": [
      {
        "code": "<string>",
        "name": "<string>",
        "restrictions": [
          {
            "scope": "residence"
          }
        ]
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

OAuth 2.0 authentication.

Path Parameters

country
string
required

The unique code of the country.

Response

Country retrieved.

country
object