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 | ICAI membership number of the chartered accountant to be verified |
{
"membership_number": "012345"
}
Parameter | Type | Description |
---|---|---|
data | Object | Container for the verification result data |
data.client_id | String | Unique identifier for the verification request |
data.membership_number | String | ICAI membership number that was verified |
data.details | Object | Detailed information about the ICAI member |
data.details.membership_no | String | ICAI membership number |
data.details.member_status | String | Current status of the membership (Active/Inactive) |
data.details.cop_status | String | Status of Certificate of Practice |
data.details.associate_or_fellow | String | Level of ICAI membership |
data.details.member_name | String | Full name of the ICAI member |
data.details.gender | String | Gender of the member |
data.details.professional_address | String | Professional address of the member |
data.details.professional_region | String | Regional location of the member's practice |
status_code | Integer | HTTP status code of the response |
success | Boolean | Indicates if the verification was successful |
message | String | Additional information about the response (null if successful) |
message_code | String | Code indicating the status of the response |
{
"data": {
"client_id": "icai_HaAumcNfMtwcILLtmaEg",
"membership_number": "012345",
"details": {
"membership_no": "012345",
"member_status": "Active",
"cop_status": "No COP",
"associate_or_fellow": "",
"member_name": "G.CHOPRA",
"gender": "MALE",
"professional_address": "KOLKATA - 700001, WEST BENGAL, INDIA",
"professional_region": "EAST"
}
},
"status_code": 200,
"success": true,
"message": null,
"message_code": "success"
}
{
"data": null,
"status_code": 400,
"success": false,
"message": "Invalid membership number provided",
"message_code": "invalid_input"
}
curl --location --request POST 'https://kyc-api.surepass.app/api/v1/corporate/icai' \
--header 'Authorization: Bearer TOKEN' \
--header 'Content-Type: application/json' \
--data-raw '{
"membership_number": "01234"
}'
{
"data": {
"client_id": "icai_HaAumcNfMtwcILLtmaEg",
"membership_number": "012345",
"details": {
"membership_no": "012345",
"member_status": "Active",
"cop_status": "No COP",
"associate_or_fellow": "",
"member_name": "G.CHOPRA",
"gender": "MALE",
"professional_address": "KOLKATA - 700001, WEST BENGAL, INDIA",
"professional_region": "EAST"
}
},
"status_code": 200,
"success": true,
"message": null,
"message_code": "success"
}