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 |
---|---|---|---|
id_number | String | Yes | Shop Establishment License Number |
state_code | String | Yes | State Code (see supported states below) |
State | Code |
---|---|
Haryana | HR |
Rajasthan | RJ |
Karnataka | KR |
Delhi | DL |
Jammu & Kashmir | JK |
Telangana | TS |
Uttarakhand | UK |
Uttar Pradesh | UP |
West Bengal | WB |
{
"id_number": "91083640",
"state_code": "RJ"
}
Parameter | Type | Description |
---|---|---|
data | Object | Container for all business details |
data.client_id | String | Unique Client ID |
data.se_number | String | Shop Establishment License Number |
data.state_code | String | State Code |
data.state_name | String | State Name |
data.business_name | String | Business Name |
data.address | String | Full Address of Business |
data.user_mobile_number | String | Owner Mobile Number |
data.registration_number | String | Shop Establishment Registration Number |
data.registration_date | String | Shop Establishment Registration Date (YYYY-MM-DD) |
data.category | String | Business Category |
data.certificate_number | String | Business Certificate Number |
data.document_link | String | Available Documents Link (if any) |
data.date_of_commencement | String | Business Commencement Date (YYYY-MM-DD) |
data.valid_upto | String | Certificate Expiry Date (YYYY-MM-DD) |
data.acknowledgement_number | String | Acknowledgement Number |
data.email_id | String | Owner Email ID |
data.website_url | String | Business Website URL |
data.name_of_occupier | String | Owner Name |
data.father_name_of_occupier | String | Owner Father Name |
data.manager_name | String | Business Manager Name |
data.manager_father_name | String | Manager Father Name |
data.male_workers | String | Total Male Workers in Business |
data.female_workers | String | Total Female Workers in Business |
data.young_workers | String | Total Young Workers in Business |
data.total_workers | String | Total Workers in Business |
data.family_members_working | String | Total Family Members Working in Business |
data.confidential_employers_capacity | String | Confidential Employee Capacity |
data.fax | String | Business FAX ID |
status_code | Integer | HTTP Status Code |
success | Boolean | Indicates if the request was successful |
message | String | Response message |
message_code | String | Response message code |
{
"data": {
"client_id": "se_wHggjHpukklcZggqNuqs",
"se_number": "20100129",
"state_code": "DL",
"state_name": "Delhi",
"business_name": "Mohd Fruit Patri",
"address": "0000 Gali Razia Begum Hauz Qazi Delhi Delhi",
"user_mobile_number": "9650400000 23233843",
"registration_number": "20100129",
"registration_date": "2010-04-02",
"category": "Fruit & Vegetables(Fresh, Processed & Dry)",
"certificate_number": "20100129",
"document_link": null,
"date_of_commencement": "1970-12-30",
"valid_upto": null,
"acknowledgement_number": null,
"email_id": "",
"website_url": "",
"name_of_occupier": "Mohd",
"father_name_of_occupier": "Chhutan",
"manager_name": "Mohd",
"manager_father_name": "Chhutan",
"male_workers": "1",
"female_workers": "0",
"young_workers": "0",
"total_workers": "1",
"family_members_working": "0",
"confidential_employers_capacity": "0",
"fax": ""
},
"status_code": 200,
"success": true,
"message": "Success",
"message_code": "success"
}
{
"status_code": 400,
"success": false,
"message": "Invalid license number provided",
"message_code": "invalid_license"
}
curl --location --request POST 'https://kyc-api.surepass.app/api/v1/se/' \
--header 'Content-Type: application/json' \
--data-raw '{
"id_number": "91083640",
"state_code": "RJ"
}'
{
"data": {
"client_id": "se_wHggjHpukklcZggqNuqs",
"se_number": "20100129",
"state_code": "DL",
"state_name": "Delhi",
"business_name": "Mohd Fruit Patri",
"address": "0000 Gali Razia Begum Hauz Qazi Delhi Delhi",
"user_mobile_number": "9650400000 23233843",
"registration_number": "20100129",
"registration_date": "2010-04-02",
"category": "Fruit & Vegetables(Fresh, Processed & Dry)",
"certificate_number": "20100129",
"document_link": null,
"date_of_commencement": "1970-12-30",
"valid_upto": null,
"acknowledgement_number": null,
"email_id": "",
"website_url": "",
"name_of_occupier": "Mohd",
"father_name_of_occupier": "Chhutan",
"manager_name": "Mohd",
"manager_father_name": "Chhutan",
"male_workers": "1",
"female_workers": "0",
"young_workers": "0",
"total_workers": "1",
"family_members_working": "0",
"confidential_employers_capacity": "0",
"fax": ""
},
"status_code": 200,
"success": true,
"message": "Success",
"message_code": "success"
}