Actions126
- Item Actions
- Create or Update Item
- List Items in a Board
- Search Items by Filter
- Upload files to column
- Update Column Values of an Item
- Duplicate an Item
- List Items in a Group
- Get Item Activity Logs
- Create an Item
- Delete an Item
- List Item Subscribers
- Get an Item
- Create an Item
- Update Column Values of an Item
- Delete an Item
- Duplicate an Item
- List Items in a Group
- List Item Subscribers
- Get Item Activity Logs
- Get an Item
- Create an Item
- Create or Update Item
- Delete an Item
- List Items in a Board
- Search Items by Filter
- List Item Subscribers
- Upload files to column
- Get an Item
- Update Column Values of an Item
- Create or Update Item
- Duplicate an Item
- List Items in a Board
- List Items in a Group
- Search Items by Filter
- Get Item Activity Logs
- Upload files to column
- Board Actions
- Create a Board
- Duplicate a Group
- List Board Subscribers
- Remove Board Subscribers
- List Boards
- Get a Group
- List Activity Logs
- Remove Board Subscribers
- List Boards
- Create a Board
- List Activity Logs
- Add Board Subscribers
- List Boards
- List Board's Groups
- Create a Group
- Get a Board
- Get a Group
- Duplicate a Board
- List Activity Logs
- Add Board Subscribers
- List Board's Groups
- Create a Board
- Create a Group
- Get a Board
- Duplicate a Group
- Duplicate a Board
- List Board Subscribers
- Add Board Subscribers
- List Board's Groups
- Create a Group
- Get a Board
- Get a Group
- Duplicate a Group
- Duplicate a Board
- List Board Subscribers
- Remove Board Subscribers
- Update Actions
- Team Actions
- Download File Actions
- User Actions
- Query Actions
- Notification Actions
Overview
This node interacts with Monday.com updates, specifically supporting operations to list updates for an item, create a new update or reply, update an existing update, delete an update, pin an update to the top of an item, and upload files to an update. It is useful for managing communication and progress tracking within Monday.com items, allowing users to programmatically handle updates and attachments.
Use Case Examples
- Create a new update on a Monday.com item with body content and optional mentions.
- List all updates for a specific item with optional date filtering.
- Update the content of an existing update and attach files.
- Delete an update by its ID from a Monday.com item.
Properties
| Name | Meaning |
|---|---|
| Update ID | The ID of the update to operate on, required for update, delete, pin, and upload file operations. |
| Body Content | The textual content of the update to create or modify. |
| Mentions List (Users, Teams, Boards) | A collection of entities (users, teams, or boards) to mention in the update, used when mentioning is enabled. |
| Attachments (Binary Properties) | Comma-separated names of binary properties containing files to attach to the update. |
Output
JSON
id- The unique identifier of the update.text_body- The textual content of the update.created_at- Timestamp when the update was created.updated_at- Timestamp when the update was last updated.creatorid- ID of the user who created the update.name- Name of the user who created the update.
assets- List of files attached to the update, including name, public URL, and file size.replies- Replies to the update, including text body, creation time, and creator name.pinned_to_top- Indicates if the update is pinned to the top of the item.
Dependencies
- Monday.com API
- an API key credential for authentication
Troubleshooting
- Ensure the API key credential is correctly configured and has necessary permissions to access updates.
- Verify that the Update ID and Item ID parameters are correctly specified for operations that require them.
- Check that binary property names for attachments correspond to actual binary data in the input.
- Handle API errors gracefully; the node throws errors if the API response indicates failure unless 'Continue on Fail' is enabled.
Links
- Monday.com Updates API Documentation - Official documentation for Monday.com updates API endpoints and usage.