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

# Birth Certificate

> Verify Australian birth certificates against registry data.



## OpenAPI

````yaml api-reference-legacy/openapi.json POST /api/v1/verification/australia/certificate/birth
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/certificate/birth:
    post:
      tags:
        - Government Data
      summary: AU Birth Certificate
      description: Verify Australian birth certificates against registry data.
      operationId: auBirthCertificateVerification
      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/AuBirthCertificateRequest'
            examples:
              default:
                summary: AU birth certificate verification request
                value:
                  certificate_number: <string>
                  date_printed: '2020-08-15'
                  dob: '1990-05-12'
                  family_name: <string>
                  given_name: <string>
                  registration_date: '1990-05-15'
                  registration_number: <string>
                  registration_state: NSW
                  registration_year: 123
                  template_id: '{your_trust_flow_id}'
                  verification_id: '{your_created_verification_id}'
      responses:
        '200':
          description: AU birth certificate 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: 30b3fdeb-32ba-444b-a818-052c3102fd40
                  Errors: []
                  OriginatingAgencyCode: IDM001
                  VerificationRequestNumber: VI-01-01
                  VerificationResultCode: 2
components:
  schemas:
    AuBirthCertificateRequest:
      type: object
      required:
        - dob
        - registration_number
        - registration_state
        - template_id
        - verification_id
      properties:
        certificate_number:
          type: string
          description: Unique number printed on the birth certificate.
        date_printed:
          type: string
          format: date
          description: Date when the certificate was issued or printed.
        dob:
          type: string
          format: date
          description: Date of birth of the individual.
        family_name:
          type: string
          description: Family name of the individual.
        given_name:
          type: string
          description: Given name of the individual.
        registration_date:
          type: string
          format: date
          description: Date of registration.
        registration_number:
          type: string
          description: Official birth registration number.
        registration_state:
          type: string
          description: Australian state where the birth was registered.
          enum:
            - ACT
            - NSW
            - NT
            - QLD
            - SA
            - TAS
            - VIC
            - WA
        registration_year:
          type: integer
          description: Year of registration.
        template_id:
          type: string
          description: >-
            Identifier used to categorize or group requests for tracking or
            reporting.
        verification_id:
          type: string
          description: A unique ID used to identify your 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.

````