> 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/002__create_company_telephone_number_verification_code.md).

# Create Company Telephone Number Verification Code

GraphQL endpoint: `/company`

Sends a one-time verification code to the given company telephone number. The response reports the OTP status, its expiry, and the remaining verification attempts.

## Query

```graphql
mutation (
  $telephoneNumberId: ID!
) {
  createCompanyTelephoneNumberVerificationCode (
    telephoneNumberId: $telephoneNumberId
  ) {
    expiresAt
    remainingOtpAttempts
    nextOtpAt
    otpStatus
  }
}

```

## Variables

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

## Response

```json
{
  "data": {
    "createCompanyTelephoneNumberVerificationCode": {
      "expiresAt": "2026-01-15T09:00:01.000000",
      "nextOtpAt": "2026-01-15T09:00:00",
      "otpStatus": "OTP sent",
      "remainingOtpAttempts": 5
    }
  }
}
```
