API Reference

Sample Response

The response of the API will return the verification URL, in case of success response.

Sample Response : Success

{
    "is_success": true,
    "data": {
         "uuid": "<UUID of the AADHAAR XML request.>",
        "verification_url": "<Verification URL which customer needs to open and enter the details.>"
    }
}

Sample Response : Failure
HTTP Response Status Code - 400

{
    "is_success": false,
    "error": {
        "message": "Invalid request data.",
        "code": "invalid_request_data",
        "detail": {"pan_number": ["Please provide a valid PAN."]}
    }
}