POST
/
v1
/
categories
curl --request POST \
  --url https://api.quickbutik.com/v1/categories \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "Kablar",
  "parent_id": 112
}'
{
  "category_id": "220",
  "name": "Kablar",
  "uri": "kablar",
  "parent_id": "112"
}

Authorizations

Authorization
string
header
required

API key authentication using Basic Auth. Use your API key as both username and password. See the Authentication guide for complete setup instructions.

Body

application/json

Response

200
application/json

Category created successfully

The response is of type object.