Getting a site's authorized shipping countries
Learn how to retrieve a site's authorized shipping countries.
You can use the
GET /sites/{siteId}/authorized-shipping-countries
resource to retrieve a list of all countries that are authorized to purchase products from your site. The list of authorized shipping countries is configured in Global Commerce.cURL
200 OK response
curl --location --request GET 'https://{host}/sites/{siteId}/authorized-shipping-countries' \
--header 'Content-Type: application/json' \
--header 'authorization: bearer ***\
You will receive a
200 OK
response. The response returns data by locale and county.{
"authorizedShippingCountries": [
{
"locale": "en_US",
"countries": [
{
"displayName": "Taiwan",
"countryCode": "TW"
},
{
"displayName": "Japan",
"countryCode": "JP"
}
]
},
{
"locale": "en_GB",
"countries": [
{
"displayName": "France",
"countryCode": "FR"
},
{
"displayName": "Germany",
"countryCode": "DE"
}
]
}
]
}
To get the list of authorized shipping countries by locale, add
?locale
at the end of the request. For example:cURL
curl --location --request GET 'https://{host}/sites/{siteId}/authorized-shipping-countries?locale=en_US' \
--header 'Content-Type: application/json' \
--header 'authorization: bearer ***\
Last modified 4mo ago