Download Document PDF
Perform Download Document PDF through Parachute Health.
parachute_download_document_pdfwriteparachute
Inputs
- Order Id
order_idtextrequiredRequired text value.
- Document Key
document_keytextrequiredRequired text value.
- Supplier Id
supplier_idtextOptional text value.
- Include Pdf Base64
include_pdf_base64booleanOptional true-or-false value.
Default:
true
Outputs
pdf_base64Pdf Base64pdf_size_bytesPdf Size Bytesdownload_idDownload Id
Output schema completeness: best_effort_declared
Safety
- External effect
- write
- Confirmation recommended
- No
- Retry safe
- No
- Dry run supported
- No
Schemas
These schemas are first-pass authoring guidance. Runtime validation remains authoritative.
Input schema
{
"type": "object",
"required": [
"order_id",
"document_key"
],
"properties": {
"order_id": {
"type": "string",
"description": "Required text value.",
"x-workflow-field-type": "text"
},
"supplier_id": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"document_key": {
"type": "string",
"description": "Required text value.",
"x-workflow-field-type": "text"
},
"include_pdf_base64": {
"type": "boolean",
"default": true,
"description": "Optional true-or-false value.",
"x-workflow-field-type": "boolean"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"pdf_base64": {},
"download_id": {},
"pdf_size_bytes": {}
},
"additionalProperties": true
}