Append Order Note
Perform Append Order Note through Brightree.
brightree_append_order_notewritebrightree
Inputs
- Sales Order Key
sales_order_keyexpressionOptional literal value or workflow expression.
- Note Text
note_texttextareaOptional text value.
- Condition Value
condition_valueexpressionOptional literal value or workflow expression.
- Condition Expected Value
condition_expected_valuetextOptional text value.
- Guard Value
guard_valueexpressionOptional literal value or workflow expression.
- Guard Expected Value
guard_expected_valuetextOptional text value.
- Guard Label
guard_labeltextOptional text value.
- Skip If Present Text
skip_if_present_texttextOptional text value.
- Order Lease
order_leasejsonOptional JSON value.
- Dry Run
dry_runbooleanOptional true-or-false value.
Default:
false
Outputs
successSuccessstatusStatusattemptedAttemptedupdatedUpdatedalready_presentAlready Presentsales_order_keySales Order Keynote_textNote TextreasonReasonmessageMessageorder_leaseOrder LeaseerrorError
Output schema completeness: best_effort_declared
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"
},
"note_text": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "textarea"
},
"guard_label": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"guard_value": {
"description": "Optional literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"order_lease": {
"description": "Optional JSON value.",
"x-workflow-field-type": "json"
},
"condition_value": {
"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"
},
"guard_expected_value": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"skip_if_present_text": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"condition_expected_value": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"error": {},
"reason": {},
"status": {},
"message": {},
"success": {},
"updated": {},
"attempted": {},
"note_text": {},
"order_lease": {},
"already_present": {},
"sales_order_key": {}
},
"additionalProperties": true
}