Yes I do you need to extract the caller’s phone...
# general-english
e
Yes I do you need to extract the caller’s phone number from Twilio’s webhook request and forward it to Vapi via the start endpoint or in the call configur Capture Caller ID in Twilio Webhook: - Twilio sends
From
in the webhook request. Example:
Copy code
From: +1000000000
Forward to Vapi
start
Call API: - Include the caller ID in the
userPhoneNumber
or
metadata
field:
Copy code
json
   {
     "assistantId": "your_assistant_id",
     "userPhoneNumber": "+18000000000",
     "metadata": {
       "callerId": "+18000000000"
     }
   }
3. Use in Assistant Logic (optional): - Inside Vapi, use
callerId
from metadata to personalize or log the interaction.
2 Views