Brands

Manage system brands. Ability to create, edit, view, and delete brands.

Available Endpoints

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

Example Request

curl -X GET "https://example.com/api/brands" \
  -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...