> 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/011__update_draft_brand.md).

# Update Draft 10DLC Brand

GraphQL endpoint: `/company`

Update an existing draft of 10DLC brand. Draft means it is not yet submitted for approval. This is useful if you want to start preparing a brand before submitting it for approval.

## Query

```graphql
mutation($id: String!, $input: TenDlcUpdateBrandInput!) {
  updateTenDlcBrandAsDraft(id: $id, input: $input) {
    brandId
    companyId
    companyName
    displayName
    entityType
    status
    phone
    email
  }
}

```

## Variables

```json
{
  "id": "00000000-0000-4000-8000-000000000002",
  "input": {
    "displayName": "Updated Test Brand",
    "email": "updated@example.com",
    "phone": "+14155559999"
  }
}
```

## Response

```json
{
  "data": {
    "updateTenDlcBrandAsDraft": {
      "brandId": null,
      "companyId": "00000000-0000-4000-8000-000000000001",
      "companyName": "Test Company Inc",
      "displayName": "Updated Test Brand",
      "email": "updated@example.com",
      "entityType": "PRIVATE_PROFIT",
      "phone": "+14155559999",
      "status": "DRAFT"
    }
  }
}
```
