Help Center> Meeting> Client SDK Reference> macOS SDK> APIs> Meeting Management> Editing a Recurring Meeting Series
Updated on 2023-03-23 GMT+08:00

Editing a Recurring Meeting Series

editCycleConf

API Description

This API is used to edit a recurring meeting series.

Precautions

  1. Call this API after login.
  2. All fields are mandatory. Specify the fields to be edited as required, and assign values in the meeting details to remaining fields.

Method Definition

1
- (void)editCycleConf:(HWMBookCycleConfParam *_Nonnull)param callback:(_Nonnull HWMSDKCompleteHandler)callback

Parameter Description

Table 1 HWMBookCycleConfParam parameter description

Parameter

Mandatory

Type

Description

confParam

Yes

HWMOrderConfParam

Common meeting parameters.

cycleConfParam

Yes

HWMCycleConfParam

Recurring meeting series parameters.

Sample Code

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/// Edit a recurring meeting series.
- (void)editCycleConf{
 HWMOrderConfParam * orderConfParam = [[HWMOrderConfParam alloc] init];
    orderConfParam.confSubject = @"My Scheduled Meeting";
    orderConfParam.isAutoRecord = YES;
    orderConfParam.startTime = 1633017600; // UTC timestamp, in seconds. If the obtained time is the local time, the time needs to be converted to the UTC time.
    orderConfParam.duration = 30; // Meeting duration, in minutes
    orderConfParam.timeZone = 56;
    orderConfParam.callInRestrictionType = HWMCallRestrictionAll;
    HWMAttendeeInfo * attendeeInfo = [[HWMAttendeeInfo alloc] init];
    attendeeInfo.name = @"Mike";
    attendeeInfo.number = @"+991116003543";
    attendeeInfo.isMute = YES;
    orderConfParam.attendee = @[attendeeInfo];
    
    HWMCycleConfParamModel * cycleConfParamModel = [[HWMCycleConfParamModel alloc] init];
    cycleConfParamModel.startDate = 1633017600; // UTC timestamp, in seconds. If the obtained time is the local time, the time needs to be converted to the UTC time.
    cycleConfParamModel.endDate = 1636560000;
    cycleConfParamModel.cycleType = HWMSDKCycleTypeWeek;
    cycleConfParamModel.preRemindDays = 1;
    
    HWMBookCycleConfParam *param = [[HWMBookCycleConfParam alloc] init];
    param.confParam = orderConfParam;
    param.cycleConfParam = cycleConfParamModel;

    [[HWMBizSdk getBizOpenApi] editCycleConf:param callback:^(NSError * _Nullable error, id  _Nullable result) {
        if (!error) {
            NSLog(@"book cycle conf success");
        }else{
            NSLog(@"book cycle conf fail errorCode : %zd",error.code);
        }
    }];
}