# Get Order Patient Info

> Perform Get Order Patient Info through Parachute Health.

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

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

- Handler: `parachute_get_order_patient_info`

- Connection type: `parachute`

## Inputs

- `order_id` — Order Id (text, required)
  Required text value.
- `supplier_id` — Supplier Id (text)
  Optional text value.

## Outputs

- `patient_id` — Patient Id
- `first_name` — First Name
- `last_name` — Last Name
- `date_of_birth` — Date Of Birth
- `sex` — Sex
- `mrn` — Mrn
- `address` — Address
- `primary_insurance` — Primary Insurance
- `insurance_policies` — Insurance Policies
- `icd10_codes` — Icd10 Codes
- `doctor` — Doctor
- `clinical_facility` — Clinical Facility

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

### Output schema

```json
{
  "type": "object",
  "properties": {
    "mrn": {},
    "sex": {},
    "doctor": {},
    "address": {},
    "last_name": {},
    "first_name": {},
    "patient_id": {},
    "icd10_codes": {},
    "date_of_birth": {},
    "clinical_facility": {},
    "primary_insurance": {},
    "insurance_policies": {}
  },
  "additionalProperties": true
}
```
