Nurama Developers

update_column

Rename, recolor, retag, or reposition a single board column.

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

Rename, recolor, retag, or reposition a single board column. Pass only the fields that change. Pass description: null / color: null to clear them. taskStatus: null unmaps the column from a lifecycle bucket.

Input

PropertyTypeRequiredDescription
boardIdstringyesUUID of the board.
columnIdstringyesUUID of the column.
namestringnoNew name. min length 1
descriptionstring | nullnoNew description, or null to clear.
colorstring | nullnoNew hex color, or null to clear.
isDefaultbooleannoSet true to make this the default landing column.
taskStatus"pending" | "inProgress" | "complete" | "closed" | nullno
sortOrdernumberno
reviewersCanContributebooleanno

JSON Schema

{
  "type": "object",
  "properties": {
    "boardId": {
      "type": "string",
      "description": "UUID of the board."
    },
    "columnId": {
      "type": "string",
      "description": "UUID of the column."
    },
    "name": {
      "type": "string",
      "minLength": 1,
      "description": "New name."
    },
    "description": {
      "type": [
        "string",
        "null"
      ],
      "description": "New description, or `null` to clear."
    },
    "color": {
      "type": [
        "string",
        "null"
      ],
      "description": "New hex color, or `null` to clear."
    },
    "isDefault": {
      "type": "boolean",
      "description": "Set true to make this the default landing column."
    },
    "taskStatus": {
      "type": [
        "string",
        "null"
      ],
      "enum": [
        "pending",
        "inProgress",
        "complete",
        "closed",
        null
      ]
    },
    "sortOrder": {
      "type": "number"
    },
    "reviewersCanContribute": {
      "type": "boolean"
    }
  },
  "required": [
    "boardId",
    "columnId"
  ],
  "additionalProperties": false
}

On this page