C-KYC
Search
C-KYC
Search
POST
/
api
/
v1
/
in
/
ckyc
/
search
curl --request POST \
--url https://infopass.in/api/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
Basic authentication header of the form Basic <encoded-value>
, where <encoded-value>
is the base64-encoded string username:password
.
Body
application/json · object
Response
200
application/json
OK
The response is of type object
.
curl --request POST \
--url https://infopass.in/api/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"
}
}