# Get Patient Insurance From Parachute

> Perform Get Patient Insurance From Parachute through Parachute Health.

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

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

- Handler: `parachute_get_patient_insurance`

- Connection type: `parachute`

## Inputs

- `inbox_document_id` — Inbox Document Id (expression, required)
  Required literal value or workflow expression.
- `parachute_org_id` — Parachute Org Id (expression)
  Optional literal value or workflow expression.
- `mode` — Mode (select, required)
  Required selected identifier or value.
  Options: off ("off"), shadow ("shadow"), enforce ("enforce")

## Outputs

- `carrier_name` — Carrier Name
- `member_id` — Member Id
- `mode` — Mode

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",
    "mode"
  ],
  "properties": {
    "mode": {
      "enum": [
        "off",
        "shadow",
        "enforce"
      ],
      "type": "string",
      "description": "Required selected identifier or value.",
      "x-workflow-field-type": "select"
    },
    "parachute_org_id": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "inbox_document_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "mode": {},
    "member_id": {},
    "carrier_name": {}
  },
  "additionalProperties": true
}
```
