Organization
Inspect one event and all its webhook deliveries
Full Stripe-style inspection of a single event:
payload— the exact JSON object that was (or would have been) sent to your webhooks. If no endpoint was subscribed when the event fired, a reconstructed object from the stored event snapshot is returned instead, flagged with anotefield.deliveries— one entry per webhook endpoint, each including its current status, HTTP response diagnostics, and the immutable newest-firstattemptshistory (automatic retries and manual redeliveries).
Use each delivery’s id with
POST /organization/webhook-deliveries/{deliveryId}/redeliver to replay it.
Permissions: requires view access to “Webhooks”.
Authentication: Accepts either Authorization: Bearer <jwt> (dashboard) or X-API-Key: hp_live_... (programmatic).
GET
/
v1
/
organization
/
events
/
{eventId}
Inspect one event and all its webhook deliveries
curl --request GET \
--url https://api.hyperprop.com/platform/v1/organization/events/{eventId} \
--header 'Authorization: <api-key>'import requests
url = "https://api.hyperprop.com/platform/v1/organization/events/{eventId}"
headers = {"Authorization": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: '<api-key>'}};
fetch('https://api.hyperprop.com/platform/v1/organization/events/{eventId}', 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.hyperprop.com/platform/v1/organization/events/{eventId}",
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: <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://api.hyperprop.com/platform/v1/organization/events/{eventId}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "<api-key>")
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.hyperprop.com/platform/v1/organization/events/{eventId}")
.header("Authorization", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.hyperprop.com/platform/v1/organization/events/{eventId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"success": true,
"data": {
"id": "4c2c49f0-7f1a-4f40-b333-333333333333",
"type": "account.status_changed",
"accountId": "<string>",
"accountNumber": "HP-50K-001234",
"reason": "Max Loss exceeded: $2,514.00 loss >= $2500 limit",
"trigger": "rule_violation",
"createdAt": "<string>",
"deliveries": [
{
"id": "<string>",
"webhookId": "<string>",
"eventId": "<string>",
"eventType": "account.status_changed",
"endpointUrl": "https://your-server.com/webhooks/hyperprop",
"webhookDescription": "Production webhook",
"status": "delivered",
"httpStatus": 200,
"responseBody": "{\"received\":true}",
"responseHeaders": {},
"responseTime": 245,
"attempt": 1,
"nextRetryAt": "<string>",
"deliveredAt": "<string>",
"createdAt": "<string>",
"attempts": [
{
"id": "<string>",
"attempt": 2,
"httpStatus": 500,
"responseBody": "Internal Server Error",
"responseHeaders": {},
"responseTime": 310,
"attemptedAt": "<string>"
}
]
}
],
"deliverySummary": {
"total": 2,
"delivered": 1,
"failed": 1,
"retrying": 0,
"pending": 0
},
"payload": {}
}
}{
"success": false,
"statusCode": 401,
"error": "Unauthorized",
"message": "Authentication required",
"code": "UNAUTHORIZED"
}{
"success": false,
"statusCode": 403,
"error": "Forbidden",
"message": "Access denied",
"code": "FORBIDDEN"
}{
"success": false,
"statusCode": 404,
"error": "Not Found",
"message": "Resource not found",
"code": "NOT_FOUND"
}{
"success": false,
"statusCode": 500,
"error": "Internal Server Error",
"message": "An unexpected error occurred",
"code": "INTERNAL_ERROR"
}Authorizations
BearerX-API-Key
JWT Bearer token for user session auth. Format: "Bearer {token}". Used by User and Organization endpoints.
Path Parameters
Event ID
Related topics
Inspect a webhook event and all delivery attemptsList all organization eventsView webhook delivery historyWebhooksList all webhooks⌘I
Inspect one event and all its webhook deliveries
curl --request GET \
--url https://api.hyperprop.com/platform/v1/organization/events/{eventId} \
--header 'Authorization: <api-key>'import requests
url = "https://api.hyperprop.com/platform/v1/organization/events/{eventId}"
headers = {"Authorization": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: '<api-key>'}};
fetch('https://api.hyperprop.com/platform/v1/organization/events/{eventId}', 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.hyperprop.com/platform/v1/organization/events/{eventId}",
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: <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://api.hyperprop.com/platform/v1/organization/events/{eventId}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "<api-key>")
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.hyperprop.com/platform/v1/organization/events/{eventId}")
.header("Authorization", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.hyperprop.com/platform/v1/organization/events/{eventId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"success": true,
"data": {
"id": "4c2c49f0-7f1a-4f40-b333-333333333333",
"type": "account.status_changed",
"accountId": "<string>",
"accountNumber": "HP-50K-001234",
"reason": "Max Loss exceeded: $2,514.00 loss >= $2500 limit",
"trigger": "rule_violation",
"createdAt": "<string>",
"deliveries": [
{
"id": "<string>",
"webhookId": "<string>",
"eventId": "<string>",
"eventType": "account.status_changed",
"endpointUrl": "https://your-server.com/webhooks/hyperprop",
"webhookDescription": "Production webhook",
"status": "delivered",
"httpStatus": 200,
"responseBody": "{\"received\":true}",
"responseHeaders": {},
"responseTime": 245,
"attempt": 1,
"nextRetryAt": "<string>",
"deliveredAt": "<string>",
"createdAt": "<string>",
"attempts": [
{
"id": "<string>",
"attempt": 2,
"httpStatus": 500,
"responseBody": "Internal Server Error",
"responseHeaders": {},
"responseTime": 310,
"attemptedAt": "<string>"
}
]
}
],
"deliverySummary": {
"total": 2,
"delivered": 1,
"failed": 1,
"retrying": 0,
"pending": 0
},
"payload": {}
}
}{
"success": false,
"statusCode": 401,
"error": "Unauthorized",
"message": "Authentication required",
"code": "UNAUTHORIZED"
}{
"success": false,
"statusCode": 403,
"error": "Forbidden",
"message": "Access denied",
"code": "FORBIDDEN"
}{
"success": false,
"statusCode": 404,
"error": "Not Found",
"message": "Resource not found",
"code": "NOT_FOUND"
}{
"success": false,
"statusCode": 500,
"error": "Internal Server Error",
"message": "An unexpected error occurred",
"code": "INTERNAL_ERROR"
}