Accepting a Meeting Invitation
acceptConfWithParam:callback:
API Description
This API is used to accept a meeting invitation.
Precautions
The actual service processing result is returned in the callback.
Method Definition
- (void)acceptConfWithParam:(HWMUISDKAcceptConfParamModel *)param callback:(HWMSDKCompleteHandler)callback;
Parameter Description
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
isAudioAccept |
No |
BOOL |
Whether to answer the meeting as a voice call (supported only for instant video meetings). |
Return Values
None
Sample Code
1 2 3 4 5 6 7 8 9 |
HWMUISDKAcceptConfParamModel *param = [[HWMUISDKAcceptConfParamModel alloc] init]; param.isAudioAccept = NO; [[HWMSdk getOpenApi] acceptConfWithParam:param callback:^(NSError * _Nullable error, id _Nullable result) { if (error) { [HWMConsoleManager shareInstance].console = [NSString stringWithFormat:@"accept conf failed, error code: %ld", error.code]; } else { [HWMConsoleManager shareInstance].console = @"accept conf success"; } }]; |
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