Skip to main content

List Items

Returns a collection of items in a specific board.

External Documentation

To learn more, visit the Monday documentation.

Parameters

ParameterDescription
Board IDThe board's unique identifier.
CursorSpecifies the pagination cursor for the next page of items.
LimitThe number of items to return.

Example Output

{
"data": {
"boards": [
{
"items_page": {
"items": [
{
"id": "1231333789",
"name": "My First Item",
"state": "active",
"updated_at": "2022-01-01T01:01:01Z"
},
{
"id": "7891333123",
"name": "My Second Item",
"state": "active",
"updated_at": "2022-02-02T02:02:02Z"
}
]
}
}
]
},
"account_id": 12345678
}

Workflow Library Example

List Items with Monday and Send Results Via Email

Workflow LibraryPreview this Workflow on desktop