# Intake Precheck

> Perform Intake Precheck through GenHealth.

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

Integration: [GenHealth](https://genhealth.ai/docs/workflows/integrations/gen-health.md)

- Handler: `intake_precheck`

## Inputs

- `order_id` — Order Id (text)
  Optional text value.
- `workflow_number` — Workflow Number (text)
  Optional text value.
- `patient_id` — Patient Id (text)
  Optional text value.
- `account_key` — Account Key (text)
  Optional text value.
- `brightree_test` — Brightree Test (boolean)
  Optional true-or-false value.
  Default: `false`
- `test_patient_id` — Test Patient Id (text)
  Optional text value.
- `test_patient_state` — Test Patient State (text)
  Optional text value.

## Outputs

- `order_id` — Order Id
- `patient_id` — Patient Id
- `patient_state` — Patient State
- `brightree_test` — Brightree Test
- `success` — Success
- `delivery_address` — Delivery Address
- `note_facility_name` — Note Facility Name
- `note_facility_updates` — Note Facility Updates
- `note_indicates_private_residence` — Note Indicates Private Residence
- `dos` — Dos
- `workflow_number` — Workflow Number
- `skip_doc_creation` — Skip Doc Creation

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",
  "properties": {
    "order_id": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "patient_id": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "account_key": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "brightree_test": {
      "type": "boolean",
      "default": false,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "test_patient_id": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "workflow_number": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "test_patient_state": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "dos": {},
    "success": {},
    "order_id": {},
    "patient_id": {},
    "patient_state": {},
    "brightree_test": {},
    "workflow_number": {},
    "delivery_address": {},
    "skip_doc_creation": {},
    "note_facility_name": {},
    "note_facility_updates": {},
    "note_indicates_private_residence": {}
  },
  "additionalProperties": true
}
```
