# Check Unresolved Messages

> Perform Check Unresolved Messages through Brightree.

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

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

- Handler: `brightree_check_unresolved_messages`

- Connection type: `brightree`

## Inputs

- `messages` — Messages (expression)
  Optional literal value or workflow expression.

## Outputs

- `has_unresolved` — Has Unresolved
- `reason` — Reason

Output schema completeness: `best_effort_declared`

## Safety

- External effect: `write`
- Confirmation recommended: no
- Retry safe: no
- Dry run supported: no

## Schemas

These schemas are first-pass authoring guidance. Runtime validation remains authoritative.

### Input schema

```json
{
  "type": "object",
  "properties": {
    "messages": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "reason": {},
    "has_unresolved": {}
  },
  "additionalProperties": true
}
```
