# Get Ordering Provider Details

> Perform Get Ordering Provider Details through GenHealth - SWO Outreach.

Source: [https://genhealth.ai/docs/workflows/integrations/gen-health-swo-outreach/swo_get_ordering_provider_details](https://genhealth.ai/docs/workflows/integrations/gen-health-swo-outreach/swo_get_ordering_provider_details)

Integration: [GenHealth - SWO Outreach](https://genhealth.ai/docs/workflows/integrations/gen-health-swo-outreach.md)

- Handler: `swo_get_ordering_provider_details`

- Connection type: `clearpathmd`

## Inputs

- `patient_id` — Patient Id (expression, required)
  Required literal value or workflow expression.
- `patient_provider_id` — Patient Provider Id (expression)
  Optional literal value or workflow expression.

## Outputs

- `success` — Success
- `data` — Data
- `matched_in_csv` — Matched In Csv
- `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": [
    "patient_id"
  ],
  "properties": {
    "patient_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "patient_provider_id": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
```

### Output schema

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