# Check Sales Order Messages

> Perform Check Sales Order Messages through Brightree.

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

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

- Handler: `brightree_check_sales_order_messages`

- Connection type: `brightree`

## Inputs

- `sales_order_key` — Sales Order Key (expression)
  Optional literal value or workflow expression.
- `ignored_message_codes` — Ignored Message Codes (textarea)
  Optional text value.

## Outputs

- `has_blocking_messages` — Has Blocking Messages
- `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": {
    "sales_order_key": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "ignored_message_codes": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "textarea"
    }
  },
  "additionalProperties": false
}
```

### Output schema

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