-1

我正在将 AXL API 与 PHP 一起使用,并且我想制作一个应用程序,允许用户在 cisco 呼叫管理器上为分机设置转发到语音邮件功能。但是,我找不到关于 updateLine() 函数的好的教程或文档。有什么建议吗?

4

1 回答 1

1

updateLine() 函数将数据作为参数。设置转发所有到语音邮件的数据格式是:

$data = array("pattern"=>$extension,"callForwardAll"=>array("forwardToVoiceMail"=true))

Howto 文章 https://developer.cisco.com/site/axl/learn/how-to/index.gsp

创建 php soap 客户端https://developer.cisco.com/site/axl/learn/how-to/axl-php-primer.gsp

所需的所有可用函数以及有关数据结构的信息https://developer.cisco.com/site/axl/develop-and-test/documentation/latest-version/axl-soap.gsp

于 2016-02-25T23:18:28.617 回答