Aibaze Foundations
06/18/2025, 9:58 PMAibaze Foundations
06/18/2025, 9:58 PMVapi Support Bot
06/18/2025, 10:02 PMcall
object in the incoming JSON payload. For example, in JavaScript/Node.js:
js
const callId = req.body.message.call.id;
Make sure your API node or workflow is set up to parse the payload and map message.call.id
to your desired variable.
Tip: All Vapi server events include the call id in this structure by default, so check your payload mapping if you don't see it.
Sources:
- [Vapi Docs: Server Events](https://docs.vapi.ai/server-url/events)
- [Vapi Docs: Setting Server URLs](https://docs.vapi.ai/server-url/setting-server-urls)Aibaze Foundations
06/19/2025, 10:53 AMAibaze Foundations
06/19/2025, 10:53 AMVapi Support Bot
06/19/2025, 10:55 AMjson
{
"message": {
"call": {
"id": "your-call-id"
},
...
}
}
Update your workflow to parse message.call.id
from the incoming payload. If you only see your custom fields, check your webhook trigger or mapping settings to ensure the full Vapi event is being passed through.
Reference: [Vapi Docs: Server Events](https://docs.vapi.ai/server-url/events)
Source:
- [Vapi Docs: Server Events](https://docs.vapi.ai/server-url/events)Tomas Goldenberg
06/19/2025, 5:24 PMKings_big💫
06/19/2025, 5:49 PMAibaze Foundations
06/19/2025, 7:44 PMAibaze Foundations
06/19/2025, 7:57 PMAibaze Foundations
06/19/2025, 9:50 PMKings_big💫
06/19/2025, 9:57 PMAibaze Foundations
06/19/2025, 10:16 PMraghav
06/24/2025, 4:24 PMraghav
06/24/2025, 4:35 PMVapi
06/26/2025, 1:19 AM