New template scheduler throwing error on the basic...
# support
h
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:
Copy code
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,....
v
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:
Copy code
json
"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](https://docs.vapi.ai/changelog/2025/5/1) - [API Reference: Assistants Create](https://docs.vapi.ai/api-reference/assistants/create?explorer=true)
c
Could you please provide your assistant id?
3 Views