From 204e9ddd11ed5f1e899bddcb60615e54ec556a6e Mon Sep 17 00:00:00 2001 From: zhoujie223 Date: Fri, 14 Jul 2023 13:38:19 +0800 Subject: [PATCH] =?UTF-8?q?IssueNo:=E6=B7=BB=E5=8A=A0=E5=91=BC=E5=8F=AB?= =?UTF-8?q?=E9=99=90=E5=88=B6=E5=AF=86=E7=A0=81=E5=92=8C=E8=B8=A2=E5=87=BA?= =?UTF-8?q?=E7=94=B5=E8=AF=9D=E4=BC=9A=E8=AE=AE=E6=8E=A5=E5=8F=A3=E6=96=87?= =?UTF-8?q?=E6=A1=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Description:添加呼叫限制密码和踢出电话会议接口文档 Sig: SIG_Telephony Feature or Bugfix: Feature Binary Source: No Signed-off-by: zhoujie223 --- zh-cn/application-dev/reference/apis/js-apis-call.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/zh-cn/application-dev/reference/apis/js-apis-call.md b/zh-cn/application-dev/reference/apis/js-apis-call.md index 63497a1ada..bf7ed70c6f 100644 --- a/zh-cn/application-dev/reference/apis/js-apis-call.md +++ b/zh-cn/application-dev/reference/apis/js-apis-call.md @@ -1723,7 +1723,7 @@ call.combineConference(1).then(() => { kickOutFromConference\(callId: number, callback: AsyncCallback\\): void -踢出电话会议,将指定通话从会议电话中挂断。使用callback异步回调。 +移出电话会议,将指定通话从会议电话中挂断。使用callback异步回调。 **系统接口:** 此接口为系统接口。 @@ -1744,6 +1744,7 @@ kickOutFromConference\(callId: number, callback: AsyncCallback\\): void | 错误码ID | 错误信息 | | -------- | -------------------------------------------- | +| 201 | Permission denied. | | 202 | Non-system applications use system APIs. | | 401 | Parameter error. | | 8300001 | Invalid parameter value. | @@ -1762,7 +1763,7 @@ call.kickOutFromConference(1, (err) => { kickOutFromConference\(callId: number\): Promise\ -踢出电话会议,将指定通话从会议电话中挂断。使用Promise异步回调。 +移出电话会议,将指定通话从会议电话中挂断。使用Promise异步回调。 **系统接口:** 此接口为系统接口。 @@ -1788,6 +1789,7 @@ kickOutFromConference\(callId: number\): Promise\ | 错误码ID | 错误信息 | | -------- | -------------------------------------------- | +| 201 | Permission denied. | | 202 | Non-system applications use system APIs. | | 401 | Parameter error. | | 8300001 | Invalid parameter value. | -- GitLab