# Prepare VOB Review Payload

> Perform Prepare VOB Review Payload through GenHealth - Eligibility.

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

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

- Handler: `eligibility_prepare_vob_review_payload`

## Inputs

- `candidate` — Candidate (expression, required)
  Required literal value or workflow expression.

## Outputs

- `success` — Success
- `status` — Status
- `reason` — Reason
- `source` — Source
- `routing` — Routing
- `payer_resolution` — Payer Resolution
- `redacted_availity_params` — Redacted Availity Params
- `error` — Error
- `error_message` — Error Message

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": [
    "candidate"
  ],
  "properties": {
    "candidate": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "reason": {},
    "source": {},
    "status": {},
    "routing": {},
    "success": {},
    "error_message": {},
    "payer_resolution": {},
    "redacted_availity_params": {}
  },
  "additionalProperties": true
}
```
