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