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

# Finalize Verification

> Finalizes a verification process after it has been created.



## OpenAPI

````yaml api-reference-legacy/openapi.json POST /api/v1/verification/finalize-verification
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/v1/verification/finalize-verification:
    post:
      tags:
        - Processes
      summary: Finalize Verification
      description: >-
        Finalizes an existing verification using the template and verification
        identifiers returned from create verification.
      operationId: finalizeVerification
      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/FinalizeVerificationRequest'
            examples:
              default:
                summary: Trust flow and created verification
                value:
                  template_id: '{your_trust_flow_id}'
                  verification_id: '{your_created_verification_id}'
              templateOnly:
                summary: Template ID and verification ID
                value:
                  template_id: '{your_template_id}'
                  verification_id: '{your_verification_id}'
      responses:
        '200':
          description: Verification finalized successfully
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FinalizeVerificationResponse'
              example:
                message: Verification finalized successfully
                verification:
                  id: 78e22030-2bd4-44a3-b3b6-7c203278afc6
                  user_id: 42
                  company_id: 13
                  template_id: 132
                  status: 2
                  verification_date: '2025-07-28 09:01:32'
                  verification_data: '[]'
                  created_at: null
                  updated_at: null
                  verification_started_at: '2025-07-28 09:01:32'
                  verification_ended_at: '2025-07-28 09:01:47'
                  time_to_verify: 0.15001010894775
                  form_data_status: null
                  is_processing: 0
                  metadata: null
                  profile_name: N/A
                  is_deleted: 0
                  manual_status_update: 0
                missing_plans: []
                status: 2
                status_message: REVIEW_NEEDED
                finalized: true
components:
  schemas:
    FinalizeVerificationRequest:
      type: object
      required:
        - template_id
        - verification_id
      properties:
        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.
    FinalizeVerificationResponse:
      type: object
      properties:
        message:
          type: string
        verification:
          type: object
          additionalProperties: true
        missing_plans:
          type: array
          items:
            type: object
            additionalProperties: true
        status:
          type: integer
        status_message:
          type: string
        finalized:
          type: boolean
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Use `Bearer {your_api_token}` in the Authorization header.

````