/v1/filters/flows/{flowId}/search).order, orderBy, fields (the path projection returned per card) and conditions, a non-empty list of condition tree nodes, with the scope field (any, all or sum) required on every node. The request is not paginated — page and pageSize are not accepted and return a 400 error if present.curl --location '/v1/filters/search' \
--header 'Content-Type: application/json' \
--data '{
"order": "asc",
"orderBy": "card.enteredCurrentPhaseAt",
"fields": [
{
"path": "card.title"
},
{
"path": "card.value"
}
],
"conditions": [
{
"scope": "any",
"path": "card.value",
"operator": "gte",
"value": 0
}
]
}'[
{
"id": "string",
"flowId": "string",
"title": "string",
"value": 0
}
]