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

# Verify Email Verification Message

> Verify the submitted email OTP and complete email ownership verification.



## OpenAPI

````yaml api-reference-legacy/openapi.json POST /api/v3/verifications/email-verification/verify
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/verify:
    post:
      tags:
        - Compliance
      summary: Verify Email Verification Message
      description: >-
        Verify the submitted email OTP and complete email ownership
        verification.
      operationId: verifyEmailVerificationMessage
      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/EmailVerificationVerifyRequest'
            examples:
              default:
                summary: Verify email verification message
                value:
                  email: <string>
                  otp: <string>
                  template_id: '{your_trust_flow_id}'
                  verification_id: '{your_created_verification_id}'
      responses:
        '200':
          description: Email verification completed successfully
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EmailVerificationVerifyResponse'
              example:
                status: true
                message: OK
                result:
                  mobile_app_token: 79c8fe09935248d7ad1a78c09ffed17d
                  recipient:
                    email: johndoe@gmail.com
                  reference_id: 6660FE3C58B402509336D7DB4513D2DD
                  state: CREATED
                  status:
                    code: 3901
                    description: Request in progress
                    updated_on: '2025-07-25T03:09:58.721000Z'
components:
  schemas:
    EmailVerificationVerifyRequest:
      type: object
      required:
        - email
        - otp
        - template_id
        - verification_id
      properties:
        email:
          type: string
          format: email
          description: Email address to send the verification code to.
        otp:
          type: integer
          description: One-time password sent to the email.
        template_id:
          type: string
          description: >-
            Identifier used to categorize or group requests for tracking or
            reporting.
        verification_id:
          type: string
          description: A unique ID used to identify your verification request.
    EmailVerificationVerifyResponse:
      type: object
      properties:
        status:
          type: boolean
        message:
          type: string
        result:
          type: object
          properties:
            mobile_app_token:
              type: string
            recipient:
              type: object
              properties:
                email:
                  type: string
                  format: email
            reference_id:
              type: string
            state:
              type: string
            status:
              type: object
              properties:
                code:
                  type: integer
                description:
                  type: string
                updated_on:
                  type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Use `Bearer {your_api_token}` in the Authorization header.

````