Productsup
API referenceV1Export marketing

Retrieve a single export country

An export country is a country for the export marketing resource. This endpoint shows a single export country.

GET
/V1/export-country/{id}

Authorization

bearerAuth
AuthorizationBearer <token>

ProductsUp Keycloak JWT bearer token.

In: header

Path Parameters

id*string

Export Country id.

Response Body

application/json

application/json

curl -X GET "https://export-template-api.productsup.com/V1/export-country/string"
{
  "data": {
    "id": 634,
    "name": "Germany",
    "countryCode": "DE",
    "region": "Europe",
    "priority": 1
  }
}
{
  "errors": {
    "message": "Export Country with id 123 not found."
  }
}

How is this guide?