> ## Documentation Index
> Fetch the complete documentation index at: https://docs.blobhub.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete Schedule

Delete a schedule and all of its associated execution records. The schedule is also removed from the underlying scheduling service and will no longer fire.

## **POST** `/revisions/:id/data/command` (Command: `delete_schedule`)

### Request Body

| Parameter     | Type   | Required | Description                   |
| :------------ | :----- | :------- | :---------------------------- |
| `engine`      | string | Yes      | Must be `scheduler_blobhub`.  |
| `command`     | string | Yes      | Must be `delete_schedule`.    |
| `schedule_id` | string | Yes      | Id of the schedule to delete. |

### Response

Empty object on success.

### Example

<CodeGroup>
  ```json Request theme={null}
  {
    "engine": "scheduler_blobhub",
    "command": "delete_schedule",
    "schedule_id": "sched-001"
  }
  ```

  ```json Response theme={null}
  {}
  ```
</CodeGroup>
