# Read Deposit ERN Tab

> Perform Read Deposit ERN Tab through Brightree.

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

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

- Handler: `brightree_read_deposit_ern`

- Connection type: `brightree`

## Inputs

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

## Outputs

- `deposit_key` — Deposit Key
- `claims` — Claims
- `count` — Count
- `provider` — Provider
- `batch` — Batch
- `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": {
    "batch": {},
    "count": {},
    "error": {},
    "claims": {},
    "provider": {},
    "deposit_key": {},
    "brightree_url": {}
  },
  "additionalProperties": true
}
```
