Skip to main content
Version: 1.7.1

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=633e417a-752f-471e-ab2a-4536e78619ab"

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
            EINstringEmployer Identification Number 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.
            EmployeeNmstringName of the recipient(Employee)
            SSNstringIdentification number of the recipient(Employee)
            Form1095CStatusstringRecord status of Form 1095C.
            StatusTSstringDate and time of return created.
    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": "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
}