Call Recording
# support
j
how do I get vapi.ai to send the call recording url to make.com I think I have the webhook setup but I dont think its getting the data from vapi please help
v
To send the call recording URL from Vapi.ai to Make.com: 1. In Vapi, set your Make.com webhook URL as the "Server URL" for your assistant (Dashboard > Assistants > Advanced > Server URL). 2. Make sure your Make.com webhook is set to accept POST requests with a JSON body. 3. Vapi will send an
end-of-call-report
event to your webhook, which includes the recording URL:
Copy code
json
{
  "message": {
    "type": "end-of-call-report",
    "recordingUrl": "https://vapi-public.s3.amazonaws.com/recordings/1234.wav",
    ...
  }
}
Tip: Double-check that your webhook URL is correct and publicly accessible. [More info here](https://docs.vapi.ai/server-url/events#end-of-call-report) Sources: - [Server Events Vapi Documentation](https://docs.vapi.ai/server-url/events) - [Setting Server URLs Vapi Documentation](https://docs.vapi.ai/server-url/setting-server-urls)
To send the call recording URL from Vapi.ai to Make.com: 1. In Vapi, set your Make.com webhook URL as the "Server URL" for your assistant (Dashboard > Assistants > Advanced > Server URL). 2. Make sure your Make.com webhook is set to accept POST requests with a JSON body. 3. Vapi will send an
end-of-call-report
event to your webhook, which includes the recording URL:
Copy code
json
{
  "message": {
    "type": "end-of-call-report",
    "recordingUrl": "https://vapi-public.s3.amazonaws.com/recordings/1234.wav",
    ...
  }
}
Tip: Double-check that your webhook URL is correct and publicly accessible. [More info here](https://docs.vapi.ai/server-url/events#end-of-call-report) Sources: - [Server Events Vapi Documentation](https://docs.vapi.ai/server-url/events) - [Setting Server URLs Vapi Documentation](https://docs.vapi.ai/server-url/setting-server-urls)
k
Enable call recording in Vapi, set the Make.com custom webhook URL as the “Server URL” in your Vapi assistant settings, and configure the webhook scenario in Make.com to receive and handle the incoming data, then test with a call to ensure the URL is received..
j
I was able to get it working 🙂 Thank you for your help