如何使用 PHP 为 cisco call manager 上的分机设置 "forward all" 功能?
How can I set the "forward all" feature for an extension on cisco call manager with PHP?
我将 AXL API 与 PHP 一起使用,我想制作一个应用程序,允许用户在 cisco call manager 上设置转发到语音邮件功能以进行扩展。但是,我找不到关于 updateLine() 函数的好的教程或文档。有什么建议吗?
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
我将 AXL API 与 PHP 一起使用,我想制作一个应用程序,允许用户在 cisco call manager 上设置转发到语音邮件功能以进行扩展。但是,我找不到关于 updateLine() 函数的好的教程或文档。有什么建议吗?
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