Skip to documentation
Brightree integration

Confirm Sales Order

Perform Confirm Sales Order through Brightree.

View as Markdown
brightree_confirm_sales_order
irreversiblebrightree

Inputs

  • sales_order_key
    expression
    Sales Order Key

    Optional literal value or workflow expression.

  • dry_run
    boolean
    Dry Run

    Optional true-or-false value.

    Default: false

Outputs

  • confirmedConfirmed
  • 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": false,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "sales_order_key": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "error": {},
    "confirmed": {}
  },
  "additionalProperties": true
}
View all Brightree actions