简体   繁体   English

Zammad 与 3CX 的集成

[英]Zammad integration to 3CX

I will like to integrate a Zammad installation to 3CX PBX .我想将Zammad安装集成到3CX PBX
I found how to do it on the 3CX documentation but, I didn't found a great suggestion.我在3CX文档中找到了如何执行此操作,但是我没有找到很好的建议。

Am open for more suggestion especially a great example.我愿意接受更多建议,尤其是一个很好的例子。

This is what I tried and it worked for me.这是我尝试过的,它对我有用。 it's an implementation off zammad but more in the the 3CX softphone.它是 zammad 的一个实现,但在 3CX 软电话中更多。 We get the number from the incoming call or outgoing call from the 3CX softphone before it's received by the agent or customer.在代理或客户收到之前,我们从 3CX 软电话的来电或去电中获取号码。

I created a batch script to search the number picked from the 3CX softphone in Zammad, Making use of the search function in zammad since users and tickets will have this number recorded, the Agent will get a pop in the default web browser of the search results in Zammad.我创建了一个批处理脚本来搜索从 Zammad 的 3CX 软电话中选择的号码,利用 zammad 中的搜索 function 因为用户和票证将记录这个号码,代理将在搜索结果的默认 web 浏览器中弹出在扎马德。

To connect the batch script to 3CX navigate to 3CX settings > select Advanced Settings and then select > Behavior > Tick the Launch Application on incoming call and also select the path where the batch script is saved.要将批处理脚本连接到 3CX,请导航至 3CX 设置 > select 高级设置,然后是 select > 行为 > 勾选来电时启动应用程序以及 select 批处理脚本的保存路径。

Below are the commands to be saved in the batch script that will be executed every time a call is made in 3CX and it will open up a default web browser下面是要保存在批处理脚本中的命令,每次在 3CX 中进行调用时都会执行该命令,它将打开默认的 web 浏览器

Kindy note that you can add-in more API calls in the batch script as you wish to complete your required workflow请注意,您可以在批处理脚本中添加更多 API 调用,以完成所需的工作流程

::3CXURL_launcher ***takes number as param ::3CXURL_launcher ***以数字为参数
@echo OFF @回声关闭
set param=%1设置参数=%1
set url1=https://zammad_domain_url/#search/设置 url1=https://zammad_domain_url/#search/
set full=%url1%%param%设置完整=%url1%%param%
@echo ON @回声开
@start %full% @开始%满%

在此处输入图像描述

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM