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 creates a new item or subitem in a specified Monday.com board. It allows users to specify the board, group, item name, and whether the item is a subitem. Users can also provide column values with various data types (e.g., text, date, people, files) to set detailed attributes for the new item. The node handles the construction of the appropriate GraphQL mutation to create the item and fetches the created item's details for output.
Use Case Examples
- Create a new task item in a project management board with specific column values like status, due date, and assigned people.
- Add a subitem under a parent item to track subtasks or detailed steps within a larger task.
- Create an item with file attachments linked to specific columns for documentation purposes.
Properties
| Name | Meaning |
|---|---|
| Board | The Monday.com board where the item will be created. This is a required selection or expression input. |
| Is Subitem? | Boolean flag indicating whether the item to create is a subitem of another item. |
| Group | The group within the selected board where the item will be created. Required if the item is not a subitem. |
| Item Name | The name/title of the item to be created. |
| Parent Item | If creating a subitem, this specifies the parent item's ID. Should be left blank if not a subitem. |
| Column Values | A collection of column-specific values to set on the item. Supports multiple data types including text, date, people, files, links, and more. |
Output
JSON
id- The unique identifier of the created item.name- The name of the created item.url- The URL link to the created item in Monday.com.boardid- The ID of the board where the item was created.
column_values- An object containing the values of the columns for the created item, keyed by column ID.parent_itemid- If the item is a subitem, the ID of its parent item.
Dependencies
- Monday.com API accessed via an API key credential
Troubleshooting
- Ensure the API key credential is correctly configured and has permissions to create items on the specified board.
- Verify that the board ID, group ID, and parent item ID (if subitem) are valid and accessible.
- Column values must be correctly formatted according to their types; invalid JSON or unsupported formats will cause errors.
- If creating a subitem, the parent item ID must be provided; otherwise, the operation will fail.
- Check for API rate limits or errors returned by Monday.com API and handle them appropriately in the workflow.
Links
- Monday.com Items Documentation - Official documentation on managing items in Monday.com boards.
- n8n Worktables Node Documentation - Documentation for the Worktables (Monday.com) node in n8n, including usage and examples.