Item Categories

Manage item categories. Ability to create, edit, view, and delete categories.

Available Endpoints

Method Path Description
GET /api/item-categories List categories
GET /api/item-categories/{id} View category details
POST /api/item-categories Create new category
PUT /api/item-categories/{id} Full update of a category
PATCH /api/item-categories/{id} Partial update of a category
DELETE /api/item-categories/{id} Delete a category

Example Request

curl -X GET "https://example.com/api/item-categories" \
  -H "Authorization: Bearer {token}"

Success Response (200)

{
  "records": [],
  "meta": {
    "total": 0,
    "current_page": 1,
    "per_page": 20
  }
}

Errors

Code Description
401 Invalid token
403 Access denied
404 Record not found
422 Validation error
Type to search...