Skip to main content
Version: 1.7.3

GetPDF

GetPDF

Request a PDF download of Form W3 using this endpoint.

POST FormW3/GetPDF 
Run in Postman

Request Body

FieldTypeDescription
TaxYearstringTax Year you want to generate the Form W3.
Allowed values: "2022","2023"
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": "2023",
"EIN": "003333332"
}

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,
"AttachmentW3": "JVBERi0xLjMKJcOHw6zCj8KiCjEgMCBvYmoKPDwvVHlwZSAvQ2F0YWxvZwovUGFnZXMgMiAwIFIKL0Fjcm9Gb3JtIDQgMCBSCi9NZXRhZGF0YSA3IDAgUgo+PgplbmRvYmoKCjIgMCBvYmoKPDwvVHlwZSAvUGFnZXMKL0tpZHM"
}