Skip to main content
Version: 1.7.3

GetPDF

Request the 1042-T PDF using this endpoint. The request should have the Taxyear and TIN (EIN) of the Payer.

POST Form1042T/GetPDF 
Run in Postman

Request Body

FieldTypeDescription
TaxYearStringTax Year you want to generate the Form 1042-T.
Allowed values: "2022", "2023"
EINStringEIN of the Payer you are requesting the Form 1042-S.

Request JSON

{
"TaxYear": "2023",
"EIN": "56-4408002"
}

Response Body

FieldTypeDescription
StatusCodenumberReturns the HTTP status codes like 200,300 etc.
StatusNamestringName of the status code.
StatusMessagestringDetailed status message.
PdfAttachmentCountstringTotal number of Form 1042-T pdf generated.
Errorsobject[]Shows detailed error information.
    CodestringReturns the validation error code.
    NamestringName of the validation error.
    MessagestringDescription of the validation error.
    TypestringType of validation error.
Form1042TPdfPathstringReturns the PDF path of generated Form 1042-T.

Response JSON

Success Response - This is a sample response for successful API requests.

{
"StatusCode": 200,
"StatusName": "Ok",
"StatusMessage": "Successful API call",
"PdfAttachmentCount": "1",
"Errors": null,
"Form1042TPdfPath": "pdfs/c52fdcac-9b72-49b8-8b61-c6b6c1e20e94/9d20af8d-8f25-462b-8c21-f78a2906ff7f/1042T.pdf"
}