Delete Brand API
This API endpoint allows you to delete a brand by providing the brand ID. Requires authentication. On success, the brand is removed from the system.
- Method: DELETE
- Endpoint:
/api/api-services/v1/brand-service/delete-brand
- Returns: Success message on deletion
Delete Brand
DELETE https://app.brand2social.com/api/api-services/v1/brand-service/delete-brand
Field | Type | Required | Description |
---|---|---|---|
brand_id | string | Yes | ID of the brand to delete |
curl --location --request DELETE 'https://app.brand2social.com/api/api-services/v1/brand-service/delete-brand' \
--header 'Authorization: Bearer B2S_dummyToken' \
--header 'Content-Type: application/json' \
--data-raw '{
"brand_id": "brand_123"
}'
Response
{
"status": "SUCCESS",
"http_code": 200,
"message": "Brand deleted successfully"
}