Help Center/
Meeting/
Client SDK Reference/
macOS SDK/
APIs/
Meeting Management/
Canceling a Recurring Meeting Series
Updated on 2024-07-30 GMT+08:00
Canceling a Recurring Meeting Series
cancelCycleConf
API Description
This API is used to cancel a recurring meeting series that has at least one upcoming meeting.
Precautions
- Call this API after login.
- Call this API before the last recurring meeting starts. If the last recurring meeting is already in progress, calling this API is invalid.
Method Definition
1
|
- (void)cancelCycleConf:(NSString *_Nonnull)confId callback:(_Nonnull HWMSDKCompleteHandler)callback; |
Parameter Description
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
confId |
Yes |
NSString * |
Meeting ID. |
Sample Code
1 2 3 4 5 6 7 8 |
/// Cancel a recurring meeting series. - (void)cancelCycleConf { NSString *confId = "989156631"; [[HWMBizSdk getBizOpenApi] cancelCycleConfWithParam:cancelParam callback:^(NSError * _Nullable error, id _Nullable result) { NSString *tips = !error ? @"Recurring meeting series canceled." : @"Cancel recurring meting series failed."; NSLog(@"%@",tips); }]; } |
Parent topic: Meeting Management
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