# Select Deferred Intake Retries

> Perform Select Deferred Intake Retries through GenHealth.

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

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

- Handler: `intake_select_retry_candidates`

## Inputs

- `lookback_hours` — Lookback Hours (number)
  Optional numeric value.
  Default: `48`
- `dry_run` — Dry Run (boolean)
  Optional true-or-false value.
  Default: `false`
- `trigger_payload` — Trigger Payload (json)
  Optional JSON value.

## Outputs

- `items` — Items

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"
    },
    "lookback_hours": {
      "type": "number",
      "default": 48,
      "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": {}
  },
  "additionalProperties": true
}
```
