Issue Bulk Watch Or Unwatch Payload

interface IssueBulkWatchOrUnwatchPayload {
    selectedIssueIdsOrKeys: string[];
    sendBulkNotification?: null | boolean;
}

Properties

selectedIssueIdsOrKeys: string[]

List of issue IDs or keys which are to be bulk watched or unwatched. These IDs or keys can be from different projects and issue types.

sendBulkNotification?: null | boolean

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

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