• 1000 может слышать этот звук. Запишите код живого звонка
const client = require('twilio')(accountSid, authToken, { accountSid: subaccountSid });
client.calls(callSid)
.recordings
.create()
.then(function(recording){
callback(null, recording);
});
И сделайте звонок
const response = new VoiceResponse();
const dial = response.dial({
callerId: fromNumber,
});
dial.number(to);