Canceling a Recurring Meeting
cancelSubCycleConf
API Description
This API is used to cancel a recurring meeting that has not been started yet.
Precautions
- Call this API after login.
- Call this API before a recurring meeting starts. If the meeting is already in progress, calling this API is invalid.
Method Definition
1
|
- (void)cancelSubCycleConf:(HWMSDKCancelSubCycleConfParamModel *_Nonnull)param callback:(_Nonnull HWMSDKCompleteHandler)callback |
Parameter Description
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
confId |
Yes |
NSString * |
Meeting ID. |
subConfID |
Yes |
NSString * |
Recurring meeting ID. |
endOnlineConf |
Yes |
BOOL |
Whether to end an ongoing meeting. |
Sample Code
1 2 3 4 5 6 7 8 9 10 11 |
/// Cancel a recurring meeting. - (void)confirmCancelSubConf { HWMSDKCancelSubCycleConfParamModel *cancelParma = [[HWMSDKCancelSubCycleConfParamModel alloc] init]; cancelParma.confId = confId; cancelParma.subConfID = subConfID; cancelParma.endOnlineConf = YES; [[HWMBizSdk getBizOpenApi] cancelSubCycleConf:cancelParma callback:^(NSError * _Nullable error, id _Nullable result) { NSString *tips = !error ? @"Meeting canceled." : @"Cancel meeting failed."; NSLog(@"%@",tips); }]; } |
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