List
Lists all the returns created and transmitted on the account or a particular employer.
GET Form1095C/List
Request Body
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 |
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. |
    SSN | object | SSN of the employee. |
  TaxYr | string | Tax year of Form 1095-C was filed. |
  IsPostal | Boolean | When true, the form copies are postal mailed to the employees |
  EFileStatus | string | List the Form 1095-C 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 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. |
Request JSON
"Form1095C/List?BusinessId=525a517a-6f0e-4748-814b-8b1f133b3a98&EIN=121222877&Page=1&PageSize=10&EfileStatus=CREATED&FromDate=07/01/2019&ToDate=08/06/2019"
Response JSON
{ "StatusCode": 200, "StatusName": "Ok", "StatusMessage": "Successful API call", "Form1095C": [ { "SubmissionId": "633e417a-752f-471e-ab2a-4536e78619ab", "BusinessId": "525a517a-6f0e-4748-814b-8b1f133b3a98", "BusinessNm": "Eastman Kodak Com", "EIN": "003387107", "ContactName": "John", "RecordId": "27e33cf0-0cd8-4934-9bbd-259fdd93517a", "Form1095CAttachedCnt": 1, "Employee": [ { "EmployeeId": "d3553c84-d456-4646-b534-b2d1b68c515f", "EmployeeName": "Steve Michal Waugh Sr", "SSN": "112-23-6891" } ], "TaxYr": "2020", "IsPostal": false, "EFileStatus": "CREATED" }, { "SubmissionId": "56703b0b-ef23-46d6-8c4a-92a431154203", "BusinessId": "525a517a-6f0e-4748-814b-8b1f133b3a98", "BusinessNm": "Eastman Kodak Com", "EIN": "003387107", "ContactName": "John", "RecordId": "6574c91e-8371-453c-aa9b-0795e6707f71", "Form1095CAttachedCnt": 1, "Employee": [ { "EmployeeId": "d3553c84-d456-4646-b534-b2d1b68c515f", "EmployeeName": "Steve Michal Waugh Sr", "SSN": "112-23-6891" } ], "TaxYr": "2020", "IsPostal": false, "EFileStatus": "CREATED" }, { "SubmissionId": "af860e74-0e7b-46d2-88e7-31b9e608e1de", "BusinessId": "525a517a-6f0e-4748-814b-8b1f133b3a98", "BusinessNm": "Eastman Kodak Com", "EIN": "003387107", "ContactName": "John", "RecordId": "ccfbab45-33f4-439f-b6c6-e6201872c328", "Form1095CAttachedCnt": 1, "Employee": [ { "EmployeeId": "d3553c84-d456-4646-b534-b2d1b68c515f", "EmployeeName": "Steve Michal Waugh Sr", "SSN": "112-23-6891" } ], "TaxYr": "2020", "IsPostal": false, "EFileStatus": "CREATED" }, { "SubmissionId": "f1224be9-d6fb-4d56-9db8-85ee3958ea51", "BusinessId": "525a517a-6f0e-4748-814b-8b1f133b3a98", "BusinessNm": "Eastman Kodak Com", "EIN": "003387107", "ContactName": "John", "RecordId": "09e3a421-94e2-467c-a69a-f6068af181dc", "Form1095CAttachedCnt": 1, "Employee": [ { "EmployeeId": "d3553c84-d456-4646-b534-b2d1b68c515f", "EmployeeName": "Steve Michal Waugh Sr", "SSN": "112-23-6891" } ], "TaxYr": "2020", "IsPostal": false, "EFileStatus": "CREATED" } ], "Page": 1, "TotalRecords": 4, "TotalPages": 1, "PageSize": 10, "Errors": null}