Skip to content

Command: customer.removeTag

Back to Index

Removes a tag from a Customer

Body
keystring

The tag key

Examples

Remove tag from existing Customer
POST https://<hantera-hostname>/resources/actors/customer/d5559220-d7dc-4254-bdf8-625382d0794f
Authorization: Bearer <YOUR TOKEN>
Content-Type: application/json
[{
"type": "applyCommands",
"body": {
"commands": [{
"type": "removeTag",
"key": "blocked"
}
]
}
}]
Back to Index