updateMondayItem
Update an existing item in a Monday board by providing its board and item IDs, along with new column values in JSON 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" } |