API webhook operations flow
Block-composed endpoint inventory, configuration, signing secrets, deliveries, failures, retries, and pressure states.
Endpoint inventory, creation, details, signing secrets, successful and failed attempts, retries, disabled state, and pressure cases.
Ten deterministic endpoints pressure row operations and long URLs.
API operations
Ten deterministic endpoints pressure row operations and long URLs.
Applications own endpoint authorization, event policy, secret storage, retry queues, and delivery persistence.
| Endpoint | Events | Last delivery | Status | Actions |
|---|---|---|---|---|
| Production eventshttps://api.example.test/hooks/nitro | 4 events | 2 minutes ago | Failing | |
| Billing ledgerhttps://ledger.example.test/webhooks/billing | 2 events | 18 minutes ago | Healthy | |
| Audit archivehttps://archive.example.test/events | 6 events | 1 hour ago | Disabled | |
| Deployment coordinationhttps://deploy.example.test/nitro/events | 3 events | 2 hours ago | Healthy | |
| Incident escalationhttps://incidents.example.test/hooks | 5 events | 3 hours ago | Healthy | |
| Identity synchronizationhttps://identity.example.test/workspace/events | 4 events | 5 hours ago | Failing | |
| International invoice settlementhttps://finance.example.test/international-reconciliation/webhook-delivery | 7 events | Yesterday | Healthy | |
| Research environment lifecyclehttps://research.example.test/environment-lifecycle | 8 events | Yesterday | Disabled | |
| Regulatory archive completionhttps://compliance.example.test/regulated-audit-events | 9 events | 2 days ago | Healthy | |
| Reliability engineering incident coordinationhttps://reliability.example.test/customer-visible-incident-coordination/production | 12 events | 3 days ago | Failing |
test/dummy/app/components/gallery/flows/api_webhooks_page.rbworkspace_surface do
render_header
case state
when "list" then render_list(webhook_rows.first(3))
when "empty" then render_empty
when "detail" then render_detail
when "create", "validation", "loading" then render_form
when "delivery-succeeded" then render_delivery(:success)
when "delivery-failed" then render_delivery(:failed)
when "retrying" then render_delivery(:retrying)
when "disabled" then render_disabled
when "signing-secret" then render_signing_secret
when "dense" then render_list(webhook_rows)
when "long" then render_long
when "mobile" then render_mobile
end
end