Modifying Cloud Meeting Room Information
changeVmrInfo
API Description
This API is used to modify cloud meeting room information.
Precautions
- If possible, change guest passwords only.
Method Definition
1
|
- (void)changeVmrInfo:(HWMModifyVMRParam *)info callback:(_Nonnull HWMSDKCompleteHandler)callback; |
Parameter Description
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
vmrId |
Yes |
NSString * |
Unique cloud meeting room ID. |
guestPwd |
Yes |
NSString * |
Guest password. |
chairPwd |
Yes |
NSString * |
Host password. |
vmrName |
Yes |
NSString * |
Cloud meeting room name. |
allowGuestStartConf |
Yes |
BOOL |
Whether to allow guests to join the meeting ahead of the host. |
confAllowJoinUser |
No |
Users who are allowed to join the meeting. |
|
isOpenWaitingRoom |
No |
BOOL |
Whether the waiting room is enabled. |
Sample Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
/// Modify cloud meeting room information. - (void)changeVmrInfo { HWMModifyVMRParam * vmrInfo = [[HWMModifyVMRParam alloc] init]; vmrInfo.guestPwd = getGuestPwd(); vmrInfo.chairPwd = getChairPwd(); vmrInfo.vmrName = getVmrName(); vmrInfo.vmrId = getVmrId(); [[HWMBizSdk getBizOpenApi] changeVmrInfo:vmrInfo callback:^(NSError * _Nullable error, id _Nullable result) { if (error) { NSLog(@"%@", error.localizedDescription); } else { NSLog(@"Cloud meeting room information modified."); } }]; } |
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.See the reply and handling status in My Cloud VOC.
For any further questions, feel free to contact us through the chatbot.
Chatbot