Obtaining the Cloud Meeting Room List
getVmrList
API Description
This API is used to obtain the cloud meeting room list.
Precautions
None
Method Definition
Deprecated API:
1
|
- (void)getVmrList:(_Nonnull HWMSDKVmrListCompleteHandler)callback; |
New API:
1
|
- (void)getVmrInfoList:(_Nonnull HWMSDKVmrInfoListCompleteHandler)callback; |
Parameter Description
Parameter |
Type |
Description |
---|---|---|
vmrs |
NSArray <HWMVmrInfoModel>* |
Cloud meeting room information. |
isEnableShareVmr |
BOOL |
Whether shared cloud meeting rooms are available. |
Parameter |
Type |
Description |
---|---|---|
name |
NSString * |
Cloud meeting room name. |
confId |
NSString * |
Display ID of the cloud meeting room. |
vmrId |
NSString * |
Unique cloud meeting room ID. |
chairmanPwd |
NSString * |
Host password. |
guestPwd |
NSString * |
Guest password. |
type |
Meeting type. |
|
maxParties |
NSUInteger |
Maximum number of participants in the cloud meeting room. |
usable |
BOOL |
Cloud meeting room status. YES: The cloud meeting room is available. NO: The cloud meeting room is unavailable. |
allowGuestStartConf |
BOOL |
Whether to allow guests to join the meeting ahead of the host. |
confAllowJoinUser |
Users who are allowed to join the meeting. |
|
isOpenWaitingRoom |
BOOL |
Whether to enable the waiting room. |
Parameter |
Description |
---|---|
HWMConfIdPersonal |
Personal meeting ID. |
HWMConfIdMeetingRoom |
Cloud meeting room ID. |
HWMConfIdRandom |
Random meeting ID. |
Parameter |
Description |
---|---|
HWMJoinConfRestrictionAll |
Everyone. |
HWMJoinConfRestrictionCompany |
Corporate users only. |
HWMJoinConfRestrictionInvited |
Invited users only. |
Sample Code
1 2 3 4 5 6 7 8 9 10 |
/// Obtain the cloud meeting room list. - (void)getVmrList { [[HWMBizSdk getBizOpenApi] getVmrList:^(NSError * _Nullable error, NSArray<HWMVmrInfoModel *> * _Nullable result) { if (error) { NSLog(@"Cloud meeting room list obtained."); } else { NSLog(@"Failed to obtain the cloud meeting room list."); } }]; } |
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