Skip to main content
Version: 1.7.0

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 
Run in Postman

Request Body

FieldTypeDescription
TaxYearstringTax Year you want to generate the Form 1096.
Allowed values: "2021"
EINstringEIN of the Payer you are requesting the Form 1096.
SSNstringSSN of the Payer you are requesting the Form 1096.

Request JSON

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

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.

Response JSON

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