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

# Delete backup schedule

> Delete a backup schedule.

<Note>
  This endpoint requires `X-Pinecone-API-Version: unstable`.
</Note>

Delete a backup schedule. This does **not** delete any backups that were previously created by the schedule.

### Path parameters

<ParamField path="schedule_id" type="string" required>
  The ID of the backup schedule to delete.
</ParamField>

<RequestExample>
  ```bash curl theme={null}
  curl -sS -o /dev/null -w "%{http_code}\n" -X DELETE \
    "https://api.pinecone.io/backup-schedules/${SCHEDULE_ID}" \
    -H "api-key: ${PINECONE_API_KEY}" \
    -H "X-Pinecone-API-Version: unstable"
  ```
</RequestExample>

<ResponseExample>
  ```text curl theme={null}
  204
  ```
</ResponseExample>
