We have a very basic test project using Twilio API. Everything is working except this simple scenario:
var call = CallResource.Create(
url: new Uri("https://handler.twilio.com/twiml/EHXXXXXXXXX"),
to: to,
from: from
I am attempting to connect an outbound call to a phone #, if someone answers then I can say hello. The user may have the "from" number connected to their cell phone. So, my understanding is call happens, from cell phone rings (to connect) and then To Number is called.
The URL parameter is Twiml (and required). There are only a few accepted verbs "play", "say", etc...
The result I am looking for is if call is answered, the user can speak directly to them.