monday-create-item
Create items or sub-items in a Monday.com board. Specify board ID, item title, and optional group ID or parent item ID to organize tasks efficiently. Set column values for detailed task management.
Instructions
Create a new item in a Monday.com Board. Optionally, specify the parent Item ID to create a Sub-item.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
boardId | Yes | Monday.com Board ID that the Item or Sub-item is on. | |
columnValues | No | Dictionary of column values to set {column_id: value} | |
groupId | No | Monday.com Board's Group ID to create the Item in. If set, parentItemId should not be set. | |
itemTitle | Yes | Name of the Monday.com Item or Sub-item that will be created. | |
parentItemId | No | Monday.com Item ID to create the Sub-item under. If set, groupId should not be set. |
Input Schema (JSON Schema)
{
"properties": {
"boardId": {
"description": "Monday.com Board ID that the Item or Sub-item is on.",
"type": "string"
},
"columnValues": {
"description": "Dictionary of column values to set {column_id: value}",
"type": "object"
},
"groupId": {
"description": "Monday.com Board's Group ID to create the Item in. If set, parentItemId should not be set.",
"type": "string"
},
"itemTitle": {
"description": "Name of the Monday.com Item or Sub-item that will be created.",
"type": "string"
},
"parentItemId": {
"description": "Monday.com Item ID to create the Sub-item under. If set, groupId should not be set.",
"type": "string"
}
},
"required": [
"boardId",
"itemTitle"
],
"type": "object"
}