v1

latestOpenAPI 3.0.32026-07-264469137.7 KB
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.

totalstring required

Total deliveries over the range.

periodstring required

The grouping period, e.g. day.

Example response

{
  "total": "145",
  "period": "day",
  "data": [
    {
      "date": "2026-04-27",
      "success": 142,
      "failed": 3
    }
  ]
}