V1 / Brands

Delete a brand

Soft-delete a brand by ID. Session-authenticated (dashboard login; owner/admin/editor).

DELETE/api/v1/brands/:id

Query / Path parameters

NameInRequiredDescription
idpathYesBrand ID

Responses

200

JSON { success: true, id }

404

Brand not found in your space

Request
curl -X DELETE "https://bannx.com/api/v1/brands/:id" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -d '{}'
Response
// JSON { success: true, id }
{
  "success": true,
  "data": { ... }
}