Nurama Developers

delete_column

DESTRUCTIVE — confirm with the user before calling.

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

DESTRUCTIVE — confirm with the user before calling. Restate the target (id + a human descriptor) and wait for explicit approval; do not invoke from inferred intent. No undo. Delete a column from a board. If the column has tasks, pass targetColumnId to move them to another column on the same board; otherwise the delete is rejected so that no task is left without a column.

Input

PropertyTypeRequiredDescription
boardIdstringyesUUID of the board.
columnIdstringyesUUID of the column to delete.
targetColumnIdstringnoUUID of the column to migrate this column's tasks into. Required when the column has tasks.

JSON Schema

{
  "type": "object",
  "properties": {
    "boardId": {
      "type": "string",
      "description": "UUID of the board."
    },
    "columnId": {
      "type": "string",
      "description": "UUID of the column to delete."
    },
    "targetColumnId": {
      "type": "string",
      "description": "UUID of the column to migrate this column's tasks into. Required when the column has tasks."
    }
  },
  "required": [
    "boardId",
    "columnId"
  ],
  "additionalProperties": false
}

On this page