# Deactivate Insurance

> Perform Deactivate Insurance through NikoHealth.

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

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

- Handler: `nikohealth_deactivate_insurance`

- Connection type: `nikohealth`

## Inputs

- `insurance_id` — Insurance Id (text, required)
  Required text value.

## Outputs

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

### Output schema

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