Info |
---|
If the call date is specified, the task will execute at this exact moment, on the contrary, if the date is specified as null, the task will execute when the schedule is free. The priority of the scheduled task with an specific date will be higher than the one that date is null. |
Code Block |
---|
Dialer Task
URL Relativa: Integra/resources/Dialers/DialerTask
Método: POST
content-type: application/x-www-form-urlencoded
Parámetros: call (Objeto JSON)
Resultado: 1 OK
0 ERROR |
Examples for each modeInsert Dialer with priority X Info |
---|
Bulk list made one by one Alternative phones separated |
Code Block |
---|
Dialer, Priority X
{"calldate" : null,
"campaign" : "campName<-",
"destination": "12-345-678",
"alternatives": "",
"agent" : "",
"data": "idcustomer=7",
"source": "source",
"bulk": true,
"automatic": false } |
Insert Dialer with high priority Info |
---|
"calldate" is NOW This action is used to call moments after being executed. |
Code Block |
---|
Dialer, Priority High
{"calldate" : null,
"campaign" : "campName<-",
"destination": "12-345-678",
"alternatives": "",
"agent" : "",
"data": "idcustomer=7",
"source": "source",
"bulk" : false,
"automatic" : true } |
Insert Scheduled Call for anytime Info |
---|
Calldate is any future date time |
Code Block |
---|
Dialer, Any Time
{"calldate" : "2018-01-01 00:00:00",
"campaign" : "campName<-",
"destination": "12-345-678",
"alternatives": "",
"agent" : "",
"data": "idcustomer=7",
"source": "source",
"bulk" : false,
"automatic" : false } |
Insert Dialer call to a Dialer with ownership Info |
---|
Assigned to an specific Agent This action is executed for a Progressive type dialer |
Code Block |
---|
Dialer, Specific Agent
//Identify Agent by its username:
{"calldate" : null,
"campaign" : "campName->",
"destination": "12-345-678",
"alternatives": "",
"agent" : "Agent1",
"data": "idcustomer=7",
"source": "source",
"bulk" : false,
"automatic" : false}
//Identify Agent by its assigned phone number:
{"calldate" : null,
"campaign" : "campName->",
"destination": "12-345-678",
"alternatives": "",
"agent" : "1001",
"data": "idcustomer=7",
"source": "source",
"bulk" : false,
"automatic" : false} |
|