addam_34322
04/15/2026, 3:30 PMChiranjeet Mishra
04/16/2026, 3:29 PMChildCallSid — this is the leg twilio placed to the destination
• check its CallStatus and AnsweredBy fields. if it shows no-answer or machine_start in under 1 second, that confirms voicemail or screening intercepted it
2. set a verified caller id on the transfer
in your vapi transfer config, set the callerId so the destination sees a recognisable number instead of a random twilio number. this reduces spam screening rejections:
2. {
"type": "number",
"number": "+1XXXXXXXXXX",
"transferPlan": {
"mode": "blind-transfer",
"callerId": "+1YOUR_VERIFIED_NUMBER"
}
}
2. the callerId should be a number the destination phone recognises — ideally your business number. it needs to be verified in your twilio account first.Chiranjeet Mishra
04/16/2026, 3:30 PMcallerId fix in step 2 resolves this in most cases.