> ## Documentation Index
> Fetch the complete documentation index at: https://docs.idmetagroup.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Send Email Verification Message

> Send an email verification message and evaluate delivery/risk status.



## OpenAPI

````yaml api-reference-legacy/openapi.json POST /api/v3/verifications/email-verification/send
openapi: 3.0.3
info:
  title: IDmeta API
  description: IDmeta verification and integration API.
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://{environment-subdomain}.idmetagroup.com
    description: Your environment (replace `{environment-subdomain}`)
    variables:
      environment-subdomain:
        default: integrate
        description: IDmeta environment subdomain
security:
  - bearerAuth: []
tags:
  - name: Processes
    description: Verification process endpoints
  - name: Compliance
    description: Compliance verification endpoints
  - name: Government Data
    description: Government data verification endpoints
paths:
  /api/v3/verifications/email-verification/send:
    post:
      tags:
        - Compliance
      summary: Send Email Verification Message
      description: >-
        Confirm email address ownership and risk evaluation by sending an email
        verification message.
      operationId: sendEmailVerificationMessage
      parameters:
        - name: Accept
          in: header
          required: false
          schema:
            type: string
            default: application/json
        - name: Content-Type
          in: header
          required: false
          schema:
            type: string
            default: application/json
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/EmailVerificationSendRequest'
            examples:
              default:
                summary: Send email verification message
                value:
                  email: <string>
                  otp: <string>
                  trustFlowId: '{your_trust_flow_id}'
                  trustValidationId: '{your_trust_validation_id}'
      responses:
        '200':
          description: Email verification message sent successfully
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EmailVerificationSendResponse'
              example:
                success: true
                message: Email verification processed successfully
                data:
                  status: VERIFIED
                  attempt: 0
                verificationStatus: VERIFIED
                verificationStatusCode: 3
                trustFlowId: 1710
                trustValidationId: 7bbc33d1-h8bb-405a-9486-3ad76455e858
                verificationType: email_verification
                metadata: null
components:
  schemas:
    EmailVerificationSendRequest:
      type: object
      required:
        - email
        - trustFlowId
        - trustValidationId
      properties:
        email:
          type: string
          format: email
          description: Email address to send the verification message to.
        otp:
          type: integer
          description: >-
            Optional one-time passcode. When omitted, the server generates or
            sends the code via the configured flow.
        trustFlowId:
          type: string
          description: Trust flow identifier.
        trustValidationId:
          type: string
          description: Trust validation identifier.
    EmailVerificationSendResponse:
      type: object
      required:
        - success
        - message
        - data
        - verificationStatus
        - verificationStatusCode
        - trustFlowId
        - trustValidationId
        - verificationType
      properties:
        success:
          type: boolean
        message:
          type: string
        data:
          type: object
          properties:
            status:
              type: string
            attempt:
              type: integer
        verificationStatus:
          type: string
        verificationStatusCode:
          type: integer
        trustFlowId:
          type: integer
        trustValidationId:
          type: string
        verificationType:
          type: string
        metadata:
          nullable: true
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Use `Bearer {your_api_token}` in the Authorization header.

````