GetPDF
The IRS has removed the COVID-related fields in Form 944 for tax year 2024. To refer to the documentation of Form 944 for tax year 2023,click here.
GET Form944/GetPDF
Request Params
Field | Type | Description |
---|---|---|
SubmissionId | string | Unique identifier of a submission |
Request Params
"Form944/getpdf?SubmissionId=71454e6b-fb3e-487a-9582-688214f03fb8"
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 |
Form944pdfRecords | object[] | Form944pdfRecords 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 |
Form944pdf | 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. |
Response JSON
Success Response - This is a sample response for successful API requests.
{
"StatusCode": 200,
"StatusName": "Ok",
"StatusMessage": "Successful API call",
"SubmissionId": "7f9cb1ab-f90b-4358-ae5f-acfe19617d96",
"Form944pdfRecords": [
{
"RecordId": "22af7b4b-42f2-4e68-a9ac-743d2fd76636",
"Form944pdf": "We've successfully received your request to generate PDF. You will be notified with the URL to download the PDF."
}
],
"Errors": null
}