Enqueue Sales Order Template Processing
Perform Enqueue Sales Order Template Processing through Brightree.
brightree_enqueue_sales_order_template_processingwritebrightree
Inputs
- Sales Order Key
sales_order_keyexpressionOptional literal value or workflow expression.
- Account Key
account_keytextOptional text value.
- Runs
runsnumberOptional numeric value.
Default:
1 - Use Local Agent
use_local_agentbooleanOptional true-or-false value.
Default:
false - Http Only
http_onlybooleanOptional true-or-false value.
Default:
true
Outputs
successSuccessorders_dispatchedOrders Dispatchedorder_keysOrder KeysmessageMessageerrorError
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
}