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 (JWT format) |
Content-Type | Yes | Application/json |
Parameter | Type | Required | Description |
---|---|---|---|
membership_number | String | Yes | ICSI Membership number of the Company Secretary to be verified |
{
"membership_number": "F1234"
}
Parameter | Type | Description |
---|---|---|
data | Object | Contains the verification results |
data.client_id | String | Unique identifier for the verification request |
data.registration_number | String | ICSI Member Registration Number (if available) |
data.details | Object | Comprehensive details of the ICSI member |
data.details.name | String | Full name of the company secretary |
data.details.organization | String | Name of the organization/firm |
data.details.designation | String | Designation/title of the company secretary |
data.details.membership_number | String | Membership number of the company secretary |
data.details.cp_number | String | Certificate of Practice number |
data.details.address | String | Address of the company secretary |
data.details.city | String | City where the company secretary is located |
data.details.email | String | Email address of the company secretary |
data.details.mobile | String | Mobile number of the company secretary |
data.details.csbf_yn | String | Whether the CS is a member of CSBF (YES/NO) |
data.details.active_ecsin_no | String | Active ECSIN number (if applicable) |
status_code | Integer | HTTP status code of the response |
success | Boolean | Indicates if the API call was successful |
message | String | Additional information about the response (if any) |
message_code | String | Code indicating the status of the response |
{
"data": {
"client_id": "icsi_yEycCitddkvzTfEuuclt",
"registration_number": null,
"details": {
"name": "ABHIJIT KULKARNI",
"organization": "KULKARNI & ASSOCIATES",
"designation": "COMPANY SECRETARIES (*)",
"membership_number": "F1234",
"cp_number": "9045",
"address": "NEW SHREYA NAGAR,,Maharashtra,AURANGABAD,Chhatrapati Sambhajinagar,431005",
"city": "Sambhajinagar",
"email": "abcdef@yahoo.co.in",
"mobile": "9123456789",
"csbf_yn": "YES",
"active_ecsin_no": null
}
},
"status_code": 200,
"success": true,
"message": null,
"message_code": "success"
}
{
"data": null,
"status_code": 400,
"success": false,
"message": "Invalid ICSI membership number format",
"message_code": "invalid_input"
}
curl --location --request POST 'https://kyc-api.surepass.app/api/v1/corporate/icsi' \
--header 'Content-Type: application/json' \
--data-raw '{
"membership_number": "F1234"
}'
{
"data": {
"client_id": "icsi_yEycCitddkvzTfEuuclt",
"registration_number": null,
"details": {
"name": "ABHIJIT KULKARNI",
"organization": "KULKARNI & ASSOCIATES",
"designation": "COMPANY SECRETARIES (*)",
"membership_number": "F1234",
"cp_number": "9045",
"address": "NEW SHREYA NAGAR,,Maharashtra,AURANGABAD,Chhatrapati Sambhajinagar,431005",
"city": "Sambhajinagar",
"email": "abcdef@yahoo.co.in",
"mobile": "9123456789",
"csbf_yn": "YES",
"active_ecsin_no": null
}
},
"status_code": 200,
"success": true,
"message": null,
"message_code": "success"
}