Transmit
Transmit
This endpoint is used to transmit the 8809 extension forms to the IRS. Your request JSON must include the ‘SubmissionId’ corresponding to the extension you want to submit to the IRS.
POST Form8809/Transmit Request Body
| Field | Type | Description |
|---|---|---|
| SubmissionId | Guid | Unique identifier of the submission, generated by TaxBandits. |
Response Body
| Field | Type | Description |
|---|---|---|
| StatusCode | number | HTTP status code returned by the API (e.g., 200, 300, 400). |
| StatusName | string | Name of the HTTP status |
| StatusMessage | string | Detailed message explaining the status of the request. |
| SubmissionId | Guid | Unique identifier of the submission, generated by TaxBandits. |
| BusinessId | Guid | Unique identifier of the business associated with the submission. |
| PayerRef | string | User-defined reference identifier for the payer linked to the submission. |
| Form8809Status | string | The IRS status of the Form 8809 submission. |
| StatusTs | string | Date and time (ISO 8601 format) when the status was last updated. |
| Errors | object[] | Array of error objects (if any) containing details of validation or processing errors. |
| Id | string | Error code for a specific validation issue. |
| Name | string | Name of the validation error. |
| Message | string | Description of the error. |
Request JSON
{
"SubmissionId": "e88e7f1d-7ae5-43b6-99f6-38d85664035a",
}
Response JSON
Success Response - This is a sample response for successful API requests.
{
"StatusCode": 200,
"StatusName": "Ok",
"StatusMessage": "Successful API call",
"SubmissionId": "e88e7f1d-7ae5-43b6-99f6-38d85664035a",
"BusinessId": "c21df64f-9a6d-4e21-ac67-723aacf1ba48",
"PayerRef": "Pe123",
"Form8809Status": "TRANSMITTED",
"StatusTs": "2022-08-06 10:19:05 -04:00",
"Errors": null,
}