monday-create-board-group
Create a new group within a Monday.com board by specifying the board ID and group name, enabling structured organization of tasks and items.
Instructions
Create a new group in a Monday.com board
Input Schema
Name | Required | Description | Default |
---|---|---|---|
boardId | Yes | Monday.com Board ID that the group will be created in. | |
groupName | Yes | Name of the group to create. |
Input Schema (JSON Schema)
{
"properties": {
"boardId": {
"description": "Monday.com Board ID that the group will be created in.",
"type": "string"
},
"groupName": {
"description": "Name of the group to create.",
"type": "string"
}
},
"required": [
"boardId",
"groupName"
],
"type": "object"
}