Mutation

delete_schedule_item

Permanently removes a schedule item from Burp Suite Enterprise Edition.

Arguments

input: DeleteScheduleItemInput!

The fields used to specify which schedule item you want to delete.


Input Fields

id(): ID!
The unique identifier of the schedule item that you want to delete.

Return Fields

id(): ID!
The unique identifier of the schedule item that was deleted.

Example

Query
mutation DeleteScheduleItem($input: DeleteScheduleItemInput!) {
  delete_schedule_item(input: $input) {
    id
  }
}
Variables
{
  "input": {
    "id": "1"
  }
}