> ## Documentation Index
> Fetch the complete documentation index at: https://upstash-vector.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete Schedule

> This endpoint deletes a schedule.

<Note>
  It can take up to 60s for the schedule to be deleted from the system.
</Note>

## Request

<ParamField path="scheduleID" type="string" required>
  The unique id of the schedule you want to delete
</ParamField>

<RequestExample>
  ```shell curl
  curl -XDELETE https://qstash.upstash.io/v1/schedules/scd_1234 \
    -H "Authorization: Bearer <token>"
  ```
</RequestExample>

<ResponseExample>
  ```json 202
  { "status": "accepted" }
  ```
</ResponseExample>
