Update Order Tags By Name
Perform Update Order Tags By Name through NikoHealth.
nikohealth_update_order_tags_by_namewritenikohealth
Inputs
- Order Id
order_idexpressionrequiredRequired literal value or workflow expression.
- Remove Tag Names
remove_tag_namesexpressionOptional literal value or workflow expression.
- Add Tag Names
add_tag_namesexpressionOptional literal value or workflow expression.
- Skip If Empty
skip_if_emptybooleanOptional true-or-false value.
Default:
false - Best Effort
best_effortbooleanOptional true-or-false value.
Default:
false
Outputs
successSuccessstatusStatusskippedSkippedorder_idOrder Idtag_idsTag Idsadded_tag_idsAdded Tag Idsremoved_tag_idsRemoved Tag Idsmissing_tag_namesMissing Tag Namesfailure_reasonFailure ReasonerrorError
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",
"required": [
"order_id"
],
"properties": {
"order_id": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"best_effort": {
"type": "boolean",
"default": false,
"description": "Optional true-or-false value.",
"x-workflow-field-type": "boolean"
},
"add_tag_names": {
"description": "Optional literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"skip_if_empty": {
"type": "boolean",
"default": false,
"description": "Optional true-or-false value.",
"x-workflow-field-type": "boolean"
},
"remove_tag_names": {
"description": "Optional literal value or workflow expression.",
"x-workflow-field-type": "expression"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"error": {},
"status": {},
"skipped": {},
"success": {},
"tag_ids": {},
"order_id": {},
"added_tag_ids": {},
"failure_reason": {},
"removed_tag_ids": {},
"missing_tag_names": {}
},
"additionalProperties": true
}