POST
https://app.evoriqa.com/api/v1/webhooks/deliveries/{deliveryId}/resendResend a webhook delivery
Re-enqueues a past delivery, replaying the stored payload with the SAME delivery id and timestamp — dedupe on the id. No request body. A delivery outside this workspace reads as 404.
Requires scope workspace:write
Warning:
Access is gated — enable it before your first call
The API is off by default. A request succeeds only when all three switches are on: the platform master switch (off by default), your organisation’s API toggle, and your plan or client entitlement. Any one off returns 403 API access is not enabled for this workspace.
Parameters
| Name | In | Type | Required | Default | Description |
|---|---|---|---|---|---|
| deliveryId | path | string uuid | Required | — | The delivery to replay. |
Request
curl
curl -X POST "https://app.evoriqa.com/api/v1/webhooks/deliveries/{deliveryId}/resend" \
-H "x-api-key: $EVORIQA_API_KEY"Node.js
const res = await fetch("https://app.evoriqa.com/api/v1/webhooks/deliveries/{deliveryId}/resend", {
method: "POST",
headers: {
Authorization: `Bearer ${process.env.EVORIQA_API_KEY}`,
},
});
const responseBody = await res.json();Python
import os
import requests
res = requests.post(
"https://app.evoriqa.com/api/v1/webhooks/deliveries/{deliveryId}/resend",
headers={"Authorization": f"Bearer {os.environ['EVORIQA_API_KEY']}"},
)
body = res.json()Response
200 OK
{
"success": true,
"data": {
"queued": true
}
}