monday-list-items-in-groups
Retrieve all items in specified groups of a Monday.com board by providing the board ID, group IDs, and limit. Organize and manage board data effectively.
Instructions
List all items in the specified groups of a Monday.com board
Input Schema
Name | Required | Description | Default |
---|---|---|---|
boardId | Yes | Monday.com Board ID that the Item or Sub-item is on. | |
cursor | No | ||
groupIds | Yes | ||
limit | Yes |
Input Schema (JSON Schema)
{
"properties": {
"boardId": {
"description": "Monday.com Board ID that the Item or Sub-item is on.",
"type": "string"
},
"cursor": {
"type": "string"
},
"groupIds": {
"items": {
"type": "string"
},
"type": "array"
},
"limit": {
"type": "integer"
}
},
"required": [
"boardId",
"groupIds",
"limit"
],
"type": "object"
}