Python API | Simple Gateway API

  1. callText
  2. callAudio
  3. callStatus
  4. callRemove
  5. callTillConfirm
  6. Source Code

Work with Interactive Applications
For many applications, it is desirable to get responses from callees in addition to deliver a message. The interaction can be implemented by using the low level gateway VoiceXML interface. However, using the low level API is a time consuming and error prone task. A better solution is to utilize Voicent IVR Studio to create an interactive application, and use the extended Simple Call Interface to trigger a phone call.

Python IVR Interface

Call Text

Synopsis - callText

callText(phoneno, text, selfdelete)

Description - callText

Objective

Make a phone call and play the specified text message. The text message is convert to voice by Voicent Gateway's text-to-speech engine.

Parameters
phoneno The phone number to call.
textmessage The message for the phone call. This message will be converted to audio using Voicent's text-to-speech software.
selfdelete Ask the gateway to automatically delete the call request after the call is made if it is set to '1'.
Returns
reqId The return value is the call request ID.

Example - callText


                        callText("123-4567", "Hello, how are you doing", "1")
                    

Makes a call to the phone number '123-4567' and says 'Hello, how are you doing'. Since the selfdelete bit is set to 1, the call request record in the gateway will be removed automatically after the call.



                        reqId = callText("123-4567", "Hello, how are you doing", "0")
                    

Make a call to phone number '123-4567' and say 'Hello, how are you doing'. Since the selfdelete bit is set to 0, the call request record in the gateway will not be removed after the call. You can then use callStatus to get the call status, or use callRemove to remove the call record.

Call Audio

Synopsis - callAudio

callAudio(phoneno, audiofile, selfdelete);

Description - callAudio

Objective

Make a phone call and play the specified audio message.

Parameters
phoneno The phone number to call.
audiofile The audio message for the phone call. The format must be PCM 16bit, 8KHz, mono wave file. The audio file must be on the same host as the Voicent Gateway.
selfdelete Ask the gateway to automatically delete the call request after the call is made if it is set to '1'.
Returns
reqId The return value is the call request ID.

Example - callAudio


                        callAudio("123-4567", "C:\my audios\hello.wav", "1")
                    

Makes a call to the phone number '123-4567' and says 'Hello, how are you doing'. Since the selfdelete bit is set to 1, the call request record in the gateway will be removed automatically after the call.



                        reqId = callAudio("123-4567", "C:\my audios\hello.wav", "0")
                    

Make a call to phone number '123-4567' and say 'Hello, how are you doing'. Since the selfdelete bit is set to 0, the call request record in the gateway will not be removed after the call. You can then use callStatus to get the call status, or use callRemove to remove the call record.

Call Status

Synopsis - callStatus

callStatus(reqId)

Description - callStatus

Objective

Check the call status given the reqId.

Parameters
reqId The call request ID.
Returns
'Call Made' Returns the string 'Call Made' if the call was made.
'Call Failed' Returns the string 'Call Failed' if the call failed.
' ' Returns an empty string if the call is in progress or if the call was neither made or failed.

Example - callStatus


                        status = callStatus("11234035434")
                    

Call Remove

Synopsis - CallRemove

callRemove(reqId)

Description - CallRemove

Objective

Remove the call record given the reqId. If the call is not made yet, it will also be removed.

Parameters
reqId The call request ID.

Example - CallRemove


                        callRemove("11234035434")
                    

Call Till Confirm

Synopsis - callTillConfirm

callTillConfirm(vcastexe, vocfile, wavfile, ccode)

Description - callTillConfirm

Objective

Keep calling a list of people until anyone enters the confirmation code. The message is the specified audio file. This is ideal for using it in a phone notification escalation process.

To use this feature, Voicent BroadcastByPhone Professional version has to be installed. This function is similar to the command line interface BroadcastByPhone has. But since the command cannot be invoked over a remote machine, this perl function uses the gateway to schedule an event, which in turn invokes the command on the gateway host.

Parameters
<vcast prog> The BroadcastByPhone program. It is usually C:\Program Files\Voicent\BroadcastByPhone\bin\vcast.exe on the gateway host.
<vcast doc> The BroadcastByPhone call list to use.
<wavfile> The audio file to use for the broadcast.
<ccode> The confirm code to use for the broadcast.

