> 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/004__delete_api_key.md).

# Delete 10DLC Api Key

GraphQL endpoint: `/company`

Delete an existing 10DLC API key for the company.

## Query

```graphql
mutation ($id: String!) {
  deleteTenDlcApiKey(id: $id) {
    name
    apiKeyId
    apiKeySecret
    companyId
    insertedAt
    updatedAt
  }
}

```

## Variables

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

## Response

```json
{
  "data": {
    "deleteTenDlcApiKey": {
      "apiKeyId": "test_key_VW24652GLDNR2N6E",
      "apiKeySecret": "test_secret_LE3V65ZQ6RHEJLOWIDSKOXYRVIRXL7N3",
      "companyId": "00000000-0000-4000-8000-000000000001",
      "insertedAt": "2026-01-15T09:00:00",
      "name": "Key to Delete",
      "updatedAt": "2026-01-15T09:00:00"
    }
  }
}
```
