Deliveries
Get delivery
Fetch one webhook delivery by ID
GET
/
api
/
webhooks
/
deliveries
/
{id}
Get delivery
curl --request GET \
--url https://api.example.com/api/webhooks/deliveries/{id} \
--header 'Authorization: <authorization>'import requests
url = "https://api.example.com/api/webhooks/deliveries/{id}"
headers = {"Authorization": "<authorization>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: '<authorization>'}};
fetch('https://api.example.com/api/webhooks/deliveries/{id}', 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://api.example.com/api/webhooks/deliveries/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: <authorization>"
],
]);
$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://api.example.com/api/webhooks/deliveries/{id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "<authorization>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.example.com/api/webhooks/deliveries/{id}")
.header("Authorization", "<authorization>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/api/webhooks/deliveries/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = '<authorization>'
response = http.request(request)
puts response.read_body{
"id": "54697e99-c2f5-4630-9f88-c1a3b1428d65",
"subscriptionId": "1c84203c-b4e3-40de-83a9-51bc0d9c991f",
"eventType": "payout.status.updated",
"payload": {
"type": "payout.status.updated",
"createdAt": "2026-05-27T09:30:46Z",
"data": {
"payoutId": "txn_abc",
"status": "processing",
"step": "settling"
}
},
"status": "succeeded",
"attemptCount": 1,
"nextAttemptAt": "2026-05-27T09:30:46Z",
"lastResponseCode": 200,
"lastResponseBody": null,
"lastError": null,
"createdAt": "2026-05-27T09:30:46Z",
"deliveredAt": "2026-05-27T09:30:48Z"
}
Single delivery row. Useful after Replay to poll its outcome.
Scope
webhooks:readHeaders
string
required
API key.
Path parameters
string
required
Delivery UUID.
Response
Same shape as one row on List deliveries.{
"id": "54697e99-c2f5-4630-9f88-c1a3b1428d65",
"subscriptionId": "1c84203c-b4e3-40de-83a9-51bc0d9c991f",
"eventType": "payout.status.updated",
"payload": {
"type": "payout.status.updated",
"createdAt": "2026-05-27T09:30:46Z",
"data": {
"payoutId": "txn_abc",
"status": "processing",
"step": "settling"
}
},
"status": "succeeded",
"attemptCount": 1,
"nextAttemptAt": "2026-05-27T09:30:46Z",
"lastResponseCode": 200,
"lastResponseBody": null,
"lastError": null,
"createdAt": "2026-05-27T09:30:46Z",
"deliveredAt": "2026-05-27T09:30:48Z"
}
⌘I
Get delivery
curl --request GET \
--url https://api.example.com/api/webhooks/deliveries/{id} \
--header 'Authorization: <authorization>'import requests
url = "https://api.example.com/api/webhooks/deliveries/{id}"
headers = {"Authorization": "<authorization>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: '<authorization>'}};
fetch('https://api.example.com/api/webhooks/deliveries/{id}', 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://api.example.com/api/webhooks/deliveries/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: <authorization>"
],
]);
$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://api.example.com/api/webhooks/deliveries/{id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "<authorization>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.example.com/api/webhooks/deliveries/{id}")
.header("Authorization", "<authorization>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/api/webhooks/deliveries/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = '<authorization>'
response = http.request(request)
puts response.read_body{
"id": "54697e99-c2f5-4630-9f88-c1a3b1428d65",
"subscriptionId": "1c84203c-b4e3-40de-83a9-51bc0d9c991f",
"eventType": "payout.status.updated",
"payload": {
"type": "payout.status.updated",
"createdAt": "2026-05-27T09:30:46Z",
"data": {
"payoutId": "txn_abc",
"status": "processing",
"step": "settling"
}
},
"status": "succeeded",
"attemptCount": 1,
"nextAttemptAt": "2026-05-27T09:30:46Z",
"lastResponseCode": 200,
"lastResponseBody": null,
"lastError": null,
"createdAt": "2026-05-27T09:30:46Z",
"deliveredAt": "2026-05-27T09:30:48Z"
}