Hi, I configured a SIP conection with Telnyx and was able to make calls, but found out that when transfering a call (using TransferCall tool) it hangs up. I've been talking to Telnyx's support team and they told me that what i should do is eliminate SIP REFER on VAPI's end. Is there a way to configure a call trasnfering tool that can use a different SIP verb? Right now my call transfering tool is configured like this and has been working while i've been using Twilio:
{
"type": "transferCall",
"destinations": [
{
"type": "number",
"number": "+.....",
"message": "!Claro! !Ahora mismo le paso con uno de nuestros agentes! por favor, manténgase a la espera"
}
],
"function": {
"name": "transferCall",
"description": "Use this function to transfer the call saying the specified message. Only use it when following instructions that explicitly ask you to use the transferCall function. DO NOT call this function unless you are instructed to do so.",
"parameters": {
"type": "object",
"properties": {
"destination": {
"type": "string",
"enum": [
"+....."
],
"description": "The destination to transfer the call to."
}
},
"required": [
"destination"
]
}
}
}