> 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/008__list_brands.md).

# List 10DLC Brands

GraphQL endpoint: `/company`

List all the 10DLC Brands the company has access to.

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

## Query

```graphql
query($companyId: ID, $status: TenDlcBrandStatus, $workflowStatus: TenDlcBrandWorkflowStatus, $ownershipType: TenDlcOwnershipType, $page: Int, $pageSize: Int) {
  tenDlcBrands(companyId: $companyId, status: $status, workflowStatus: $workflowStatus, ownershipType: $ownershipType, page: $page, pageSize: $pageSize) {
    page
    totalRecords
    records {
      brandId
      companyId
      displayName
      entityType
      status
      workflowStatus
      phone
      email
      ownershipType
    }
  }
}

```

## Variables

```json
{}
```

## Response

```json
{
  "data": {
    "tenDlcBrands": {
      "page": 1,
      "records": [
        {
          "brandId": "B6T5J5X",
          "companyId": "00000000-0000-4000-8000-000000000001",
          "displayName": "Brand 1",
          "email": "test1@example.com",
          "entityType": "PRIVATE_PROFIT",
          "ownershipType": "DIRECT",
          "phone": "+14155551234",
          "status": "ACTIVE",
          "workflowStatus": "VERIFIED"
        },
        {
          "brandId": "BSBUZC7",
          "companyId": "00000000-0000-4000-8000-000000000001",
          "displayName": "Brand 2",
          "email": "test2@example.com",
          "entityType": "NON_PROFIT",
          "ownershipType": "DIRECT",
          "phone": "+14155555678",
          "status": "DRAFT",
          "workflowStatus": "DRAFT"
        },
        {
          "brandId": "BE2XT75",
          "companyId": "00000000-0000-4000-8000-000000000001",
          "displayName": "Brand 2",
          "email": "test2@example.com",
          "entityType": "NON_PROFIT",
          "ownershipType": "PARTNER",
          "phone": "+14155555678",
          "status": "DRAFT",
          "workflowStatus": "DRAFT"
        }
      ],
      "totalRecords": 3
    }
  }
}
```
