> 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/013__update_and_submit_brand.md).

# Update And Submit 10DLC Brand

GraphQL endpoint: `/company`

Updates a draft 10DLC brand with the given parameters and submits it for registration. The returned brand reflects the updated fields and its post-submission status.

## Query

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

```

## Variables

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

## Response

```json
{
  "data": {
    "updateAndSubmitTenDlcBrand": {
      "brandId": "BGUBPAM",
      "companyId": "00000000-0000-4000-8000-000000000001",
      "companyName": "Original Company Inc",
      "displayName": "Updated Brand Name",
      "email": "updated@example.com",
      "entityType": "PRIVATE_PROFIT",
      "phone": "+14155559999",
      "status": "PENDING_REVIEW"
    }
  }
}
```
