Skip to main content
Version: 1.7.3

GetPDF

Request a PDF download of forms 941SCHR, 941 and 8974 to be made available through Webhooks.

The IRS has removed the COVID-related fields in Form 941 Sch R for tax year 2024. To refer to the documentation of Form 941 Sch R for tax year 2023,click here.

GET Form941SCHR/GETPDF 
Run in Postman

Request Params

FieldTypeDescription
SubmissionIdstringUnique identifier of a submission.
RecordIdsstringList of record Ids to be downloaded.

Request Params

"Form941schr/GETPDF?SubmissionId=54c7ea74-b3e8-4f99-98a1-1311611b410c"

Response Body

FieldTypeDescription
StatusCodenumberReturns the HTTP status codes like 200,300 etc.
StatusNamestringName of the status code.
StatusMessagestringDetailed status message.
SubmissionIdGuidUnique identifier of a submission.
Form941pdfRecordsobject[]Object that returns record ID and status message on the availability of PDF via webhooks.
    RecordIdGuidUnique identifier of a record.
    Form941pdfstringReturns the status message on the availability of PDF via webhooks.
Errorsobject[]Shows detailed error information.
    IdstringReturns the validation error id.
    NamestringName of the validation error.
    MessagestringDescription of the validation error.

Response JSON

{
"StatusCode": 200,
"StatusName": "Ok",
"StatusMessage": "Successful API call",
"SubmissionId": "54c7ea74-b3e8-4f99-98a1-1311611b410c",
"Form941pdfRecords": [
{
"RecordId": "a5f5ed51-1723-4316-b0f0-c84d0d53e2d8",
"SequenceId": null,
"Form941pdf": "We've successfully received your request to generate PDF. You will be notified with the URL to download the PDF."
}
],
"Errors": null
}