# Prepare Precheck Context

> Perform Prepare Precheck Context through GenHealth.

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

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

- Handler: `intake_prepare_precheck_context`

## 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

No named outputs are declared for this action.

Output schema completeness: `unknown`

## 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": {},
  "additionalProperties": true
}
```
