# Admit VOB Retry Candidates

> Perform Admit VOB Retry Candidates through GenHealth - Eligibility.

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

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

- Handler: `eligibility_admit_vob_retry_candidates`

## Inputs

- `candidates` — Candidates (expression, required)
  Required literal value or workflow expression.
- `enforce_backoff` — Enforce Backoff (boolean)
  Optional true-or-false value.
  Default: `true`
- `max_retry_attempts` — Max Retry Attempts (number, required)
  Required numeric value.
- `backoff_minutes` — Backoff Minutes (expression, required)
  Required literal value or workflow expression.

## Outputs

- `success` — Success
- `status` — Status
- `candidates` — Candidates
- `processing_candidate_count` — Processing Candidate Count
- `retry_deferred_count` — Retry Deferred Count
- `retry_exhausted_count` — Retry Exhausted Count
- `terminal_unchanged_count` — Terminal Unchanged Count
- `sheet_handoff_resume_count` — Sheet Handoff Resume Count
- `retry_history` — Retry History
- `deferred_items` — Deferred Items
- `exhausted_items` — Exhausted Items
- `exhausted_handoff` — Exhausted Handoff
- `terminal_unchanged_items` — Terminal Unchanged Items
- `error` — Error

Output schema completeness: `best_effort_declared`

## 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",
  "required": [
    "candidates",
    "max_retry_attempts",
    "backoff_minutes"
  ],
  "properties": {
    "candidates": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "backoff_minutes": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "enforce_backoff": {
      "type": "boolean",
      "default": true,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "max_retry_attempts": {
      "type": "number",
      "description": "Required numeric value.",
      "x-workflow-field-type": "number"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "status": {},
    "success": {},
    "candidates": {},
    "retry_history": {},
    "deferred_items": {},
    "exhausted_items": {},
    "exhausted_handoff": {},
    "retry_deferred_count": {},
    "retry_exhausted_count": {},
    "terminal_unchanged_count": {},
    "terminal_unchanged_items": {},
    "processing_candidate_count": {},
    "sheet_handoff_resume_count": {}
  },
  "additionalProperties": true
}
```
