Skip to documentation
Brightree integration

Ensure Sales Order Status

Perform Ensure Sales Order Status through Brightree.

View as Markdown
brightree_ensure_sales_order_status
writebrightree

Inputs

  • sales_order_key
    expression
    Sales Order Key

    Optional literal value or workflow expression.

  • current_status
    expression
    Current Status

    Optional literal value or workflow expression.

  • target_status
    text
    Target Status

    Optional text value.

    Default: "Delivered"

  • dry_run
    boolean
    Dry Run

    Optional true-or-false value.

    Default: false

Outputs

No named outputs are declared for this action.

Output schema completeness: unknown

Safety

External effect
write
Confirmation recommended
No
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"
    },
    "target_status": {
      "type": "string",
      "default": "Delivered",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "current_status": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "sales_order_key": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {},
  "additionalProperties": true
}
View all Brightree actions