Last updated
© 2025 make.com
Last updated
Deletes items from the processing queue of the specified webhook. Specify the payload ID values that you want to delete in the request body in the ids
array.
You can set the "all": true
pair to delete all items from the webhook processing queue. If you use the "all": true
parameter, you have to specify the confirmed=true
query parameter to confirm the deletion. Otherwise the API call returns the error IM004 (406).
Add the exceptIds
array to the request body to specify items you don't want to delete.
The API call response will contain an error message if some of the specified queue items cannot be deleted. The rest of the specified items will be deleted. Deleting a webhook queue item is not allowed when the item is already being processed by the webhook.
The ID of the webhook. Use the GET /hooks API call to get the ID values of your webhooks.
654
The ID values of the webhook processing queue items that you want to delete. Use the API call GET /hooks/{hookId}/incomings to get the ID values of the webhook processing queue items.
If you are deleting all of the incomplete executions with the all:true parameter, you can specify the ID values of the webhook queue items that you want to keep. Use the API call GET /hooks/{hookId}/incomings to get the ID values of the webhook queue items.
Set to true to delete all items in the webhook processing queue.
Successful response