List store categories

List categories for a store

POST
/stores/categories/list
AuthorizationBearer <token>

Bearer token authentication. Use your API key as the bearer token.

In: header

List store categories input

pagination?bv.Pagination
parentId?string
storeIdstring

Response Body

curl -X POST "https://eu1.api.bivariant.com/v1/stores/categories/list" \  -H "Content-Type: application/json" \  -d '{    "storeId": "string"  }'
[
  {
    "createdAt": "string",
    "description": "string",
    "icon": "string",
    "id": "string",
    "name": "string",
    "parentId": "string",
    "storeId": "string",
    "updatedAt": "string"
  }
]
{
  "code": "string",
  "message": "string"
}
{
  "code": "string",
  "message": "string"
}