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

# Trust Validation Result PDF Download PDF Download

> Download a PDF report containing all verification results for a trust validation session.

<Note>
  This endpoint returns a **PDF file**, not JSON. In **Try it**, set **Accept** to `application/pdf`, enter your `trustValidationId` and Bearer token, then click **Send**. When the request succeeds, use the **Download** button in the response panel to save the PDF.
</Note>


## OpenAPI

````yaml api-reference/openapi.json GET /api/v1/verification/verification-pdf/{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/verification-pdf/{trustValidationId}:
    get:
      tags:
        - Processes
      summary: Trust Validation Result PDF Download
      description: >-
        Download a PDF report containing all verification results for a trust
        validation session. After you click **Send**, use the **Download**
        button in the response panel to save the PDF file.
      operationId: verificationSummaryPdfDownload
      parameters:
        - name: trustValidationId
          in: path
          required: true
          description: >-
            Trust validation ID for the session. Use the `trustValidationId`
            returned from create trust validation.
          schema:
            type: string
          example: '{your_trust_validation_id}'
        - name: Accept
          in: header
          required: false
          description: Request a PDF file download.
          schema:
            type: string
            default: application/pdf
      responses:
        '200':
          description: Verification summary PDF downloaded successfully
          headers:
            Content-Type:
              schema:
                type: string
                example: application/pdf
            Content-Disposition:
              schema:
                type: string
                example: attachment; filename="verification-summary.pdf"
          content:
            application/pdf:
              schema:
                type: string
                format: binary
                description: >-
                  PDF report containing all verification results for the trust
                  validation session.
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Use `Bearer {your_api_token}` in the Authorization header.

````