Skip to main content
Version: 1.7.3

Status

Lists the current status of the Forms 1094C&Form1095C returns for a particular Submission ID.

GET Form1095C/Status 
Run in Postman

Request Params

FieldTypeDescription
SubmissionIdGuidUnique identifier of a submission.

Request Params

"Form1095C/status?SubmissionId=4e19c58c-255c-4705-92a2-6e1307aa74e8"

Response Body

FieldTypeDescription
StatusCodenumberReturns the HTTP status codes like 200,300 etc.
StatusNamestringName of the status code.
StatusMessagestringDetailed status message.
SubmissionIdGuidUnique identifier of a submission.
FormACARecordsobjectIt will show the detailed information about the success and error records of Forms 1094C&Form1095C.
    SuccessRecordsobjectIt will show the detailed information about the success status of Forms 1094C&Form1095C Records.
        RecordIdGuidUnique identifier of a record.
        FormTypestringType of ACA Form filed.
        TaxYearstringTax Year of the Return.
        Form1095CCountNumberNumber of 1095-C Forms Filed with this return.
        RecordStatusstringReturns the status of the records.
        StatusTSstringDate and time of return created.
        Form1094CRecordsobjectcontains success records of Form 1094C returns
            BusinessIdstringReturns the unique Business ID for the Business. It can be used in future to refer the same business.
            BusinessNmstringName of the business
        Form1095CRecordsobject[]contains success records of Form 1095C returns.
            Form1095SeqNumstringThis identifies the sequence on the record sent in the payload.When errors occur we will send the errors attached to particular sequence.
            Form1095CIdGuidUnique Id to identify each Form 1095 C.
            EmployeeIdstringAn 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.
            EmployeeNmstringName of the recipient(Employee)
            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.
    ErrorRecordsobject[]It will show the detailed information about the error status of Form 941 Records.
            IdstringReturns the validation error Id.
            NamestringName of the validation error.
            MessagestringDescription of the validation error.
Errorsobject[]Shows detailed error information.
    IdstringReturns the validation error Id.
    NamestringName of the validation error.
    MessagestringDescription of the validation error.

Response JSON

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