Skip to main content
Version: 1.7.3

GetPDF

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 from tax year 2024. To refer to the documentation of Form 941 Sch R for tax year 2023,click here.

GET Form941SCHR/GETPDF 

Request Params

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

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.

Request Params

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

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

{
"StatusCode": 200,
"StatusName": "Ok",
"StatusMessage": "Successful API call",
"SubmissionId": "fc960bb7-f14f-45f2-9e0e-dc9f5d9f23d0",
"Form941pdfRecords": [
{
"RecordId": "9bee2e04-ecb4-4d2b-864a-fd98f477e871",
"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
}