Omogen
05/13/2025, 11:43 AMOmogen
05/13/2025, 11:43 AMVapi Support Bot
05/13/2025, 11:43 AMDev Ops
05/13/2025, 12:28 PMGiacomo Chinellato
05/13/2025, 2:13 PMGiacomo Chinellato
05/13/2025, 2:26 PMOmogen
05/13/2025, 5:46 PMOmogen
05/14/2025, 8:36 AMserverUrl
was updated to None on some Vapi assistants.
- @Shubham Bajaj I have logs in the app on when it was changed, do you have more details on where it was updated / which user or api key or dashboard ?
See below (update 9c14bc32)
https://cdn.discordapp.com/attachments/1371815031116796015/1372130402206224405/Screenshot_2025-05-14_at_10.35.37.png?ex=6825a784&is=68245604&hm=9b3f4008e22a0546c40f93805f9573eafc53209851a70c99f3fd7fcf82b32400&
https://cdn.discordapp.com/attachments/1371815031116796015/1372130402478850130/Screenshot_2025-05-14_at_10.35.44.png?ex=6825a784&is=68245604&hm=b77e1adf77ea0d5fa74e63b66b82bd8c8489b481faf67d6ab7688dbd063f6d52&PENDINGREALITY
05/25/2025, 10:58 PMVapi Support Bot
05/25/2025, 11:00 PMserverUrl
for your Vapi assistant to ensure webhooks are delivered. You can do this via the API with the following example:
bash
curl -X PATCH https://api.vapi.ai/assistant/<assistant_id> \
-H "Authorization: Bearer <token>" \
-H "Content-Type: application/json" \
-d '{"server": {"url": "https://your-webhook-url.com"}}'
Make sure the URL is correct and publicly accessible. If the serverUrl
is missing or set to None
, webhooks will not be triggered ([docs](https://docs.vapi.ai/server-url/setting-server-urls)).
Sources:
- [Setting server URLs](https://docs.vapi.ai/server-url/setting-server-urls)
- [Vapi outbound call not triggering (Discord)](https://discord.com/channels/1211482211119796234/1341449578100031488)
- [Vapi API Reference: Update Assistant](https://docs.vapi.ai/api-reference/assistants/update?explorer=true)Vapi Support Bot
05/25/2025, 11:01 PMserverUrl
is set and that the serverMessages
property includes the events you want to receive.
You can update these in the Vapi dashboard under the assistant's "Advanced" tab, or via the API. For example, when updating via API, include:
json
{
"serverUrl": "https://your-server.com/webhook",
"serverMessages": ["status-update", "end-of-call-report"]
}
If these fields are missing or set to None
, webhooks will not be triggered.
Sources:
- [Setting Server URLs](https://docs.vapi.ai/server-url/setting-server-urls)
- [Server Events](https://docs.vapi.ai/server-url/events)
- [Changelog May 1, 2025](https://docs.vapi.ai/changelog/2025/5/1)Vapi Support Bot
05/26/2025, 2:21 AMVapi
05/26/2025, 11:01 AM