Jira.js - Jira Cloud API library
    Preparing search index...

    Interface SearchWorkflows

    interface SearchWorkflows {
        expand?: string;
        isActive?: boolean;
        maxResults?: number;
        orderBy?: string;
        queryString?: string;
        scope?: string;
        startAt?: number;
    }
    Index

    Properties

    expand?: string

    Use expand to include additional information in the response. This parameter accepts a comma-separated list. Expand options include:

    • values.transitions Returns the transitions that each workflow is associated with.
    isActive?: boolean

    Filters active and inactive workflows.

    maxResults?: number

    The maximum number of items to return per page.

    orderBy?: string

    Order the results by a field:

    • name Sorts by workflow name.
    • created Sorts by create time.
    • updated Sorts by update time.
    queryString?: string

    String used to perform a case-insensitive partial match with workflow name.

    scope?: string

    The scope of the workflow. Global for company-managed projects and Project for team-managed projects.

    startAt?: number

    The index of the first item to return in a page of results (page offset).