# Summarize Eligibility Response

> Perform Summarize Eligibility Response through Availity.

Source: [https://genhealth.ai/docs/workflows/integrations/availity/availity_summarize_eligibility_response](https://genhealth.ai/docs/workflows/integrations/availity/availity_summarize_eligibility_response)

Integration: [Availity](https://genhealth.ai/docs/workflows/integrations/availity.md)

- Handler: `availity_summarize_eligibility_response`

## Inputs

- `enabled` — Enabled (boolean)
  Optional true-or-false value.
  Default: `true`
- `skip_reason` — Skip Reason (expression)
  Optional literal value or workflow expression.
- `coverage_response` — Coverage Response (json, required)
  Required JSON value.
- `service_types` — Service Types (expression)
  Optional literal value or workflow expression.

## Outputs

- `success` — Success
- `coverage_summary` — Coverage Summary
- `payer` — Payer
- `plan` — Plan
- `selected_benefit` — Selected Benefit
- `benefit_summary` — Benefit Summary
- `vob_fields` — Vob Fields
- `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",
  "required": [
    "coverage_response"
  ],
  "properties": {
    "enabled": {
      "type": "boolean",
      "default": true,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "skip_reason": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "service_types": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "coverage_response": {
      "description": "Required JSON value.",
      "x-workflow-field-type": "json"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "plan": {},
    "error": {},
    "payer": {},
    "success": {},
    "vob_fields": {},
    "benefit_summary": {},
    "coverage_summary": {},
    "selected_benefit": {}
  },
  "additionalProperties": true
}
```
