> ## Documentation Index
> Fetch the complete documentation index at: https://dialnexa.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# List Workflows

> Retrieve a paginated list of every workflow in your workspace, including status and enrolled-lead counts.

<Warning>
  **Legacy endpoint - deprecated.** Unversioned endpoints are scheduled for removal on **July 31, 2026**. Use the [`/v1` version](/docs/api-reference/v1/workflows/list) for new integrations. This endpoint remains available for existing integrations until then.
</Warning>

Returns every workflow in your workspace, paginated and sorted by creation date (newest first). Each entry includes the workflow's `id`, display `name`, current `status` (`active`, `paused`, `cancelled`, or `draft`), enrolled-lead count, and creation timestamp. Use this to power a workflows overview dashboard, build automation that audits which sequences are running, or sync workflow state into your own data store.

## When to use this

* **Operations dashboards**: render a table of every workflow with status badges and lead counts.
* **Compliance audits**: enumerate all active sequences so legal and compliance teams can confirm what outreach is currently running.
* **CI integration tests**: assert that newly created workflows show up in the list before chaining additional API calls.

For the full structural detail of a single workflow (nodes, edges, configuration), call [Get Workflow](/docs/api-reference/v1/workflows/get) and the related list endpoints.

## Query parameters

| Parameter | Description                                                           |
| --------- | --------------------------------------------------------------------- |
| `page`    | Page number, starting from 1.                                         |
| `limit`   | Results per page (max 100, default 20).                               |
| `status`  | Filter by workflow status (`active`, `paused`, `cancelled`, `draft`). |

## Errors

* `403 Forbidden` is returned when the API key cannot read workflows on this workspace.

## Related endpoints

* [Get Workflow](/docs/api-reference/v1/workflows/get): fetch a single workflow's detail.
* [Create Workflow](/docs/api-reference/workflows/create): create a new workflow.
* [Pause](/docs/api-reference/workflows/pause) / [Resume](/docs/api-reference/workflows/resume) / [Cancel](/docs/api-reference/workflows/cancel): control workflow state.
* [Pagination](/docs/api-reference/pagination): how DialNexa list endpoints paginate.


## OpenAPI

````yaml GET /workflows
openapi: 3.0.0
info:
  title: DialNexa API
  description: >-
    Public REST API for the DialNexa voice AI platform. Versioned endpoints are
    under /v1; unversioned endpoints are legacy and deprecated.
  version: 1.0.0
servers:
  - url: https://api.dialnexa.com
    description: DialNexa production API
security:
  - bearer: []
tags:
  - name: API Keys
  - name: Agent Functions
  - name: Agents V1
  - name: Agents2
  - name: Batch Calls
  - name: Batch Calls V1
  - name: Call Logs
  - name: Calls
  - name: Calls V1
  - name: Campaign Leads
  - name: Campaigns
  - name: External Webhooks
  - name: Knowledge Base
  - name: Knowledge Base V1
  - name: LLMs
  - name: LLMs V1
  - name: Languages
  - name: Languages V1
  - name: Organization Phone Numbers
  - name: Organization Phone Numbers V1
  - name: Phone Number Pricing
  - name: Phone Number Pricing V1
  - name: Transcribers
  - name: Transcribers V1
  - name: User Webhooks
  - name: User Webhooks V1
  - name: V1
  - name: Voices
  - name: Voices V1
  - name: Webcall
  - name: Workflow Leads
  - name: Workflow Leads V1
  - name: Workflows
  - name: Workflows V1
paths:
  /workflows:
    get:
      tags:
        - Workflows
      summary: List workflows with pagination
      description: >-
        **Legacy endpoint - deprecated, scheduled for removal on July 31,
        2026.** Use the `/v1` version for new integrations. 


        Returns a paginated list of workflows. Defaults to page 1, limit 10 when
        no params are supplied.
      operationId: WorkflowsController_findAll
      parameters:
        - name: x-organization-id
          in: header
          description: RSA encrypted organization ID (base64 format)
          required: true
          schema:
            type: string
            example: BASE64_ENCRYPTED_ORG_ID_HERE
      responses:
        '200':
          description: Workflows fetched successfully
        '401':
          description: Unauthorized.
        '500':
          description: Internal Server Error
      deprecated: true
components:
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http

````