# Search Payers

> Perform Search Payers through NikoHealth.

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

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

- Handler: `nikohealth_search_payers`

- Connection type: `nikohealth`

## Inputs

- `search_term` — Search Term (text)
  Optional text value.

## Outputs

- `success` — Success
- `payers` — Payers
- `count` — Count
- `error` — Error

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",
  "properties": {
    "search_term": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    }
  },
  "additionalProperties": false
}
```

### Output schema

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