Skip to main content
POST
/
v1
/
in
/
ckyc
/
search
Search
curl --request POST \
  --url https://base_url/v1/in/ckyc/search \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "id": "ABCDE1234A",
  "documentType": "PAN"
}
'
{
  "code": "0x0200",
  "message": "Record not found.",
  "status": "SUCCESS",
  "data": {
    "clientId": "ckyc_gwtSCuwoKfucbNnETsDa",
    "id": "XXXXXXXXX",
    "ckycId": "123456789",
    "fullName": "Mr DUMMAY NAME",
    "age": "24",
    "fathersName": "Mr FATHER NAME",
    "kycDate": "2020-04-11",
    "updatedDate": "2020-04-11"
  }
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Body

application/json

The body is of type object.

Response

OK

The response is of type object.