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

# Centrelink Card

> Verify Australian Centrelink card details against social services records.



## OpenAPI

````yaml api-reference-legacy/openapi.json POST /api/v1/verification/australia/centrelink_card
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/centrelink_card:
    post:
      tags:
        - Government Data
      summary: AU Centrelink Card
      description: >-
        Verify Australian Centrelink card details against social services
        records.
      operationId: auCentrelinkCardVerification
      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/AuCentrelinkCardRequest'
            examples:
              default:
                summary: AU Centrelink card verification request
                value:
                  card_expiry: '2026-04-02'
                  card_type: <string>
                  customer_reference_number: <string>
                  dob: '2003-07-09'
                  name: <string>
                  template_id: '{your_trust_flow_id}'
                  verification_id: '{your_created_verification_id}'
      responses:
        '200':
          description: AU Centrelink card 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: 00000000-0000-0000-0000-000000000000
                  OriginatingAgencyCode: IDM001
                  VerificationRequestNumber: VI-01-01
                  VerificationResultCode: 3
components:
  schemas:
    AuCentrelinkCardRequest:
      type: object
      required:
        - card_expiry
        - card_type
        - customer_reference_number
        - dob
        - name
        - template_id
        - verification_id
      properties:
        card_expiry:
          type: string
          format: date
          description: Expiry date of the Centrelink card.
        card_type:
          type: string
          description: >-
            Type of Centrelink card (for example Health Care Card or Pensioner
            Concession Card).
        customer_reference_number:
          type: string
          description: Unique CRN (Customer Reference Number) listed on the card.
        dob:
          type: string
          format: date
          description: Date of birth of the cardholder.
        name:
          type: string
          description: Full name of the individual as shown on the card.
        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.

````