# Select Zoho VOB Candidates

> Perform Select Zoho VOB Candidates through GenHealth - Eligibility.

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

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

- Handler: `eligibility_select_zoho_vob_candidates`

## Inputs

- `records` — Records (json, required)
  Required JSON value.
- `max_candidates` — Max Candidates (number)
  Optional numeric value.
  Default: `5`
- `record_link_ids` — Record Link Ids (expression)
  Optional literal value or workflow expression.

## Outputs

- `success` — Success
- `error` — Error
- `failure_category` — Failure Category
- `candidates` — Candidates
- `decisions` — Decisions
- `candidate_count` — Candidate Count
- `review_count` — Review Count
- `skipped_count` — Skipped Count
- `truncated_count` — Truncated Count

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": [
    "records"
  ],
  "properties": {
    "records": {
      "description": "Required JSON value.",
      "x-workflow-field-type": "json"
    },
    "max_candidates": {
      "type": "number",
      "default": 5,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    },
    "record_link_ids": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "success": {},
    "decisions": {},
    "candidates": {},
    "review_count": {},
    "skipped_count": {},
    "candidate_count": {},
    "truncated_count": {},
    "failure_category": {}
  },
  "additionalProperties": true
}
```
