monday-create-update
Add comments to Monday.com Items or Sub-items by providing the item ID and update text, enabling clear communication and task tracking in boards.
Instructions
Create an update (comment) on a Monday.com Item or Sub-item.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
itemId | Yes | ||
updateText | Yes | Content to update the Item or Sub-item with. |
Input Schema (JSON Schema)
{
"properties": {
"itemId": {
"type": "string"
},
"updateText": {
"description": "Content to update the Item or Sub-item with.",
"type": "string"
}
},
"required": [
"itemId",
"updateText"
],
"type": "object"
}