# Resolve Source Location From Clinic Name

> Perform Resolve Source Location From Clinic Name through NikoHealth.

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

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

- Handler: `nikohealth_resolve_source_location`

## Inputs

- `clinic_name` — Clinic Name (expression, required)
  Required literal value or workflow expression.
- `clinic_npi` — Clinic Npi (expression)
  Optional literal value or workflow expression.

## Outputs

- `success` — Success
- `location_id` — Location Id
- `matched_location_name` — Matched Location Name
- `candidate_count` — Candidate Count
- `reason` — Reason
- `failure_category` — Failure Category
- `retryable` — Retryable
- `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": [
    "clinic_name"
  ],
  "properties": {
    "clinic_npi": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "clinic_name": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "reason": {},
    "success": {},
    "retryable": {},
    "location_id": {},
    "candidate_count": {},
    "failure_category": {},
    "matched_location_name": {}
  },
  "additionalProperties": true
}
```
