optimistic-gold
optimistic-gold4h ago

New template scheduler throwing error on the basic template

I just created a fresh template for the medical office scheduler. I had done this before without problem. Maybe something changed. Now when I create a fresh template I get the following error:
Form has validation errors:
serverMessages[8] must be one of the following values: conversation-update, end-of-call-report, function-call, hang, model-output, phone-call-control,....
Form has validation errors:
serverMessages[8] must be one of the following values: conversation-update, end-of-call-report, function-call, hang, model-output, phone-call-control,....
1 Reply
Vapi
Vapi4h ago
It looks like your serverMessages array contains an invalid value at index 8. Make sure you only use allowed message types. Here’s an example of a valid serverMessages array:
"serverMessages": [
"conversation-update",
"end-of-call-report",
"function-call",
"hang",
"model-output",
"phone-call-control",
"speech-update",
"status-update",
"tool-calls"
]
"serverMessages": [
"conversation-update",
"end-of-call-report",
"function-call",
"hang",
"model-output",
"phone-call-control",
"speech-update",
"status-update",
"tool-calls"
]
Double-check your array for typos or unsupported values and update accordingly. Sources: - Changelog May 1, 2025 - API Reference: Assistants Create
⤵️ Mention @Vapi Support Bot for follow-ups 🐥

Did you find this page helpful?