List
Lists all Form 941 returns in TaxBandits that have been created and transmitted for a Submission or Payer. Based on the filters supplied in the request, the results will be listed. If you provide a BusinessId, for example, all returns created under that BusinessId will be listed.
GET Form941/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 941 records to be listed in each page |
EfileStatus | string | List the 941 records based on the status |
FromDate | string | Enter a date from which the form Form 941 records need to be listed in MM/DD/YYYY format |
ToDate | string | Enter a date till which the 941 records created are to be listed in MM/DD/YYYY format. |
Request Params
List all the 941 returns created for the particular BusinessId and Date range.
"Form941/List?BusinessId=730f3e93-f5d8-490f-9deb-36bbf158e51c&EIN=006587034&Page=0&PageSize=0&EfileStatus=ALL&FromDate=null&ToDate=null"
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. |
Form941Records | object[] | Returns detailed information of the Form 941 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 941 to be filed. |
Qtr | string | Quarter of Form 941 to be filed. |
IRSPaymentType | string | Payment type to make payments to the IRS. |
EFileStatus | string | List the Form 941 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 941 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
The Response Payload will list all the returns created for the given BusinessId based on the given date range.
{
"StatusCode": 200,
"StatusName": "Ok",
"StatusMessage": "Successful API call",
"Form941Records": [
{
"SubmissionId": "909a8bc8-f60b-4d90-8bb3-247be7179ace",
"BusinessId": "730f3e93-f5d8-490f-9deb-36bbf158e51c",
"BusinessNm": "Snowdaze LLC",
"EIN": "006687034",
"BusinessType": "CORP",
"RecordId": "cba7aa73-6104-476d-99f7-e8ac2dea7f0a",
"TaxYr": "2022",
"Qtr": "Q4",
"IRSPaymentType": "EFTPS",
"ReturnType": "Form941",
"EFileStatus": "CREATED"
},
{
"SubmissionId": "747a8bc8-f60b-4d90-8bb3-247be7179ace",
"BusinessId": "730f3e93-f5d8-490f-9deb-36bbf158e51c",
"BusinessNm": "Snowdaze LLC",
"EIN": "006687034",
"BusinessType": "CORP",
"RecordId": "abc7aa73-6104-476d-99f7-e8ac2dea7f0a",
"TaxYr": "2022",
"Qtr": "Q4",
"IRSPaymentType": "EFTPS",
"ReturnType": "Form941",
"EFileStatus": "CREATED"
}
],
"TotalRecords": 2,
"TotalPages": 1,
"Page": 1,
"PageSize": 100,
"Errors": null
}