> ## 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 Trust Validation

> Finalizes the verification process and provided an overall status for the entire Trust Validation



## OpenAPI

````yaml api-reference/openapi.json POST /api/v3/processes/finalize-trust-validation
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: Trust Flow Links
    description: Trust Flow link generation endpoints
  - name: Compliance
    description: Compliance verification endpoints
  - name: Government Data
    description: Government data verification endpoints
  - name: Alternative Verifications
    description: Alternative verification and intelligence endpoints
  - name: OCR
    description: Document OCR extraction endpoints
paths:
  /api/v3/processes/finalize-trust-validation:
    post:
      tags:
        - Processes
      summary: Finalize Trust Validation
      description: >-
        Finalizes a trust validation after verification steps complete. If
        finalize has already run, the API still returns success with an
        informational message.
      operationId: finalizeTrustValidationV3
      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/FinalizeTrustValidationV3Request'
            examples:
              default:
                summary: Trust flow and trust validation
                value:
                  trustFlowId: 0
                  trustValidationId: '{your_trust_validation_id}'
      responses:
        '200':
          description: Trust validation finalized successfully, or already finalized
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FinalizeTrustValidationV3Response'
              example:
                success: true
                message: Trust validation already finalized
                data:
                  user_id: 376
                  company_id: 52
                  profile_name: GILBERT NICHOLAS WULFF
                  time_to_verify: 4.72
                verificationStatus: REVIEW_NEEDED
                verificationStatusCode: 2
                trustFlowId: 0
                trustValidationId: '{your_trust_validation_id}'
                verificationType: finalize_trust_validation
                metadata: null
components:
  schemas:
    FinalizeTrustValidationV3Request:
      type: object
      required:
        - trustFlowId
        - trustValidationId
      properties:
        trustFlowId:
          type: integer
          description: Trust flow identifier used when the validation was created.
        trustValidationId:
          type: string
          description: Trust validation identifier returned from create trust validation.
    FinalizeTrustValidationV3Response:
      type: object
      properties:
        success:
          type: boolean
        message:
          type: string
        data:
          type: object
          properties:
            user_id:
              type: integer
            company_id:
              type: integer
            profile_name:
              type: string
            time_to_verify:
              type: number
              description: Time to complete verification when applicable.
        verificationStatus:
          type: string
        verificationStatusCode:
          type: integer
        trustFlowId:
          type: integer
        trustValidationId:
          type: string
          format: uuid
        verificationType:
          type: string
          example: finalize_trust_validation
        metadata:
          type: object
          nullable: true
          additionalProperties: true
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Use `Bearer {your_api_token}` in the Authorization header.

````