GetPDF
GetPDF
This endpoint can be used to generate PDF copies of the completed Form 7004. Provide the Submission ID in th request, and the response will contain the link to the PDF copy of the form.
How it works
- Once the request is processed successfully, a webhook will be triggered containing the download link(s).
- The files are not encrypted and can be downloaded directly. For security, the download link will expire in 24 hours after Webhook delivery.
GET Form7004/GetPDF 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. |
| Message | string | Provides additional information regarding the PDF delivery. |
| 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
"Form7004/GetPDF?SubmissionId=000e9b21-c0fd-421c-867e-93ef54d37b33"
Response JSON
Success Response - This is a sample response for successful API requests.
{
"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
}