Retry delivery
curl --request POST \
--url https://qa-api.endl.xyz/api/v0/webhooks/events/{id}/retry \
--header 'API-KEY: <api-key>'import requests
url = "https://qa-api.endl.xyz/api/v0/webhooks/events/{id}/retry"
headers = {"API-KEY": "<api-key>"}
response = requests.post(url, headers=headers)
print(response.text)const options = {method: 'POST', headers: {'API-KEY': '<api-key>'}};
fetch('https://qa-api.endl.xyz/api/v0/webhooks/events/{id}/retry', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://qa-api.endl.xyz/api/v0/webhooks/events/{id}/retry",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_HTTPHEADER => [
"API-KEY: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://qa-api.endl.xyz/api/v0/webhooks/events/{id}/retry"
req, _ := http.NewRequest("POST", url, nil)
req.Header.Add("API-KEY", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://qa-api.endl.xyz/api/v0/webhooks/events/{id}/retry")
.header("API-KEY", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://qa-api.endl.xyz/api/v0/webhooks/events/{id}/retry")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["API-KEY"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"code": 200,
"message": "Delivery re-armed",
"status": "SUCCESS",
"data": {
"id": "4d2f6a11-8c73-4b90-9e21-5f0a2c8d1e44",
"eventId": "evt_9f1a4c7b2e08",
"eventType": "payout.completed",
"subscriptionId": "2b1e8f40-3c9a-4d21-9f7e-6a1c0b5d2e34",
"status": "QUEUED",
"attemptCount": 5,
"attemptBudget": 8,
"nextAttemptAt": "2026-09-02T13:00:00.000Z",
"expiresAt": "2026-09-03T13:00:00.000Z"
},
"errors": []
}Re-arms a failed delivery: it raises the attempt budget and queues the next attempt. Already-delivered or otherwise non-retryable deliveries return 409.
POST
/
api
/
v0
/
webhooks
/
events
/
{id}
/
retry
Retry delivery
curl --request POST \
--url https://qa-api.endl.xyz/api/v0/webhooks/events/{id}/retry \
--header 'API-KEY: <api-key>'import requests
url = "https://qa-api.endl.xyz/api/v0/webhooks/events/{id}/retry"
headers = {"API-KEY": "<api-key>"}
response = requests.post(url, headers=headers)
print(response.text)const options = {method: 'POST', headers: {'API-KEY': '<api-key>'}};
fetch('https://qa-api.endl.xyz/api/v0/webhooks/events/{id}/retry', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://qa-api.endl.xyz/api/v0/webhooks/events/{id}/retry",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_HTTPHEADER => [
"API-KEY: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://qa-api.endl.xyz/api/v0/webhooks/events/{id}/retry"
req, _ := http.NewRequest("POST", url, nil)
req.Header.Add("API-KEY", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://qa-api.endl.xyz/api/v0/webhooks/events/{id}/retry")
.header("API-KEY", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://qa-api.endl.xyz/api/v0/webhooks/events/{id}/retry")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["API-KEY"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"code": 200,
"message": "Delivery re-armed",
"status": "SUCCESS",
"data": {
"id": "4d2f6a11-8c73-4b90-9e21-5f0a2c8d1e44",
"eventId": "evt_9f1a4c7b2e08",
"eventType": "payout.completed",
"subscriptionId": "2b1e8f40-3c9a-4d21-9f7e-6a1c0b5d2e34",
"status": "QUEUED",
"attemptCount": 5,
"attemptBudget": 8,
"nextAttemptAt": "2026-09-02T13:00:00.000Z",
"expiresAt": "2026-09-03T13:00:00.000Z"
},
"errors": []
}