List
Lists all the returns created and transmitted on the account or a particular employer.
GET Form1095C/List
Request Params
Field | Type | Description |
---|---|---|
BusinessId | Guid | Unique identifier of business. |
EIN | string | Employer Identification Number. |
Page | number | Pulls the page number of the page selected |
PageSize | number | Number of 1095C&1094C records to be listed in each page |
EfileStatus | string | List the 1095C&1094C records based on the status |
FromDate | DateTime | Date from which the 1094C's & 1095C's are created. |
ToDate | DateTime | Date until which the 1094C's & 1095C's are created |
Request Params
"Form1095C/List?BusinessId=b326b97a-1ee5-4358-b9c1-219cce44719d&EIN=03-7534276&Page=1&PageSize=10&EfileStatus=CREATED&FromDate=02/15/2024&ToDate=02/16/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. |
Form1095C | object[] | Returns detailed information of the Form 1095C&1094C records. |
SubmissionId | Guid | Unique identifier of a submission. |
BusinessId | Guid | Returns the unique Business ID for the Business. It can be used in future to refer the same business. |
BusinessNm | string | Name of the business. |
EIN | Guid | Employer Identification Number of the business. |
ContactName | string | Name of the contact person. |
RecordId | Guid | Unique identifier of a record. |
Form1095CAttachedCnt | number | Number of 1095-C Forms Filed with this return. |
Employee | object[] | Contains EmployeeId, EmployeeName and SSN information of the Employee for whom the 1095-C is filed. |
EmployeeId | Guid | An unique ID generated by TaxBandits after the return is created and will be returned in the Response. You can use this id for your future reference to Update. |
EmployeeName | Guid | Name of the employee. |
TaxYr | string | Tax year of Form 1095-C was filed. |
FederalReturn | object | Returns the record status and StatusTs of federal return. |
Status | string | Returns the record status. |
StatusTs | string | Returns date and time of return created. |
Info | string | Returns information about the Federal Filing service. |
Errors | object[] | Shows error information of state returns of Form 1095C. |
Id | string | Returns the validation error Id. |
Name | string | Name of the validation error. |
Message | string | Description of the validation error |
Postal | object | Returns the status and StatusTs of postal mailing service for Form 1095C. |
Status | string | Returns the status of postal order. |
StatusTs | string | Returns the date and time of the postal order created. |
Info | string | Returns the information about Postal mailing service. |
OnlineAccess | object | Returns the Email address for whom the online access to be given and Status of online access. |
Status | string | Returns status of online access for Form 1095C return. |
string | Email address for whom the online access to be given. | |
Info | string | Information about the online access service. |
EFileStatus | object | List the 1095-C records based on the status ("CREATED, UNDERPROCESS, SENTTOAGENCY, TRANSMITTED, ACCEPTED, REJECTED") |
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 1095-C 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",
"Form1095C": [
{
"SubmissionId": "24a3f0e9-50a8-4adf-beb2-44acc9f98a25",
"BusinessId": "05a3a4d2-1e82-4774-bc85-337ea48775b4",
"BusinessNm": "AF LLC",
"ContactName": "Aafdir",
"RecordId": "770df74d-d002-4f44-9135-b70250061588",
"Form1095CAttachedCnt": 1,
"Employee": [
{
"EmployeeId": "738e4601-6a3b-4abe-9e3d-05e90aaee6f2",
"EmployeeName": "Steve Michal Waugh Sr"
}
],
"TaxYr": "2023",
"IsPostal": true,
"IsFederalFiling": true,
"IsOnlineAccess": true,
"EFileStatus": "CREATED"
},
{
"SubmissionId": "8d8ba0aa-cb35-4174-bd2e-08426ed8f017",
"BusinessId": "05a3a4d2-1e82-4774-bc85-337ea48775b4",
"BusinessNm": "AF LLC",
"ContactName": "Aafdir",
"RecordId": "54ac841a-ef03-488b-ab84-f5290a455171",
"Form1095CAttachedCnt": 1,
"Employee": [
{
"EmployeeId": "738e4601-6a3b-4abe-9e3d-05e90aaee6f2",
"EmployeeName": "Steve Michal Waugh Sr"
}
],
"TaxYr": "2023",
"IsPostal": true,
"IsFederalFiling": true,
"IsOnlineAccess": true,
"EFileStatus": "ACCEPTED"
}
],
"Page": 1,
"TotalRecords": 2,
"TotalPages": 1,
"PageSize": 100,
"Errors": null
}