Overview
The Brands API allows you to manage brand information for your products. Brands can be associated with products to help organize and categorize your catalog.Create Brand
Creates a new brand. Brand names must be unique.Request Body
Brand name (must be unique)
Response
Unique brand identifier
Brand name
Example
Response Example
List Brands
Returns all brands, ordered alphabetically by name.Response
Returns an array of brand objects.Brand identifier
Brand name
Example
Response Example
Update Brand
Updates an existing brand. The new name must not conflict with existing brands.Path Parameters
The brand ID to update
Request Body
New brand name (must be unique if changing)
Response
Returns the updated brand object.Brand identifier
Updated brand name
Example
Response Example
Delete Brand
Deletes a brand. If the brand is associated with products, the operation may fail depending on database constraints.Path Parameters
The brand ID to delete
Response
Returns204 No Content on success.