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

# Create Company Email Verification Code

GraphQL endpoint: `/company`

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

## Query

```graphql
mutation (
  $emailId: ID!
) {
  createCompanyEmailVerificationCode (
    emailId: $emailId
  ) {
    expiresAt
    remainingOtpAttempts
    nextOtpAt
    otpStatus
  }
}

```

## Variables

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

## Response

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