Extend your software with TaxBandits IRS E-file API Integration

Skip to main content
Version: 1.7.1

GetPDF

Request the 1096 PDF using this endpoint. The request should have the Taxyear and TIN (EIN or SSN) of the Payer.

POST Form1096/GetPDF

Request Body

FieldTypeDescription
TaxYearstringTax Year you want to generate the Form 1096.
EINstringEIN of the Payer you are requesting the Form 1096.
SSNstringSSN of the Payer you are requesting the Form 1096.

Response Body

FieldTypeDescription
StatusCodenumberReturns the HTTP status codes like 200,300 etc.
StatusNamestringName of the status code.
StatusMessagestringDetailed status message.
AttachmentCountstringTotal number of Form 1096 pdf generated.
Attachment1096byte[]Byte array of Form 1096 pdf.
Errorsobject[]Shows detailed error information.
    CodestringReturns the validation error code.
    NamestringName of the validation error.
    MessagestringDescription of the validation error.
    TypestringType of validation error.

Request JSON

{
"TaxYear": "2018",
"EIN": "003333332",
"SSN": null
}

Response JSON

{
"StatusCode": 200,
"StatusName": "Ok",
"StatusMessage": "Successful API call",
"AttachmentCount": "1",
"Errors": null,
"Attachment1096": "JVBERi0xLjMKJcOHw6zCj8KiCjEgMCBvYmoKPDwvVHlwZSAvQ2F0YWxvZwovUGFnZXMgMiAwIFIKL0Fjcm9Gb3JtIDQgMCBSCi9NZXRhZGF0YSA3IDAgUgo+PgplbmRvYmoKCjIgMCBvYmoKPDwvVHlwZSAvUGFnZXMKL0tpZHM"
}