Nurama Developers

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

PropertyTypeRequiredDescription
taskIdstringyesUUID of the task to untag.
tagIdstringyesUUID 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
}

On this page