Feedback

  • Contents
 

Play Digits To a Call

The script below demonstrates how to play digits to a call from within Scripter and a web page.

function PlayDigitsToCall(p_CallID, p_DigitsToPlay) {
    var p_Call = scripter.CreateCallObject();
    p_Call.Id = p_CallID;
    p_Call.playDigits(p_DigitsToPlay);
    p_Call = null;
}