Webhooks
Retrieve endpoint delivery metrics
Retrieve delivery success and failure counts for an endpoint over a time range. Requires the webhooks:read scope.
get/v1/webhooks/endpoints/{endpoint_id}/metrics
Path parameters
endpoint_idstring required
The webhook endpoint's ID.
Query parameters
periodstring
Grouping period, e.g. day.
date_fromstring date-time
Start of the range (ISO 8601).
date_tostring date-time
End of the range (ISO 8601).
Response
Delivery metrics.
Example response
{
"total": "145",
"period": "day",
"data": [
{
"date": "2026-04-27",
"success": 142,
"failed": 3
}
]
}Changes
No recorded changes to this endpoint across all 1 revision of this API.