Campaign Name
Use Lines

============ The database ============ This simple database contains 2 tables: Customers and CallStatus. The Customer table contains the following columns: customer_id, name, phone, and others The CallStatus table contains the following columns: customer_id, phone_number, call_confirmation, call_status, campaign_name, call_time, and others ============ The database ============ Voicent Gateway will connect to the database through JDBC. The example parameters specifies a Microsoft SQL Express database, with database user and password both as "test". Please note the password is Base64 encoded. ================== The SQL statements ================== The call list is simply defined by "select * from Customers". The status update SQL statement is defined by "insert into CallStatus values (?, ?, ?, ?, ?, GETDATE())". The ? columns are defined by the statuscols parameter. In this example, the first ? is set to the customer_id value, the second the customer phone number, the third is the call confirmation status, and the fourth is the call status, and the last is the campaign name. =================== Predictive Campaign =================== Simply sets pdcall parameter to "1". ================================================= Start a direct database campaign programmatically ================================================= Since the gateway callreqHandler.jsp accepts HTTP POST request, you can use any programming language to submit the POST request. For examples, please check Voicent Gateway's simple call interface.