updateMondayItem
Update an existing item on a Monday board by providing its board ID, item ID, and new column values in { column_id: value } format.
Instructions
Updates an existing item in the specified Monday board with new column values. The column_values parameter is required and should always include the updated field(s) in { "column_id": "new_value" } format.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| item_id | Yes | The unique identifier of the item to update | |
| board_id | Yes | The unique identifier of the Monday board | |
| column_values | Yes | Object containing column values to update for the item. Example: { "status": "Planning", "person": "1324234" } |