# List Inbox Documents

> Perform List Inbox Documents through Parachute Health.

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

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

- Handler: `parachute_list_inbox_documents`

- Connection type: `parachute`

## Inputs

- `assignee_user_id` — Assignee User Id (text, required)
  Required text value.
- `supplier_id` — Supplier Id (text)
  Optional text value.
- `worked` — Worked (boolean)
  Optional true-or-false value.
  Default: `false`
- `paginate_all` — Paginate All (boolean)
  Optional true-or-false value.
  Default: `true`
- `page` — Page (number)
  Optional numeric value.
  Default: `1`
- `max_pages` — Max Pages (number)
  Optional numeric value.
  Default: `50`

## Outputs

- `documents` — Documents
- `total` — Total
- `pages_fetched` — Pages Fetched
- `skipped_idless_count` — Skipped Idless Count
- `internal_statuses` — Internal Statuses
- `parachute_org_id` — Parachute Org Id
- `success` — Success
- `error` — Error
- `failure_category` — Failure Category

Output schema completeness: `best_effort_declared`

## Safety

- External effect: `read`
- Confirmation recommended: no
- Retry safe: yes
- Dry run supported: no

## Schemas

These schemas are first-pass authoring guidance. Runtime validation remains authoritative.

### Input schema

```json
{
  "type": "object",
  "required": [
    "assignee_user_id"
  ],
  "properties": {
    "page": {
      "type": "number",
      "default": 1,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    },
    "worked": {
      "type": "boolean",
      "default": false,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "max_pages": {
      "type": "number",
      "default": 50,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    },
    "supplier_id": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "paginate_all": {
      "type": "boolean",
      "default": true,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "assignee_user_id": {
      "type": "string",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "total": {},
    "success": {},
    "documents": {},
    "pages_fetched": {},
    "failure_category": {},
    "parachute_org_id": {},
    "internal_statuses": {},
    "skipped_idless_count": {}
  },
  "additionalProperties": true
}
```
