# Update product category

You can update a product category.

PATCH /product-categories-by-id/:custom_id/

Attributes Type Required Description
custom_id string no A unique identifier for the product which is provided by the client.
description string no A product category description.
name string yes A category name.

# Request

  • CURL
  • JavaScript
  • PHP
  • Python
curl -X POST
    "https://<your_app_subdomain>.user.com/api/public/product-categories-by-id/:custom_id/"
    -H 'authorization: Token <your_64_char_api_key>'
    -H 'content-type: application/json'
    -d '{
    "name": "updated category name",
    "custom_id": "my_id",
    "description": "category description"
  }'

# Response

{
    "id": 30,
    "name": "updated category name",
    "custom_id": "my_id",
    "description": "category description"
}