# Download Document PDF

> Perform Download Document PDF through Parachute Health.

Source: [https://genhealth.ai/docs/workflows/integrations/parachute-health/parachute_download_document_pdf](https://genhealth.ai/docs/workflows/integrations/parachute-health/parachute_download_document_pdf)

Integration: [Parachute Health](https://genhealth.ai/docs/workflows/integrations/parachute-health.md)

- Handler: `parachute_download_document_pdf`

- Connection type: `parachute`

## Inputs

- `order_id` — Order Id (text, required)
  Required text value.
- `document_key` — Document Key (text, required)
  Required text value.
- `supplier_id` — Supplier Id (text)
  Optional text value.
- `include_pdf_base64` — Include Pdf Base64 (boolean)
  Optional true-or-false value.
  Default: `true`

## Outputs

- `pdf_base64` — Pdf Base64
- `pdf_size_bytes` — Pdf Size Bytes
- `download_id` — Download 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

```json
{
  "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

```json
{
  "type": "object",
  "properties": {
    "pdf_base64": {},
    "download_id": {},
    "pdf_size_bytes": {}
  },
  "additionalProperties": true
}
```
