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