# Read Patient Personal State

> Perform Read Patient Personal State through Brightree.

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

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

- Handler: `brightree_read_patient_personal_state`

- Connection type: `brightree`

## Inputs

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

## Outputs

- `success` — Success
- `personal_state` — Personal State
- `branch_office` — Branch Office
- `account_group` — Account Group
- `pos` — Pos
- `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": {
    "pos": {},
    "error": {},
    "success": {},
    "account_group": {},
    "branch_office": {},
    "personal_state": {}
  },
  "additionalProperties": true
}
```
