Feel free to reach techsupport@surepass.io for any technical support or guidance.
Authorization header as Bearer TOKEN.https://sandbox.surepass.apphttps://kyc-api.surepass.app| Header | Required | Description |
|---|---|---|
| Authorization | Yes | JWT 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 | Corporate Identity Number (CIN) of the company. Format: A 21-character alphanumeric code assigned by MCA (e.g., U12345MH1234PTC123456) |
{
"id_number": "U12345MH1234PTC123456"
}| Parameter | Type | Description |
|---|---|---|
| data | object | Container object for the response data |
| data.client_id | string | Unique identifier for the client request |
| data.company_id | string | The CIN of the company that was queried |
| data.results | array | Array of signatory/director objects containing detailed information |
| data.results[].din_dpin_pan | string | Director Identification Number (DIN), DPIN, or PAN of the signatory |
| data.results[].name | string | Full name of the director/signatory |
| data.results[].designation | string | Official designation of the signatory (e.g., Director, Managing Director) |
| data.results[].date_of_appointment | string | Date when the director was appointed (format: YYYY-MM-DD) |
| data.results[].whether_dsc_registered | string | Indicates whether a Digital Signature Certificate is registered |
| data.results[].expiry_date_of_dsc | string/null | Expiry date of the Digital Signature Certificate if registered, null otherwise |
| data.results[].surrendered_din | string | Indicates if the DIN has been surrendered (empty if not surrendered) |
| status_code | integer | HTTP status code of the response |
| success | boolean | Indicates whether the API request was successful |
| message | string/null | Additional message or error description (null on success) |
| message_code | string | Status message code (e.g., "success") |
{
"data": {
"client_id": "mca_signatory_MarimHOxMfLlcmRnTvkc",
"company_id": "U12345MH1234PTC123456",
"results": [
{
"din_dpin_pan": "01234567",
"name": "SHIRHATTI",
"designation": "Director",
"date_of_appointment": "2020-02-26",
"whether_dsc_registered": "",
"expiry_date_of_dsc": null,
"surrendered_din": ""
}
]
},
"status_code": 200,
"success": true,
"message": null,
"message_code": "success"
}{
"data": null,
"status_code": 400,
"success": false,
"message": "Invalid CIN format or CIN not found",
"message_code": "invalid_input"
}curl --location --request POST 'https://kyc-api.surepass.app/api/v1/corporate/signatory-details' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"id_number": "U12345MH1234PTC123456"
}'{
"data": {
"client_id": "mca_signatory_MarimHOxMfLlcmRnTvkc",
"company_id": "U12345MH1234PTC123456",
"results": [
{
"din_dpin_pan": "01234567",
"name": "SHIRHATTI",
"designation": "Director",
"date_of_appointment": "2020-02-26",
"whether_dsc_registered": "",
"expiry_date_of_dsc": null,
"surrendered_din": ""
}
]
},
"status_code": 200,
"success": true,
"message": null,
"message_code": "success"
}