API allows user to send a file i.e. the image for aadhaar card and sends the response as a JSON object.
HTTP Method | Endpoint |
---|---|
post | https://api.itaxeasy.com/admin/login |
Name | Type | Required | Description |
---|---|---|---|
file | String | Yes | The File i.e. image for Aadhaar card is required to extract and get any proper response. |
Name | Type | Required | Description |
---|---|---|---|
yearOfBirth | String | Yes | The birthdate field extracted from the image.. |
gender | String | Yes | The gender field extracted from the image.. |
aadhaarNumber | String | Yes | The Aadhaar card number field extracted from the image.. |
name | String | Yes | The name field extracted from the image.. |
{
"status": "success",
"data": {
"yearOfBirth": "05/01/1989",
"gender": "male",
"aadhaarNumber": "400978972174",
"name": "Pramod Kumar Yadav"
}
}