预约会议
bookConf
接口描述
该接口用于预约会议。
注意事项
- 该接口在已登录状态下才能调用。
- 会议开始时间需要晚于当前时间。
- 个人会议或者云会议室的时候要传入vmrId。
- 携带与会者入会的时候需要传入attendees。
方法定义
1
|
bookConf(bookConfParam: HWMOpenBookConfParamModel): Promise<HWMBookConfResult>; |
参数描述
参数 |
是否必须 |
类型 |
描述 |
---|---|---|---|
bookConfParam |
是 |
预约会议参数。 |
参数 |
是否必须 |
类型 |
描述 |
---|---|---|---|
startTimeStamp |
是 |
number |
参数解释: 会议开始时间,UTC时间戳,精度秒。 约束限制: 时间戳不能早于系统当前时间 取值范围: 不涉及 默认取值: 不涉及 |
confLen |
是 |
number |
参数解释: 会议时长,单位分钟。 约束限制: 不涉及 取值范围: 最小值15分钟,最大值1440分钟。 默认取值: 不填时由服务端取默认会议时长30分钟 |
confCommonParam |
是 |
参数解释: 会议基本信息。 |
|
isSendCalendarNotify |
否 |
boolean |
参数解释: 发送邮件日历开关。 约束限制: 不涉及 默认取值: false 不发送邮件日历。 |
allowGuestStartConf |
否 |
boolean |
参数解释: 是否允许来宾提前启动会议。 约束限制:
默认取值: 不允许来宾提前启动会议。 |
allowGuestStartConfTime |
否 |
number |
参数解释: 允许来宾提前入会时间范围(单位:分钟)。 约束限制:
取值范围: 0 - 随时 x - 提前x分钟启动会议 默认取值: 0 |
openCustomPara |
否 |
string |
参数解释: 自定义扩展信息 约束限制: 不涉及 取值范围: 0-64个字符 默认取值: 不涉及 |
返回值
参数 |
类型 |
描述 |
---|---|---|
result |
SDKERR |
接口调用结果,HWM_SDKERR_SUCCESS表示成功,详细请参考错误码参考。 |
reasonDesc |
string |
错误描述。 |
bookConfResult |
预约会议结果信息。 |
示例代码
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
/** * 预约会议 */ handleBookConf(){ const attendees: Array<HWMOpenAttendeeBaseInfoModel> = [{ number: this.getNumber(), name: this.getName(), accountId: this.getAccountId(), isSelf: this.isSelf, thirdAccount: this.getThirdAccount(), userUuid: this.getUserUuid() }]; const confCommonParam: HWMOpenConfCommonParamModel = { confMediaType: ConfMediaType.HWM_CONF_MEDIA_VIDEO, subject: this.getSubject(), attendees: attendees, recordMode: this.getRecordMode(), confAllowJoinUser: this.getConfAllowJoinUser(), supportWatermark: this.isWatermarkOn, isGuestJoinConfWithoutPwd: this.isGuestJoinConfWithoutPwd, guestPwd: this.getGuestPwd(), isSendEmail: this.isSendEmail, } const bookConfParam: HWMOpenBookConfParamModel = { startTime: this.getStartTime(), confLen: this.getConfLen(), confCommonParam: confCommonParam, isSendCalendarNotify: this.isSendCalendarNotify, allowGuestStartConf: this.allowGuestStartConf, allowGuestStartConfTime: this.allowGuestStartConfTime } UISDK.getConfMgrApi().bookConf(bookConfParam).then((res: HWMBookConfResult) => { const message: string = res.result === SDKERR.HWM_SDKERR_SUCCESS ? '预约会议成功' : '预约会议失败'; console.log(message); }); } |