go4anthony
09/09/2025, 11:41 PMVapi Support Bot
09/09/2025, 11:42 PMgo4anthony
09/09/2025, 11:51 PMChiranjeet Mishra
09/11/2025, 10:22 PMendedReason. If endedReason is not "assistant-forwarded-call", then check the assistant configuration.
2. **Inspect for Call Control Conflicts**: Ensure that serverMessages does not include "phone-call-control", unless custom call control is required.
3. **Phone Call Provider Bypass**: Make sure phoneCallProviderBypassEnabled is set to false so that Vapi handles the call control.
4. **Verify SIP Configuration**: Double-check the SIP endpoint configuration and ensure it matches the SIP addressing and does not conflict with any other settings.
5. **Telephony Logs**: Since you mentioned there were no logs in Twilio’s message logs, ensure that the outbound transfer number is correct and properly configured. Double-check that the phone number being dialed is in the correct format with a country code.
6. **Review SIP REFER**: If using SIP for transfers, ensure that the SIP REFER packet is being generated by Vapi by checking the PCAP logs via Wireshark.
If the problem persists after these steps, confirming the correct configuration through logs and ensuring the SIP settings are properly set up can help identify underlying issues. For more detailed guidance, consider reviewing the Twilio [SIP Integration documentation](https://docs.vapi.ai/advanced/sip/twilio).
Let me know if you need further assistance we will be happy to help.go4anthony
09/12/2025, 7:07 PMChiranjeet Mishra
09/16/2025, 6:52 PMChiranjeet Mishra
09/16/2025, 7:04 PM{
"type": "transferCall",
"destinations": [
{
"type": "sip",
"sipUri": "sip:hooman@autogard.sip.twilio.com"
}
],
"function": {
"name": "transferCall",
"description": "Use this function to transfer the call. Only use it when instructions explicitly ask you to use the transferCall function.",
"parameters": {
"type": "object",
"properties": {
"destination": {
"type": "string",
"enum": [
"sip:hooman@autogard.sip.twilio.com"
],
"description": "The SIP URI to transfer the call to"
}
},
"required": [
"destination"
]
}
}
}
Let me know if you need further assistance.Chiranjeet Mishra
09/16/2025, 7:06 PMgo4anthony
09/28/2025, 6:33 PMChiranjeet Mishra
10/01/2025, 5:18 AMgo4anthony
10/15/2025, 9:11 PMChiranjeet Mishra
10/17/2025, 8:53 PM12dc22c2-4563-46f8-b4f6-ddc5aebe80ca but due to our data retention policy, it is beyond the date range we can access. Do you happen to have another call id that is more recent? Preferably within <7 days.
Also, our default method of transferPlans is REFER but we accept DIAL and BYE as valid SIP transfer methods if configured within the assistant.
Another thing to note, I noticed you are using TLS transport. Typically we only use UDP so if you are having issues receiving invites to that SIP URI, you may want to consider UDP if possible.