Nurama Developers

add_existing_task_to_board

Attach an existing task to a board (e.g.

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

Attach an existing task to a board (e.g. to move it across boards within the same project, or to re-board a task that was previously unassigned to any board). WRITE OPERATION. The task's board and column references update; its subject/description/assignee stay intact. For moving within the same board's columns, use move_task instead.

Input

PropertyTypeRequiredDescription
boardIdstringyesUUID of the destination board.
taskIdstringyesUUID of the task to attach.
columnIdstringnoOptional UUID of a specific column on the destination board. Omit to land in the board's default column.

JSON Schema

{
  "type": "object",
  "properties": {
    "boardId": {
      "type": "string",
      "description": "UUID of the destination board."
    },
    "taskId": {
      "type": "string",
      "description": "UUID of the task to attach."
    },
    "columnId": {
      "type": "string",
      "description": "Optional UUID of a specific column on the destination board. Omit to land in the board's default column."
    }
  },
  "required": [
    "boardId",
    "taskId"
  ],
  "additionalProperties": false
}

On this page