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

# Driver License

> Validate Australian driver's license information with transport authorities.



## OpenAPI

````yaml api-reference-legacy/openapi.json POST /api/v1/verification/australia/driver_license
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/australia/driver_license:
    post:
      tags:
        - Government Data
      summary: AU Driver License
      description: >-
        Validate Australian driver's license information with transport
        authorities.
      operationId: auDriverLicenseVerification
      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/AuDriverLicenseRequest'
            examples:
              default:
                summary: AU driver license verification request
                value:
                  card_number: <string>
                  dob: 15-08-1990
                  family_name: <string>
                  given_name: <string>
                  license_number: <string>
                  middle_name: <string>
                  state_of_issue: <string>
                  template_id: '{your_trust_flow_id}'
                  verification_id: '{your_created_verification_id}'
      responses:
        '200':
          description: AU driver license verification processed successfully
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AuRegistryVerificationResponse'
              example:
                status: true
                message: OK
                result:
                  ActivityId: fbf85de7-1b92-4e8a-b01e-3dcc97cbb118
                  Errors: []
                  OriginatingAgencyCode: IDM001
                  VerificationRequestNumber: VI-01-01
                  VerificationResultCode: 1
components:
  schemas:
    AuDriverLicenseRequest:
      type: object
      required:
        - dob
        - family_name
        - given_name
        - licence_number
        - state_of_issue
        - template_id
        - verification_id
      properties:
        card_number:
          type: string
          description: The number of the healthcare or ID card.
        dob:
          type: string
          description: Date of birth of the individual.
        family_name:
          type: string
          description: Last name of the individual.
        given_name:
          type: string
          description: First name of the individual.
        licence_number:
          type: string
          description: Associated license number if applicable.
        middle_name:
          type: string
          description: Middle name of the individual.
        state_of_issue:
          type: string
          description: Australian state where the card/license was issued.
        template_id:
          type: string
          description: Internal template identifier.
        verification_id:
          type: string
          description: Unique ID for the verification request.
    AuRegistryVerificationResponse:
      type: object
      properties:
        status:
          type: boolean
        message:
          type: string
        result:
          type: object
          properties:
            ActivityId:
              type: string
            Errors:
              type: array
              items:
                type: object
                additionalProperties: true
            OriginatingAgencyCode:
              type: string
            VerificationRequestNumber:
              type: string
            VerificationResultCode:
              type: integer
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Use `Bearer {your_api_token}` in the Authorization header.

````