GetPDF
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 from tax year 2024. To refer to the documentation of Form 941 for tax year 2023,click here.
GET Form941/GetPDF
Request Params
Field | Type | Description |
---|---|---|
SubmissionId | string | Unique identifier of a submission |
RecordIds | string | List of record Ids to be downloaded. |
Response Body
Field | Type | Description |
---|---|---|
StatusCode | number | Returns the HTTP status codes like 200,300 etc. |
StatusName | string | Name of the status code. |
StatusMessage | string | Detailed status message. |
SubmissionId | Guid | Unique identifier of a submission |
Form941pdfRecords | object[] | Form941pdfRecords Object |
RecordId | Guid | Unique identifier of a record |
SequenceId | string | An 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 |
Form941pdf | string | Returns the record ID with success message after generating a PDF. |
Errors | object[] | Shows detailed error information. |
Id | string | Returns the validation error id. |
Name | string | Name of the validation error. |
Message | string | Description of the validation error. |
Request Params
"Form941/GETPDF?SubmissionId=66c6e0c7-251e-4f00-8a75-14b5656a59db&RecordIds=8f85ff98-55ea-4fa9-bc20-7abe02625d14"
Response JSON
Success Response - This is a sample response for successful API requests.
{
"StatusCode": 200,
"StatusName": "Ok",
"StatusMessage": "Successful API call",
"SubmissionId": "66c6e0c7-251e-4f00-8a75-14b5656a59db",
"Form941pdfRecords": [
{
"RecordId": "8f85ff98-55ea-4fa9-bc20-7abe02625d14",
"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
}