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 |
---|---|---|---|
mobile_number | String | Yes | The mobile number to query for associated MSME registrations |
{
"mobile_number": "9560943155"
}
Parameter | Type | Description |
---|---|---|
data | Object | Contains the response data |
data.client_id | String | Unique identifier for the request |
data.mobile_number | String | The mobile number that was queried |
data.details | Array | List of MSME registrations associated with the mobile number |
data.details[].msme_number | String | MSME registration number |
data.details[].enterprise_name | String | Registered name of the enterprise |
status_code | Integer | HTTP status code of the response |
success | Boolean | Indicates if the request was successful |
message | String or null | Additional message (if any) |
message_code | String | Code indicating the status of the request |
{
"data": {
"client_id": "mobile_to_msme_bxfRtxlpyxEbqnruJGrW",
"mobile_number": "9560943155",
"details": [
{
"msme_number": "UDYAM-DL-04-123456",
"enterprise_name": "M/S XYZ CH LLP"
},
{
"msme_number": "UDYAM-DL-04-123456",
"enterprise_name": "M/S XYZ"
}
]
},
"status_code": 200,
"success": true,
"message": null,
"message_code": "success"
}
{
"status_code": 400,
"success": false,
"message": "Invalid mobile number format",
"message_code": "invalid_input"
}
curl --location --request POST 'https://kyc-api.surepass.app/api/v1/corporate/mobile-to-msme' \
--header 'Content-Type: application/json' \
--data-raw '{
"mobile_number": "9560943155"
}'
{
"data": {
"client_id": "mobile_to_msme_bxfRtxlpyxEbqnruJGrW",
"mobile_number": "9560943155",
"details": [
{
"msme_number": "UDYAM-DL-04-123456",
"enterprise_name": "M/S XYZ CH LLP"
},
{
"msme_number": "UDYAM-DL-04-123456",
"enterprise_name": "M/S XYZ"
}
]
},
"status_code": 200,
"success": true,
"message": null,
"message_code": "success"
}