I'm a new developer and am researching implementing Twilio into my companies application. In researching and working with Twilio's Voice API I've gotten the basic programmable voice running as seen below.
I know the URL contains the basic TWIML demo instructions for what Twilio should do with the call, my question is what if I just want a regular two-way call? No programmable voice or automated response just two people talking until one hangs up. Is that even possible with Twilio? Thanks in advance.
client.calls
.create({
url: 'http://demo.twilio.com/docs/voice.xml',
to: `+1${req.body.to}`,
from: `+1${req.body.from}`
})
.then(call => {
console.log(call.sid);
}).catch(next)
};