> For the complete documentation index, see [llms.txt](https://docs.tnid.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.tnid.com/api-reference/002_company/002_ten_dlc/023__delete_campaign.md).

# Delete 10DLC Campaign

GraphQL endpoint: `/company`

Delete a submitted 10DLC campaign. Campaigns can only be deleted if drafts, otherwise if they're submitted they will be expired.

## Query

```graphql
mutation ($id: ID!) {
  deleteTenDlcCampaign(id: $id) {
    status
  }
}

```

## Variables

```json
{
  "id": "00000000-0000-4000-8000-000000000001"
}
```

## Response

```json
{
  "data": {
    "deleteTenDlcCampaign": {
      "status": "OK"
    }
  }
}
```
