在 bitrix24 中,当我使用电话设备接听电话并刷新网页时,我丢失了弹出应答窗口。现在我想重新打开丢失的弹出窗口。请建议我如何实现这一目标
1 回答
0
如果您知道 callId,则可以使用 javascript 库
BX24.callMethod('telephony.externalcall.show', {CALL_ID: $callId, USER_ID: $userThatShouldSeeWindowId}, function(res){
});
或休息api
https://your_portal.bitrix24.com/rest/telephony.externalcall.show.json?CALL_ID=callId&USER_ID=userThatShouldSeeWindowId&auth=access_token
文档: https ://dev.1c-bitrix.ru/rest_help/scope_telephony/telephony/telephony_externalcall_show.php
于 2018-09-25T14:07:51.093 回答