List
Lists Form 941SCHRs created for a date range.
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/List
Request Params
Field | Type | Description |
---|---|---|
BusinessId | Guid | Unique identifier of a business. |
EIN | string | Employer Identification Number. |
Page | number | Pulls the page number of the page selected. |
PageSize | number | Number of 941SCHR records to be listed in each page. |
EfileStatus | string | List the 941SCHR records based on the status. |
FromDate | string | Enter a date from which the form Form 941SCHR records need to be listed in MM/DD/YYYY format |
ToDate | string | Enter a date till which the 941SCHR records created are to be listed in MM/DD/YYYY format. |
Request Params
"Form941SCHR/list?SubmissionId=54c7ea74-b3e8-4f99-98a1-1311611b410c&FromDate=03/03/2024&ToDate=03/05/2024"
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. |
Form941SchRRecords | object[] | Returns detailed information of the Form 941SCHR records. |
SubmissionId | Guid | Unique identifier of a submission |
BusinessId | Guid | Unique identifier of a business |
BusinessNm | string | Name of the business |
EIN | Guid | Employer Identification Number |
BusinessType | string | Type of business. |
RecordId | Guid | Unique identifier of a record. |
TaxYr | string | Tax year of 941SchR to be filed. |
Qtr | string | Quarter for which Form 941SCHR needs to be filed. |
ClientCnt | number | Number of Clients reported. |
IRSPaymentType | string | Payment type to make payments pay the IRS. Choose from EFW, EFTPS, Check or Money Order |
EFileStatus | string | List the 941SchR 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 941SCHR records to be listed in each page. |
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",
"Form941SchRRecords": [
{
"SubmissionId": "54c7ea74-b3e8-4f99-98a1-1311611b410c",
"BusinessId": "1db58839-718f-4966-b77b-781ed657148d",
"BusinessNm": "Francis and Sons",
"EIN": "006314130",
"BusinessType": "CORP",
"RecordId": "a5f5ed51-1723-4316-b0f0-c84d0d53e2d8",
"TaxYr": "2024",
"Qtr": "Q3",
"ClientCnt": 2,
"IRSPaymentType": "EFTPS",
"EFileStatus": "CREATED"
},
{
"SubmissionId": "ae785a51-b6c7-4228-97b3-54da3ef9c624",
"BusinessId": "1823c86e-971a-4189-9b4d-20026891f230",
"BusinessNm": "Business",
"EIN": "673598088",
"BusinessType": "CORP",
"RecordId": "04c07a92-b331-47b9-b832-bced3995c35d",
"TaxYr": "2024",
"Qtr": "Q3",
"ClientCnt": 2,
"IRSPaymentType": null,
"EFileStatus": "CREATED"
},
{
"SubmissionId": "48ec6c56-3c2f-46c4-8bbd-22853dcf7e13",
"BusinessId": "1823c86e-971a-4189-9b4d-20026891f230",
"BusinessNm": "Business",
"EIN": "673598088",
"BusinessType": "CORP",
"RecordId": "72e7c681-5083-465a-9cb0-d3d8d3357511",
"TaxYr": "2024",
"Qtr": "Q3",
"ClientCnt": 2,
"IRSPaymentType": "EFTPS",
"EFileStatus": "CREATED"
},
{
"SubmissionId": "5897ce6a-0bbb-48c2-8e61-aad79b976ece",
"BusinessId": "1823c86e-971a-4189-9b4d-20026891f230",
"BusinessNm": "Business",
"EIN": "673598088",
"BusinessType": "CORP",
"RecordId": "9c81ff14-9f55-4832-a520-38293c66d440",
"TaxYr": "2024",
"Qtr": "Q3",
"ClientCnt": 2,
"IRSPaymentType": null,
"EFileStatus": "CREATED"
},
{
"SubmissionId": "7c997939-1f38-4ae6-a47c-db69b272bdd0",
"BusinessId": "1823c86e-971a-4189-9b4d-20026891f230",
"BusinessNm": "Business",
"EIN": "673598088",
"BusinessType": "CORP",
"RecordId": "e8f972fe-0652-4702-9b22-5d38bb9d5c4f",
"TaxYr": "2024",
"Qtr": "Q3",
"ClientCnt": 2,
"IRSPaymentType": "EFTPS",
"EFileStatus": "CREATED"
}
],
"TotalRecords": 5,
"TotalPages": 1,
"Page": 1,
"PageSize": 100,
"Errors": null
}