Nurama Developers

tag_task

Attach a project-scoped tag to a task.

Mutating tool: it changes data in Nurama. Available only when the key carries the matching scope.

Attach a project-scoped tag to a task. WRITE OPERATION. The tag must already exist in the project; this tool does not create new tags. To see what tags exist, call list_tags for the project first.

Input

PropertyTypeRequiredDescription
taskIdstringyesUUID of the task to tag.
tagIdstringyesUUID of the project-scoped tag to apply.

JSON Schema

{
  "type": "object",
  "properties": {
    "taskId": {
      "type": "string",
      "description": "UUID of the task to tag."
    },
    "tagId": {
      "type": "string",
      "description": "UUID of the project-scoped tag to apply."
    }
  },
  "required": [
    "taskId",
    "tagId"
  ],
  "additionalProperties": false
}

On this page