After your partner application is approved, configure your account to start making calls. This guide covers webhook setup, telephony configuration, and verifying your account is ready.
Configure one or more webhook endpoints to receive notifications when calls complete. This is how you get transcripts, extraction results, and recording URLs.
The response includes an endpoint secret for verifying signatures:
{ "success": true, "data": { "id": "12345678-abcd-1234-abcd-123456789012", "label": "prod", "url": "https://your-server.com/webhooks/vocobase", "enabled": true, "last_delivery_at": null, "last_delivery_status": null, "created_at": "2026-05-25T10:30:00.000Z", "updated_at": "2026-05-25T10:30:00.000Z", "secret": "whsec_a1b2c3d4e5f6g7h8i9j0...", "message": "Save this secret — it will not be shown again." }}
The endpoint secret is only returned once. Store it securely in your environment variables. If you lose it, rotate the endpoint secret with POST /config/webhooks/{id}/rotate-secret.
Older integrations can continue using PUT /api/v2/config/webhook; it creates or replaces the reserved default endpoint. New integrations should use /config/webhooks.
See Webhook Setup for details on signature verification.