Classify Form16
OCR API to classify Form 16 document in to "Part A", "Part B" and "Form 16"
Overview
This API takes in Form 16 PDF as a multi-part file and converts into JSON format.
Problem
- Taxpayer has a Form 16 PDF which cannot be directly consumed for ITR calculation hence PDF must be parsed to be consumed
- Employer receives Form 16 in Part A and Part B from TRACES. It is up to the employer to provide a consolidated Form 16 or in parts A and B.
Solution
- The Form 16 API helps the Taxpayer to identify whether the PDF is Part A, Part B or the complete Form 16.
Endpoint
HTTP Method | Resource |
---|---|
GET | form-16/pdf/classify |
Request
Body
Param | Type | Description | Example |
---|---|---|---|
form16 | pdf | Upload file as a Multipart file | Form 16 |
Query Params
Param | Type | Description |
---|---|---|
string | email id | |
password | string | Password of encrypted Form 16 |
Sample Payload
Response
Param | Type | Description | Example |
---|---|---|---|
form16 | string | Classifies the type of Form 16 document | Part A, Part B and Form 16 |
Sample JSON
{
"type": "Part B"
}
Updated 10 days ago