更新时间:2025-01-09 GMT+08:00
分享

取消周期子会议

cancelSubCycleConf

接口描述

该接口用于取消未开始的周期子会议。

注意事项

  1. 该接口在登录状态下才能调用。
  2. 子会议未开始前可以调用接口,开始后调用则无效。

方法定义

1
cancelSubCycleConf(cycleConfId: string, subCycleConfId: string): Promise<HWMCommonResult>;

参数描述

参数

是否必须

类型

描述

confId

string

会议ID。

subConfID

string

子会议唯一标识UUID。

返回值

表1 HWMCommonResult参数说明

参数

类型

描述

result

SDKERR

接口调用结果,HWM_SDKERR_SUCCESS表示成功,详细请参考错误码参考

reasonDesc

string

错误描述。

示例代码

1
2
3
4
5
6
7
8
9
/**
* 取消周期子会议接口
*/
handleCancelConfById(confId: string, subConfID: string) {
   UISDK.getConfMgrApi().cancelSubCycleConf(confId, subConfID).then((res: HWMCommonResult) => {
      const message: string = res.result === SDKERR.HWM_SDKERR_SUCCESS ? '取消子会议成功' : '取消子会议失败' + res.result;
      console.log(message);
    })
}

相关文档