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": "04c2e720-6b77-4e11-9e55-e57d13d0c811",
"BusinessId": "06b930d3-2f43-45b9-9d16-3b833601529f",
"BusinessNm": "Snowdaze LLC",
"EIN": "22-7534314",
"ContactName": "Stephen",
"RecordId": "9fea7477-7017-4bfe-9ee7-7964cea68287",
"Form1095CAttachedCnt": 1,
"Employee": [
{
"EmployeeId": "cc3e409b-c34f-492b-ac1a-2a5333e823b4",
"EmployeeName": "Steve Michal Waugh Sr",
"SSN": null
}
],
"TaxYr": "2024",
"IsPostal": true,
"IsFederalFiling": true,
"IsOnlineAccess": true,
"EFileStatus": "CREATED"
}
],
"Page": 1,
"TotalRecords": 1,
"TotalPages": 1,
"PageSize": 100,
"Errors": null
}