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

# Visa

> Validate Australian visa credentials against official immigration records.



## OpenAPI

````yaml api-reference/openapi.json POST /api/v3/verifications/australia/visa
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/verifications/australia/visa:
    post:
      tags:
        - Government Data
      summary: AU Visa
      description: >-
        Validate Australian visa credentials against official immigration
        records.
      operationId: auVisaVerificationV3
      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/AuVisaRequest'
            examples:
              default:
                summary: AU visa verification request
                value:
                  country_of_issue: ''
                  dob: ''
                  family_name: ''
                  given_name: ''
                  passport_number: ''
                  trustFlowId: 0
                  trustValidationId: '{your_trust_validation_id}'
      responses:
        '200':
          description: AU visa verification processed successfully
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AuVisaV3Response'
              example:
                success: true
                message: Australia Visa processed successfully
                data:
                  isValid: true
                verificationStatus: REJECTED
                verificationStatusCode: 1
                trustFlowId: 0
                trustValidationId: '{your_trust_validation_id}'
                verificationType: australia_visa
                metadata: null
components:
  schemas:
    AuVisaRequest:
      type: object
      required:
        - country_of_issue
        - dob
        - family_name
        - given_name
        - passport_number
        - trustFlowId
        - trustValidationId
      properties:
        country_of_issue:
          type: string
          description: Country where visa was issued for verification.
        dob:
          type: string
          description: Date of birth of individual in `YYYY-MM-DD` format.
        family_name:
          type: string
          description: Family name (surname) of the individual.
        given_name:
          type: string
          description: Given name of the individual to be verified.
        passport_number:
          type: string
          description: Number on the passport for verification.
        trustFlowId:
          type: integer
          description: >-
            Identifier used to categorize or group requests for tracking or
            reporting.
        trustValidationId:
          type: string
          description: A unique ID used to identify your verification request.
    AuVisaV3Response:
      type: object
      required:
        - success
        - message
        - data
        - verificationStatus
        - verificationStatusCode
        - trustFlowId
        - trustValidationId
        - verificationType
      properties:
        success:
          type: boolean
        message:
          type: string
        data:
          type: object
          properties:
            isValid:
              type: boolean
            Errors:
              type: array
              items:
                type: object
                properties:
                  Field:
                    type: string
                  Message:
                    type: string
                  Source:
                    type: string
                additionalProperties: true
        verificationStatus:
          type: string
        verificationStatusCode:
          type: integer
        trustFlowId:
          type: integer
          description: Trust flow identifier.
        trustValidationId:
          type: string
        verificationType:
          type: string
        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.

````