Productsup

Retrieve a list of export categories

An export category is a category for the export marketing resource. This endpoint lists all export categories.

GET
/V1/export-categories

Authorization

bearerAuth
AuthorizationBearer <token>

ProductsUp Keycloak JWT bearer token.

In: header

Response Body

application/json

curl -X GET "https://export-template-api.productsup.com/V1/export-categories"
{
  "data": [
    {
      "id": 508,
      "name": "Marketing",
      "description": "",
      "slug": "marketing",
      "priority": 2
    },
    {
      "id": 507,
      "name": "Social media",
      "description": "",
      "slug": "social-media",
      "priority": 1
    }
  ]
}