uu.ai
05/06/2025, 2:24 PMVapi Support Bot
05/06/2025, 2:26 PMassistant property from your payload and only use assistantId. According to information I found, "The transient has precedence over assistantID so, when you tried to make the call transient took precedence over assistantID" [Discord](https://discord.com/channels/1211482211119796234/1336765707760963676).
Example payload:
json
{
"assistantId": "your-assistant-id",
// Remove the "assistant" property
"phoneNumber": "+1234567890"
}
Source:
- [Discord](https://discord.com/channels/1211482211119796234/1336765707760963676)uu.ai
05/06/2025, 3:14 PMuu.ai
05/06/2025, 5:45 PMVapi Support Bot
05/06/2025, 5:47 PMjavascript
// After gathering DTMF input
const twiml = new VoiceResponse();
const dial = twiml.dial();
dial.conference('ConferenceRoom123', {
startConferenceOnEnter: true
});
// Then connect Vapi to this conference
According to Discord discussions, this approach helps maintain the connection after DTMF processing.
Source:
- [Discord](https://discord.com/channels/1211482211119796234/1342459464346767492)Vapi Support Bot
05/06/2025, 5:47 PMjavascript
// After gathering DTMF input
const twiml = new VoiceResponse();
const dial = twiml.dial();
dial.conference('ConferenceRoom123', {
startConferenceOnEnter: true
});
// Then connect Vapi to this conference
According to Discord discussions, this approach helps maintain the connection after DTMF processing.
Source:
- [Discord](https://discord.com/channels/1211482211119796234/1342459464346767492)Kings_big💫
05/06/2025, 5:54 PM