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
Request Params
Field | Type | Description |
---|---|---|
SubmissionId | string | Unique identifier of a submission. |
RecordIds | string | List of record Ids to be downloaded. |
Request Params
"Form941schr/GETPDF?SubmissionId=54c7ea74-b3e8-4f99-98a1-1311611b410c"
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[] | Object that returns record ID and status message on the availability of PDF via webhooks. |
RecordId | Guid | Unique identifier of a record. |
Form941pdf | string | Returns the status message on the availability of PDF via webhooks. |
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. |
Response JSON
Success Response - This is a sample response for successful API requests.
{
"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
}