Skip to main content
Version: 1.7.3

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

FieldTypeDescription
SubmissionIdGuidUnique identifier of the submission, generated by TaxBandits.

Response Body

FieldTypeDescription
SubmissionIdGuidUnique identifier of the submission, generated by TaxBandits.
BusinessIdGuidUnique identifier of the business associated with the submission.
PayerRefstringUser-defined reference identifier for the payer linked to the submission.
Form4868StatusstringThe IRS status of the Form 4868 submission.
StatusTsstringDate and time (ISO 8601 format) when the status was last updated.
Errorsobject[]Array of error objects (if any) containing details of validation or processing errors.
    IdstringError code for a specific validation issue.
    NamestringName of the validation error.
    MessagestringDescription 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,
}