A couple call id's that show:
019d7bda-9adf-7000-8576-4687ab38b6dc > Apr 11, 02:23:37.454
2a596f99-82bb-4dab-90fc-b7910b9dc7b0 > Apr 10, 22:05:00.435
assistant snippet:
MessageEvents json
"clientMessages": [
"transcript",
"hang",
"function-call",
"speech-update",
"metadata",
"conversation-update"
],
"serverMessages": [
"end-of-call-report", # this is what I am listening for
"status-update",
"hang",
"conversation-update"
],
You can see that the end-of-call-report exists but never gets sent to my webhook.
This used to work as I used it to trigger my db with the full report of what happened.
I am instantiating the assistant through my webpage with javascript api (not phone call)
1. Can you please let me know if this is the expected way to work with how I am using it
2. If not, what is the best event to read in my system to know the call is completed and all of the analysis and structured data has completed.
My goal is to get an event when the entire analysys/structured data has completed and I can query the call log and extract data.
Thank you