Documentation IndexFetch the complete documentation index at: /docs/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
curl -XDELETE \ -H 'Authorization: Bearer XXX' \ 'https://qstash.upstash.io/v2/schedules/<schedule_id>'
import { Client } from "@upstash/qstash"; const client = new Client({ token: "<QSTASH_TOKEN>" }); await client.schedules.delete("<scheduleId>");
from qstash import QStash client = QStash("<QSTASH_TOKEN>") client.schedule.delete("<scheduleId>")
curl \ -H 'Authorization: Bearer XXX' \ 'https://qstash.upstash.io/v2/schedules'
import { Client } from "@upstash/qstash"; const client = new Client({ token: "<QSTASH_TOKEN>" }); const allSchedules = await client.schedules.list();
from qstash import QStash client = QStash("<QSTASH_TOKEN>") client.schedule.list()
Was this page helpful?