Skip to main content
Version: 1.7.3

Status

Status

This endpoint is used to retrieve the status of the 8809 extension request you’ve submitted through the TaxBandits API. Your request JSON must include the ‘SubmissionId’ corresponding to the extension request you want to check the status for.

Note:

As an alternative to this endpoint, you can configure webhooks for the event type ‘E-file Status Change’ to receive automatic notifications. Learn more

GET Form8809/Status 

Request Params

FieldTypeDescription
SubmissionIdGuidUnique identifier of a submission

Response Body

FieldTypeDescription
StatusCodenumberHTTP status code returned by the API (e.g., 200, 300, 400).
StatusNamestringName of the HTTP status
StatusMessagestringDetailed message explaining the status of the request.
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.
Form8809StatusstringThe IRS status of the Form 8809 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 Params

"Form8809/Status?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": "000e9b21-c0fd-421c-867e-93ef54d37b33",
"Form8809Status": "TRANSMITTED",
"StatusTs": "2021-08-05 09:53:23 -04:00",
"Errors": null
}