Create Category

POST /api/v1/categories
FieldRequiredDescription
cat_nameYesCategory name
cat_parent_idNoParent ID (0 = top level)
statusNo1 = active (default)
priorityNoSort order
curl -X POST -H "Authorization: Bearer KEY:SECRET" 
     -H "Content-Type: application/json" 
     -d '{"cat_name": "Accessories", "cat_parent_id": 0}' 
     https://example.com/api/v1/categories

Update Category

PUT /api/v1/categories/{id}

Delete Category

DELETE /api/v1/categories/{id}

Child categories are reassigned to the deleted category's parent.