# Save Patient, Insurance, and Order Details to GenHealth

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

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

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

- Handler: `tomorrow_health_seed_structured_intake_data`

- Connection type: `tomorrow_health`

## Inputs

- `document_id` — Document Id (expression, required)
  Required literal value or workflow expression.
- `order_id` — Order Id (expression, required)
  Required literal value or workflow expression.
- `order_details` — Order Details (expression)
  Optional literal value or workflow expression.
- `raw_order_details` — Raw Order Details (expression)
  Optional literal value or workflow expression.

## Outputs

- `success` — Success
- `document_id` — Document Id
- `order_id` — Order Id
- `friendly_id` — Friendly Id
- `patient_id` — Patient Id
- `insurance_id` — Insurance Id
- `provider_id` — Provider Id
- `seeded_fields` — Seeded Fields
- `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": [
    "document_id",
    "order_id"
  ],
  "properties": {
    "order_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "document_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "order_details": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "raw_order_details": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "success": {},
    "order_id": {},
    "patient_id": {},
    "document_id": {},
    "friendly_id": {},
    "provider_id": {},
    "insurance_id": {},
    "seeded_fields": {}
  },
  "additionalProperties": true
}
```
