Help Center/
Meeting/
Client SDK Reference/
iOS SDK/
Typical Scenarios/
Scenario 3: Scheduling a Meeting
Updated on 2024-07-30 GMT+08:00
Scenario 3: Scheduling a Meeting
Description
The bookConf API can be used to schedule a meeting.
Service Process
If you need to schedule a meeting using the SDK, call the bookConf API and then implement the callback.
- Call the API.
- Call the bookConf API to schedule a meeting.
- Implement the callback.
Implement the callback.
Sample Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
/// Schedule a meeting. - (void)bookConf { HWMOrderConfParam * param = [[HWMOrderConfParam alloc] init]; param.confSubject = @"Meeting topic"; param.startTime = 1598759580; param.duration = 15; param.confType = HWMConfTypeVideo; param.isNeedConfPwd = YES; param.isRecordOn = NO; param.timeZone = 56; param.vmrId = @""; param.callInRestrictionType = HWMJoinConfRestrictionAll; [[HWMBizSdk getBizOpenApi] bookConf:param callback:^(NSError *_Nullable error, id _Nullable result) { if (error) { NSLog(@"Schedule meeting failed.:%@", error.localizedDescription); } else { NSLog(@"Meeting scheduled."); } }]; } |
Parent topic: Typical Scenarios
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.
The system is busy. Please try again later.
For any further questions, feel free to contact us through the chatbot.
Chatbot