Example - callTillConfirm


                        callTillConfirm("C:\Program Files\Voicent\BroadcastByPhone\bin\vcast.exe", "C:\My calllist\escalation.voc", "C:\My calllist\escalation.wav", "911911");                    

Source Code


                        import urllib
                        import time


                        class Voicent:
                        def __init__(self, host="localhost", port="8155"):
                        self.host_ = host
                        self.port_ = port

                        def callText(self, phoneno, text, selfdelete):
                        urlstr = "/ocall/callreqHandler.jsp"

                        param = {'info' : 'simple text call',
                        'phoneno' : phoneno,
                        'firstocc' : 10,
                        'txt' : text,
                        'selfdelete' : selfdelete}

                        rcstr = self.postToGateway(urlstr, param)
                        return self.getReqId(rcstr)

                        def callAudio(self, phoneno, filename, selfdelete):
                        urlstr = "/ocall/callreqHandler.jsp"

                        param = {'info' : 'simple audio call',
                        'phoneno' : phoneno,
                        'firstocc' : 10,
                        'audiofile' : filename,
                        'selfdelete' : selfdelete}

                        rcstr = self.postToGateway(urlstr, param)
                        return self.getReqId(rcstr)

                        def callStatus(self, reqId):
                        urlstr = "/ocall/callstatusHandler.jsp"
                        param = {'reqid' : reqId}
                        rcstr = self.postToGateway(urlstr, param)

                        if (rcstr.find("^made^") != -1):
                        return "Call Made"

                        if (rcstr.find("^failed^") != -1):
                        return "Call Failed"

                        if (rcstr.find("^retry^") != -1):
                        return "Call Will Retry"

                        return ""

                        def callRemove(self, reqId):
                        urlstr = "/ocall/callremoveHandler.jsp"
                        param = {'reqid' : reqId}
                        rcstr = self.postToGateway(urlstr, param)

                        def callTillConfirm(self, vcastexe, vocfile, wavfile, ccode):
                        urlstr = "/ocall/callreqHandler.jsp"

                        cmdline = "\""
                        cmdline += vocfile
                        cmdline += "\""
                        cmdline += " -startnow"
                        cmdline += " -confirmcode "
                        cmdline += ccode
                        cmdline += " -wavfile "
                        cmdline += "\""
                        cmdline += wavfile
                        cmdline += "\""

                        param = {'info' : 'Simple Call till Confirm',
                        'phoneno' : '1111111',
                        'firstocc' : 10,
                        'selfdelete' : 0,
                        'startexec' : vcastexe,
                        'cmdline' : cmdline}

                        self.postToGateway(urlstr, param)


                        def postToGateway(self, urlstr, poststr):
                        params = urllib.urlencode(poststr)
                        url = "http://" + self.host_ + ":" + self.port_ + urlstr
                        f = urllib.urlopen(url, params)
                        return f.read()

                        def getReqId(self, rcstr):
                        index1 = rcstr.find("[ReqId=")
                        if (index1 == -1):
                        return ""
                        index1 += 7

                        index2 = rcstr.find("]", index1)
                        if (index2 == -1):
                        return ""

                        return rcstr[index1:index2]



                        #
                        # Uncomment out the following for your test
                        #
                        #put your own number there
                        #phoneno = "111-2222"
                        #
                        #v = Voicent()
                        #v.callText(phoneno, "hello, how are you", "1")

                        #reqid = v.callAudio(phoneno, "C:/Program Files/Voicent/MyRecordings/sample_message.wav", "0")

                        #while (1):
                        # time.sleep(1)
                        # status = v.callStatus(reqid)
                        # if (status != ""):
                        # break

                        #v.callRemove(reqid)

                        #v.callTillConfirm("C:/Program Files/Voicent/BroadcastByPhone/bin/vcast.exe",
                        # "C:/temp/testctf.voc",
                        # "C:/Program Files/Voicent/MyRecordings/sample_message.wav",
                        # "1234")