# Get Deposit Balance

> Perform Get Deposit Balance through Brightree.

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

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

- Handler: `brightree_get_deposit_balance`

- Connection type: `brightree`

## Inputs

- `deposit_key` — Deposit Key (expression)
  Optional literal value or workflow expression.

## Outputs

- `deposit_key` — Deposit Key
- `balance` — Balance
- `is_balanced` — Is Balanced
- `reference` — Reference
- `description` — Description
- `brightree_url` — Brightree Url
- `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",
  "properties": {
    "deposit_key": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "balance": {},
    "reference": {},
    "deposit_key": {},
    "description": {},
    "is_balanced": {},
    "brightree_url": {}
  },
  "additionalProperties": true
}
```
