# Resolve Referring Provider by Name

> Perform Resolve Referring Provider by Name through NikoHealth.

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

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

- Handler: `nikohealth_resolve_referring_provider_by_name`

- Connection type: `nikohealth`

## Inputs

- `first_name` — First Name (expression, required)
  Required literal value or workflow expression.
- `last_name` — Last Name (expression, required)
  Required literal value or workflow expression.

## Outputs

- `success` — Success
- `found` — Found
- `npi` — Npi
- `resolved_provider_id` — Resolved Provider Id
- `primary_location_id` — Primary Location Id
- `retryable` — Retryable
- `error_type` — Error Type
- `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",
  "required": [
    "first_name",
    "last_name"
  ],
  "properties": {
    "last_name": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "first_name": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "npi": {},
    "error": {},
    "found": {},
    "success": {},
    "retryable": {},
    "error_type": {},
    "primary_location_id": {},
    "resolved_provider_id": {}
  },
  "additionalProperties": true
}
```
