dudleykong
01/30/2026, 5:26 AMVapi Support Bot
01/30/2026, 5:27 AMcalls/update API endpoint to modify the call configuration in real time. While the documentation does not provide a direct example for changing the voice, this endpoint is designed for runtime updates.
Example request:
json
PATCH /calls/{call_id}
{
"voice": {
"provider": "your-tts-provider",
"voiceId": "new-voice-id"
}
}
Refer to the [calls/update API documentation](https://docs.vapi.ai/api-reference/calls/update?explorer=true) for details. Actual support for this feature may depend on the provider and current platform capabilities.
Source:
- [Vapi API Reference: calls/update](https://docs.vapi.ai/api-reference/calls/update?explorer=true)Chiranjeet Mishra
01/30/2026, 7:48 AM