List
Lists Form 943s created for a date range.
GET Form943/List
Request Parameters
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 943 records to be listed in each page |
EfileStatus | string | Optional List the 943 records based on the status |
FromDate | string | Optional List 943 records created from |
ToDate | string | Optional List 943 records created up to |
Response Parameters
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. |
Form943RecordList | object[] | Returns detailed information of the Form 943 records. |
  SubmissionId | Guid | Unique identifier of a submission |
  BusinessId | Guid | Unique Identifier of the business |
  BusinessNm | string | Name of the business |
  EIN | string | Employer Identification Number |
  BusinessType | string | Type of business. |
  RecordId | Guid | Unique identifier of a record |
  TaxYr | string | Tax year for which Form 943 needs to be filed |
  IRSPaymentType | string | Payment type to make payments pay the IRS. Choose from EFW, EFTPS, Check or Money Order |
  ReturnType | string | Type of the return to be filed. Enter value as FORM943 |
  EFileStatus | string | List the 943 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 943 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. |
Request JSON
"Form943/List?BusinessId=c5beb833-2ce4-4293-9772-6c94d37173f2&EIN=005498751&Page=1&PageSize=10&EfileStatus=null&FromDate=01/01/2020&ToDate=02/10/2020"
Response JSON
{ "StatusCode": 200, "StatusName": "Ok", "StatusMessage": "Successful API call", "Form943RecordList": [ { "SubmissionId": "7f9cb1ab-f90b-4358-ae5f-acfe19617d96", "BusinessId": "c5beb833-2ce4-4293-9772-6c94d37173f2", "BusinessNm": "Rhona Agri Company", "EIN": "11-1234567", "BusinessType": "Estate", "RecordId": "22af7b4b-42f2-4e68-a9ac-743d2fd76636", "TaxYr": "2019", "IRSPaymentType": "EFTPS", "ReturnType": "ORIGINAL", "EFileStatus": "CREATED" } ], "TotalRecords": 1, "TotalPages": 1, "Page": 1, "PageSize": 10, "Errors": null}