Skip to main content
GET
List Workflow Definitions

Authorizations

Authorization
string
header
required

JWT Bearer token authentication. Include the token in the Authorization header as: Authorization: Bearer <token>. The JWT must contain valid client_id, and project_id claims for tenant isolation and SDK routing.

Query Parameters

page
integer
default:1

Page number (1-indexed)

Required range: x >= 1
Example:

1

per_page
integer
default:20

Items per page (max 100)

Required range: 1 <= x <= 100
Example:

20

workflow_type
enum<string> | null

Filter by workflow type Workflow types available in the system.

These values match the Prefect deployment names defined in scripts/prefect/deploy.py to enable direct mapping when triggering workflows.

Available options:
generate-table-description,
generate-pii-tags,
generate-dq-tags,
generate-sensitivity-tags,
enrich-table-columns,
service-ingestion,
profiling,
dq-rule-generation,
dq-execution,
metadata-assessment,
dq-assessment,
dq-tag-generation,
intelligence,
metadata-enrichment,
run-all-enrichment
Example:

"generate-pii-tags"

is_active
boolean | null
default:true

Filter by active status. Defaults to true (active only). Pass false to see retired definitions; omit or pass null to see all.

data_asset_type
string | null

Filter workflows that support a specific data asset type

Example:

"table"

Response

Successful Response

Paginated list of workflow definitions.

pagination
PaginationMeta · object
required

Pagination metadata

data
WorkflowDefinitionListItem · object[]

List of workflow definition items