Vapi Support Bot
10/08/2025, 2:27 AM+491234567890 for Germany) and that your transfer tool includes the required destination property. Here’s an example configuration for your transfer function:
json
"parameters": {
"type": "object",
"properties": {
"destination": {
"type": "string",
"enum": ["+491234567890"], // Replace with your German number
"description": "The destination to transfer the call to."
}
},
"required": ["destination"]
}
Double-check this setup in your tool—incorrect number format or missing parameters are the most common reasons for transfer failures with Twilio SIP trunks and international numbers.
Sources:
- [Vapi documentation: call forwarding](https://docs.vapi.ai/call-forwarding)
- [Debug call forwarding drops](https://docs.vapi.ai/phone-calling/transfer-calls/debug-forwarding-drops)Vercel
10/08/2025, 4:28 AMChiranjeet Mishra
10/08/2025, 7:58 PM"assistant-forwarded-call". If yes, proceed to the next steps; otherwise, check assistant configuration.
2. **Check Call Logs**: Make a GET request to Vapi API with your Call ID to see why the call ended:
- assistant-forwarded-call suggests the transfer was successful from Vapi's end.
- If the transfer wasn't initiated, check your assistant's serverMessages configuration and remove "phone-call-control" if present.
3. **Telephony Provider Logs**: Ensure you use the phoneCallProviderId from Vapi's expected response to check your provider's logs (Twilio, Vonage, Telnyx) for errors during transfer.
4. **Configuration Validation**: Ensure phoneCallProviderBypassEnabled is set to false, and your destination numbers are verified, correctly formatted, and reachable.
5. **Scenario Support**: Verify the transfer scenario is supported, e.g., phone call to phone number is supported, but web call to phone number isn't.
6. **SIP Signaling (If applicable)**: If using SIP, download and analyze the SIP packets using Wireshark to see if REFER packets are being sent and accepted.
Following these steps should help in identifying and resolving the issue. For more detailed changes and configurations, you can refer to our [Call Forwarding](https://docs.vapi.ai/call-forwarding) documentation for setting up transfers effectively.Vladimir
11/04/2025, 6:21 PMChiranjeet Mishra
11/06/2025, 10:02 PM