# Form1096

# 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
1

Request Body

Field Type Description
TaxYear string Tax Year you want to generate the Form 1096.
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": "2018",
  "EIN": "003333332",
  "SSN": null
}
1
2
3
4
5

Response JSON

{
  "StatusCode": 200,
  "StatusName": "Ok",
  "StatusMessage": "Successful API call",
  "AttachmentCount": "1",
  "Errors": null,
  "Attachment1096": "JVBERi0xLjMKJcOHw6zCj8KiCjEgMCBvYmoKPDwvVHlwZSAvQ2F0YWxvZwovUGFnZXMgMiAwIFIKL0Fjcm9Gb3JtIDQgMCBSCi9NZXRhZGF0YSA3IDAgUgo+PgplbmRvYmoKCjIgMCBvYmoKPDwvVHlwZSAvUGFnZXMKL0tpZHM"
}
1
2
3
4
5
6
7
8