v1
latestOpenAPI 3.0.32026-07-12101432.4 KBQuery
executeFlowsQuery
Executes a query against the Flows dataset and returns paginated results for use in Kanban card rendering.
Supports filtering with complex AND/OR logic, sorting, and offset-based pagination. Results are used to populate Kanban swimlane cards with real-time workflow task data.
post/v1/kanban/query/flows:execute
Request body
Example request
{
"filters": {
"items": [
{
"key": "assignee",
"operator": "EQUALS",
"value": "100020",
"data_type": "string"
}
],
"combination": "OR"
},
"sorting": {
"field": "created_at"
},
"size": 10
}Response
Query executed successfully
Example response
{
"hits": 42,
"page_number": 1,
"page_size": 10,
"total_pages": 5
}