Skip to main content
Version: 1.7.3

GetPDF

GetPDF

This endpoint is used to retrieve the PDF copy of a transmitted 8809 form for your records. Your request JSON must include the ‘SubmissionId’ corresponding to the extension form you want to download.

Before you use this endpoint, you must configure webhooks for the event type ‘PDF Complete’. Learn more

GET Form8809/GetPDF 

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.
MessagestringProvides additional information regarding the PDF delivery.
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/GetPDF?SubmissionId=000e9b21-c0fd-421c-867e-93ef54d37b33"

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",
"Message": "We've successfully received your request to generate PDF. You will be notified with the URL to download the PDF.",
"Errors": null
}