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

    Interface GetWorkflowTransitionRuleConfigurations

    interface GetWorkflowTransitionRuleConfigurations {
        draft?: boolean;
        expand?: string;
        keys?: string[];
        maxResults?: number;
        startAt?: number;
        types: string[];
        withTags?: string[];
        workflowNames?: string[];
    }
    Index

    Properties

    draft?: boolean

    Whether draft or published workflows are returned. If not provided, both workflow types are returned.

    expand?: string

    Use expand to include additional information in the response. This parameter accepts transition, which, for each rule, returns information about the transition the rule is assigned to.

    keys?: string[]

    The transition rule class keys, as defined in the Connect or the Forge app descriptor, of the transition rules to return.

    maxResults?: number

    The maximum number of items to return per page.

    startAt?: number

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

    types: string[]

    The types of the transition rules to return.

    withTags?: string[]

    The list of tags to filter by.

    workflowNames?: string[]

    The list of workflow names to filter by.