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 operation lists items in a specified Monday.com board. It allows users to retrieve a set number of items, optionally fetching all column data or only specific columns by their IDs. This is useful for workflows that need to process or analyze items from a board, such as reporting, automation triggers, or data synchronization.
Use Case Examples
- Retrieve the first 50 items from a project management board to generate a status report.
- Fetch all items with their full column details from a sales pipeline board for data export.
- Get items with specific columns like status and owner to update another system.
Properties
| Name | Meaning |
|---|---|
| Board | The ID of the Monday.com board from which to list items. This is a required field to specify the target board. |
| Limit | Maximum number of items to return. If set to 0, all items from the board will be fetched, which may take longer for large boards. |
| Fetch All Columns | Boolean flag to determine whether to return all column data for each item. If false, only specified columns are returned. |
| Column IDs | Comma-separated list of column IDs to fetch when 'Fetch All Columns' is false. If empty, all columns are fetched. |
Output
JSON
id- Unique identifier of the item.name- Name of the item.url- URL link to the item in Monday.com.created_at- Timestamp when the item was created.updated_at- Timestamp when the item was last updated.boardid- ID of the board the item belongs to.
groupid- ID of the group the item belongs to.title- Title of the group the item belongs to.color- Color code of the group.position- Position of the group in the board.
column_values- Object containing column data for the item, with each key as a column ID and value as the parsed column value.subitems- Array of subitems with their own id, name, url, timestamps, board info, and column values (if any).
Dependencies
- Monday.com API
Troubleshooting
- Ensure the API key credential is correctly configured and has access to the specified board.
- If the board ID is missing or invalid, the node will throw an error indicating the board ID is required.
- Fetching all items (limit set to 0) on very large boards may cause long execution times or timeouts; consider setting a reasonable limit.
- If specifying column IDs, ensure they are valid and exist on the board to avoid incomplete data.
- Network or API errors will be surfaced; check API rate limits and connectivity if requests fail.
Links
- Monday.com API Documentation - Official API documentation for Monday.com, useful for understanding available queries and mutations.