diff --git a/Source/ZoomNet/Resources/Meetings.cs b/Source/ZoomNet/Resources/Meetings.cs index 59e7c095..b5d4e42b 100644 --- a/Source/ZoomNet/Resources/Meetings.cs +++ b/Source/ZoomNet/Resources/Meetings.cs @@ -292,6 +292,7 @@ public Task UpdateMeetingOccurrenceAsync(long meetingId, string occurrenceId, st public Task UpdateScheduledMeetingAsync(long meetingId, string userId = null, string topic = null, string agenda = null, DateTime? start = null, int? duration = null, string password = null, MeetingSettings settings = null, IDictionary trackingFields = null, CancellationToken cancellationToken = default) { var data = new JObject(); + data.AddPropertyIfValue("schedule_for", userId); data.AddPropertyIfValue("topic", topic); data.AddPropertyIfValue("password", password); data.AddPropertyIfValue("agenda", agenda); @@ -328,6 +329,7 @@ public Task UpdateScheduledMeetingAsync(long meetingId, string userId = null, st public Task UpdateRecurringMeetingAsync(long meetingId, string userId = null, string topic = null, string agenda = null, DateTime? start = null, int? duration = null, RecurrenceInfo recurrence = null, string password = null, MeetingSettings settings = null, IDictionary trackingFields = null, CancellationToken cancellationToken = default) { var data = new JObject(); + data.AddPropertyIfValue("schedule_for", userId); data.AddPropertyIfValue("topic", topic); data.AddPropertyIfValue("password", password); data.AddPropertyIfValue("agenda", agenda);