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 | Bearer token for API authentication. Format: Bearer YOUR_JWT_TOKEN |
| Content-Type | Yes | Must be set to application/json |
| Parameter | Type | Required | Description |
|---|---|---|---|
| id_number | string | Yes | The Udyog Aadhaar (Udyam) registration number to verify. Format: UDYAM-XX-##-#######, where XX is state code, ## is district code, and ####### is a unique identifier |
| get_certificate | boolean | No | Set to true to receive the Udyog Aadhaar certificate URL in the response. Default: false |
| webhook_url | string | No | Your callback URL where the verification results will be sent asynchronously. If not provided, you'll need to poll the status using the returned client_id |
{
"id_number": "UDYAM-TN-03-0001234",
"get_certificate": true,
"webhook_url": "https://your-domain.com/webhook/udyog-aadhaar"
}| Parameter | Type | Description |
|---|---|---|
| data | object | Contains the verification request details |
| data.client_id | string | Unique identifier for this verification request. Use this to check status or retrieve results |
| data.status | string | Current status of the verification request. Initially returns "pending" |
| status_code | integer | HTTP status code of the response |
| success | boolean | Indicates whether the API request was successful |
| message | string | Human-readable message describing the result |
| message_code | string | Machine-readable code for the message |
{
"data": {
"client_id": "udyog_aadhaar_GaopvJdtrbTbMgFVoFDK",
"status": "pending"
},
"status_code": 200,
"success": true,
"message": "Success",
"message_code": "success"
}{
"status_code": 401,
"success": false,
"message": "Unauthorized access. Invalid or expired token",
"message_code": "unauthorized"
}curl --location --request POST 'https://kyc-api.surepass.app/api/v1/corporate/udyog-aadhaar/initialize' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"id_number": "UDYAM-TN-03-0001234"
}'{
"data": {
"client_id": "udyog_aadhaar_GaopvJdtrbTbMgFVoFDK",
"status": "pending"
},
"status_code": 200,
"success": true,
"message": "Success",
"message_code": "success"
}