---
title: "Get workflows paginated"
method: GET
path: "/rest/api/2/workflow/search"
tags: ["Workflows"]
deprecated: true
---

# Get workflows paginated

`GET /rest/api/2/workflow/search`

> **Deprecated.**

This will be removed on [June 1, 2026](https://developer.atlassian.com/cloud/jira/platform/changelog/#CHANGE-2569); use [Search workflows](#api-rest-api-2-workflows-search-get) instead.

Returns a [paginated](#pagination) list of published classic workflows. When workflow names are specified, details of those workflows are returned. Otherwise, all published classic workflows are returned.

This operation does not return next-gen workflows.

**[Permissions](#permissions) required:** *Administer Jira* [global permission](https://confluence.atlassian.com/x/x4dKLg).

## Query parameters

- `startAt` integer
- `maxResults` integer
- `workflowName` string[]
- `expand` string
- `queryString` string
- `orderBy` 'name' | '-name' | '+name' | 'created' | '-created' | '+created' | 'updated' | '+updated' | '-updated'
- `isActive` boolean

## Response `200`

Returned if the request is successful.

- PageBeanWorkflow — A page of items.
  - `isLast` boolean — Whether this is the last page.
  - `maxResults` integer — The maximum number of items that could be returned.
  - `nextPage` string, uri — If there is another page of results, the URL of the next page.
  - `self` string, uri — The URL of the page.
  - `startAt` integer — The index of the first item returned.
  - `total` integer — The number of items returned.
  - `values` Workflow[] — The list of items.
    - `created` string, date-time — The creation date of the workflow.
    - `description` string, required — The description of the workflow.
    - `hasDraftWorkflow` boolean — Whether the workflow has a draft version.
    - `id` PublishedWorkflowId, required — Properties that identify a published workflow.
      - `entityId` string — The entity ID of the workflow.
      - `name` string, required — The name of the workflow.
    - `isDefault` boolean — Whether this is the default workflow.
    - `operations` WorkflowOperations — Operations allowed on a workflow
      - `canDelete` boolean, required — Whether the workflow can be deleted.
      - `canEdit` boolean, required — Whether the workflow can be updated.
    - `projects` ProjectDetails[] — The projects the workflow is assigned to, through workflow schemes.
      - `avatarUrls` AvatarUrlsBean
        - `16x16` string, uri — The URL of the item's 16x16 pixel avatar.
        - `24x24` string, uri — The URL of the item's 24x24 pixel avatar.
        - `32x32` string, uri — The URL of the item's 32x32 pixel avatar.
        - `48x48` string, uri — The URL of the item's 48x48 pixel avatar.
      - `id` string — The ID of the project.
      - `key` string — The key of the project.
      - `name` string — The name of the project.
      - `projectCategory` UpdatedProjectCategory — A project category.
        - `description` string — The name of the project category.
        - `id` string — The ID of the project category.
        - `name` string — The description of the project category.
        - `self` string — The URL of the project category.
      - `projectTypeKey` 'software' | 'service_desk' | 'business' — The [project type](https://confluence.atlassian.com/x/GwiiLQ#Jiraapplicationsoverview-Productfeaturesandprojecttypes) of the project.
      - `self` string — The URL of the project details.
      - `simplified` boolean — Whether or not the project is simplified.
    - `schemes` WorkflowSchemeIdName[] — The workflow schemes the workflow is assigned to.
      - `id` string, required — The ID of the workflow scheme.
      - `name` string, required — The name of the workflow scheme.
    - `statuses` WorkflowStatus[] — The statuses of the workflow.
      - `id` string, required — The ID of the issue status.
      - `name` string, required — The name of the status in the workflow.
      - `properties` object — Additional properties that modify the behavior of issues in this status. Supports the properties `jira.issue.editable` and `issueEditable` (deprecated) that indicate whether issues are editable.
    - `transitions` Transition[] — The transitions of the workflow.
      - `description` string, required — The description of the transition.
      - `from` string[], required — The statuses the transition can start from.
      - `id` string, required — The ID of the transition.
      - `name` string, required — The name of the transition.
      - `properties` object — The properties of the transition.
      - `rules` WorkflowRules — A collection of transition rules.
        - `conditionsTree` union — The workflow transition rule conditions tree.
          - object — A workflow transition rule condition. This object returns `nodeType` as `simple`.
            - `configuration` object — EXPERIMENTAL. The configuration of the transition rule.
            - `nodeType` string, required
            - `type` string, required — The type of the transition rule.
          - object — A compound workflow transition rule condition. This object returns `nodeType` as `compound`.
            - `conditions` WorkflowCondition[], required — The list of workflow conditions.
            - `nodeType` string, required
            - `operator` 'AND' | 'OR', required — The compound condition operator.
        - `postFunctions` WorkflowTransitionRule[] — The workflow post functions.
          - `configuration` unknown
          - `type` string, required — The type of the transition rule.
        - `validators` WorkflowTransitionRule[] — The workflow validators.
          - `configuration` unknown
          - `type` string, required — The type of the transition rule.
      - `screen` TransitionScreenDetails — The details of a transition screen.
        - `id` string, required — The ID of the screen.
        - `name` string — The name of the screen.
      - `to` string, required — The status the transition goes to.
      - `type` 'global' | 'initial' | 'directed', required — The type of the transition.
    - `updated` string, date-time — The last edited date of the workflow.

## Other responses

- `401` — Returned if the authentication credentials are incorrect or missing.
- `403` — Returned if the user does not have the necessary permission.

---

[API](https://skmtc.net/atlassian/apis/the-jira-cloud-platform-rest-api.md) · [All operations](https://skmtc.net/atlassian/apis/the-jira-cloud-platform-rest-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/atlassian/the-jira-cloud-platform-rest-api/versions/a26541c2f8bd/schema)
