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 |
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. |
  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. |
Request JSON
{ "SubmissionId": "7d0f621c-be32-4ac1-9ed9-d58431dc832f",}
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}