# List Deposit Receipts

> Perform List Deposit Receipts through Brightree.

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

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

- Handler: `brightree_list_deposit_receipts`

- Connection type: `brightree`

## Inputs

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

## Outputs

- `deposit_key` — Deposit Key
- `receipts` — Receipts
- `count` — Count
- `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": {
    "count": {},
    "error": {},
    "receipts": {},
    "deposit_key": {}
  },
  "additionalProperties": true
}
```
