Skip to main content
Version: 1.7.3

GetPDF

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

POST FormW3C/GetPDF 
Run in Postman

Request Body

FieldTypeDescription
TaxYearstringTax Year you want to generate the Form W-3C.
EINstringEIN of the Business.

Request JSON

{
"TaxYear": "2020",
"EIN": "003333332"
}

Response Body

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

Response JSON

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