# FormW3

# GetPDF

Request a PDF download of Form W3 using this endpoint.

POST FormW3/GetPDF
1

Request Body

Field Type Description
TaxYear string Tax Year you want to generate the Form W3.
EIN string EIN of the Business.

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.

Request JSON

{
 "TaxYear": "2018",
 "EIN": "003333332"
}
1
2
3
4

Response JSON

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