Server URL is not being called with end-of-call-report

Call ID: 848388ed-2141-4540-91b6-71d62b0a4245

Hello, I create a call with assistant.serverMessages and assistant.server.url but my webhook URL is not called with the end-of-call-report.

I've tested calling it manually and the webhook works, it just doesnt get called by Vapi

Could you please assist?

     server: {
        // Vapi server webhook configuration 
        url: Reframe.env.APP_URL + "/handle-call-end",
      },
      transcriber: transcriberConfig,
      artifactPlan: {
        recordingEnabled: enableRecording
      },
      firstMessage: finalOpenerText,
      firstMessageInterruptionsEnabled: true,
      hipaaEnabled: false,
      summaryPrompt: "<string>",
      clientMessages: [
        "transcript",
        "hang",
        "tool-calls",
        "speech-update",
        "metadata",
        "conversation-update"
      ],
      endCallMessage: "Pleasure to speak with you. Till next time",
      endCallPhrases: [
        "bye for now. Speak soon",
        "talk soon",
        "goodbye",
        "bye",
        "good night"
      ],
      serverMessages: [
        "end-of-call-report",
        "hang"
      ],
Was this page helpful?