update_card
Modify card properties and move cards between columns in Focalboard using human-readable property names for task management updates.
Instructions
Update a card's properties, including moving it to different columns. Accepts human-readable property and column names.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| cardId | Yes | The ID of the card to update | |
| boardId | Yes | The ID of the board the card belongs to | |
| title | No | New title for the card (optional) | |
| properties | No | Property values to update (e.g., {"Status": "In Progress", "Priority": "High"}). Use property names, not IDs. |
Input Schema (JSON Schema)
{
"properties": {
"boardId": {
"description": "The ID of the board the card belongs to",
"type": "string"
},
"cardId": {
"description": "The ID of the card to update",
"type": "string"
},
"properties": {
"additionalProperties": {
"type": "string"
},
"description": "Property values to update (e.g., {\"Status\": \"In Progress\", \"Priority\": \"High\"}). Use property names, not IDs.",
"type": "object"
},
"title": {
"description": "New title for the card (optional)",
"type": "string"
}
},
"required": [
"cardId",
"boardId"
],
"type": "object"
}