> 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/010__save_brand_as_draft.md).

# Save 10DLC Brand As Draft

GraphQL endpoint: `/company`

Save a new 10DLC brand as a draft. 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($input: TenDlcRegisterBrandInput!) {
  registerTenDlcBrandAsDraft(input: $input) {
    id
    brandId
    companyId
    companyName
    displayName
    entityType
    status
    phone
    email
  }
}

```

## Variables

```json
{
  "input": {
    "brandRelationship": "BASIC_ACCOUNT",
    "city": "San Francisco",
    "companyId": "00000000-0000-4000-8000-000000000001",
    "companyName": "Test Company Inc",
    "country": "US",
    "displayName": "Test Brand",
    "ein": "12-3456789",
    "einIssuingCountry": "US",
    "email": "test@example.com",
    "entityType": "PRIVATE_PROFIT",
    "phone": "+14155551234",
    "postalCode": "94105",
    "state": "CA",
    "street": "123 Main St",
    "tenDlcApiKeyId": "00000000-0000-4000-8000-000000000003",
    "vertical": "PROFESSIONAL",
    "website": "https://example.com"
  }
}
```

## Response

```json
{
  "data": {
    "registerTenDlcBrandAsDraft": {
      "brandId": null,
      "companyId": "00000000-0000-4000-8000-000000000001",
      "companyName": "Test Company Inc",
      "displayName": "Test Brand",
      "email": "test@example.com",
      "entityType": "PRIVATE_PROFIT",
      "id": "00000000-0000-4000-8000-000000000002",
      "phone": "+14155551234",
      "status": "DRAFT"
    }
  }
}
```
