Kaiten
Console

Webhooks

Manage webhook endpoints and view delivery history under Integrations.

Webhooks

The Webhooks section (/integrations/webhooks) lets you manage webhook endpoints and monitor event delivery.

Endpoint List

View all webhook endpoints with their URL, subscribed events, and delivery status.

Creating an Endpoint

  1. Navigate to Integrations → Webhooks → New Endpoint
  2. Fill in:
    • URL — Your webhook receiver endpoint
    • Events — Select which events to subscribe to
  3. Click Create

Delivery History

Navigate to Webhooks → History (/integrations/webhooks/history) to see:

  • All delivery attempts (successful and failed)
  • HTTP status codes
  • Request and response payloads
  • Retry information
  • Timestamps

Managing Endpoints

From the endpoint list, you can:

  • Edit — Update URL or subscribed events
  • Delete — Remove an endpoint
  • View deliveries — See delivery history for a specific endpoint

API Equivalent

ActionEndpoint
List EndpointsGET /api/webhooks
CreatePOST /api/webhooks
UpdatePUT /api/webhooks/{id}
DeleteDELETE /api/webhooks/{id}
Delivery HistoryGET /api/webhooks/history

On this page