Skip to main content

Webhooks

Webhooks let your application receive real-time notifications about events in Movoice AI. When an event occurs, we send an HTTP POST to the URL you specify.

Setting Up Webhooks

  1. Navigate to Settings → Webhooks in the Movoice Dashboard.
  2. Enter your Webhook URL (must be an https endpoint).
  3. Select which events to subscribe to.
  4. Copy your Webhook Secret for signature verification.
Use Webhook.site or ngrok during development to inspect incoming payloads before wiring up your own server.

Event Types

call.started

Triggered immediately when a call connects.

call.completed

Triggered when a call ends. Includes AI summary, sentiment, and transcript URL.

call.failed

Triggered when a call could not be connected.
Possible reason values: no_answer, busy, invalid_number, agent_error, network_error.

action.triggered

Triggered when an agent executes a tool (e.g., “Book Appointment”, “Transfer Call”).

transfer.initiated

Triggered when an agent initiates a warm transfer to a human agent.

Security & Verification

Every webhook request includes an X-Movoice-Signature header. Always verify this before processing:

Retries

If your server returns a non-2xx response, Movoice retries the webhook with exponential backoff: After 4 failed attempts, the event is dropped and logged in your dashboard under Settings → Webhooks → Failed Events.