Rename or merge tags on a board
POST /io/board/:boardId/tag/replace
Rename or merge tags on a board.
Requires enableTagManagement to be true for the account and the requesting user to be a boardAdministrator.
Request Properties
| Param | Type | Usage | Default |
|---|---|---|---|
tags* |
string array | List of tags to be replaced | |
replaceWith* |
string | The new tag to replace with |
Example Request
{
"tags": [ "tag1", "tag2" ],
"replaceWith": "newTag"
}
Example Successful Response
204 No Content

