Skip to documentation
Brightree integration

Post Deposit

Perform Post Deposit through Brightree.

View as Markdown
brightree_post_deposit
irreversiblebrightree

Inputs

  • deposit_key
    expression
    Deposit Key

    Optional literal value or workflow expression.

  • funds_confirmed
    boolean
    Funds Confirmed

    Optional true-or-false value.

    Default: true

  • dry_run
    boolean
    Dry Run

    Optional true-or-false value.

    Default: true

Outputs

  • successSuccess
  • dry_runDry Run
  • deposit_keyDeposit Key
  • messageMessage
  • postedPosted
  • balanceBalance
  • is_balancedIs Balanced
  • was_already_postedWas Already Posted
  • failure_categoryFailure Category
  • brightree_urlBrightree Url
  • errorError

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
{
  "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
{
  "type": "object",
  "properties": {
    "error": {},
    "posted": {},
    "balance": {},
    "dry_run": {},
    "message": {},
    "success": {},
    "deposit_key": {},
    "is_balanced": {},
    "brightree_url": {},
    "failure_category": {},
    "was_already_posted": {}
  },
  "additionalProperties": true
}
View all Brightree actions