Sven
05/05/2025, 5:02 PMVapi Support Bot
05/05/2025, 5:04 PMserverMessages parameter at the squad level. Try updating your squad configuration with:
javascript
{
"serverMessages": ["end-of-call-report"],
"assistants": [
// your assistants here
]
}
This should override the default server messages which include multiple types like conversation updates, status updates, and more.
Sources:
- [Vapi API Reference Assistants/Create](https://docs.vapi.ai/api-reference/assistants/create)
- [Discord Channel Discussion](https://discord.com/channels/1211482211119796234/1341440757189578782)Sven
05/05/2025, 5:07 PMVapi Support Bot
05/05/2025, 5:09 PMserverMessages parameter in your squad configuration using one of these methods:
1. If using the API, update your squad configuration with:
javascript
{
"serverMessages": ["end-of-call-report"],
"members": [
// your assistants here
]
}
2. If using the Vapi Dashboard, you might be able to modify this in the squad settings.
Are you currently configuring your squad through the API or the Vapi Dashboard? This would help me provide more specific instructions.
Source:
- [Discord Channel Discussion](https://discord.com/channels/1211482211119796234/1341440757189578782)Sven
05/05/2025, 5:10 PMVapi Support Bot
05/05/2025, 5:11 PMSven
05/05/2025, 5:19 PMVapi Support Bot
05/05/2025, 5:20 PMSven
05/05/2025, 5:21 PMVapi Support Bot
05/05/2025, 5:23 PMjavascript
{
"serverMessages": ["end-of-call-report"]
}
Sources:
- [Discord Channel Discussion](https://discord.com/channels/1211482211119796234/1337184046379434057)
- [Discord Channel Discussion](https://discord.com/channels/1211482211119796234/1341417477631901769)Sven
05/05/2025, 5:27 PMVapi Support Bot
05/05/2025, 5:29 PMbash
curl -X PATCH https://api.vapi.ai/squad/YOUR_SQUAD_ID \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"membersOverrides": {
"serverMessages": ["end-of-call-report"]
}
}'
Replace YOUR_SQUAD_ID and YOUR_TOKEN with your actual values.
Sources:
- [Vapi API endpoint for updating squad configuration](https://docs.vapi.ai/api-reference/squads/update)
- [How to limit server messages to only end-of-call reports](https://discord.com/channels/1211482211119796234/1342410769232302122)Chiranjeet Mishra
05/06/2025, 5:03 PM