# Resolve Portal Payer

> Perform Resolve Portal Payer through GenHealth - Eligibility.

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

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

- Handler: `eligibility_resolve_portal_payer`

## Inputs

- `portal` — Portal (select, required, dynamic options)
  Required selected identifier or value. Retrieve allowed values from the dynamic options endpoint.
- `source_payer_label` — Source Payer Label (expression, required)
  Required literal value or workflow expression.
- `source_payer_id` — Source Payer Id (expression)
  Optional literal value or workflow expression.

## Outputs

- `success` — Success
- `status` — Status
- `can_submit` — Can Submit
- `portal` — Portal
- `source_label` — Source Label
- `normalized_label` — Normalized Label
- `source_payer_id` — Source Payer Id
- `payer_id` — Payer Id
- `payer_name` — Payer Name
- `payer_aliases` — Payer Aliases
- `supported_service_types` — Supported Service Types
- `reason` — Reason
- `error` — Error
- `error_message` — Error Message

Output schema completeness: `best_effort_declared`

## Safety

- External effect: `read`
- Confirmation recommended: no
- Retry safe: yes
- Dry run supported: no

## Schemas

These schemas are first-pass authoring guidance. Runtime validation remains authoritative.

### Input schema

```json
{
  "type": "object",
  "required": [
    "portal",
    "source_payer_label"
  ],
  "properties": {
    "portal": {
      "type": "string",
      "description": "Required selected identifier or value. Retrieve allowed values from the dynamic options endpoint.",
      "x-dynamic-options": true,
      "x-workflow-field-type": "select"
    },
    "source_payer_id": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "source_payer_label": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "portal": {},
    "reason": {},
    "status": {},
    "success": {},
    "payer_id": {},
    "can_submit": {},
    "payer_name": {},
    "source_label": {},
    "error_message": {},
    "payer_aliases": {},
    "source_payer_id": {},
    "normalized_label": {},
    "supported_service_types": {}
  },
  "additionalProperties": true
}
```
