Redeliver a delivery
Re-queues a delivered or failed delivery for immediate retry with the same event id and byte-identical payload. Returns 409 attempt_in_progress while an automatic attempt for the row is mid-flight. Requires webhooks:manage.
POST
/webhook-deliveries/{deliveryId}/redeliverAuthorization
AuthorizationBearer token (tp_live_...) · headerrequiredA TipPage API key, created in Dashboard → Settings → Developer.
Path parameters
deliveryIdstringrequiredDelivery id (`wd_...`) from the deliveries list.
Responses
200Done.
successboolean401Missing or invalid API key (`missing_api_key` / `invalid_api_key`).
errorstringrequiredHuman-readable message.
codestringMachine-readable code (e.g. `missing_scope`, `not_in_queue`).
403The key lacks the required scope (`missing_scope`).
errorstringrequiredHuman-readable message.
codestringMachine-readable code (e.g. `missing_scope`, `not_in_queue`).
required_scopestring404No such resource.
errorstringrequiredHuman-readable message.
codestringMachine-readable code (e.g. `missing_scope`, `not_in_queue`).
409An automatic delivery attempt for this row is mid-flight (`attempt_in_progress`) - check its result in a moment.
errorstringrequiredHuman-readable message.
codestringMachine-readable code (e.g. `missing_scope`, `not_in_queue`).
429Rate limit exceeded - check the `RateLimit-*` headers.
errorstringRequest
curl -X POST "https://api.tippage.com/v1/webhook-deliveries/string/redeliver" \
-H "Authorization: Bearer YOUR_TOKEN"const response = await fetch("https://api.tippage.com/v1/webhook-deliveries/string/redeliver", {
method: "POST",
headers: {
"Authorization": "Bearer YOUR_TOKEN"
}
});import requests
response = requests.post(
"https://api.tippage.com/v1/webhook-deliveries/string/redeliver",
headers={
"Authorization": "Bearer YOUR_TOKEN"
},
)Response
{
"success": true
}{
"error": "string",
"code": "string"
}{
"error": "string",
"code": "string",
"required_scope": "string"
}{
"error": "string",
"code": "string"
}{
"error": "string",
"code": "string"
}{
"error": "string"
}