> 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/016__get_campaign_with_telephone_numbers.md).

# Get 10DLC Campaign With Telephone Numbers

GraphQL endpoint: `/company`

Get a single 10DLC Campaign the company has access to, together with the telephone numbers associated with the campaign.

The company has access to their own campaigns as well as any other campaigns from companies that have authorized 10DLC actions to the company.

## Query

```graphql
query($id: ID!) {
  tenDlcCampaignWithTelephoneNumbers(id: $id) {
    campaign {
      id
      campaignId
      companyId
      brandId
      usecase
      status
      description
      messageFlow
      autoRenewal
      ownershipType
    }
    telephoneNumbers {
      id
      number
      campaignId
      internalCampaignId
      osrWorkflowStatus
      tmobileWorkflowStatus
      insertedAt
      updatedAt
    }
  }
}

```

## Variables

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

## Response

```json
{
  "data": {
    "tenDlcCampaignWithTelephoneNumbers": {
      "campaign": {
        "autoRenewal": true,
        "brandId": "BTEST123",
        "campaignId": "C4OX5V2",
        "companyId": "00000000-0000-4000-8000-000000000001",
        "description": "Test marketing campaign for product launches and promotions",
        "id": "00000000-0000-4000-8000-000000000002",
        "messageFlow": "Users opt-in by texting JOIN. They receive updates about products.",
        "ownershipType": "DIRECT",
        "status": "ACTIVE",
        "usecase": "MARKETING"
      },
      "telephoneNumbers": [
        {
          "campaignId": "C4OX5V2",
          "id": "00000000-0000-4000-8000-000000000003",
          "insertedAt": "2026-01-15T09:00:00",
          "internalCampaignId": "00000000-0000-4000-8000-000000000002",
          "number": "14155550001",
          "osrWorkflowStatus": "DRAFT",
          "tmobileWorkflowStatus": "DRAFT",
          "updatedAt": "2026-01-15T09:00:00"
        },
        {
          "campaignId": "C4OX5V2",
          "id": "00000000-0000-4000-8000-000000000004",
          "insertedAt": "2026-01-15T09:00:00",
          "internalCampaignId": "00000000-0000-4000-8000-000000000002",
          "number": "14155550002",
          "osrWorkflowStatus": "DRAFT",
          "tmobileWorkflowStatus": "DRAFT",
          "updatedAt": "2026-01-15T09:00:00"
        }
      ]
    }
  }
}
```
