Search K
Appearance
Appearance
The New Monday Item node allows the workflow to create a new item (or subitem) in a specified Monday.com board. This action uses a configured service account for API authentication and supports dynamic column updates.
Task
New Monday Item
Creates a new item or subitem in a Monday.com board within a specified group. Optionally allows setting values for item columns via JSON input. Common use cases include:
These inputs must be configured in the node's modal form:
Label | Type | Description |
---|---|---|
Board Id | Text | The numerical ID of the Monday.com board. Must be valid. |
Group Name | Text | The display name of the target group within the board. |
Item Name | Text | The name/title of the item or subitem to be created. |
Label | Type | Description |
---|---|---|
Parent Item Id | Text | If specified, a subitem will be created under this parent item. Must be a valid numeric ID. |
Column Values | JSON | JSON string of key-value pairs representing column updates. Keys must match column IDs on the board. Example:{ "status": { "label": "Done" }, "date4": { "date": "2025-06-30" } } |
ServiceAccount-Monday | Text | The internal service account ID used to authenticate to Monday.com. This must be pre-configured in the system. |
Variable | Description |
---|---|
MondayItem | Dictionary representing the created item (if not a subitem). |
MondaySubItem | Dictionary representing the created subitem (if a parent item was provided). |
Validation: Ensures Board Id
, Group Name
, and Item Name
are present.
Authentication: Uses the supplied ServiceAccount-Monday
to retrieve the API key.
Board/Group Lookup: Retrieves the board and searches for the group by name.
Item Creation:
Parent Item Id
is provided, creates a subitem under the parent.Column Updates: If column values are provided, the node updates the item using the Monday API.
Returns: The created item is returned in the output for downstream use.
If any of the following conditions fail, the task will return taskSuccess = false
and set statusReturn = "Fail"
:
Board Id
or Parent Item Id
(non-numeric).Column Values
field expects a properly formatted JSON string. Incorrect formatting or invalid column IDs will result in failure.{
"Board Id": "123456789",
"Group Name": "Tasks",
"Item Name": "Create Automation Step",
"Parent Item Id": "987654321",
"Column Values": "{ \"status\": { \"label\": \"In Progress\" }, \"priority\": { \"label\": \"High\" } }",
"ServiceAccount-Monday": "svc-account-id-001"
}
{
"MondaySubItem": {
"id": "44556677",
"name": "Create Automation Step",
"column_values": [
{ "id": "status", "text": "In Progress" },
{ "id": "priority", "text": "High" }
]
}
}