Feel free to reach techsupport@surepass.io for any technical support or guidance.
Authorization
header as Bearer TOKEN
.https://sandbox.surepass.io
https://kyc-api.surepass.io
Header | Required | Description |
---|---|---|
Authorization | Yes | Bearer token for authentication. Format: Bearer {your_jwt_token} |
Content-Type | Yes | Must be set to application/json |
Parameter | Type | Required | Description |
---|---|---|---|
id_number | String | Yes | The Director Identification Number (DIN) to be verified |
{
"id_number": "0000000"
}
Parameter | Type | Description |
---|---|---|
data | Object | Contains the DIN verification details |
data.client_id | String | Unique identifier for the API request |
data.din_number | String | The DIN number that was verified |
data.father_name | String | Father's name of the DIN holder |
data.full_name | String | Full name of the DIN holder |
data.dob | String | Date of birth of the DIN holder in YYYY-MM-DD format |
data.nationality | String | Nationality code of the DIN holder (e.g., "IN" for India) |
data.present_address | String | Current residential address of the DIN holder |
data.permanent_address | String | Permanent address of the DIN holder |
data.email | String | Email address of the DIN holder |
data.pan_number | String | PAN (Permanent Account Number) of the DIN holder, if available |
data.companies_associated | Array | List of companies with which the director is associated |
data.status | String | Status of the DIN verification process |
status_code | Integer | HTTP status code of the response |
success | Boolean | Indicates if the API request was successful |
message | String | Additional information about the response (null if no message) |
message_code | String | Code indicating the type of message |
{
"data": {
"client_id": "corporate_din_hYzkWdzfBnNVooebzfgQ",
"din_number": "0000000",
"father_name": " CHANDWANI",
"full_name": " CHANDWANI",
"dob": "1964-03-14",
"nationality": "IN",
"present_address": "SONA MAHAL APT",
"permanent_address": "",
"email": "aaaa.abcd@gmail.com",
"pan_number": null,
"companies_associated": [],
"status": "success"
},
"status_code": 200,
"success": true,
"message": null,
"message_code": "success"
}
{
"data": null,
"status_code": 400,
"success": false,
"message": "Invalid DIN number provided",
"message_code": "invalid_din"
}
curl --location --request POST 'https://kyc-api.surepass.app/api/v1/corporate/din' \
--header 'Content-Type: application/json' \
--data-raw '{
"id_number": "{{din_number}}"
}'
{
"data": {
"client_id": "corporate_din_hYzkWdzfBnNVooebzfgQ",
"din_number": "0000000",
"father_name": " CHANDWANI",
"full_name": " CHANDWANI",
"dob": "1964-03-14",
"nationality": "IN",
"present_address": "SONA MAHAL APT",
"permanent_address": "",
"email": "aaaa.abcd@gmail.com",
"pan_number": null,
"companies_associated": [],
"status": "success"
},
"status_code": 200,
"success": true,
"message": null,
"message_code": "success"
}