# Fill Insurance Details From Eligibility

> Perform Fill Insurance Details From Eligibility through NikoHealth.

Source: [https://genhealth.ai/docs/workflows/integrations/nikohealth/nikohealth_fill_insurance_details_from_eligibility](https://genhealth.ai/docs/workflows/integrations/nikohealth/nikohealth_fill_insurance_details_from_eligibility)

Integration: [NikoHealth](https://genhealth.ai/docs/workflows/integrations/nikohealth.md)

- Handler: `nikohealth_fill_insurance_details_from_eligibility`

- Connection type: `nikohealth`

## Inputs

- `insurance_id` — Insurance Id (expression, required)
  Required literal value or workflow expression.
- `eligibility_result` — Eligibility Result (expression, required)
  Required literal value or workflow expression.
- `coinsurance_service_codes` — Coinsurance Service Codes (text)
  Optional text value.
- `dry_run` — Dry Run (boolean)
  Optional true-or-false value.

## Outputs

- `success` — Success
- `insurance_id` — Insurance Id
- `updated_fields` — Updated Fields
- `skipped_fields` — Skipped Fields
- `dry_run` — Dry Run
- `error` — Error

Output schema completeness: `best_effort_declared`

## Safety

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

## Schemas

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

### Input schema

```json
{
  "type": "object",
  "required": [
    "insurance_id",
    "eligibility_result"
  ],
  "properties": {
    "dry_run": {
      "type": "boolean",
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "insurance_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "eligibility_result": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "coinsurance_service_codes": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "dry_run": {},
    "success": {},
    "insurance_id": {},
    "skipped_fields": {},
    "updated_fields": {}
  },
  "additionalProperties": true
}
```
