# Remove 10DLC Brand

## POST Request

{% hint style="info" %}
<https://v1.api19.com/campaigns/brands/remove>
{% endhint %}

Delete a 10DLC brand from your account

{% tabs %}
{% tab title="cURL" %}
{% code title="curl" %}

```bash
curl https://v1.api19.com/campaigns/brands/remove \
 -d 'key=api_token' \
 -d 'brand_id=B1A2C3D4E5'
```

{% endcode %}
{% endtab %}

{% tab title="JSON Response" %}
{% code title="success.json" %}

```json
{
    "status": "ok",
    "message": "Brand removed successfully"
}
```

{% endcode %}

{% code title="error.json" %}

```json
{
    "status": "error",
    "error": "Brand not found"
}
```

{% endcode %}
{% endtab %}
{% endtabs %}

## Parameters

* `brand_id` (required) - Brand ID
