Remove current task tags
The Remove Current Task Tags robot strips the named tags from the task whose automation or business process it runs in — no task ID needed. Tags are given as a list (one per line) and matched case-insensitively. It returns Success (Y/N), the number of tags removed and the list of remaining tags.
A robot for the task funnel: add it to a stage automation rule or a task business process and it strips the listed tags from the current task — no need to determine its ID, the robot takes the task from the process context. Tags are matched case-insensitively, surrounding whitespace is dropped, and the task's other tags are kept. Internally it reads the current tags, excludes the matched ones and writes the remainder via tasks.task.update (the API has no "remove one tag" operation, so the list is rewritten in full). If none of the named tags are present, no write happens. A typical scenario is stripping a "new" or "awaiting reply" label when a task moves to a given Kanban stage. To act on a task by its ID from another entity's process (a deal or lead), use the Remove Task Tags by ID robot instead. It returns Success (Y/N), the number of tags removed and the list of remaining tags.
What input parameters does the robot accept?
| Parameter | Type | Required? | Default |
|---|---|---|---|
| Tags to remove (one per line) | string | yes |
What does the robot return?
| Parameter | Type |
|---|---|
| Success (Y/N) | string |
| How many tags were removed | int |
| Remaining tags | string |
Scenario: strip the "new" tag when a task moves to the "In progress" stage
- In the task stage automation add the Remove Current Task Tags robot
- List "new" in the tags — no task ID needed
- The robot returns Success = Y and removed_count = 1 if the tag was on the task