Skip to main content
The list endpoint gives you a full snapshot of every workflow saved under your account. Each item in the returned array includes the workflow’s unique ID, its display name, the complete graph definition, and the timestamp when it was created. This is useful for building dashboards, verifying what has been deployed, or programmatically retrieving workflow IDs before triggering a run.

Endpoint

Authentication: Authorization: Bearer <accessToken> header required.
Request body: None.

Example Request

Response

A successful request returns HTTP 200 OK with a JSON array. Each element in the array represents one workflow associated with your account. If you have no workflows yet, the array will be empty ([]).
string
The unique identifier for this workflow. Use this value as the workflowId path parameter when calling the get, run, or delete endpoints.
string
The human-readable display name assigned to the workflow when it was created.
object
The complete graph definition for this workflow, including all nodes and their configuration, and all edges that connect them.
string
An ISO 8601 timestamp recording when the workflow was originally created (e.g., "2024-08-15T10:30:00.000Z").

Example Response