> 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/004_telephone_number/001__create_company_telephone_number.md).

# Create Company Telephone Number

GraphQL endpoint: `/company`

Create a new telephone number for the company. The telephone number will be added to the company's profile with the specified types and visibility settings.

## Query

```graphql
mutation (
  $number: String!
  $countryCode: String!
  $types: [CompanyTelephoneNumberType!]
  $visibility: [CompanyVisibilityType!]
) {
  createCompanyTelephoneNumber (
    number: $number
    countryCode: $countryCode
    types: $types
    visibility: $visibility
  ) {
    id
    number
    types
    visibility
  }
}

```

## Variables

```json
{
  "countryCode": "1",
  "number": "1",
  "types": [
    "SUPPORT"
  ],
  "visibility": [
    "PARTNER",
    "CUSTOMER"
  ]
}
```

## Response

```json
{
  "data": {
    "createCompanyTelephoneNumber": {
      "id": "00000000-0000-4000-8000-000000000001",
      "number": "11",
      "types": [
        "SUPPORT"
      ],
      "visibility": [
        "PARTNER",
        "CUSTOMER"
      ]
    }
  }
}
```
