Skip to content

New Monday.com Item ​

Creates a new item or subitem on a Monday.com board.

Purpose ​

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.

Inputs ​

FieldTypeRequiredDescription
Board IdTextYesThe numeric ID of the board to create the item on. Found in the board URL in the browser.
Group NameTextYesThe name of the group within the board where the new item will be placed.
Parent Item IdTextNoThe numeric ID of an existing item to create the new item under as a subitem. Leave blank to create a top-level item.
Item NameTextYesThe display name of the new item.
Column ValuesKey-Value PairsNoColumn values to set on the new item at creation time. Keys are Monday.com column IDs and values are the data to assign.

Outputs ​

NameDescription
MondayItemThe newly created top-level Monday.com item as a dictionary of its column values. Only populated when no Parent Item Id is provided.
MondaySubItemThe newly created subitem as a dictionary of its column values. Only populated when a Parent Item Id is provided.

Tentech