# Resolve Policyholder Eligibility

> Perform Resolve Policyholder Eligibility through Consignment Intake.

Source: [https://genhealth.ai/docs/workflows/integrations/consignment-intake/resolve_befitting_policyholder](https://genhealth.ai/docs/workflows/integrations/consignment-intake/resolve_befitting_policyholder)

Integration: [Consignment Intake](https://genhealth.ai/docs/workflows/integrations/consignment-intake.md)

- Handler: `resolve_befitting_policyholder`

## Inputs

- `extracted_fields` — Extracted Fields (json, required)
  Required JSON value.

## Outputs

- `policyholder_outcome` — Policyholder Outcome
- `guarantor` — Guarantor
- `medicaid_payer_outcome` — Medicaid Payer Outcome
- `northwood_tpa_outcome` — Northwood Tpa Outcome
- `eligibility_rejection_category` — Eligibility Rejection Category
- `derived_payer_code` — Derived Payer Code
- `payer_mapping_id` — Payer Mapping Id
- `payer_code_source` — Payer Code Source

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

### Output schema

```json
{
  "type": "object",
  "properties": {
    "guarantor": {},
    "payer_mapping_id": {},
    "payer_code_source": {},
    "derived_payer_code": {},
    "policyholder_outcome": {},
    "northwood_tpa_outcome": {},
    "medicaid_payer_outcome": {},
    "eligibility_rejection_category": {}
  },
  "additionalProperties": true
}
```
