Brands
Brands represent manufacturers or catalogue labels used by products.
Endpoints
| Method | Path | Use |
|---|
| POST | /v1/brands | Create a brand. |
| GET | /v1/brands | List brands. |
| GET | /v1/brands/{id} | Read one brand. |
| PATCH | /v1/brands/{id} | Update provided fields. |
| DELETE | /v1/brands/{id} | Deactivate the brand. |
Create example
curl -X POST https://api.fenestro.io/v1/brands \
-H "Authorization: Bearer fen_live_xxxxxxxxxxxx" \
-H "Content-Type: application/json" \
-d '{"name":"Reynaers Aluminium","description":"Aluminium systems","display_order":10}'
Fields
| Field | Required | Notes |
|---|
name | yes | 2 to 100 characters. |
description | no | Maximum 2000 characters. |
image_url | no | Absolute URL. |
display_order | no | Non-negative integer. |