UAN Verification
UAN is Universal Account Number for employee
API Integration
UAN verification can be performed using the Verify UAN API
Request
{
"uan": "XXXXXX"
}
Response
If the UAN is valid the response will be of the following format.
{
"code": 0,
"message": "Success",
"data": {
"employmentData": [
{
"name": "XXXX AZEEM",
"establishmentName": "XXXXX SERVICES LTD",
"memberId": "XXXXXX",
"dateOfJoining": "03-XXXX",
"dateOfExit": "09-XXXX"
},
{
"name": "SHAIK AZEEM",
"establishmentName": "XXXX XXXX XXXX PRIVATE LIMITED",
"memberId": "XXXXXX",
"dateOfJoining": "01-XXXX",
"dateOfExit": "03-XXXX"
}
]
}
}
If the UAN is invalid the response will be of the following format.
{
"code": 0,
"message": "Success",
"data": {
"employmentData": []
}
}