GetPDF
GetPDF
Request the 1096 PDF using this endpoint. The request should have the Taxyear and TIN (EIN or SSN) of the Payer.
POSTForm1096/GetPDF Request Body
| Field | Type | Description |
|---|---|---|
| TaxYear | string | Tax Year you want to generate the Form 1096. Allowed values: "2022","2023" |
| EIN | string | EIN of the Payer you are requesting the Form 1096. |
| SSN | string | SSN of the Payer you are requesting the Form 1096. |
Response Body
| Field | Type | Description |
|---|---|---|
| StatusCode | number | Returns the HTTP status codes like 200,300 etc. |
| StatusName | string | Name of the status code. |
| StatusMessage | string | Detailed status message. |
| AttachmentCount | string | Total number of Form 1096 pdf generated. |
| Attachment1096 | byte[] | Byte array of Form 1096 pdf. |
| Errors | object[] | Shows detailed error information. |
| Code | string | Returns the validation error code. |
| Name | string | Name of the validation error. |
| Message | string | Description of the validation error. |
| Type | string | Type of validation error. |
Request JSON
{
"TaxYear": "2023",
"EIN": "003333332",
"SSN": null
}
Response JSON
Success Response - This is a sample response for successful API requests.
{
"StatusCode": 200,
"StatusName": "Ok",
"StatusMessage": "Successful API call",
"AttachmentCount": "1",
"Errors": null,
"Attachment1096": "JVBERi0xLjMKJcOHw6zCj8KiCjEgMCBvYmoKPDwvVHlwZSAvQ2F0YWxvZwovUGFnZXMgMiAwIFIKL0Fjcm9Gb3JtIDQgMCBSCi9NZXRhZGF0YSA3IDAgUgo+PgplbmRvYmoKCjIgMCBvYmoKPDwvVHlwZSAvUGFnZXMKL0tpZHM"
}