gijsdeschepper
04/09/2025, 5:38 AMVapi Support Bot
04/09/2025, 5:39 AMmessagePlan.idleMessages
configuration. Currently, this is only possible through the API with a command like this:
curl -X PATCH https://api.vapi.ai/assistant/id \
-H "Authorization: Bearer token" \
-H "Content-Type: application/json" \
-d '{
"messagePlan": {
"idleMessages": [
"Dutch message here 1",
"Dutch message here 2"
],
"idleMessageMaxSpokenCount": 3,
"idleTimeoutSeconds": 8
}
}'
According to [Discord discussions](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1333783762579755020), you would simply replace the placeholder messages with your Dutch phrases.
I also found that Vapi has an automatic translation feature - for certain message types, if specific content isn't provided for a language, Vapi automatically translates the first item to the active language by default, as mentioned in the [changelog](https://docs.vapi.ai/changelog/2024/10/25).
There are examples of users implementing idle messages in other languages like German with configurations like:
json
"messagePlan": {
"idleMessages": [
"Hallo?",
"Hören Sie mich?"
],
"idleMessageMaxSpokenCount": 3,
"idleTimeoutSeconds": 5
},
Is there anything else you'd like to know about configuring your idle messages in Dutch?
Sources:
- [Discord discussions](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1333783762579755020)
- [Vapi changelog](https://docs.vapi.ai/changelog/2024/10/25)Vapi Support Bot
04/09/2025, 5:39 AMgijsdeschepper
04/09/2025, 5:42 AMPigeon
04/09/2025, 7:47 AMSahil
04/11/2025, 6:56 AM