> 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/005__list_api_key_authorizations.md).

# List 10DLC Api Key Authorizations

GraphQL endpoint: `/company`

Lists the 10DLC API keys owned by the company that have been shared (authorized) for use by other companies. Each entry pairs the shared API key with the company it was authorized for.

## Query

```graphql
query {
  tenDlcApiKeyAuthorizations {
    authorizedAt
    company {
      id
      legalName
      brandName
    }
    apiKey {
      id
      name
      apiKeyId
      apiKeySecret
      insertedAt
      updatedAt
    }
  }
}

```

## Variables

```json
{}
```

## Response

```json
{
  "data": {
    "tenDlcApiKeyAuthorizations": [
      {
        "apiKey": {
          "apiKeyId": "test_key_AJF3WRQR52NLBRDC",
          "apiKeySecret": "test_secret_K5DPVHJBUHLEXNSUNYWVYZLWLGVKRGF7",
          "id": "00000000-0000-4000-8000-000000000001",
          "insertedAt": "2026-01-15T09:00:00",
          "name": "Shared API Key 1",
          "updatedAt": "2026-01-15T09:00:00"
        },
        "authorizedAt": "2026-01-15T09:00:00",
        "company": {
          "brandName": "1brand-name",
          "id": "00000000-0000-4000-8000-000000000002",
          "legalName": "Authorized Company 1"
        }
      },
      {
        "apiKey": {
          "apiKeyId": "test_key_ERS23ESFCKCZVLAQ",
          "apiKeySecret": "test_secret_CJ66PD66W6MCG3CPGQMGYA4V6A27OXJV",
          "id": "00000000-0000-4000-8000-000000000003",
          "insertedAt": "2026-01-15T09:00:00",
          "name": "Shared API Key 2",
          "updatedAt": "2026-01-15T09:00:00"
        },
        "authorizedAt": "2026-01-15T09:00:00",
        "company": {
          "brandName": "2brand-name",
          "id": "00000000-0000-4000-8000-000000000004",
          "legalName": "Authorized Company 2"
        }
      }
    ]
  }
}
```
