v1

latestOpenAPI 3.0.32026-07-12101432.4 KB
Query

flowsAutocomplete

Returns autocomplete suggestions for a given attribute in the Flows dataset.

Use this endpoint to power filter dropdowns and search inputs in the Kanban board configuration UI. The attribute parameter specifies which field to autocomplete (e.g. name, assignee, status). The optional input parameter filters results to those matching the typed prefix.

get/v1/kanban/query/flows:autocomplete

Query parameters

inputstring

Typed input string to filter autocomplete suggestions

attributestring required
Example:name

The field name to autocomplete values for

sizeinteger

Maximum number of results to return

frominteger

Starting offset for pagination

Response

Autocomplete results returned successfully

hitsnumber required

Total number of matching items available

Example response

{
  "results": [
    "value"
  ],
  "hits": 42
}