You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Voicemail Detection is being supported in tropo script API as follow.
call('14075551212', {
timeout:30.0,
machineDetection: {introduction: "Verifying human or a machine...please hold while we determine...almost finished. Thank you!", voice: "Victor"},
onAnswer: function(event) {
say("Detected " + event.value.userType);
},
onTimeout: function(event) {
say("Call timed out");
},
onCallFailure: function(event){
say("Call could not be complete as dialed");
}
});
The above mechanism is not being provided/supported by the tropo web api of JAVA. Will it be provided in the next release of Tropo-webapi-java ?
The text was updated successfully, but these errors were encountered:
Voicemail Detection is being supported in tropo script API as follow.
call('14075551212', {
timeout:30.0,
machineDetection: {introduction: "Verifying human or a machine...please hold while we determine...almost finished. Thank you!", voice: "Victor"},
onAnswer: function(event) {
say("Detected " + event.value.userType);
},
onTimeout: function(event) {
say("Call timed out");
},
onCallFailure: function(event){
say("Call could not be complete as dialed");
}
});
The above mechanism is not being provided/supported by the tropo web api of JAVA. Will it be provided in the next release of Tropo-webapi-java ?
The text was updated successfully, but these errors were encountered: