List
Lists Form 941SCHRs created for a date range.
The IRS has removed the COVID-related fields in Form 941 Sch R from 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. Note: PageSize can be maximum of 100. |
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/2025&ToDate=03/05/2025"
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 |
PayerRef | string | Unique identifier of the payer. |
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": "fc960bb7-f14f-45f2-9e0e-dc9f5d9f23d0",
"BusinessId": "efd21ef1-868a-4a35-877f-e2904aaf1515",
"PayerRef": "Snow1234",
"BusinessNm": "Snowdaze LLC",
"EIN": "38-4798791",
"BusinessType": "CORP",
"RecordId": "9bee2e04-ecb4-4d2b-864a-fd98f477e871",
"TaxYr": "2025",
"Qtr": "Q1",
"ClientCnt": 2,
"IRSPaymentType": "EFTPS",
"EFileStatus": "CREATED"
}
],
"TotalRecords": 1,
"TotalPages": 1,
"Page": 1,
"PageSize": 100,
"Errors": null
}