# Remove 10DLC Campaign

## POST Request

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

Remove/Deactivate a 10DLC campaign from your account

Note: This does not delete a campaign, but marks it as inactive (removes billing). It will still remain data retention purposes.

{% tabs %}
{% tab title="Curl Post" %}
{% code title="curl" %}

```bash
curl https://v1.api19.com/campaigns/campaign/remove \
 -d 'key=api_token' \
 -d 'id=C12345'
```

{% endcode %}
{% endtab %}

{% tab title="JSON Response" %}
{% code title="Response (JSON)" %}

```json
{
    "status": "ok",
    "message": "Campaign deactivated"
}

OR

{
    "status": "error",
    "error": "Campaign not found"
}
```

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

## Parameters

* `id` (required) - Campaign ID (not crid)
