v12

latestOpenAPI 3.1.0raw.githubusercontent.com2026-08-014994227.2 KB
workflows

List workflows

Paginated list of workflows in the caller's org, with optional search, status, platform, and created/last-run date filters via query params.

get/workflows

Query parameters

limitinteger
offsetinteger
searchstring

free-text search across workflow name or ID substring

free-text search across workflow name or ID substring

statusstring[] nullable

filter by workflow status (lowercase)

filter by workflow status (lowercase)

platformstring[] nullable

filter by device platform (lowercase)

filter by device platform (lowercase)

created_afterstring

only workflows created at/after this RFC3339 time

only workflows created at/after this RFC3339 time

created_beforestring

only workflows created at/before this RFC3339 time

only workflows created at/before this RFC3339 time

last_run_afterstring

only workflows last run at/after this RFC3339 time

only workflows last run at/after this RFC3339 time

last_run_beforestring

only workflows last run at/before this RFC3339 time

only workflows last run at/before this RFC3339 time

Response

OK

$schemastring uri

A URL to the JSON Schema for this object.

limitinteger required

Page size used for this response.

offsetinteger required

Pagination offset used for this response.

totalinteger required

Total number of workflows matching the query.

Example response

{
  "$schema": "/api/v1/WorkflowListResponse.json",
  "workflows": [
    {
      "$schema": "/api/v1/WorkflowResponse.json"
    }
  ]
}