Organization
Get webhook endpoint delivery and latency metrics
Returns daily performance telemetry for one webhook endpoint:
- delivered vs errors (failed + currently retrying) and pending counts
- average and p95 endpoint response time in milliseconds
- overall success rate and latency summary for the selected range
Use this to power endpoint observability dashboards and identify reliability or latency regressions without downloading the full delivery history.
Example:
GET /platform/v1/organization/webhooks/d2f3a1c0-8e7b-4f6a-9c5d-1234567890ab/metrics?startDate=2026-07-01&endDate=2026-07-31
X-API-Key: hp_live_...
Date buckets are UTC and the entire endDate day is included.
Permissions: requires view access to “Webhooks”.
Authentication: Accepts either Authorization: Bearer <jwt> (dashboard) or X-API-Key: hp_live_... (programmatic).
GET
/
v1
/
organization
/
webhooks
/
{webhookId}
/
metrics
Get webhook endpoint delivery and latency metrics
curl --request GET \
--url https://api.hyperprop.com/platform/v1/organization/webhooks/{webhookId}/metrics \
--header 'Authorization: <api-key>'import requests
url = "https://api.hyperprop.com/platform/v1/organization/webhooks/{webhookId}/metrics"
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/webhooks/{webhookId}/metrics', 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/webhooks/{webhookId}/metrics",
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/webhooks/{webhookId}/metrics"
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/webhooks/{webhookId}/metrics")
.header("Authorization", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.hyperprop.com/platform/v1/organization/webhooks/{webhookId}/metrics")
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": {
"generatedAt": "<string>",
"webhook": {
"id": "d2f3a1c0-8e7b-4f6a-9c5d-1234567890ab",
"url": "https://your-server.com/webhooks/hyperprop",
"events": [
"account.created",
"account.status_changed"
],
"description": "Production webhook",
"isActive": true,
"failureCount": 0,
"disabledAt": "2026-03-28T22:00:00.000Z",
"disabledReason": "Auto-disabled after 25 consecutive delivery failures",
"lastTriggeredAt": "2026-03-28T21:30:00.000Z",
"createdAt": "2026-03-28T21:00:00.000Z",
"updatedAt": "2026-03-28T21:30:00.000Z"
},
"filters": {
"startDate": "<string>",
"endDate": "<string>"
},
"activity": [
{
"date": "2026-07-21",
"delivered": 42,
"errors": 3,
"pending": 0,
"total": 45,
"avgResponseTime": 245,
"p95ResponseTime": 730
}
],
"summary": {
"total": 320,
"delivered": 309,
"errors": 11,
"successRate": 96.56,
"avgResponseTime": 214,
"p95ResponseTime": 690
}
}
}{
"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": "Webhook 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
Webhook ID
⌘I
Get webhook endpoint delivery and latency metrics
curl --request GET \
--url https://api.hyperprop.com/platform/v1/organization/webhooks/{webhookId}/metrics \
--header 'Authorization: <api-key>'import requests
url = "https://api.hyperprop.com/platform/v1/organization/webhooks/{webhookId}/metrics"
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/webhooks/{webhookId}/metrics', 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/webhooks/{webhookId}/metrics",
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/webhooks/{webhookId}/metrics"
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/webhooks/{webhookId}/metrics")
.header("Authorization", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.hyperprop.com/platform/v1/organization/webhooks/{webhookId}/metrics")
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": {
"generatedAt": "<string>",
"webhook": {
"id": "d2f3a1c0-8e7b-4f6a-9c5d-1234567890ab",
"url": "https://your-server.com/webhooks/hyperprop",
"events": [
"account.created",
"account.status_changed"
],
"description": "Production webhook",
"isActive": true,
"failureCount": 0,
"disabledAt": "2026-03-28T22:00:00.000Z",
"disabledReason": "Auto-disabled after 25 consecutive delivery failures",
"lastTriggeredAt": "2026-03-28T21:30:00.000Z",
"createdAt": "2026-03-28T21:00:00.000Z",
"updatedAt": "2026-03-28T21:30:00.000Z"
},
"filters": {
"startDate": "<string>",
"endDate": "<string>"
},
"activity": [
{
"date": "2026-07-21",
"delivered": 42,
"errors": 3,
"pending": 0,
"total": 45,
"avgResponseTime": 245,
"p95ResponseTime": 730
}
],
"summary": {
"total": 320,
"delivered": 309,
"errors": 11,
"successRate": 96.56,
"avgResponseTime": 214,
"p95ResponseTime": 690
}
}
}{
"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": "Webhook not found",
"code": "NOT_FOUND"
}{
"success": false,
"statusCode": 500,
"error": "Internal Server Error",
"message": "An unexpected error occurred",
"code": "INTERNAL_ERROR"
}