# Create Patient Insurance

> Perform Create Patient Insurance through NikoHealth.

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

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

- Handler: `nikohealth_create_insurance`

- Connection type: `nikohealth`

## Inputs

- `patient_id` — Patient Id (text, required)
  Required text value.
- `insurance_data` — Insurance Data (json, required)
  Required JSON value.

## Outputs

- `success` — Success
- `insurance` — Insurance
- `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": [
    "patient_id",
    "insurance_data"
  ],
  "properties": {
    "patient_id": {
      "type": "string",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    },
    "insurance_data": {
      "description": "Required JSON value.",
      "x-workflow-field-type": "json"
    }
  },
  "additionalProperties": false
}
```

### Output schema

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