Getting a site's authorized shipping countries

Learn how to retrieve a site's authorized shipping countries.

You can use the GET /v1/sites/{siteId}/authorized-shipping-countries resource to retrieve a list of all countries authorized to purchase products from your site. The list of authorized shipping countries is configured in Global Commerce.

curl --location --request GET 'https://api.digitalriver.com/v1/sites/{siteId}/authorized-shipping-countries' \
--header 'authorization: Basic ***\
...

Add the ?locale query parameter at the end of the request to get the list of authorized shipping countries by locale. For example:

curl --location --request GET 'https://api.digitalriver.com/v1/sites/{siteId}/authorized-shipping-countries?locale=en_US' \
--header 'authorization: Basic ***\
...

See Authorized shipping country query parameters for more information.

Last updated