This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
|
en:custom_development_guide:apis:javascript:hangup [2016/09/07 06:56] liuxl |
en:custom_development_guide:apis:javascript:hangup [2018/12/29 02:43] (current) donnie |
||
|---|---|---|---|
| Line 2: | Line 2: | ||
| *Function: | *Function: | ||
| - | <code>hangupCJI(uniqueid, pwdtype, password, usertype, user, orgidentity, callbackFuc)</code> | + | <code>hangupCJI(uniqueid, targetagent, target, pwdtype, password, usertype, user, orgidentity, callbackFuc)</code> |
| *Description: | *Description: | ||
| Line 12: | Line 12: | ||
| |uniqueid|String|the uniqueid of the calls you want to hangup, end with a comma| | |uniqueid|String|the uniqueid of the calls you want to hangup, end with a comma| | ||
| - | |pwdtype String|Use plaintext or md5 password for agent or account| | + | |targetagent|String|If you don't have uniqueId, you need to put agent number. If you want to hangup group admin who is in spy, barge-in or whisper, put agent number, such as, group admin 2227 is spying agent 1986, put 1986 here if you need to hangup 2227.| |
| + | |target|String|hangup target:(channel,agent,caller,consult,all),uniqueId is required if you want to hangup a channel| | ||
| + | |pwdtype |String|Use plaintext or md5 password for agent or account| | ||
| |password|String|password| | |password|String|password| | ||
| |usertype|String|agent / account| | |usertype|String|agent / account| | ||
| Line 30: | Line 32: | ||
| ^Value ^Description ^ | ^Value ^Description ^ | ||
| - | |<code>|Return|1|Return|message</code>|<code>{code:成功,message:信息描述} | + | |<code>{code:1,message:message}</code>|<code>{code:succeed,message:message} |
| - | 当uniqueid不为空时,message为每个uniqueid执行挂断的结果,举例 | + | When uniqueid is not empty, message gives result for each uniqueid, ex: |
| - | {code:1,message: 4781:success,4782:failed } | + | {code:1,message: 4781:success,4782:failed }</code>| |
| - | success代表挂断成功 | + | |<code>{code:2,message:message}</code>|<code>{code:failed,message:message}</code>| |
| - | failed代表挂断失败</code>| | + | |
| - | |<code>|Return|2|Return|message</code>|<code>Failed||Messages</code>| | + | |