> 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/003__verify_company_telephone_number.md).

# Verify Company Telephone Number

GraphQL endpoint: `/company`

Verifies a company telephone number using the one-time code previously sent to it. On success the telephone number is marked as verified and an OK status is returned.

## Query

```graphql
mutation (
  $telephoneNumberId: ID!
  $code: String!
) {
  verifyCompanyTelephoneNumber (
    telephoneNumberId: $telephoneNumberId
    code: $code
  ) {
    status
  }
}

```

## Variables

```json
{
  "code": "1",
  "telephoneNumberId": "00000000-0000-4000-8000-000000000001"
}
```

## Response

```json
{
  "data": {
    "verifyCompanyTelephoneNumber": {
      "status": "OK"
    }
  }
}
```
