RequestPdfUrl
RequestPdfUrl
This endpoint can be used to retrieve the PDF URLs of the Form 4868. You can request the PDF URLs by providing the SubmissionId associated with the return.
Note:
The PDF URLs will be returned in the response only if they have already been generated by TaxBandits.
GET Form4868/RequestPDFURL Request Params
| Field | Type | Description |
|---|---|---|
| SubmissionId | Guid | Unique identifier of the submission, generated by TaxBandits. |
Response Body
| Field | Type | Description |
|---|---|---|
| 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
"Form4868/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/Form4868EMP_2112.pdf",
"PdfPath": "TBS2.0/Sprint/pdfs/25380314-528d-4ba1-852f-78482e22005a/4d44928a-e4d9-40ae-b412-4c8ceea290af/2025/Final/Form4868EMP_2112.pdf",
"Errors": null
}