Feel free to reach techsupport@surepass.io for any technical support or guidance.
Authorization header as Bearer TOKEN.https://sandbox.surepass.iohttps://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 associated with UAN accounts to be retrieved |
{
"mobile_number": "8191812345"
}| Parameter | Type | Description |
|---|---|---|
| data | Object | Contains the response data |
| data.pf_uan | Array | List of UAN numbers associated with the provided mobile number |
| data.client_id | String | Unique identifier for the client making the request |
| status_code | Integer | HTTP status code of the response |
| success | Boolean | Indicates whether the request was successful |
| message | String or null | Additional information about the response (null if successful) |
| message_code | String | Code indicating the status of the request |
{
"data": {
"pf_uan": [
"100189512345",
"100979312345"
],
"client_id": "income_uan_lookup_VkThahxarFLEHFCabSPt"
},
"status_code": 200,
"success": true,
"message": null,
"message_code": "success"
}{
"data": null,
"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/income/epfo/find-uan-list' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"mobile_number": "8191812345"
}'{
"data": {
"pf_uan": [
"100189512345",
"100979312345"
],
"client_id": "income_uan_lookup_VkThahxarFLEHFCabSPt"
},
"status_code": 200,
"success": true,
"message": null,
"message_code": "success"
}