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

# Malaysia IC Check

> Verify Malaysia IC records.



## OpenAPI

````yaml api-reference-legacy/openapi.json POST /api/v2/verification/malaysian-ic-verification
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/v2/verification/malaysian-ic-verification:
    post:
      tags:
        - Government Data
      summary: Malaysia IC Check
      description: Verify Malaysia identification card (IC) records.
      operationId: malaysianIcVerification
      parameters:
        - name: Accept
          in: header
          required: false
          schema:
            type: string
            default: application/json
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/MalaysiaIcVerificationRequest'
            examples:
              default:
                summary: Malaysia IC verification request
                value:
                  ic_number: <string>
                  template_id: '{your_trust_flow_id}'
                  verification_id: '{your_created_verification_id}'
      responses:
        '200':
          description: Malaysia IC verified successfully
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MalaysiaIcVerificationResponse'
              example:
                status: true
                message: OK
                response:
                  status: valid
                  data:
                    name: LEO ADRIANO RICHARD
                    icNumber: '030226060581'
                    dateOfBirth: '2003-02-26'
                    gender: male
                  requestData:
                    icNumber: '030226060581'
components:
  schemas:
    MalaysiaIcVerificationRequest:
      type: object
      required:
        - ic_number
        - template_id
        - verification_id
      properties:
        ic_number:
          type: string
          description: Number on the Malaysia identification card (IC).
        template_id:
          type: integer
          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.
    MalaysiaIcVerificationResponse:
      type: object
      properties:
        status:
          type: boolean
        message:
          type: string
        response:
          type: object
          properties:
            status:
              type: string
            data:
              type: object
              properties:
                name:
                  type: string
                icNumber:
                  type: string
                dateOfBirth:
                  type: string
                gender:
                  type: string
            requestData:
              type: object
              properties:
                icNumber:
                  type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Use `Bearer {your_api_token}` in the Authorization header.

````