Help Center/
Meeting/
Client SDK Reference/
iOS SDK/
API Reference/
Meeting Management/
Canceling a Meeting
Updated on 2024-07-30 GMT+08:00
Canceling a Meeting
cancelConf
API Description
This API is used to cancel a scheduled meeting.
Precautions
- Only the host can cancel a meeting.
- Calling this API during a meeting will end the meeting.
Method Definition
1
|
- (void)cancelConf:(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 9 10 |
/// Cancel a meeting. - (void)cancelConf { [[HWMBizSdk getBizOpenApi] cancelConf:@"986927771" callback:^(NSError * _Nullable error, id _Nullable result) { if (error) { NSLog(@"%@",error.localizedDescription); } else { NSLog(@"Meeting canceled."); } }]; } |
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