# Check Eligibility

> Perform Check Eligibility through Regal/Lakeside.

Source: [https://genhealth.ai/docs/workflows/integrations/regal-lakeside/regal_lakeside_check_eligibility](https://genhealth.ai/docs/workflows/integrations/regal-lakeside/regal_lakeside_check_eligibility)

Integration: [Regal/Lakeside](https://genhealth.ai/docs/workflows/integrations/regal-lakeside.md)

- Handler: `regal_lakeside_check_eligibility`

- Connection type: `regal_lakeside`

## Inputs

- `member_id` — Member Id (text)
  Optional text value.
- `patient_first` — Patient First (text)
  Optional text value.
- `patient_last` — Patient Last (text)
  Optional text value.
- `patient_dob` — Patient Dob (date)
  Optional date in YYYY-MM-DD format.
- `capture_elig_pdf` — Capture Elig Pdf (boolean)
  Optional true-or-false value.
- `show_elig_pdf_in_inbox` — Show Elig Pdf In Inbox (boolean)
  Optional true-or-false value.
  Default: `false`
- `ecw_patient_address` — Ecw Patient Address (text)
  Optional text value.
- `ecw_patient_name` — Ecw Patient Name (text)
  Optional text value.
- `ecw_patient_city` — Ecw Patient City (text)
  Optional text value.
- `ecw_patient_zip` — Ecw Patient Zip (text)
  Optional text value.

## Outputs

- `success` — Success
- `eligibility_active` — Eligibility Active
- `member_id` — Member Id
- `mbrno` — Mbrno
- `coverage_details` — Coverage Details
- `elig_pdf_path` — Elig Pdf Path
- `eligibility_pdf_document_id` — Eligibility Pdf Document Id
- `identity_mismatch` — Identity Mismatch
- `identity_mismatch_reason` — Identity Mismatch Reason
- `failure_category` — Failure Category
- `company` — Company
- `line_of_business` — Line Of Business
- `referral_network` — Referral Network
- `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",
  "properties": {
    "member_id": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "patient_dob": {
      "type": "string",
      "format": "date",
      "description": "Optional date in YYYY-MM-DD format.",
      "x-workflow-field-type": "date"
    },
    "patient_last": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "patient_first": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "ecw_patient_zip": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "capture_elig_pdf": {
      "type": "boolean",
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "ecw_patient_city": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "ecw_patient_name": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "ecw_patient_address": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "show_elig_pdf_in_inbox": {
      "type": "boolean",
      "default": false,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "mbrno": {},
    "company": {},
    "success": {},
    "member_id": {},
    "elig_pdf_path": {},
    "coverage_details": {},
    "failure_category": {},
    "line_of_business": {},
    "referral_network": {},
    "identity_mismatch": {},
    "eligibility_active": {},
    "identity_mismatch_reason": {},
    "eligibility_pdf_document_id": {}
  },
  "additionalProperties": true
}
```
