Jerome Matthew
03/02/2025, 6:04 PMVapi Support Bot
03/02/2025, 6:05 PMcallerId
parameter in your Twilio API call. Set it to the lead's number to ensure that it appears as the caller ID during the transfer.
bash
curl -X POST \
-H "Authorization: Bearer <Your Twilio Auth Token>" \
-H "Content-Type: application/json" \
-d '{
"type": "transferCall",
"destinations": [
{
"type": "number",
"number": "insert-phone-number-id-here",
"callerId": "{{lead.number}}",
"numberE164CheckEnabled": false
}
]
}' https://your.destination.url
### For JustCall:
1. **Dynamic Caller ID Setup**: In JustCall, you can also set the caller ID during the transfer. Make sure to include the lead's number in the transfer configuration.
json
{
"type": "transferCall",
"destinations": [
{
"type": "number",
"number": "insert-phone-number-id-here",
"callerId": "{{lead.number}}",
"numberE164CheckEnabled": false
}
]
}
### For Hubspot:
1. **Configuration**: Ensure that Hubspot is set up to accept the caller ID from the transfer. If the AI agent is configured to pass along the original caller ID, the recipient will see the lead's number.
### Key Considerations:
- Make sure that the lead's number is verified and owned by your telecommunication provider to avoid any issues with call rejection.
- Check the documentation for each platform to ensure that you are following the latest guidelines and requirements.
By implementing these configurations, you should be able to have the lead's number displayed during the call transfer in JustCall and Hubspot. If you need further assistance, feel free to ask! 😊
Sources:Vapi Support Bot
03/02/2025, 6:05 PMVapi Support Bot
03/02/2025, 6:09 PMJerome Matthew
03/03/2025, 2:59 AMVapi Support Bot
03/03/2025, 3:00 AMbash
curl -X POST \
-H "Authorization: Bearer <Your Twilio Auth Token>" \
-H "Content-Type: application/json" \
-d '{
"type": "transferCall",
"destinations": [
{
"type": "number",
"number": "insert-phone-number-id-here",
"callerId": "{{lead.number}}",
"numberE164CheckEnabled": false
}
]
}' https://your.destination.url
3. **Make.com Integration**: If you prefer a no-code solution, you can also use Make.com to set up the API call. Make.com allows you to create scenarios that can automate the process of transferring calls and setting the caller ID without writing code.
### Key Considerations:
- Ensure that the lead's number is verified and owned by your telecommunication provider to avoid any issues with call rejection.
- Check the Twilio documentation for the latest updates and features regarding API calls.
If you need more detailed guidance on using Make.com or Twilio, feel free to ask! 😊
Sources:
- [Configuring Caller ID Settings in Twilio for Call Transfers](https://discord.com/channels/1211482211119796234/1211483291191083018/1341368675680391178)
- [Detailed Report on Caller ID Customization in JustCall for Transferred Calls](https://discord.com/channels/1211482211119796234/1211483291191083018/1329106554041012265)Vapi Support Bot
03/03/2025, 3:00 AMShubham Bajaj
03/03/2025, 2:06 PMJerome Matthew
03/03/2025, 3:18 PMShubham Bajaj
03/06/2025, 1:53 PMShubham Bajaj
03/06/2025, 1:56 PM