Skip to main content
Version: 1.7.3

Transmit

Transmits the Form 1094C/1095C return to the IRS. You can Transmit a return successfully only if there no validation errors in the return..

POST Form1095C/Transmit 
Run in Postman

Request Body

FieldTypeDescription
SubmissionIdGuidUnique identifier of a submission

Request JSON

{
"SubmissionId": "96c3747a-db6d-4d10-aeb2-4daa80516f9e",
}

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.
FormACARecordsobjectPulls the Form 1094C/1095C records with Success and Error statuses.
    SuccessRecordsobjectIt will show the detailed information about the success status of Form 1094C/1095C Records.
        RecordIdGuidUnique identifier of a record.
        FormTypestringType of ACA Form filed.
        RecordStatusstringReturns the status of the record.
        StatusTSstringDate and time of return transmitted.
        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.
    ErrorRecordsobject[]It will show the detailed information about the error status of Form 1094C/1095C Records.
        IdstringReturns the validation error code.
        FieldstringName of the error field.
        MessagestringDescription of the validation error.
Errorsobject[]Shows detailed error information.
    IdstringReturns the validation error code.
    FieldstringName of the error field.
    MessagestringDescription of the validation error.

Response JSON

{
"StatusCode": 200,
"StatusName": "Ok",
"StatusMessage": "Successful API call",
"SubmissionId": "96c3747a-db6d-4d10-aeb2-4daa80516f9e",
"FormACARecords": {
"SuccessRecords": {
"RecordId": "b2d29cf8-ccb1-4c9b-81c2-26c0956ce2f0",
"FormType": "Form1094C_1095C",
"RecordStatus": "TRANSMITTED",
"StatusTS": "2024-02-16 06:04:40 -05:00",
"Postal": {
"Status": "RECEIVED",
"StatusTs": "2024-02-16 06:04:40 -05:00",
"Info": null
}
},
"ErrorRecords": null
},
"Errors": null
}