i am integrate my apps (meeting room booking system) with zoom api,before is normal, but current when i create meeting (monday,tuesday,wednesday,thursday,friday,saturday) from my apps or script create meeting to zoom api, meeting always created time on sunday , whyy? Is zoom api now on maintenance?
Hey @bay77,
Thank you for reaching out to the Zoom Developer Forum. Please provide the URL and request body that you’re using. I’ll use that to investigate further.
Thanks,
Max
I am create meeting with this url https://api.zoom.us/v2/users/myemail/meetings
Request Body
{
"topic":"teessting",
"agenda":"",
"type":8,
"start_time":"2021-10-16T20:00:00Z",
"timezone":"Asia/Jakarta",
"password":"",
"duration":60,
"settings":{
"join_before_host":true,
"host_video":false,
"participant_video":false,
"mute_upon_entry":false,
"enforce_login":false,
"auto_recording":"none",
"alternative_hosts":""
},
"recurrence":{
"type":2,
"repeat_interval":2,
"end_date_time":"2021-11-30T20:00:00Z"
}
}
Response
{“uuid”:“P9oyEKwzRSqFnzE9IY1b7A==”,“id”:84978958481,“host_id”:“SpC0WKo3TSeY5goCC30hsw”,“host_email”:“myemail”,“topic”:“teessting”,“type”:8,“status”:“waiting”,“timezone”:“Asia/Jakarta”,“created_at”:“2021-10-04T05:08:00Z”,“start_url”:“Launch Meeting - Zoom”:false}
Http Code 201
I am create meeting on Monday, Tuesday, Wednesday, Thursday, Friday, Saturday but meeting created on Sunday
this response from zoom
{
"uuid":"P9oyEKwzRSqFnzE9IY1b7A==",
"id":84978958481,
"host_id":"SpC0WKo3TSeY5goCC30hsw",
"host_email":"myemail",
"topic":"teessting",
"type":8,
"status":"waiting",
"timezone":"Asia/Jakarta",
"created_at":"2021-10-04T05:08:00Z",
"start_url":"https://us06web.zoom.us/s/84978958481?zak=eyJ0eXAiOiJKV1QiLCJzdiI6IjAwMDAwMSIsInptX3NrbSI6InptX28ybSIsImFsZyI6IkhTMjU2In0.eyJhdWQiOiJjbGllbnRzbSIsInVpZCI6IlNwQzBXS28zVFNlWTVnb0NDMzBoc3ciLCJpc3MiOiJ3ZWIiLCJzdHkiOjEwMCwid2NkIjoidXMwNiIsImNsdCI6MCwibW51bSI6Ijg0OTc4OTU4NDgxIiwic3RrIjoiRU4tdFJfZDBZSmxiM0E2ZTFxM3gxcXV0SmVJQnVScE1WVGFwTUFGN1NoNC5CZ1lnVUV3d2IySlRhalpQVVhsb2JXUjZNazAyVWxsVGFubGhiR1ZLZERKNWRDOUFPV1UzTkdReFkyRTJOR0ZsWmpFelltTTFPRFUzWmpjNU9XRTVabUV4TURNM09HRmlaV1ZoTkRVM1lXSTVOekUyWkdZNU56Y3hNVFkyTkdJd05qZGpaQUFnYm5kRlJteHpZbkpDYm5kbGRURnlWM1YzTkRGUVkzbzVjRlJFYUVaNE9Ia0FCSFZ6TURZQUFBRjhTYk9kbmdBU2RRQUFBQSIsImV4cCI6MTYzMzMzMTI4MCwiaWF0IjoxNjMzMzI0MDgwLCJhaWQiOiJvU19rbFJ0RlNfeUhTQ01kY01oQmlnIiwiY2lkIjoiIn0.c05sD1YbSxOJAMw-GMpa5ZA9jLefjYdKr3SKgznd4oo",
"join_url":"https://us06web.zoom.us/j/84978958481",
"occurrences":[
{
"occurrence_id":"1634414400000",
"start_time":"2021-10-16T20:00:00Z",
"duration":60,
"status":"available"
},
{
"occurrence_id":"1635624000000",
"start_time":"2021-10-30T20:00:00Z",
"duration":60,
"status":"available"
},
{
"occurrence_id":"1636833600000",
"start_time":"2021-11-13T20:00:00Z",
"duration":60,
"status":"available"
},
{
"occurrence_id":"1638043200000",
"start_time":"2021-11-27T20:00:00Z",
"duration":60,
"status":"available"
}
],
"settings":{
"host_video":false,
"participant_video":false,
"cn_meeting":false,
"in_meeting":false,
"join_before_host":true,
"jbh_time":0,
"mute_upon_entry":false,
"watermark":false,
"use_pmi":false,
"approval_type":2,
"audio":"voip",
"auto_recording":"none",
"enforce_login":false,
"enforce_login_domains":"",
"alternative_hosts":"",
"close_registration":false,
"show_share_button":false,
"allow_multiple_devices":false,
"registrants_confirmation_email":true,
"waiting_room":true,
"request_permission_to_unmute_participants":false,
"registrants_email_notification":true,
"meeting_authentication":false,
"encryption_type":"enhanced_encryption",
"approved_or_denied_countries_or_regions":{
"enable":false
},
"breakout_room":{
"enable":false
},
"alternative_hosts_email_notification":true,
"device_testing":false
},
"recurrence":{
"type":2,
"repeat_interval":2,
"weekly_days":"1",
"end_date_time":"2021-11-30T20:00:00Z"
},
"pre_schedule":false
}
on my dashboard zoom show this meeting all on sunday
Hey @bay77,
Thank you for following up on this. It looks like this is happening because the weekly_days
parameter is not included in your request:
This causes the day the recurrence lands on to default to 1 - or Sunday.
Let me know if that helps.
Thanks,
Max
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.