POST /webhook/deliveries/<record_uuid>/redeliver
post_webhook_deliveries_record_uuid_redeliver
Answers 204 with no body. On the probed site no second delivery record followed, so 204 reports that the request was accepted and nothing more.
Partly measured. Answers 204 and produced no second delivery on the probed site. Whether it redelivers anywhere is unmeasured.
API
Params
| part | value |
|---|---|
<record_uuid> |
a delivery id |
| body | none |
Sample requests
r = c.post(f"/webhook/deliveries/{delivery_uuid}/redeliver") # 204, empty body
Response codes
| status | when |
|---|---|
| 204 | accepted |
| 404 code 104 | a well-formed uuid that is not a delivery |
Edge cases
- On the probed site the hook's delivery count was unchanged ten seconds after a 204, and no second
record appeared. That site does not deliver entity events at all (
045_webhooks), so this is not evidence the call does nothing everywhere. - 204 has no delivery id in it, so a caller cannot correlate a redelivery with its result. Poll
GET /webhook/hooks/<hook_id>/deliveriesand compare.