Skip to main content
GET
/
orgs
/
{org_id}
/
webhooks
/
health
Webhook delivery health for this org
curl --request GET \
  --url https://api.mnemom.ai/v1/orgs/{org_id}/webhooks/health \
  --header 'Authorization: Bearer <token>'
{
  "active_endpoints": 123,
  "disabled_endpoints": 123,
  "deliveries_24h": 123,
  "success_24h": 123,
  "failed_24h": 123,
  "success_rate_24h": 123,
  "top_event_types": [
    {
      "event_type": "<string>",
      "count": 123
    }
  ]
}

Authorizations

Authorization
string
header
required

Supabase JWT token in Authorization: Bearer header

Path Parameters

org_id
string
required

Organization identifier (e.g. org-abc12345)

Response

Health metrics.

active_endpoints
integer
disabled_endpoints
integer
deliveries_24h
integer
success_24h
integer
failed_24h
integer
success_rate_24h
number
top_event_types
object[]