Skip to content

Command: order.removeTag

Back to Index

Removes a tag from an Order

Body
keystring

The tag key

Examples

Remove tag from 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": "removeTag",
"key": "blocked"
}
]
}
}]
Back to Index