Extend your software with TaxBandits IRS E-file API Integration

Skip to main content
Version: 1.7.1

GetPDF

Request a PDF download of Form W3 using this endpoint.

POST FormW3/GetPDF

Request Body

FieldTypeDescription
TaxYearstringTax Year you want to generate the Form W3.
EINstringEIN of the Business.

Response Body

FieldTypeDescription
StatusCodenumberReturns the HTTP status codes like 200,300 etc.
StatusNamestringName of the status code.
StatusMessagestringDetailed status message.
AttachmentCountstringTotal number of Form W3 pdf generated.
AttachmentW3byte[]Byte array of Form W3 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"
}

Response JSON

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