monday-move-item-to-group
Move a Monday.com item to a specified group within a board. Use this tool to organize and manage board items efficiently by specifying the item and group IDs.
Instructions
Move an item to a group in a Monday.com board
Input Schema
Name | Required | Description | Default |
---|---|---|---|
groupId | Yes | Monday.com Group ID to move the Item to. | |
itemId | Yes | Monday.com Item ID to move. |
Input Schema (JSON Schema)
{
"properties": {
"groupId": {
"description": "Monday.com Group ID to move the Item to.",
"type": "string"
},
"itemId": {
"description": "Monday.com Item ID to move.",
"type": "string"
}
},
"required": [
"itemId",
"groupId"
],
"type": "object"
}