Skip to main content
DELETE
/
backup-schedules
/
{schedule_id}
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"
204
This endpoint requires X-Pinecone-API-Version: unstable.
Delete a backup schedule. This does not delete any backups that were previously created by the schedule.

Path parameters

schedule_id
string
required
The ID of the backup schedule to delete.
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"
204