# Post Deposit

> Perform Post Deposit through Brightree.

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

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

- Handler: `brightree_post_deposit`

- Connection type: `brightree`

## Inputs

- `deposit_key` — Deposit Key (expression)
  Optional literal value or workflow expression.
- `funds_confirmed` — Funds Confirmed (boolean)
  Optional true-or-false value.
  Default: `true`
- `dry_run` — Dry Run (boolean)
  Optional true-or-false value.
  Default: `true`

## Outputs

- `success` — Success
- `dry_run` — Dry Run
- `deposit_key` — Deposit Key
- `message` — Message
- `posted` — Posted
- `balance` — Balance
- `is_balanced` — Is Balanced
- `was_already_posted` — Was Already Posted
- `failure_category` — Failure Category
- `brightree_url` — Brightree Url
- `error` — Error

Output schema completeness: `best_effort_declared`

## Safety

- External effect: `irreversible`
- Confirmation recommended: yes
- Retry safe: no
- Dry run supported: yes

## Schemas

These schemas are first-pass authoring guidance. Runtime validation remains authoritative.

### Input schema

```json
{
  "type": "object",
  "properties": {
    "dry_run": {
      "type": "boolean",
      "default": true,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "deposit_key": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "funds_confirmed": {
      "type": "boolean",
      "default": true,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "posted": {},
    "balance": {},
    "dry_run": {},
    "message": {},
    "success": {},
    "deposit_key": {},
    "is_balanced": {},
    "brightree_url": {},
    "failure_category": {},
    "was_already_posted": {}
  },
  "additionalProperties": true
}
```
