Search K
Appearance
Appearance
Creates a new item or subitem on a Monday.com board.
Use this task to programmatically add items to a Monday.com board as part of a workflow. You can create a top-level item within a named group, or create a subitem under an existing parent item by providing the parent ID. Optional column values let you populate fields at creation time, avoiding a separate update step.
| Field | Type | Required | Description |
|---|---|---|---|
| Board Id | Text | Yes | The numeric ID of the board to create the item on. Found in the board URL in the browser. |
| Group Name | Text | Yes | The name of the group within the board where the new item will be placed. |
| Parent Item Id | Text | No | The numeric ID of an existing item to create the new item under as a subitem. Leave blank to create a top-level item. |
| Item Name | Text | Yes | The display name of the new item. |
| Column Values | Key-Value Pairs | No | Column values to set on the new item at creation time. Keys are Monday.com column IDs and values are the data to assign. |
| Name | Description |
|---|---|
| MondayItem | The newly created top-level Monday.com item as a dictionary of its column values. Only populated when no Parent Item Id is provided. |
| MondaySubItem | The newly created subitem as a dictionary of its column values. Only populated when a Parent Item Id is provided. |