Skip to content

Command: order.addTag

Back to Index

Adds a tag to an Order

Body
keystring

The tag key

Examples

Add tag to existing order
POST https://<hantera-hostname>/resources/actors/order/ec806cf5-d976-49de-b390-03b303da8117
Authorization: Bearer <YOUR TOKEN>
Content-Type: application/json
[{
"type": "applyCommands",
"body": {
"commands": [{
"type": "addTag",
"key": "blocked"
}
]
}
}]
Back to Index