# Get Patient Insurance

> Perform Get Patient Insurance through NikoHealth.

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

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

- Handler: `nikohealth_get_patient_insurance`

- Connection type: `nikohealth`

## Inputs

- `patient_id` — Patient Id (text, required)
  Required text value.
- `insurance_id` — Insurance Id (expression)
  Optional literal value or workflow expression.
- `payer_id` — Payer Id (expression)
  Optional literal value or workflow expression.

## Outputs

- `success` — Success
- `insurance` — Insurance
- `insurances` — Insurances
- `count` — Count
- `error` — Error
- `error_type` — Error Type

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": [
    "patient_id"
  ],
  "properties": {
    "payer_id": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "patient_id": {
      "type": "string",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    },
    "insurance_id": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "count": {},
    "error": {},
    "success": {},
    "insurance": {},
    "error_type": {},
    "insurances": {}
  },
  "additionalProperties": true
}
```
