Removes a tag from a Customer
key
The tag key
POST https://<hantera-hostname>/resources/actors/customer/d5559220-d7dc-4254-bdf8-625382d0794fAuthorization: Bearer <YOUR TOKEN>Content-Type: application/json [{ "type": "applyCommands", "body": { "commands": [{ "type": "removeTag", "key": "blocked" } ] }}]
curl -i -X POST \ https://<hantera-hostname>/resources/actors/customer/d5559220-d7dc-4254-bdf8-625382d0794f \ -H 'Authorization: Bearer <YOUR TOKEN>' \ -H 'Content-Type: application/json' \ -d '[{ "type": "applyCommands", "body": { "commands": [{ "type": "removeTag", "key": "blocked" } ] }}]'
Invoke-WebRequest `-Uri "https://<hantera-hostname>/resources/actors/customer/d5559220-d7dc-4254-bdf8-625382d0794f" `-Method POST ` `-Headers @{Authorization="Bearer <YOUR TOKEN>"; 'Content-Type'="application/json"}-Body '[{ "type": "applyCommands", "body": { "commands": [{ "type": "removeTag", "key": "blocked" } ] }}]'