Transmit
Transmit
This endpoint can be used to transmit Form 4868 returns to the IRS. Your request JSON must include the SubmissionId of the 4868 you want to transmit.
Key points
- Call this endpoint only after all validation errors are resolved. If errors exist, review and correct them before transmitting.
- Once a Form 4868 is transmitted, it cannot be edited or deleted.
POST Form4868/Transmit Request Body
| Field | Type | Description |
|---|---|---|
| SubmissionId | Guid | Unique identifier of the submission, generated by TaxBandits. |
Response Body
| Field | Type | Description |
|---|---|---|
| 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. |
| Form4868Status | string | The IRS status of the Form 4868 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.
{
"SubmissionId": "e88e7f1d-7ae5-43b6-99f6-38d85664035a",
"TaxPayerId": "c21df64f-9a6d-4e21-ac67-723aacf1ba48",
"TaxPayerRef": "Pe123",
"Form4868Status": "TRANSMITTED",
"StatusTs": "2022-08-06 10:19:05 -04:00",
"Errors": null,
}