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 retrieves detailed information about a specific item from a Monday.com board. It supports fetching all columns or selected columns, and can optionally include subitems or the parent item depending on whether the item is a subitem. This is useful for workflows that need to access or manipulate detailed item data, such as project management, task tracking, or reporting.
Use Case Examples
- Retrieve all details of a task item including all columns and subitems.
- Fetch specific columns of a subitem along with its parent item information.
Properties
| Name | Meaning |
|---|---|
| Item ID | The unique identifier of the item to retrieve. |
| Is Subitem | Indicates whether the item is a subitem. |
| Fetch Subitems | Whether to fetch subitems of the item (only applicable if the item is not a subitem). |
| Fetch Parent Item | Whether to fetch the parent item (only applicable if the item is a subitem). |
| Fetch All Columns | Whether to fetch all columns of the item or only specific columns. |
| Column IDs | Comma-separated list of column IDs to fetch when 'Fetch All Columns' is disabled. |
Output
JSON
id- The unique identifier of the item.name- The name of the item.created_at- The creation timestamp of the item.updated_at- The last update timestamp of the item.groupid- The ID of the group the item belongs to.title- The title of the group the item belongs to.color- The color of the group the item belongs to.
column_values- An object containing the item's column values, keyed by column ID, with detailed parsed values.subitems- An array of subitems with their IDs, names, and column values (if fetched).parent_itemid- The ID of the parent item (if the item is a subitem and parent is fetched).name- The name of the parent item.created_at- The creation timestamp of the parent item.updated_at- The last update timestamp of the parent item.column_values- An object containing the parent item's column values.
Dependencies
- An API key credential for Monday.com API
Troubleshooting
- Ensure the Item ID is valid and exists in the specified board.
- If fetching subitems or parent items, verify the item type (subitem or not) matches the 'Is Subitem' flag.
- When specifying column IDs, ensure they are valid and exist on the board.
- API key must be valid and have sufficient permissions to access the item data.
- Common errors include missing Item ID, invalid column IDs, or API authentication failures.
Links
- Monday.com Items API Documentation - Official documentation for Monday.com items API endpoints and data structures.