Skip to documentation
Brightree integration

Enqueue Sales Order Template Processing

Perform Enqueue Sales Order Template Processing through Brightree.

View as Markdown
brightree_enqueue_sales_order_template_processing
writebrightree

Inputs

  • sales_order_key
    expression
    Sales Order Key

    Optional literal value or workflow expression.

  • account_key
    text
    Account Key

    Optional text value.

  • runs
    number
    Runs

    Optional numeric value.

    Default: 1

  • use_local_agent
    boolean
    Use Local Agent

    Optional true-or-false value.

    Default: false

  • http_only
    boolean
    Http Only

    Optional true-or-false value.

    Default: true

Outputs

  • successSuccess
  • orders_dispatchedOrders Dispatched
  • order_keysOrder Keys
  • messageMessage
  • errorError

Output schema completeness: best_effort_declared

Safety

External effect
write
Confirmation recommended
No
Retry safe
No
Dry run supported
No

Schemas

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

Input schema
{
  "type": "object",
  "properties": {
    "runs": {
      "type": "number",
      "default": 1,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    },
    "http_only": {
      "type": "boolean",
      "default": true,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "account_key": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "sales_order_key": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "use_local_agent": {
      "type": "boolean",
      "default": false,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "error": {},
    "message": {},
    "success": {},
    "order_keys": {},
    "orders_dispatched": {}
  },
  "additionalProperties": true
}
View all Brightree actions