# Search Physicians

> Perform Search Physicians through Bonafide.

Source: [https://genhealth.ai/docs/workflows/integrations/bonafide/bonafide_search_physicians](https://genhealth.ai/docs/workflows/integrations/bonafide/bonafide_search_physicians)

Integration: [Bonafide](https://genhealth.ai/docs/workflows/integrations/bonafide.md)

- Handler: `bonafide_search_physicians`

- Connection type: `bonafide`

## Inputs

- `last_name` — Last Name (expression)
  Optional literal value or workflow expression.
- `first_name` — First Name (expression)
  Optional literal value or workflow expression.
- `npi` — Npi (expression)
  Optional literal value or workflow expression.

## Outputs

- `success` — Success
- `physicians` — Physicians
- `total_count` — Total Count
- `message` — Message
- `error` — Error
- `error_message` — Error Message

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": {
    "npi": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "last_name": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "first_name": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "message": {},
    "success": {},
    "physicians": {},
    "total_count": {},
    "error_message": {}
  },
  "additionalProperties": true
}
```
