# Read Patient Facility

> Perform Read Patient Facility through Brightree.

Source: [https://genhealth.ai/docs/workflows/integrations/brightree/brightree_read_patient_facility](https://genhealth.ai/docs/workflows/integrations/brightree/brightree_read_patient_facility)

Integration: [Brightree](https://genhealth.ai/docs/workflows/integrations/brightree.md)

- Handler: `brightree_read_patient_facility`

- Connection type: `brightree`

## Inputs

- `patient_key` — Patient Key (expression, required)
  Required literal value or workflow expression.

## Outputs

- `success` — Success
- `facility_found` — Facility Found
- `facility` — Facility
- `facility_name` — Facility Name
- `facility_source` — Facility Source
- `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_key"
  ],
  "properties": {
    "patient_key": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "success": {},
    "facility": {},
    "facility_name": {},
    "facility_found": {},
    "facility_source": {}
  },
  "additionalProperties": true
}
```
