untag_task
Remove a project-scoped tag from a task.
Mutating tool: it changes data in Nurama. Available only when the key carries the matching scope.
Remove a project-scoped tag from a task. WRITE OPERATION. Tag stays alive in the project — only the association with this task is removed.
Input
| Property | Type | Required | Description |
|---|---|---|---|
taskId | string | yes | UUID of the task to untag. |
tagId | string | yes | UUID of the tag to detach. |
JSON Schema
{
"type": "object",
"properties": {
"taskId": {
"type": "string",
"description": "UUID of the task to untag."
},
"tagId": {
"type": "string",
"description": "UUID of the tag to detach."
}
},
"required": [
"taskId",
"tagId"
],
"additionalProperties": false
}