Reputation: 18798
How to associate an inbound call sid with custom ID? Currently Twilio posts or gets its parameters to the configured voice URL, but one can't send custom parameters to twilio to callback with it's parameters. Example scanario: Caller calls in to authenticated to be connected to a different number at /twiml.php
, Twilio posts at /voice_url.php
at call initiation. How to then associated the current running authenticated caller with a callsid, assuming their caller id might be unknown?
Upvotes: 1
Views: 770
Reputation: 126
When initiating the call, you can setup the callback url with custom parameter.
From what you explained, i understand that /voice_url.php is your callback url. you can specify the call backurl while initiating the call as /voice_url.php?id=xxxxxxx
This will make the twilio to send the id also to your callback url, where you can fetch the id using get request parameter.
I hope this helps.
Upvotes: 4