Skip to main content
Version: 1.7.3

List

Lists all the returns created and transmitted on the account or a particular employer.

GET Form1095C/List 
Run in Postman

Request Params

FieldTypeDescription
BusinessIdGuidUnique identifier of business.
EINstringEmployer Identification Number.
PagenumberPulls the page number of the page selected
PageSizenumberNumber of 1095C&1094C records to be listed in each page
EfileStatusstringList the 1095C&1094C records based on the status
FromDateDateTimeDate from which the 1094C's & 1095C's are created.
ToDateDateTimeDate 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

FieldTypeDescription
StatusCodenumberReturns the HTTP status codes like 200,300 etc.
StatusNamestringName of the status code.
StatusMessagestringDetailed status message.
Form1095Cobject[]Returns detailed information of the Form 1095C&1094C records.
    SubmissionIdGuidUnique identifier of a submission.
    BusinessIdGuidReturns the unique Business ID for the Business. It can be used in future to refer the same business.
    BusinessNmstringName of the business.
    EINGuidEmployer Identification Number of the business.
    ContactNamestringName of the contact person.
    RecordIdGuidUnique identifier of a record.
    Form1095CAttachedCntnumberNumber of 1095-C Forms Filed with this return.
    Employeeobject[]Contains EmployeeId, EmployeeName and SSN information of the Employee for whom the 1095-C is filed.
        EmployeeIdGuidAn 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.
        EmployeeNameGuidName of the employee.
    TaxYrstringTax year of Form 1095-C was filed.
        FederalReturnobjectReturns the record status and StatusTs of federal return.
            StatusstringReturns the record status.
            StatusTsstringReturns date and time of return created.
            InfostringReturns information about the Federal Filing service.
            Errorsobject[]Shows error information of state returns of Form 1095C.
              IdstringReturns the validation error Id.
              NamestringName of the validation error.
              MessagestringDescription of the validation error
        PostalobjectReturns the status and StatusTs of postal mailing service for Form 1095C.
            StatusstringReturns the status of postal order.
            StatusTsstringReturns the date and time of the postal order created.
            InfostringReturns the information about Postal mailing service.
        OnlineAccessobjectReturns the Email address for whom the online access to be given and Status of online access.
            StatusstringReturns status of online access for Form 1095C return.
            EmailstringEmail address for whom the online access to be given.
            InfostringInformation about the online access service.
        EFileStatusobjectList the 1095-C records based on the status ("CREATED, UNDERPROCESS, SENTTOAGENCY, TRANSMITTED, ACCEPTED, REJECTED")
TotalRecordsnumberTotal number of records.
TotalPagesnumberTotal number of pages.
PagenumberPulls the page number of the page selected.
PageSizenumberNumber of 1095-C records to be listed in each page.
Errorsobject[]Shows detailed error information.
    CodestringReturns the validation error code.
    NamestringName of the validation error.
    MessagestringDescription of the validation error.
    TypestringType of validation error.

Response JSON

{
"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
}