Skip to main content
Version: 1.7.3

GetPDF

This method will generate the completed Form 941 in a Pdf format using the SubmissionId and RecordID.  After a successful API call, a Webhook will be sent with a link to download the PDFs.

PDF URL will now be available in PDF Complete Webhook.

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

GET Form941/GetPDF 
Run in Postman

Request Params

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

Request Params

"Form941/GetPDF?SubmissionId=3c0029c4-15ed-498a-a91f-e5eb3e25964d&RecordIds=1e068a7c-6278-4063-bbe3-d8464198b736"

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[]Form941pdfRecords Object
    RecordIdGuidUnique identifier of a record
    SequenceIdstringAn unique reference ID for the submission that can be used to identify a particular record. The Sequence ID will be returned in the Response for your reference.
Size Range: 50
    Form941pdfstringReturns the record ID with success message after generating a PDF.
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": "3c0029c4-15ed-498a-a91f-e5eb3e25964d",
"Form941pdfRecords": [
{
"RecordId": "1e068a7c-6278-4063-bbe3-d8464198b736",
"SequenceId": "001",
"Form941pdf": "We've successfully received your request to generate PDF. You will be notified with the URL to download the PDF."
}
],
"Errors": null
}