RequestPdfUrl
RequestPdfUrl
This endpoint is used to retrieve a secure URL for the PDF of a 15397 extension form transmitted through the TaxBandits API. Your request JSON must include the ‘SubmissionId’ corresponding to the extension form you want to download.
GET Form15397/RequestPdfUrl Request Params
| Field | Type | Description |
|---|---|---|
| SubmissionId | Guid | Unique identifier of a submission |
Response Body
| Field | Type | Description |
|---|---|---|
| StatusCode | number | HTTP status code of the response (e.g., 200, 400, 500). |
| StatusName | string | Name of the status code |
| StatusMessage | string | Detailed message describing the outcome of the delete request. |
| SubmissionId | Guid | Unique identifier of the submission that was attempted to be deleted. |
| PDFUrl | string | Link to download the PDF copy |
| PDFPath | string | The storage path of the PDF |
| Errors | object[] | Array of error details, returned if the request failed validation or processing. |
| Id | string | Unique identifier of the validation or processing error. |
| Name | string | Short name of the error. |
| Message | string | Detailed description of the error. |
Request Params
"Form15397/RequestPDFURL?SubmissionId=de99745f-144f-4bb9-b1ff-ca6261ae077f"
Response JSON
Success Response - This is a sample response for successful API requests.
{
"SubmissionId": "4eccc3fe-44fe-4811-9750-555758d371ca",
"PDFUrl": "https://expressirsforms.s3.us-east-1.amazonaws.com/pdfs/aec81bcc-e098-4104-932c-d3241a2fd031/6fb74d3b-4906-4188-8f7e-6aed6577de3f/1099/19562778/u/copyb_1up_19562778.pdf",
"PDFPath": "pdfs/aec81bcc-e098-4104-932c-d3241a2fd031/6fb74d3b-4906-4188-8f7e-6aed6577de3f/1099/19562778/u/copyb_1up_19562778.pdf",
"Errors": null
}