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

# Update Trust Validation Status

> Updates the overall status of a trust validation session. The status field in the request body is required.



## OpenAPI

````yaml api-reference/openapi.json PATCH /api/v1/verification/update-status/{trustValidationId}
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/v1/verification/update-status/{trustValidationId}:
    patch:
      tags:
        - Processes
      summary: Update Trust Validation Status
      description: >-
        Updates the overall status of a trust validation session. Send the
        `status` code in the request body — this field is required. Use the same
        status you selected during review in Direct Link (for example Verified,
        Review Needed, Rejected, Incomplete, or In Progress).
      operationId: updateTrustValidationStatus
      parameters:
        - name: trustValidationId
          in: path
          required: true
          description: >-
            Trust validation ID to update. Use the `trustValidationId` returned
            from create trust validation.
          schema:
            type: string
          example: '{your_trust_validation_id}'
        - 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/UpdateTrustValidationStatusRequest'
            examples:
              default:
                summary: Update trust validation status
                value:
                  status: 2
      responses:
        '200':
          description: Trust validation status updated successfully
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UpdateTrustValidationStatusResponse'
              example:
                success: true
                message: Trust validation status updated successfully
                trustValidationId: '{your_trust_validation_id}'
                status: 2
components:
  schemas:
    UpdateTrustValidationStatusRequest:
      type: object
      required:
        - status
      properties:
        status:
          type: integer
          description: >-
            Overall trust validation status code to apply: 1 = Rejected, 2 =
            Review Needed, 3 = Verified, 4 = Incomplete, 5 = In Progress.
    UpdateTrustValidationStatusResponse:
      type: object
      properties:
        success:
          type: boolean
        message:
          type: string
        trustValidationId:
          type: string
          description: Trust validation identifier that was updated.
        status:
          type: integer
          description: Updated overall status code.
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Use `Bearer {your_api_token}` in the Authorization header.

````