---
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.

## Changes

> 72 revisions in range; 1 not diffed.

- **2026-07-31** `5e782364444a` — 2 info
  - added the optional property `data/expires_at` to the response with the `200` status
  - added the optional property `data/sends_remaining_today` to the response with the `200` status

[Change history](https://skmtc.dev/team-telnyx/apis/telnyx-api-2/changes/dir/:dir_id/verify_email/confirm/post.md)

---

[API](https://skmtc.dev/team-telnyx/apis/telnyx-api-2.md) · [All operations](https://skmtc.dev/team-telnyx/apis/telnyx-api-2/llms.txt) · [OpenAPI document](https://skmtc.dev/team-telnyx/apis/telnyx-api-2/revisions/e0de72cf4744?raw)
