Skip to content

Command: customer.addTag

Back to Index

Adds a tag to a Customer

Body
keystring

The tag key

Examples

Add tag to 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": "addTag",
"key": "blocked"
}
]
}
}]
Back to Index