---
title: "Confirm an email-ownership verification code"
method: POST
path: "/dir/{dir_id}/verify_email/confirm"
tags: ["Email Verification"]
---

# Confirm an email-ownership verification code

`POST /dir/{dir_id}/verify_email/confirm`

Submit the 6-digit code that was emailed to the DIR's authorizer email. On success the authorizer email is marked verified.

For security, any failure (wrong, expired, already-used, or too many attempts) returns the same generic message.

## Path parameters

- `dir_id` string, uuid, required

## Request body

- EmailVerificationConfirmRequest
  - `code` string, required — The 6-digit code sent to the authorizer email.

## Response `200`

The authorizer email is verified.

- EmailVerificationStatusWrapped
  - `data` EmailVerificationStatus, required — Verification state for a DIR's authorizer email.
    - `record_type` 'email_verification', required — Always `email_verification`.
    - `email_verified` boolean, required — Whether the DIR's authorizer email has been confirmed.
    - `status` 'sent' | 'verified' | 'unverified', required — `sent` after a code is emailed; `verified` after a successful confirm; `unverified` when no verification is in progress.
    - `expires_at` string, date-time, nullable — When the outstanding code stops being accepted. Null when no verification is in progress.
    - `sends_remaining_today` integer, nullable — How many more codes may be requested for this DIR today. Null when the daily cap does not apply.

## Other responses

- `400` — An error occurred. The response carries the standard Telnyx error envelope.
- `404` — An error occurred. The response carries the standard Telnyx error envelope.

---

[API](https://skmtc.net/team-telnyx/apis/telnyx-api-2.md) · [All operations](https://skmtc.net/team-telnyx/apis/telnyx-api-2/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/team-telnyx/telnyx-api-2/revisions/8f5f4e537994/schema)
