# Prepare Zoho VOB Subject

> Perform Prepare Zoho VOB Subject through GenHealth - Eligibility.

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

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

- Handler: `eligibility_prepare_zoho_vob_subject`

## Inputs

- `record_id` — Record Id (expression, required)
  Required literal value or workflow expression.
- `record_link_id` — Record Link Id (expression, required)
  Required literal value or workflow expression.
- `values` — Values (json, required)
  Required JSON value.

## Outputs

- `success` — Success
- `error` — Error
- `failure_category` — Failure Category
- `can_submit` — Can Submit
- `reason` — Reason
- `record_id` — Record Id
- `record_link_id` — Record Link Id
- `payer_label` — Payer Label
- `member_id` — Member Id
- `patient_first_name` — Patient First Name
- `patient_middle_name` — Patient Middle Name
- `patient_last_name` — Patient Last Name
- `patient_birth_date` — Patient Birth Date
- `subscriber_relationship` — Subscriber Relationship
- `expected_field_values` — Expected Field Values

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

### Output schema

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "reason": {},
    "success": {},
    "member_id": {},
    "record_id": {},
    "can_submit": {},
    "payer_label": {},
    "record_link_id": {},
    "failure_category": {},
    "patient_last_name": {},
    "patient_birth_date": {},
    "patient_first_name": {},
    "patient_middle_name": {},
    "expected_field_values": {},
    "subscriber_relationship": {}
  },
  "additionalProperties": true
}
```
