当前位置:   article > 正文

ai电销机器人源码搭建开发-任务相关模块_ai电销电话机器人源码搭建部署

ai电销电话机器人源码搭建部署

 

部分字段解释

caller_line_list使用的线路列表,只能使用residue大于1的
enum_disable_dial_timegroup禁呼时间段列表
任务创建
接口:POST /v1/task

data
参数 类型 示例 解释 required
caller_line_id string 37d73edf-4628-4cf1-8beb-758433fd0aab 使用线路列表caller_line_list的value yes
customer_service_id int 1 使用客服组的id no
destination_extension int 297 使用话术分组的id yes
disable_dial_timegroup string 146979fe-3864-4817-ad76-13b37f43bb1c 禁用呼叫时间的uuid yes
maximumcall int 1 并发数(不得超过选用线路的residue) yes
name string 测试任务 任务名称 yes
random_assignment_number int 0 固定为0 yes
recycle_limit int 1 呼叫失败最大重拨次数[弃用,有且只能为0] yes
remark string 第一个任务 任务描述 no
_originate_timeout int 60 拨号超时 yes
call_pause_second int 10 每通电话的呼叫间隔,单并发的建议间隔10秒,多并发可选择0秒 yes
auto_recycle_rule_id int 1 重呼规则id yes
部分字段解释

话术分组列表需要自己请求接口,在其他中;
客服列表需要自己请求接口,在其他中;
 

  1. {
  2. "meta": {
  3. "enum_disable_dial_timegroup": [{
  4. "uuid": "146979fe-3864-4817-ad76-13b37f43bb1c", // 禁呼时间id
  5. "name": "休息时间"
  6. }, {
  7. "uuid": "cf44b8fc-a60f-499e-a5c8-5340963a56a3",
  8. "name": "午休时间"
  9. }, {
  10. "uuid": "a6c20127-1199-4b87-bffa-75ed3e368fd0",
  11. "name": "早会时间"
  12. }],
  13. "caller_line_list": [{ // 线路列表
  14. "name": "尊享ai.zxycall.com一",
  15. "value": "37d73edf-4628-4cf1-8beb-758433fd0aab", // 使用线路id
  16. "residue": 1, // 剩余并发,只能选大于1的
  17. "call_line": 1, // 线路总并发
  18. "available_at": "2019-12-18 00:00:00",
  19. "call_number": "13530525008" // 主叫号码
  20. }],
  21. "max_recycle_limit": "50", // 可设置最大重拨次数 [弃用,使用重呼规则]
  22. "auto_recycle_rules": [{ // 重呼规则
  23. "id": 1, // 重呼规则id
  24. "name": "测试重呼规则", // 重呼规则名称
  25. "remark": "test", // 重呼规则备注
  26. "status": true, // 重呼规则状态
  27. }],
  28. "customer_service": [{ // 客服组
  29. "id": 21,
  30. "user_id": "4d99d91c-f5d9-49da-88da-758977cc58a9",
  31. "name": "组2",
  32. "created_at": "2019-05-10 16:03:09",
  33. "updated_at": "2019-05-15 18:01:40",
  34. "caller_line_id": "37d73edf-4628-4cf1-8beb-758433fd0aab", // 使用的转接线路,只能不为null的
  35. "status": 1 // 是否可用,必须选为1的
  36. }],
  37. "outbound_group": [{ // 话术分组
  38. "id": 390, // 话术分组ID
  39. "name": "测试话术【复制】", // 话术分组名称
  40. "user_id": "4d99d91c-f5d9-49da-88da-758977cc58a9",
  41. "debug": true, // 是否开启调试模式,开启后全部话术走tts
  42. "deleted_at": null,
  43. "created_at": "2019-02-24 14:24:23",
  44. "updated_at": "2019-02-24 14:24:23",
  45. "link_word_group_id": null, // 使用的衔接词组id
  46. "tag_scene_id": null, // 关联的业务场景id
  47. "default": false
  48. }]
  49. }
  50. }

 

声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号