# Check Eligibility

> Perform Check Eligibility through Brightree.

Source: [https://genhealth.ai/docs/workflows/integrations/brightree/brightree_check_eligibility](https://genhealth.ai/docs/workflows/integrations/brightree/brightree_check_eligibility)

Integration: [Brightree](https://genhealth.ai/docs/workflows/integrations/brightree.md)

- Handler: `brightree_check_eligibility`

- Connection type: `brightree`

## Inputs

- `patient_key` — Patient Key (expression)
  Optional literal value or workflow expression.
- `patient_note_key` — Patient Note Key (expression)
  Optional literal value or workflow expression.
- `check_secondary` — Check Secondary (boolean)
  Optional true-or-false value.
  Default: `false`

## Outputs

No named outputs are declared for this action.

Output schema completeness: `unknown`

## 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": {
    "patient_key": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "check_secondary": {
      "type": "boolean",
      "default": false,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "patient_note_key": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {},
  "additionalProperties": true
}
```
