# FormW3C

# GetPDF

Request W-3C (Transmittal of Corrected Wage and Tax Statements) PDF download using this endpoint.

POST FormW3C/GetPDF
1

Request Body

Field Type Description
TaxYear string Tax Year you want to generate the Form W-3C.
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 W-3C pdf generated.
AttachmentW3C byte[] Byte array of Form W-3C 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": "2020",
 "EIN": "003333332"
}
1
2
3
4

Response JSON

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