jira.js
    Preparing search index...

    Function submitBulkTransition

    • Use this API to submit a bulk issue status transition request. You can transition multiple issues, alongside with their valid transition Ids. You can transition up to 1,000 issues in a single operation.

      Permissions required:

      Parameters

      • client: Client
      • parameters: {
            bulkTransitionInputs: {
                selectedIssueIdsOrKeys: string[];
                transitionId: string;
                [key: string]: unknown;
            }[];
            sendBulkNotification?: boolean
            | null;
        }
        • bulkTransitionInputs: {
              selectedIssueIdsOrKeys: string[];
              transitionId: string;
              [key: string]: unknown;
          }[]

          List of objects and each object has two properties:

          • Issues that will be bulk transitioned.
          • TransitionId that corresponds to a specific transition of issues that share the same workflow.
        • OptionalsendBulkNotification?: boolean | null

          A boolean value that indicates whether to send a bulk change notification when the issues are being transitioned.

          If true, dispatches a bulk notification email to users about the updates.

      • Optionaloptions: RequestOptions

      Returns Promise<{ taskId?: string; [key: string]: unknown }>