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

# Dukcapil Data Full

> Verify Indonesia Dukcapil data with full details, including selfie image match.



## OpenAPI

````yaml api-reference/openapi.json POST /api/v3/verifications/indonesia/dukcapil-full
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/indonesia/dukcapil-full:
    post:
      tags:
        - Government Data
      summary: Dukcapil Data Full
      description: >-
        Verify Indonesia Dukcapil data with full details, including selfie image
        match.


        All request fields are required.
      operationId: dukcapilDataFullVerificationV3
      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/DukcapilDataFullV3Request'
            examples:
              default:
                summary: Dukcapil data full verification request
                value:
                  name: ''
                  nik: ''
                  date_of_birth: ''
                  gender: ''
                  place_of_birth: ''
                  marital_status: ''
                  job_type: ''
                  address: ''
                  province: ''
                  city: ''
                  district: ''
                  subdistrict: ''
                  rt: ''
                  rw: ''
                  mother_maiden_name: ''
                  no_kk: ''
                  selfie_image: ''
                  trustFlowId: 0
                  trustValidationId: '{your_created_trust_validation_id}'
      responses:
        '200':
          description: Dukcapil data full verified successfully
          headers:
            Content-Type:
              schema:
                type: string
                example: application/json
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DukcapilDataFullV3Response'
              example:
                success: true
                message: Indonesia Dukcapil Full processed successfully
                data:
                  isValid: true
                  success: true
                  message: Berhasil
                  data:
                    nik: true
                    name: true
                    dateOfBirth: true
                    selfieImagePercentage: '99.8'
                    livenessResult: null
                    livenessFailMessage: ''
                    noKk: null
                    motherMaidenName: null
                    placeOfBirth: true
                    address: true
                    gender: true
                    maritalStatus: true
                    jobType: true
                    province: true
                    city: true
                    district: true
                    subdistrict: true
                    rt: true
                    rw: true
                    uuid: 76367de2-1b77-4eb7-9bc3-3263b62ebf2f
                    url: ''
                    reasonCode: '0'
                    errorMessage: null
                verificationStatus: VERIFIED
                verificationStatusCode: 3
                trustFlowId: 0
                trustValidationId: '{your_trust_validation_id}'
                verificationType: dukcapil_full
                metadata: null
components:
  schemas:
    DukcapilDataFullV3Request:
      type: object
      required:
        - name
        - nik
        - date_of_birth
        - gender
        - place_of_birth
        - marital_status
        - job_type
        - address
        - province
        - city
        - district
        - subdistrict
        - rt
        - rw
        - mother_maiden_name
        - no_kk
        - selfie_image
        - trustFlowId
        - trustValidationId
      properties:
        name:
          type: string
          description: Full name of the individual to be verified.
        nik:
          type: string
          description: Indonesian National Identity Number (Nomor Induk Kependudukan).
        date_of_birth:
          type: string
          description: Date of birth of the individual in `YYYY-MM-DD` format.
        gender:
          type: string
          description: Gender of the individual (for example, Male or Female).
        place_of_birth:
          type: string
          description: Place of birth of the individual.
        marital_status:
          type: string
          description: Marital status (for example, Single, Married, Divorced).
        job_type:
          type: string
          description: Occupation or type of job.
        address:
          type: string
          description: Residential address of the individual.
        province:
          type: string
          description: Province of residence.
        city:
          type: string
          description: City of residence.
        district:
          type: string
          description: District or municipality.
        subdistrict:
          type: string
          description: Subdistrict or village.
        rt:
          type: string
          description: Neighborhood unit (Rukun Tetangga).
        rw:
          type: string
          description: Community unit (Rukun Warga).
        mother_maiden_name:
          type: string
          description: Mother's maiden name.
        no_kk:
          type: string
          description: Family card number (Nomor Kartu Keluarga).
        selfie_image:
          type: string
          description: Base64-encoded selfie image.
        trustFlowId:
          type: integer
          description: >-
            Trust flow identifier used to categorize or group requests for
            tracking or reporting.
        trustValidationId:
          type: string
          description: Trust validation identifier for the verification request.
    DukcapilDataFullV3Response:
      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
            success:
              type: boolean
            message:
              type: string
            data:
              type: object
              properties:
                nik:
                  type: boolean
                  nullable: true
                name:
                  type: boolean
                  nullable: true
                dateOfBirth:
                  type: boolean
                  nullable: true
                selfieImagePercentage:
                  nullable: true
                  oneOf:
                    - type: string
                    - type: number
                livenessResult:
                  nullable: true
                  oneOf:
                    - type: boolean
                    - type: string
                livenessFailMessage:
                  type: string
                  nullable: true
                noKk:
                  type: boolean
                  nullable: true
                motherMaidenName:
                  type: boolean
                  nullable: true
                placeOfBirth:
                  type: boolean
                  nullable: true
                address:
                  type: boolean
                  nullable: true
                gender:
                  type: boolean
                  nullable: true
                maritalStatus:
                  type: boolean
                  nullable: true
                jobType:
                  type: boolean
                  nullable: true
                province:
                  type: boolean
                  nullable: true
                city:
                  type: boolean
                  nullable: true
                district:
                  type: boolean
                  nullable: true
                subdistrict:
                  type: boolean
                  nullable: true
                rt:
                  type: boolean
                  nullable: true
                rw:
                  type: boolean
                  nullable: true
                uuid:
                  type: string
                url:
                  type: string
                  nullable: true
                reasonCode:
                  type: string
                  nullable: true
                errorMessage:
                  type: string
                  nullable: true
              additionalProperties: true
        verificationStatus:
          type: string
          description: >-
            Outcome of the verification (for example VERIFIED, REJECTED,
            REVIEW_NEEDED).
        verificationStatusCode:
          type: integer
        trustFlowId:
          type: integer
          description: Trust flow identifier.
        trustValidationId:
          type: string
        verificationType:
          type: string
          description: Verification type identifier (for example dukcapil_full).
        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.

````