# Read Invoice Payment Page

> Perform Read Invoice Payment Page through Brightree.

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

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

- Handler: `brightree_read_invoice_payment_page`

- Connection type: `brightree`

## Inputs

- `deposit_key` — Deposit Key (expression)
  Optional literal value or workflow expression.
- `receipt_key` — Receipt Key (expression)
  Optional literal value or workflow expression.
- `invoice_key` — Invoice Key (expression)
  Optional literal value or workflow expression.

## Outputs

- `invoice_key` — Invoice Key
- `invoice_number` — Invoice Number
- `patient_name` — Patient Name
- `date_of_service` — Date Of Service
- `payer` — Payer
- `total_balance` — Total Balance
- `total_balance_amount` — Total Balance Amount
- `proc_lines` — Proc Lines
- `insurance_tiers` — Insurance Tiers
- `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"
    },
    "invoice_key": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "receipt_key": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "payer": {},
    "proc_lines": {},
    "invoice_key": {},
    "patient_name": {},
    "brightree_url": {},
    "total_balance": {},
    "invoice_number": {},
    "date_of_service": {},
    "insurance_tiers": {},
    "total_balance_amount": {}
  },
  "additionalProperties": true
}
```
