# Identify Vendor

> Perform Identify Vendor through Brightree.

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

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

- Handler: `brightree_identify_vendor`

- Connection type: `brightree`

## Inputs

- `new_so_key` — New So Key (expression)
  Optional literal value or workflow expression.
- `patient_key` — Patient Key (expression)
  Optional literal value or workflow expression.
- `patient_note_key` — Patient Note Key (expression)
  Optional literal value or workflow expression.

## Outputs

- `reason` — Reason
- `status` — Status
- `has_vendor` — Has Vendor
- `vendor_name` — Vendor Name

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",
  "properties": {
    "new_so_key": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "patient_key": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "patient_note_key": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "reason": {},
    "status": {},
    "has_vendor": {},
    "vendor_name": {}
  },
  "additionalProperties": true
}
```
