RequestPdfUrl
RequestPdfUrl
This endpoint is used to retrieve a secure URL for the PDF of an 8809 extension form transmitted through the TaxBandits API. Your request JSON must include the ‘SubmissionId’ corresponding to the extension form you want to download.
GET Form8809/RequestPDFURL Request Params
| Field | Type | Description |
|---|---|---|
| SubmissionId | Guid | Unique identifier of a submission |
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. |
| PDFUrl | string | Link to download the copy |
| PDFPath | string | The storage path of the copy |
| 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 Params
"Form8809/RequestPDFURL?SubmissionId=de99745f-144f-4bb9-b1ff-ca6261ae077f
Response JSON
Success Response - This is a sample response for successful API requests.
{
"SubmissionId": "b6900a27-80df-4754-8dc4-d26f5fe03ffb",
"PDFUrl": "https://expressirsforms.s3.us-east-1.amazonaws.com/TBS2.0/Sprint/pdfs/25380314-528d-4ba1-852f-78482e22005a/4d44928a-e4d9-40ae-b412-4c8ceea290af/2025/Final/Form8809EMP_2112.pdf",
"PdfPath": "TBS2.0/Sprint/pdfs/25380314-528d-4ba1-852f-78482e22005a/4d44928a-e4d9-40ae-b412-4c8ceea290af/2025/Final/Form8809EMP_2112.pdf",
"Errors": null
}