Skip to content
On this page

Update Brand ​

Update an existing brand.

Endpoint ​

PUT /api/brands/update/?id={id}

Request Body ​

Include only the fields you want to update.
See Create Brand for field details.

Example ​

json
{
  "name": "Updated Brand",
  "imageSrc": "https://cdn.example.com/brand-new.png",
  "description": "Updated description"
}

Response ​

json
{
  "status": "success",
  "data": {
    "_id": "string",
    "name": "Updated Brand",
    ...
  }
}

Released under the MIT License.