monday-get-item-updates
Retrieve updates for a specific item in Monday.com by providing the item ID and optional limit, enabling efficient tracking of item activity.
Instructions
Get updates for a specific item in Monday.com
Input Schema
Name | Required | Description | Default |
---|---|---|---|
itemId | Yes | ID of the Monday.com item to get updates for. | |
limit | No | Maximum number of updates to retrieve. Default is 25. |
Input Schema (JSON Schema)
{
"properties": {
"itemId": {
"description": "ID of the Monday.com item to get updates for.",
"type": "string"
},
"limit": {
"description": "Maximum number of updates to retrieve. Default is 25.",
"type": "integer"
}
},
"required": [
"itemId"
],
"type": "object"
}