v1

latestOpenAPI 3.0.22026-07-2432112226.7 KB
ID Verification Service

ID Verification Service

The ID Verification service validate the personal identity of your user in a quick and efficient way to protect your business from potential fraud. We provide you a simple API that can be quickly tested and integrated. Please check the details below on the components of our API.

post/data-verification/id-verification/verify

Headers

App-IDstring required
API-Keystring required

Request body

nikstring required

16 digit of Nomor Induk Kependudukan on Kartu Tanda Penduduk (KTP).

namestring required

Full name based on KTP.

birth_datestring required

Date of birth based on KTP.

reference_idstring

This reference_id can be used to indicate your company’s transaction (must be unique per transaction).

Example request

{
  "nik": "3172010xxxxxxxxx",
  "name": "John Doe",
  "birth_date": "10-10-2001",
  "reference_id": "Test-001"
}

Response

Successful Response

messagestring required

Shows message of the response

Example response

{
  "message": "ID Verification check has been done",
  "data": {
    "id": "8e31a91c-7437-4ed1-b086-06cbe247d6e7",
    "nik": true,
    "name": true,
    "birth_date": true,
    "reference_id": "Ref-My-IDV-Transaction-1"
  }
}