Is it possible to schedule zoom meeting

guard let zone = NSTimeZone.default.abbreviation(), let m = preMeetingService.createMeetingItem(), let sDate = Calendar.current.date(
byAdding: .hour,
value: 1,
to: Date()) else {
return
}
print(zone)
m.setStartTime(sDate)
m.setUsePMIAsMeetingID(true)
m.setMeetingNumber(25225)
m.setMeetingTopic(“Test Meeting”)
m.setDurationInMinutes(60)
m.setTimeZoneID(timeZone)
m.setMeetingPassword("")

    let obj = preMeetingService.scheduleMeeting(m, withScheduleFor: nil)
    print("obj")

meeting is not schedule & obj object set directly to null

Hey @louteshweta27,

Thanks for using the dev forum!

There are known issues with the premeeting service on all platforms of the SDK. We strongly encourage using the RESTful API for scheduling meetings instead: https://marketplace.zoom.us/docs/api-reference/zoom-api/meetings/meetingcreate

Thanks!
Michael