Get Updates
get_updatesRetrieve updates (comments/posts) from a monday.com item or board. Supports filtering by date range and including replies and attachments.
Instructions
Get updates (comments/posts) from a monday.com item or board. Specify objectId and objectType (Item or Board) to retrieve updates. For Board queries, you can filter by date range using fromDate and toDate (both required together, ISO8601 format). By default, Board queries return only board discussion. Set includeItemUpdates to true to also include updates on individual items. Returns update text, creator info, timestamps, and optionally replies and assets.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| objectId | Yes | The ID of the item or board to get updates from | |
| objectType | Yes | Type of object for which objectId was provided | |
| limit | No | Number of updates per page (default: 25, max: 100) | |
| page | No | Page number for pagination (default: 1) | |
| includeReplies | No | Include update replies in the response | |
| includeAssets | No | Include file attachments in the response | |
| fromDate | No | Start of date range filter (e.g. "2025-01-01" or "2025-01-01T00:00:00Z"). Must be used together with toDate. Only supported for Board objectType. | |
| toDate | No | End of date range filter (e.g. "2025-06-01" or "2025-06-01T23:59:59Z"). Must be used together with fromDate. Only supported for Board objectType. | |
| includeItemUpdates | No | When objectType is Board, also include updates on individual items. Defaults to false, returning only board discussion. Set to true to retrieve all updates on a board, including updates on individual items. |