Skip to content

Inbound webhooks

Inbound webhooks give external systems a secure URL to push events into Chatevo — trigger assistant workflows, update conversation context, or kick off automations from your backend.

  1. IntegrationsWebhooksInboundCreate.
  2. Name the endpoint and select target assistant or deployment.
  3. Copy the token URL — includes a secret path segment.
  4. Document payload format for your sending system.
RequirementDetail
MethodPOST (unless documented otherwise)
AuthSecret token in URL path or Authorization header
BodyJSON per integration schema

Treat the URL like a password — rotate if leaked.

SenderAction
Order management systemNotify chat when shipment ships
Form builderStart conversation with lead context
Internal adminBroadcast maintenance notice to active sessions
  • Use HTTPS senders only.
  • Restrict source IPs on your firewall if possible.
  • Do not embed inbound URLs in public client apps.

For events out of Chatevo, use Outbound webhooks with HMAC verification.

  1. Send sample POST with curl or Postman.
  2. Confirm event appears in audit feed or assistant logs.
  3. Verify assistant behavior in test deployment.