更新时间:2025-01-09 GMT+08:00
取消周期会议
cancelCycleConf
接口描述
该接口用于取消至少还有一场子会议未开始的周期会议。
注意事项
- 该接口在登录状态下才能调用。
- 最后一场子会议未开始前可以调用接口,开始后调用则无效。
方法定义
1
|
cancelCycleConf(cycleConfId: string): Promise<HWMCommonResult>; |
参数描述
参数 |
是否必须 |
类型 |
描述 |
---|---|---|---|
cycleConfId |
是 |
string |
会议ID |
返回值
参数 |
类型 |
描述 |
---|---|---|
result |
SDKERR |
接口调用结果,HWM_SDKERR_SUCCESS表示成功,详细请参考错误码参考。 |
reasonDesc |
string |
错误描述。 |
示例代码
1 2 3 4 5 6 7 8 9 |
/** * 取消周期会议接口 */ handleCancelCycleConfById(cycleConfId: string) { UISDK.getConfMgrApi().cancelCycleConf(cycleConfId).then((res: HWMCommonResult) => { const message: string = res.result === SDKERR.HWM_SDKERR_SUCCESS ? '取消周期会议成功' : '取消周期会议失败' + res.result; console.log(message); }) } |
父主题: 会议管理