Documentation Index
Fetch the complete documentation index at: https://klipy.ai/docs/llms.txt
Use this file to discover all available pages before exploring further.
Webhooks
Use webhooks to receive real-time notifications when data changes in Klipy. Common use cases include:- Synchronizing leads, deals, and interactions into your CRM.
- Triggering downstream automations in ops and support tooling.
- Notifying internal systems when key sales lifecycle milestones occur.
What gets sent
Klipy sends outbound webhook events only for outbound-compatible internal events and only when webhooks are enabled for your organization.Set up your endpoint
- Open Settings → Webhooks in the Klipy app.
- Use the embedded management console to create and configure an endpoint.
- Enable organization-level webhooks in the same screen.
- Save the endpoint and monitor delivery status from your integration logs.
Only workspace admins can manage webhook settings. A subscription is required to access and use this feature.
Recommended integration pattern
- Verify each payload signature and enforce idempotency on your side.
- Store the event
typeand event-level identifier from the payload for replay safety. - Return an HTTP 2xx code only after you have persisted successful processing; otherwise, expect retries.
Payload structure
Klipy webhooks use the standard event envelope shape and include:type: event type for routing.object: event envelope object name.data: event-specific payload content.
Event catalog
See Webhook event types for the per-event index, then open the selected event page for complete payload examples and handling notes.Recommended reading order
- Read this page for transport and setup expectations.
- Open Webhook event types to choose the event you need.
- Read the event-specific page for payload contract details before deploying parsing logic.
lead.captured, deal.closed, etc.) so implementation guidance stays consistent and reviewable.
Related links
- Klipy API for API-first integration paths.
- Settings → Webhooks (opens app management screen).