# Download Inbox Document

> Perform Download Inbox Document through Parachute Health.

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

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

- Handler: `parachute_download_inbox_document`

- Connection type: `parachute`

## Inputs

- `document` — Document (expression, required)
  Required literal value or workflow expression.
- `inbox_document_id` — Inbox Document Id (text)
  Optional text value.

## Outputs

- `pages` — Pages
- `page_count` — Page Count
- `success` — Success
- `error` — Error
- `failure_category` — Failure Category

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": [
    "document"
  ],
  "properties": {
    "document": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "inbox_document_id": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "pages": {},
    "success": {},
    "page_count": {},
    "failure_category": {}
  },
  "additionalProperties": true
}
```
