GetPDF
Request a PDF download of Form W3 using this endpoint.
POST FormW3/GetPDF
Request Body
Field | Type | Description |
---|---|---|
TaxYear | string | Tax Year you want to generate the Form W3. Allowed values: "2022","2023" |
EIN | string | EIN of the Business. |
Request JSON
{
"TaxYear": "2023",
"EIN": "003333332"
}
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 W3 pdf generated. |
AttachmentW3 | byte[] | Byte array of Form W3 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. |
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"
}