Shephard
02/04/2026, 9:17 PMTranscript (Final) Webhook events missing entirely.
Example CallID: 019c2a75-47a9-7aa9-8e68-55c2aafdb280
Timestamp: Every time transcript (final) should be sent
First Attached Screenshot: Assistant configuration showing Server Messages selected:
* Transcript (Final)
* hang
* assistant.started
From the assistant.started webhook I received (literally the only reason I have it selected, otherwise I would have no record of this), the assistant configuration confirms the above configuration:
json
"serverMessages": [
"transcript[transcriptType=\"final\"]",
"hang",
"assistant.started"
],
Despite being very clearly configured to send finalized transcripts, I'm getting absolutely nothing but the assistant.started message. hang is also supposed to have come through when I hung up, but we can set that aside for now.Transcript (Final) webhook calls if I also select transcript (partials), but I do not want those and should not have to receive them to get what I've configured to be sent.
https://cdn.discordapp.com/attachments/1468717026053849318/1468717026770948277/image.png?ex=698508d2&is=6983b752&hm=8e4f64fcac289aff9c3e8752601177f5299f9de3fcc0ed8e087ccc710aa0bbf7&
https://cdn.discordapp.com/attachments/1468717026053849318/1468717028700454973/image.png?ex=698508d3&is=6983b753&hm=93a8731327bb088edf4210302923a1f5e8213700a6e0fbced6a5415c232c2e23&Vapi Support Bot
02/04/2026, 9:18 PMserverMessages to include both "transcript" and `"transcript[transcriptType=\"final\"]"`:
json
"serverMessages": [
"transcript",
"transcript[transcriptType=\"final\"]",
"hang",
"assistant.started"
]
This should ensure you receive final transcript webhooks, even though it's not ideal. The documentation does not specify that this is required, so if the issue persists, consider reporting it as a potential bug with your Call ID and configuration details to Vapi support for further investigation.
Reference: [Vapi server events documentation](https://docs.vapi.ai/server-url/events)
Source:
- [Vapi server events documentation](https://docs.vapi.ai/server-url/events)Shephard
02/04/2026, 9:19 PMShephard
02/04/2026, 11:12 PMjson
"serverMessages": [
"transcript[transcriptType=\"final\"]",
"transcript"
],Chiranjeet Mishra
02/05/2026, 5:40 PM