# Push Insurance to Patient

> Perform Push Insurance to Patient through NikoHealth.

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

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

- Handler: `nikohealth_sync_insurance`

- Connection type: `nikohealth`

## Inputs

- `patient_id` — Patient Id (text, required)
  Required text value.
- `document_id` — Document Id (expression, required)
  Required literal value or workflow expression.

## Outputs

- `success` — Success
- `status` — Status
- `synced_count` — Synced Count
- `skipped_count` — Skipped Count
- `policies_found` — Policies Found
- `already_present_count` — Already Present Count
- `unmapped_count` — Unmapped Count
- `failed_count` — Failed Count
- `failure_reasons` — Failure Reasons
- `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",
    "document_id"
  ],
  "properties": {
    "patient_id": {
      "type": "string",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    },
    "document_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "status": {},
    "success": {},
    "failed_count": {},
    "synced_count": {},
    "skipped_count": {},
    "policies_found": {},
    "unmapped_count": {},
    "failure_reasons": {},
    "already_present_count": {}
  },
  "additionalProperties": true
}
```
