Help Center/ Meeting/ Client SDK Reference/ iOS SDK/ APIs/ Meeting Control/ Rejecting a Meeting Invitation
Updated on 2025-07-28 GMT+08:00

Rejecting a Meeting Invitation

rejectConf:

API Description

This API is used to reject a meeting invitation.

Precautions

The actual service processing result is returned in the corresponding callback function.

Method Definition

1
- (void)rejectConf:(_Nonnull HWMSDKCompleteHandler)callback;

Parameter Description

None

Return Values

None

Sample Code

[[HWMSdk getOpenApi] rejectConf:^(NSError * _Nullable error, id  _Nullable result) {
    if (error) {
        [UIUtil showMessageWithError:error];
    }
}];