# Select Subsequent Fax Candidates

> Perform Select Subsequent Fax Candidates through GenHealth.

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

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

- Handler: `intake_select_subsequent_candidates`

## Inputs

- `account_key` — Account Key (text)
  Optional text value.
- `lookback_days` — Lookback Days (number)
  Optional numeric value.
  Default: `7`
- `min_age_hours` — Min Age Hours (number)
  Optional numeric value.
  Default: `42`
- `dry_run` — Dry Run (boolean)
  Optional true-or-false value.
  Default: `false`

## Outputs

- `should_process` — Should Process
- `job_id` — Job Id
- `dry_run` — Dry Run
- `items` — Items
- `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"
    },
    "account_key": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "lookback_days": {
      "type": "number",
      "default": 7,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    },
    "min_age_hours": {
      "type": "number",
      "default": 42,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    }
  },
  "additionalProperties": false
}
```

### Output schema

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