# Select Intake Candidates

> Perform Select Intake Candidates through GenHealth.

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

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

- Handler: `intake_select_candidates`

## Inputs

- `account_key` — Account Key (text)
  Optional text value.
- `from_date` — From Date (date)
  Optional date in YYYY-MM-DD format.
- `to_date` — To Date (date)
  Optional date in YYYY-MM-DD format.
- `dry_run` — Dry Run (boolean)
  Optional true-or-false value.
  Default: `false`
- `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

- `dry_run` — Dry Run
- `items` — Items
- `notify_summary` — Notify Summary
- `account_key` — Account Key

Output schema completeness: `best_effort_declared`

## Safety

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

## Schemas

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

### Input schema

```json
{
  "type": "object",
  "properties": {
    "dry_run": {
      "type": "boolean",
      "default": false,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "to_date": {
      "type": "string",
      "format": "date",
      "description": "Optional date in YYYY-MM-DD format.",
      "x-workflow-field-type": "date"
    },
    "from_date": {
      "type": "string",
      "format": "date",
      "description": "Optional date in YYYY-MM-DD format.",
      "x-workflow-field-type": "date"
    },
    "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"
    },
    "test_patient_state": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "items": {},
    "dry_run": {},
    "account_key": {},
    "notify_summary": {}
  },
  "additionalProperties": true
}
```
