Issue Bulk Transition Payload

interface IssueBulkTransitionPayload {
    bulkTransitionInputs: BulkTransitionSubmitInput[];
    sendBulkNotification?: null | boolean;
}

Properties

bulkTransitionInputs: BulkTransitionSubmitInput[]

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.
sendBulkNotification?: null | boolean

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.