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



## OpenAPI

````yaml api-reference-legacy/openapi.json POST /api/v2/verification/dukcapilfull
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/dukcapilfull:
    post:
      tags:
        - Government Data
      summary: Dukcapil Data Full
      description: Verify Indonesia Dukcapil data with full details.
      operationId: dukcapilDataFullVerification
      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/DukcapilDataFullRequest'
            examples:
              default:
                summary: Dukcapil data full verification request
                value:
                  address: <string>
                  city: <string>
                  date_of_birth: '1990-01-01'
                  district: <string>
                  gender: <string>
                  job_type: <string>
                  marital_status: <string>
                  mother_maiden_name: <string>
                  name: <string>
                  nik: <string>
                  no_kk: <string>
                  place_of_birth: <string>
                  province: <string>
                  rt: <string>
                  rw: <string>
                  subdistrict: <string>
                  selfie_image: data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD...
                  template_id: '{your_trust_flow_id}'
                  verification_id: '{your_created_verification_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/DukcapilDataFullResponse'
              example:
                status: VERIFIED
                message: OK
                result:
                  success: true
                  message: Berhasil
                  data:
                    nik: true
                    name: true
                    date_of_birth: true
                    selfie_image_percentage: '99.8'
                    liveness_result: null
                    liveness_fail_message: ''
                    no_kk: null
                    mother_maiden_name: null
                    place_of_birth: true
                    address: true
                    gender: true
                    marital_status: true
                    job_type: true
                    province: true
                    city: true
                    district: true
                    subdistrict: true
                    rt: true
                    rw: true
                    uuid: 76367de2-1b77-4eb7-9bc3-3263b62ebf2f
                    url: ''
                    reason_code: '0'
                    error_message: null
                risk_rating: LOW
                api_request_status: 1
components:
  schemas:
    DukcapilDataFullRequest:
      type: object
      required:
        - date_of_birth
        - gender
        - name
        - nik
        - template_id
        - verification_id
      properties:
        address:
          type: string
          description: Residential address of the individual.
        city:
          type: string
          description: City of residence.
        date_of_birth:
          type: string
          description: Date of birth of the individual.
        district:
          type: string
          description: District or municipality.
        gender:
          type: string
          description: Gender of the individual (for example, Male or Female).
        job_type:
          type: string
          description: Occupation or type of job.
        marital_status:
          type: string
          description: Marital status (for example, Single, Married, Divorced).
        mother_maiden_name:
          type: string
          description: Mother's maiden name.
        name:
          type: string
          description: Full name of the individual to be verified.
        nik:
          type: string
          description: Indonesian National Identity Number (Nomor Induk Kependudukan).
        no_kk:
          type: string
          description: Family card number (Nomor Kartu Keluarga).
        place_of_birth:
          type: string
          description: Place of birth of the individual.
        province:
          type: string
          description: Province of residence.
        rt:
          type: string
          description: Neighborhood unit (Rukun Tetangga).
        rw:
          type: string
          description: Community unit (Rukun Warga).
        subdistrict:
          type: string
          description: Subdistrict or village.
        selfie_image:
          type: string
          description: Base64-encoded selfie image.
        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.
    DukcapilDataFullResponse:
      type: object
      properties:
        status:
          description: Outcome flag; may be boolean or string (for example REJECTED).
          oneOf:
            - type: boolean
            - type: string
        message:
          type: string
        result:
          type: object
          properties:
            success:
              type: boolean
            message:
              type: string
            data:
              type: object
              additionalProperties: true
        risk_rating:
          type: string
          description: Risk rating when returned by the API (for example HIGH).
        api_request_status:
          type: integer
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Use `Bearer {your_api_token}` in the Authorization header.

````