Update an Item Category
PUT/api/item-categories/{id}
Headers
| Field | Type | Description |
|---|---|---|
| authtoken | String | Authentication token, generated from admin area |
Parameters
| Field | Type | Description |
|---|---|---|
| id | Number | Item Category unique ID |
| title | String | optional Optional Title |
curl -X PUT "https://yoursite.com/api/item-categories/123" \
-H "authtoken: YOUR_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{ "field": "value" }'