# Save Patient, Insurance, and Order Details to GenHealth

> Perform Save Patient, Insurance, and Order Details to GenHealth through Parachute Health.

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

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

- Handler: `parachute_seed_structured_intake_data`

## Inputs

- `order_id` — Order Id (expression, required)
  Required literal value or workflow expression.
- `supplier_id` — Supplier Id (expression)
  Optional literal value or workflow expression.
- `order_details` — Order Details (expression, required)
  Required literal value or workflow expression.
- `primary_insurance_carrier_id_override` — Primary Insurance Carrier Id Override (expression)
  Optional literal value or workflow expression.
- `expected_niko_payer_id` — Expected Niko Payer Id (expression)
  Optional literal value or workflow expression.
- `include_secondary_phone` — Include Secondary Phone (boolean)
  Optional true-or-false value.
  Default: `false`

## Outputs

- `success` — Success
- `source_fingerprint` — Source Fingerprint
- `document_id` — Document Id
- `order_id` — Order Id
- `supplier_id` — Supplier Id
- `patient_id` — Patient Id
- `insurance_id` — Insurance Id
- `primary_insurance_policy_id` — Primary Insurance Policy Id
- `secondary_insurance_policy_id` — Secondary Insurance Policy Id
- `insurance_policy_ids` — Insurance Policy Ids
- `diagnosis_count` — Diagnosis Count
- `order_item_id` — Order Item Id
- `seeded_fields` — Seeded Fields
- `warnings` — Warnings
- `error` — Error

Output schema completeness: `best_effort_declared`

## Safety

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

## Schemas

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

### Input schema

```json
{
  "type": "object",
  "required": [
    "order_id",
    "order_details"
  ],
  "properties": {
    "order_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "supplier_id": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "order_details": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "expected_niko_payer_id": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "include_secondary_phone": {
      "type": "boolean",
      "default": false,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "primary_insurance_carrier_id_override": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "success": {},
    "order_id": {},
    "warnings": {},
    "patient_id": {},
    "document_id": {},
    "supplier_id": {},
    "insurance_id": {},
    "order_item_id": {},
    "seeded_fields": {},
    "diagnosis_count": {},
    "source_fingerprint": {},
    "insurance_policy_ids": {},
    "primary_insurance_policy_id": {},
    "secondary_insurance_policy_id": {}
  },
  "additionalProperties": true
}
```
