v1

latestOpenAPI 3.1.02026-07-22115189303.8 KB
Workflows

List workflows

Retrieve all workflows for your project. Workflows are returned ordered by creation time (newest first). Use query parameters to filter by status, name, or creation date.

Common use cases:

  • List all active workflows ready for execution
  • Find workflows by partial name match
  • Audit workflow creation over time
get/workflows

Query parameters

status'draft' | 'active' | 'archived'

Filter by workflow status (draft, active, or archived)

name_containsstring

Case-insensitive substring search on workflow name

created_afterstring date-time

Only return workflows created on or after this timestamp

created_beforestring date-time

Only return workflows created on or before this timestamp

Response

Workflows retrieved successfully

Example response

{
  "data": [
    {
      "slug": "inbound-support"
    }
  ]
}