UAN Basic
The UAN (Universal Account Number) Basic API is a specialized tool designed to facilitate seamless access to basic payment features associated with UANs.
uan_basic
POST
https://secctrl.tutelar.io/api/v1/kyc/banking/uan_basic
Post parameters description is given below,
1) Search By UAN Number
uan_number
String
Yes
-
UAN Number
employee_name
String
No
-
Employee Name
employer_name
String
No
If employer_name is provided, then employee_name is mandatory
Employer Name
2) Search By Lookups
mobile_number
String
Yes ( Conditional Mandatory )
If pan_number is provided mobile_number is not mandatory
UAN Number
pan_number
String
Yes ( Conditional Mandatory )
If mobile_number is provided pan_number is not mandatory
Pan Number
date_of_birth
String
No
If date_of_birth is provided, then employee_name is mandatory
Date of birth - format should be YYYY-MM-DD
employee_name
String
No
-
Employee Name
employer_name
String
No
If employer_name is provided, then employee_name is mandatory
Employer Name
Sample Post Parameters
{
"uan_number": "100782123453",
"employee_name": "Subin Balachandran",
"employer_name": "Tutelar Solutions Private Limited"
}
{
"success": true,
"code": 200,
"message": "The request has been successfully completed.",
"reference_id": "d0abd918-a170-4294-a514-11e9dc6f0cda",
"status": "completed",
"result": {
"summary": {
"recent_employer_data": {
"member_id": "TBTAM24160940000012345",
"establishment_id": "TBTAM2416090000",
"date_of_exit": "2025-04-03",
"date_of_joining": "2025-04-03",
"establishment_name": "VIVEKA RISK MANAGEMENT SERVICES PRIVATE LIMITED",
"employer_confidence_score": null,
"matching_uan": "10078218****"
},
"matching_uan": "100782123453",
"is_employed": false,
"employee_name_match": null,
"employer_name_match": null,
"uan_count": 2,
"date_of_exit_marked": true
},
"uan_details": [
{
"uan_number": "100782123453",
"basic_details": {
"gender": "MALE",
"date_of_birth": "1991-09-07",
"employee_confidence_score": null,
"name": "Subin Balachandran",
"mobile": "",
"aadhaar_verification_status": false
},
"employment_details": {
"member_id": "TBTAM24160940000012345",
"establishment_id": "TBTAM2416092345",
"date_of_exit": "2025-04-03",
"date_of_joining": "2025-04-03",
"leave_reason": "",
"establishment_name": "VIVEKA RISK MANAGEMENT SERVICES PRIVATE LIMITED",
"employer_confidence_score": null
}
},
{
"uan_number": "100782123465",
"basic_details": {
"gender": "MALE",
"date_of_birth": "1991-09-07",
"employee_confidence_score": null,
"name": "Subin Balachandran",
"mobile": "",
"aadhaar_verification_status": false
},
"employment_details": {
"member_id": "TBTAM00496940000127524",
"establishment_id": "TBTAM0049694000",
"date_of_exit": "2016-06-02",
"date_of_joining": "2016-02-22",
"leave_reason": "",
"establishment_name": "SUTHERLAND GLOBAL SERVICES P LTD",
"employer_confidence_score": null
}
}
]
},
"requested_at": "2025-10-07T07:56:39.001Z",
"completed_at": "2025-10-07T07:56:39.083Z"
}
Check Document Status
Get document details
This Get details API using to fetch the latest updated response when the above API gave the status as in-progress by using the reference_id
GET
https://secctrl.tutelar.io/api/v1/kyc/banking/uan_basic
Query parameters description is given below,
reference_id
String
Yes
Document reference id
{
"success": true,
"code": 200,
"message": "The request has been successfully completed.",
"reference_id": "d0abd918-a170-4294-a514-11e9dc6f0cda",
"status": "completed",
"result": {
"summary": {
"recent_employer_data": {
"member_id": "TBTAM24160940000012345",
"establishment_id": "TBTAM2416090000",
"date_of_exit": "2025-04-03",
"date_of_joining": "2025-04-03",
"establishment_name": "VIVEKA RISK MANAGEMENT SERVICES PRIVATE LIMITED",
"employer_confidence_score": null,
"matching_uan": "10078218****"
},
"matching_uan": "100782123453",
"is_employed": false,
"employee_name_match": null,
"employer_name_match": null,
"uan_count": 2,
"date_of_exit_marked": true
},
"uan_details": [
{
"uan_number": "100782123453",
"basic_details": {
"gender": "MALE",
"date_of_birth": "1991-09-07",
"employee_confidence_score": null,
"name": "Subin Balachandran",
"mobile": "",
"aadhaar_verification_status": false
},
"employment_details": {
"member_id": "TBTAM24160940000012345",
"establishment_id": "TBTAM2416092345",
"date_of_exit": "2025-04-03",
"date_of_joining": "2025-04-03",
"leave_reason": "",
"establishment_name": "VIVEKA RISK MANAGEMENT SERVICES PRIVATE LIMITED",
"employer_confidence_score": null
}
},
{
"uan_number": "100782123465",
"basic_details": {
"gender": "MALE",
"date_of_birth": "1991-09-07",
"employee_confidence_score": null,
"name": "Subin Balachandran",
"mobile": "",
"aadhaar_verification_status": false
},
"employment_details": {
"member_id": "TBTAM00496940000127524",
"establishment_id": "TBTAM0049694000",
"date_of_exit": "2016-06-02",
"date_of_joining": "2016-02-22",
"leave_reason": "",
"establishment_name": "SUTHERLAND GLOBAL SERVICES P LTD",
"employer_confidence_score": null
}
}
]
},
"requested_at": "2025-10-07T07:56:39.001Z",
"completed_at": "2025-10-07T07:56:39.083Z"
}
Last updated