Adjust Item Quantity
Perform Adjust Item Quantity through Brightree.
brightree_adjust_item_quantitywritebrightree
Inputs
- Sales Order Key
sales_order_keyexpressionOptional literal value or workflow expression.
- Proc Code
proc_codetextOptional text value.
- Quantity
quantityexpressionOptional literal value or workflow expression.
- Billing Quantity
billing_quantityexpressionOptional literal value or workflow expression.
- Dry Run
dry_runbooleanOptional 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"
},
"quantity": {
"description": "Optional literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"proc_code": {
"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"
},
"billing_quantity": {
"description": "Optional literal value or workflow expression.",
"x-workflow-field-type": "expression"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {},
"additionalProperties": true
}