Manually remove messages
curl -XDELETE https://qstash.upstash.io/v2/dlq \ -H "Authorization: Bearer <token>" \ -H "Content-Type: application/json" \ -d '{ "dlqIds": ["11111-0", "22222-0", "33333-0"] }'
{ "deleted": 3 }
Delete multiple messages from the DLQ.
You can get the dlqId from the list DLQs endpoint.
dlqId
The list of DLQ message IDs to remove.
A deleted object with the number of deleted messages.
{ "deleted": number }
Was this page helpful?