# Get Patient Demographics From Parachute

> Perform Get Patient Demographics From Parachute through Parachute Health.

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

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

- Handler: `parachute_get_patient_demographics`

- 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

- `address_street` — Address Street
- `address_line2` — Address Line2
- `address_city` — Address City
- `address_state` — Address State
- `address_zip_code` — Address Zip Code
- `phone_number` — Phone Number
- `first_name` — First Name
- `last_name` — Last Name
- `birth_date` — Birth Date
- `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": {},
    "last_name": {},
    "birth_date": {},
    "first_name": {},
    "address_city": {},
    "phone_number": {},
    "address_line2": {},
    "address_state": {},
    "address_street": {},
    "address_zip_code": {}
  },
  "additionalProperties": true
}
```
