Skip to main content
GET
Get Workflow Run

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.

Path Parameters

configuration_id
string<uuid>
required

Configuration ID

run_id
string<uuid>
required

Run ID

Response

Successful Response

Full workflow run information for detail responses.

Inherits common fields from WorkflowRunBaseFields.

id
string<uuid>
required

Unique run identifier

Example:

"123e4567-e89b-12d3-a456-426614174002"

configuration_id
string<uuid>
required

Workflow configuration ID

Example:

"123e4567-e89b-12d3-a456-426614174000"

status
string
required

Run status

Example:

"completed"

workflow_name
string
required

Workflow name

Example:

"PII Detection - Production"

workflow_type
enum<string>
required

Type of workflow

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"

asset_fqn
string | null

Fully qualified name of the data asset

Example:

"PostgreSQL.dvdrental.public.customer"

started_at
string | null

Run start timestamp (ISO 8601)

Example:

"2024-01-15T10:30:00Z"

completed_at
string | null

Run completion timestamp (ISO 8601)

Example:

"2024-01-15T10:35:00Z"

service_name
string | null

Service/connection name (derived from asset_fqn)

Example:

"PostgreSQL"

database_name
string | null

Database name (derived from asset_fqn)

Example:

"dvdrental"

schema_name
string | null

Schema name (derived from asset_fqn)

Example:

"public"

table_name
string | null

Table name (derived from asset_fqn, null for schema-level workflows)

Example:

"customer"

duration_seconds
number | null

Total run duration in seconds

Example:

300.5

error_message
string | null

Error message if run failed

Example:

null

input
Input · object | null

Input parameters for the run

Example:
output
Output · object | null

Output data from the run

Example:
tasks
TaskListItem · object[]

List of tasks associated with this workflow run