Describes a request to delete a set of work items

interface WorkItemDeleteBatchRequest {
    destroy?: boolean;
    ids?: number[];
    skipNotifications?: boolean;
}

Properties

destroy?: boolean

Optional parameter, if set to true, the work item is deleted permanently. Please note: the destroy action is PERMANENT and cannot be undone.

ids?: number[]

The requested work item ids

skipNotifications?: boolean

Optional parameter, if set to true, notifications will be disabled.