monday-update-item
Update column values of a specific item or sub-item on a Monday.com board by providing the board ID, item ID, and column values to modify.
Instructions
Update a Monday.com item's or sub-item's column values.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
boardId | Yes | Monday.com Board ID that the Item or Sub-item is on. | |
columnValues | Yes | Dictionary of column values to update the Monday.com Item or Sub-item with. ({column_id: value}) | |
itemId | Yes | Monday.com Item or Sub-item ID to update the columns of. |
Input Schema (JSON Schema)
{
"properties": {
"boardId": {
"description": "Monday.com Board ID that the Item or Sub-item is on.",
"type": "string"
},
"columnValues": {
"description": "Dictionary of column values to update the Monday.com Item or Sub-item with. ({column_id: value})",
"type": "object"
},
"itemId": {
"description": "Monday.com Item or Sub-item ID to update the columns of.",
"type": "string"
}
},
"required": [
"boardId",
"itemId",
"columnValues"
],
"type": "object"
}