# Get Inbox Document

> Perform Get Inbox Document through Parachute Health.

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

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

- Handler: `parachute_get_inbox_document`

- Connection type: `parachute`

## Inputs

- `inbox_document_id` — Inbox Document Id (text, required)
  Required text value.
- `parachute_org_id` — Parachute Org Id (text)
  Optional text value.

## Outputs

- `inbox_document_id` — Inbox Document Id
- `csr_inbox_state` — Csr Inbox State
- `facility` — Facility
- `clinician` — Clinician
- `extracted_cart_items` — Extracted Cart Items
- `documents` — Documents
- `patient_count` — Patient Count
- `skipped` — Skipped
- `skip_reason` — Skip Reason
- `skip_message` — Skip Message
- `status_code` — Status Code
- `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": [
    "inbox_document_id"
  ],
  "properties": {
    "parachute_org_id": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "inbox_document_id": {
      "type": "string",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "skipped": {},
    "success": {},
    "facility": {},
    "clinician": {},
    "documents": {},
    "skip_reason": {},
    "status_code": {},
    "skip_message": {},
    "patient_count": {},
    "csr_inbox_state": {},
    "failure_category": {},
    "inbox_document_id": {},
    "extracted_cart_items": {}
  },
  "additionalProperties": true
}
```
