Skip to documentation
Parachute Health integration

Download Document PDF

Perform Download Document PDF through Parachute Health.

View as Markdown
parachute_download_document_pdf
writeparachute

Inputs

  • order_id
    textrequired
    Order Id

    Required text value.

  • document_key
    textrequired
    Document Key

    Required text value.

  • supplier_id
    text
    Supplier Id

    Optional text value.

  • include_pdf_base64
    boolean
    Include Pdf Base64

    Optional true-or-false value.

    Default: true

Outputs

  • pdf_base64Pdf Base64
  • pdf_size_bytesPdf Size Bytes
  • download_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
}
View all Parachute Health actions