Status
Lists the current status of the Forms 1094C&Form1095C returns for a particular Submission ID.
GET Form1095C/Status
Request Params
Field | Type | Description |
---|---|---|
SubmissionId | Guid | Unique identifier of a submission. |
Request Params
"Form1095C/Status?SubmissionId=04c2e720-6b77-4e11-9e55-e57d13d0c811"
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 |
Form1095CRecords | object[] | contains success records of Form 1095C returns. |
Form1095SeqNum | string | This identifies the sequence on the record sent in the payload.When errors occur we will send the errors attached to particular sequence. |
Form1095CId | Guid | Unique Id to identify each Form 1095 C. |
EmployeeId | string | An unique identifier generated by TaxBandits for a employee when a W2 return is created. You can use this id for your future reference to Update. |
EmployeeNm | string | Name of the recipient(Employee) |
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. |
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. |
Response JSON
Success Response - This is a sample response for successful API requests.
{
"StatusCode": 200,
"StatusName": "Ok",
"StatusMessage": "Successful API call",
"SubmissionId": "04c2e720-6b77-4e11-9e55-e57d13d0c811",
"FormACARecords": {
"SuccessRecords": {
"RecordId": "9fea7477-7017-4bfe-9ee7-7964cea68287",
"FormType": "Form1094C_1095C",
"TaxYear": "2024",
"Form1095CCount": 1,
"Form1094CRecords": {
"BusinessId": "06b930d3-2f43-45b9-9d16-3b833601529f",
"BusinessNm": "Snowdaze LLC "
},
"Form1095CRecords": [
{
"Form1095SeqNum": "1",
"Form1095CId": "d4e74407-b4e4-4a85-aec3-e75fe9f687b6",
"EmployeeId": "cc3e409b-c34f-492b-ac1a-2a5333e823b4",
"EmployeeNm": "Steve Michal Waugh",
"FederalReturn": {
"Status": "CREATED",
"StatusTs": "2025-01-10 01:39:01 -05:00",
"Info": null,
"Errors": null
},
"Postal": {
"Status": "CREATED",
"StatusTs": "2025-01-10 01:46:18 -05:00",
"Info": null
},
"OnlineAccess": {
"Status": null,
"Email": null,
"Info": "This Service will be available soon"
}
}
]
},
"ErrorRecords": null
},
"Errors": null
}