GlobalDashboard

获取全局工单管理列表

get global workflow list with filtering and pagination. Pagination uses two mutually exclusive modes. Aggregate mode (omit workflow_type): merge sql_release and data_export ordered by time; use cursor (empty on first request, then data.next_cursor from the previous response) and page_size; page_index is not used for paging. Single-type mode (workflow_type set): list only that type with standard page_index (1-based) and page_size; cursor is ignored. Do not rely on mixing cursor tokens with workflow_type in one flow.

get/v2/dashboard/workflows

Query parameters

cursorstring

Aggregate mode only (omit workflow_type): opaque cursor string; leave empty on the first request, then pass the previous response's data.next_cursor. Ignored when workflow_type is set.

page_sizeinteger required

Page size; required in both aggregate and single-type modes.

page_indexinteger required

Single-type mode only (workflow_type set): 1-based page index. When workflow_type is omitted, this value is ignored for pagination (use cursor instead).

keywordstring

fuzzy search keyword

filter_project_uidstring

filter by project uid

filter_instance_idstring

filter by instance id

filter_card'archived' | 'pending_for_me' | 'initiated_by_me'

filter by card type; archived 已完成工单, pending_for_me 待我处理, initiated_by_me 我发起

workflow_type'sql_release' | 'data_export'

filter by workflow type; sql_release SQL上线工单, data_export 数据导出工单

Response

OK

Changes