Skip to main content
DELETE
/
brand
Delete Brand
curl --request DELETE \
  --url https://app.mentionpilot.ai/api/v1/brand \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "brand_id": 1
}'
{
  "success": true,
  "message": "Brand deleted successfully"
}

Documentation Index

Fetch the complete documentation index at: https://help.mentionpilot.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Brand to delete

brand_id
integer
required

ID of the brand to delete

Example:

1

Response

Brand deleted successfully

success
boolean
Example:

true

message
string
Example:

"Brand deleted successfully"