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=4e19c58c-255c-4705-92a2-6e1307aa74e8"
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": "4e19c58c-255c-4705-92a2-6e1307aa74e8",
"FormACARecords": {
"SuccessRecords": {
"RecordId": "a3e70913-aaa7-4ca0-b91a-214ee03dc88e",
"FormType": "Form1094C_1095C",
"TaxYear": "2022",
"Form1095CCount": 3,
"Form1094CRecords": {
"BusinessId": "42453f3b-10f1-493c-abe1-defef303d0c9",
"BusinessNm": "Kris LLC"
},
"Form1095CRecords": [
{
"Form1095SeqNum": "1",
"Form1095CId": "7b0bf6b2-6156-4fe7-a51d-2b11c46d8f9f",
"EmployeeId": "d3553c84-d456-4646-b534-b2d1b68c515f",
"EmployeeNm": "Sheron Carter Wernley",
"FederalReturn": {
"Status": "CREATED",
"StatusTs": "2022-08-23 01:45:52 -04:00",
"Info": null,
"Errors": null
},
"Postal": {
"Status": "CREATED",
"StatusTs": "2022-08-23 01:45:54 -04:00",
"Info": null
},
"OnlineAccess": {
"Status": null,
"Email": null,
"Info": "This service will be available soon"
}
},
{
"Form1095SeqNum": "2",
"Form1095CId": "51c2a9b4-d53c-4db5-827a-ef43b7d848d0",
"EmployeeId": "2fa28016-9519-4306-b283-e228f0622af7",
"EmployeeNm": "Steler Mixos Wernley",
"FederalReturn": {
"Status": "CREATED",
"StatusTs": "2022-08-23 01:45:52 -04:00",
"Info": null,
"Errors": null
},
"Postal": {
"Status": "CREATED",
"StatusTs": "2022-08-23 01:45:54 -04:00",
"Info": null
},
"OnlineAccess": {
"Status": null,
"Email": null,
"Info": "This service will be available soon"
}
}
]
},
"ErrorRecords": null
},
"Errors": null
}