---
title: "List Workflows"
method: GET
path: "/workspaces/{workspace_id}/workflows"
tags: ["Workflow"]
---

# List Workflows

`GET /workspaces/{workspace_id}/workflows`

List the standalone automation workflows for a workspace. Supports cursor
pagination and sort.

## Path parameters

- `workspace_id` integer, required

## Query parameters

- `after` string
- `sort_order` 'asc' | 'desc'
- `sort_property` 'id' | 'updated_at'

## Response `200`

OK

- WorkflowAttributes[]
  - `id` integer — Workflow ID
  - `public_id` string, nullable — Obfuscated workflow ID
  - `workspace_id` integer — Integer ID of the workspace that owns this workflow
  - `name` string — Human-readable workflow name
  - `status` 'draft' | 'live' | 'archived' — Derived status. `live` = enabled with at least one active trigger; `archived` = archived; otherwise `draft`.
  - `disabled` boolean — True when the workflow is disabled (not executing runs).
  - `archived` boolean — True when the workflow has been archived.
  - `run_type` 'asynchronous' | 'synchronous' | 'one_time' — How the workflow handles concurrent runs for the same contact. Server-controlled — always `asynchronous` for API-created workflows.
  - `active_runs_count` integer — Number of currently active (in-progress) runs.
  - `completed_runs_count` integer — Cumulative count of completed runs.
  - `created_at` string, date-time — Creation timestamp
  - `updated_at` string, date-time — Last update timestamp

## Other responses

- `401` — Unauthorized
- `403` — Forbidden — you are not authorized for this resource. (Reads are never gated by trusted platform access; only a cross-team third-party write is.)
- `404` — Not Found

---

[API](https://skmtc.net/myclickfunnels/apis/clickfunnels-api.md) · [All operations](https://skmtc.net/myclickfunnels/apis/clickfunnels-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/myclickfunnels/clickfunnels-api/revisions/ae6313eaa176/schema)
