Kevin
09/16/2025, 6:05 AMVapi Support Bot
09/16/2025, 6:06 AMdestination parameter in your transferCall tool configuration.
Try updating your tool's parameters as shown below:
json
"parameters": {
"type": "object",
"properties": {
"destination": {
"type": "string",
"enum": ["+1234567890"], // Replace with your external number in E.164 format
"description": "The destination to transfer the call to."
}
},
"required": ["destination"]
}
Make sure your telephony provider supports SIP REFER, as Vapi uses this for call transfers.
[More details here](https://docs.vapi.ai/call-forwarding#2-using-the-transfercall-function).
Source:
- [Vapi documentation: call forwarding](https://docs.vapi.ai/call-forwarding)Chiranjeet Mishra
09/16/2025, 6:51 PMshell
curl -X GET "https://api.vapi.ai/call/{call_id}" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json"
- If endedReason is not assistant-forwarded-call, review your assistant's configuration. [Debug call forwarding drops](https://docs.vapi.ai/phone-calling/transfer-calls/debug-forwarding-drops)
2. Server Message Configuration
- Ensure "phone-call-control" is not in serverMessages unless implementing custom logic.
3. Phone Call Provider Bypass
- Set phoneCallProviderBypassEnabled to false for Vapi-managed transfers.
4. Transfer Scenario Compatibility
- Ensure your transfer scenario is supported. For example, web-to-phone transfers are not permitted.
5. Telephony Provider Logs
- Check the logs in your telephony provider’s dashboard using the phoneCallProviderId extracted from the Vapi call object for any issues.
6. SIP Packet Analysis (if applicable)
- Analyze SIP packets to check for REFER packets and provider responses using Wireshark.
Make sure the destination number formats are correct and that the numbers are reachable, including factor aspects like call blocking.
For setting up or managing call forwarding via Vapi, consider reviewing the [Call Forwarding guide](https://docs.vapi.ai/call-forwarding) for detailed configuration steps and examples.Kevin
09/18/2025, 7:56 AMChiranjeet Mishra
09/22/2025, 7:31 AM