Skip to main content
Version: 1.7.1

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": "7d0f621c-be32-4ac1-9ed9-d58431dc832f",
}

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.
    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": "7d0f621c-be32-4ac1-9ed9-d58431dc832f",
"FormACARecords": {
"SuccessRecords": {
"RecordId": "7c573092-c07d-46b4-9886-74c156f5cc02",
"FormType": "Form1094C_1095C",
"RecordStatus": "TRANSMITTED",
"StatusTS": "2020-08-27 20:45:44 +05:30"
},
"ErrorRecords": null
},
"Errors": null
}