# Select Renewal Verification Follow-Up Candidates

> Perform Select Renewal Verification Follow-Up Candidates through GenHealth - Renewals.

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

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

- Handler: `renewal_select_followup_candidates`

## Inputs

- `lookback_hours` — Lookback Hours (number)
  Optional numeric value.
- `max_orders` — Max Orders (number)
  Optional numeric value.
- `account_key` — Account Key (text)
  Optional text value.
- `dry_run` — Dry Run (boolean)
  Optional true-or-false value.
  Default: `false`
- `trigger_payload` — Trigger Payload (json)
  Optional JSON value.

## Outputs

- `should_process` — Should Process
- `items` — Items
- `job_id` — Job Id
- `request` — Request

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"
    },
    "max_orders": {
      "type": "number",
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    },
    "account_key": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "lookback_hours": {
      "type": "number",
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    },
    "trigger_payload": {
      "description": "Optional JSON value.",
      "x-workflow-field-type": "json"
    }
  },
  "additionalProperties": false
}
```

### Output schema

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