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
Request Body
Field | Type | Description |
---|---|---|
SubmissionId | Guid | Unique identifier of a submission |
Request JSON
{
"SubmissionId": "96c3747a-db6d-4d10-aeb2-4daa80516f9e",
}
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 | Pulls the Form 1094C/1095C records with Success and Error statuses. |
SuccessRecords | object | It will show the detailed information about the success status of Form 1094C/1095C Records. |
RecordId | Guid | Unique identifier of a record. |
FormType | string | Type of ACA Form filed. |
RecordStatus | string | Returns the status of the record. |
StatusTS | string | Date and time of return transmitted. |
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. |
ErrorRecords | object[] | It will show the detailed information about the error status of Form 1094C/1095C Records. |
Id | string | Returns the validation error code. |
Field | string | Name of the error field. |
Message | string | Description of the validation error. |
Errors | object[] | Shows detailed error information. |
Id | string | Returns the validation error code. |
Field | string | Name of the error field. |
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": "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
}