List
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/List
Request Params
Field | Type | Description |
---|---|---|
BusinessId | Guid | Optional Unique identifier of a business. |
EIN | string | Optional Employer Identification Number. |
Page | number | Optional Pulls the page number of the page selected |
PageSize | number | Optional Number of 944 records to be listed in each page |
EfileStatus | string | Optional List the 944 records based on the status |
FromDate | string | Optional Enter a date from which the form Form 944 records need to be listed in MM/DD/YYYY format |
ToDate | string | Optional Enter a date till which the 944 records created are to be listed in MM/DD/YYYY format. |
Request Params
Form944/List?BusinessId=b6d9e695-cc72-46f7-b131-58317a54668b&FromDate=01/01/2024&ToDate=12/31/2024&EfileStatus=CREATED&Page=1&PageSize=10&EIN=144718269
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. |
Form944Records | object[] | Returns detailed information of the Form 944 records. |
SubmissionId | Guid | Unique identifier of a submission. |
BusinessId | Guid | Unique Identifier of the business. |
BusinessNm | string | Name of the business. |
EIN | Guid | Employer identification Number. |
BusinessType | string | Type of the return to be filed. Like as FORM941, FORM941PR, FORM941SS. |
RecordId | Guid | Unique identifier of a record. |
TaxYr | string | Tax year of Form 944 to be filed. |
Qtr | string | Quarter of Form 944 to be filed. |
IRSPaymentType | string | Payment type to make payments to the IRS. |
EFileStatus | string | List the Form 944 records based on the status. |
TotalRecords | number | Total number of records. |
TotalPages | number | Total number of pages. |
Page | number | Pulls the page number of the page selected. |
PageSize | number | Number of 944 records to be listed in each page. |
Errors | object[] | Shows detailed error information. |
Code | string | Returns the validation error code. |
Name | string | Name of the validation error. |
Message | string | Description of the validation error. |
Type | string | Type of validation error. |
Response JSON
Success Response - This is a sample response for successful API requests.
{
"StatusCode": 200,
"StatusName": "Ok",
"StatusMessage": "Successful API call",
"Form944Records": [
{
"SubmissionId": "f08d3920-dd17-4b1a-acf2-1546aa273b17",
"BusinessId": "1f4ab6fe-113d-410a-9273-e69684562c0d",
"BusinessNm": "Snowdaze LLC",
"EIN": "00-3847381",
"BusinessType": "ESTE",
"RecordId": "dd74d151-db62-464c-be0c-1759943fe7e6",
"TaxYr": "2024",
"IRSPaymentType": "EFTPS",
"ReturnType": "Form944",
"EFileStatus": "CREATED"
}
],
"TotalRecords": 1,
"TotalPages": 1,
"Page": 1,
"PageSize": 100,
"Errors": null
}