Editing a Meeting
editConf
API Description
This API is used to edit a meeting that has not been started yet.
Precautions
- This API can be called only when a meeting has not been started and you are the host.
- userUuid must be transferred when a participant tries to edit a scheduled meeting. (In the meeting details, each participant carries this parameter.)
- Meeting recording must be enabled if automatic recording is enabled.
- All fields are mandatory. Specify the fields that need to be modified as required, and obtain the values of other fields that do not need to be modified from the meeting details.
Method Definition
1
|
- (void)editConf:(HWMOrderConfParam *_Nonnull)param callback:(_Nonnull HWMSDKCompleteHandler)callback; |
Parameter Description
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
confId |
Yes |
NSString * |
Meeting ID. |
isLiveOn |
No |
BOOL |
Whether live broadcast is enabled. |
Sample Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
/// Edit a meeting. - (void)editConf { HWMOrderConfParam * param = [[HWMOrderConfParam alloc] init]; param.confSubject = @"Meeting topic"; param.startTime = 1598759580; param.duration = 15; param.confType = HWMConfTypeVideo; param.isNeedConfPwd = YES; param.isRecordOn = NO; param.timeZone = 56; param.vmrId = @"";// Cloud meeting room ID, required for a meeting held in a cloud meeting room. param.callInRestrictionType = HWMCallRestrictionAll; param.confId = @"986927771"; [[HWMBizSdk getBizOpenApi] editConf:param callback:^(NSError *_Nullable error, id _Nullable result) { if (error) { NSLog(@"Edit meeting failed.:%@", error.localizedDescription); } else { NSLog(@"Meeting edited."); } }]; } |
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