Status
Lists the current status of the Forms 1094C&Form1095C returns for a particular Submission ID.
GET Form1095C/Status
Request Body
Field | Type | Description |
---|---|---|
SubmissionId | Guid | Unique identifier of a submission. |
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. |
SubmissionId | Guid | Unique identifier of a submission. |
FormACARecords | object | It will show the detailed information about the success and error records of Forms 1094C&Form1095C. |
  SuccessRecords | object | It will show the detailed information about the success status of Forms 1094C&Form1095C Records. |
    RecordId | Guid | Unique identifier of a record. |
    FormType | string | Type of ACA Form filed. |
    TaxYear | string | Tax Year of the Return. |
    Form1095CCount | Number | Number of 1095-C Forms Filed with this return. |
    RecordStatus | string | Returns the status of the records. |
    StatusTS | string | Date and time of return created. |
    Form1094CRecords | object | contains success records of Form 1094C returns |
      BusinessId | string | 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 | string | Employer Identification Number of the business. |
    Form1095CRecords | object[] | contains success records of Form 1095C returns. |
      Form1095SeqNum | string | This identifies the sequence on the record sent in the pay load.When errors occur we will send the errors attached to particular sequence. |
      Form1095CId | Guid | Unique Id to identify each Form 1095 C. |
      EmployeeNm | string | Name of the recipient(Employee) |
      SSN | string | Identification number of the recipient(Employee) |
      Form1095CStatus | string | Record status of Form 1095C. |
      StatusTS | string | Date and time of return created. |
  ErrorRecords | object[] | It will show the detailed information about the error status of Form 941 Records. |
      Id | string | Returns the validation error Id. |
      Name | string | Name of the validation error. |
      Message | string | Description of the validation error. |
Errors | object[] | Shows detailed error information. |
  Id | string | Returns the validation error Id. |
  Name | string | Name of the validation error. |
  Message | string | Description of the validation error. |
Request JSON
Form1095C/Status?SubmissionId=633e417a-752f-471e-ab2a-4536e78619ab
Response JSON
{ "StatusCode": 200, "StatusName": "Ok", "StatusMessage": "Successful API call", "SubmissionId": "633e417a-752f-471e-ab2a-4536e78619ab", "FormACARecords": { "SuccessRecords": { "RecordId": "27e33cf0-0cd8-4934-9bbd-259fdd93517a", "FormType": "Form1094C_1095C", "TaxYear": "2020", "Form1095CCount": 1, "RecordStatus": "Created", "StatusTS": "2021-08-24 08:09:24 -04:00", "Form1094CRecords": { "BusinessId": "525a517a-6f0e-4748-814b-8b1f133b3a98", "BusinessNm": "Eastman Kodak Com ", "EIN": "003-38-7107" }, "Form1095CRecords": [ { "Form1095SeqNum": "1", "Form1095CId": "a048fc06-463e-4725-b48a-3cfd3446d032", "EmployeeNm": "Steve Michal Waugh", "SSN": "112-23-6891", "Form1095CStatus": "Created", "StatusTS": "2021-08-24 08:09:24 -04:00" } ] }, "ErrorRecords": null }, "Errors": null}