Always meeting start time is current date time when Create Schedule Meeting by Zoom API

Description

I have Create new meeting by Zoom API: https://api.zoom.us/v2/users/{userId}/meetings
UserId: manickam.g@busofttech.com

And Send the Body Text like

{
“topic”: “Demo 1”,
“type”: 2,
“start_time”: “2020-08-25T10:00:00”,
“duration”: 30,
“timezone”: “”,
“password”: “5Jgyqh”,
“recurrence”: {
“type”: 1,
“repeat_interval”: 1,
“Weekly_Days”: 2,
“Monthly_Day”: 1,
“Monthly_Week”: 1,
“Monthly_Week_Day”: 2,
“End_Times”: 1,
“End_Date_Time”: “2040-12-31T23:59:59Z”
},
“Settings”: {
“AlternativeHosts”: “”,
“Approval_Type”: 2,
“Audio”: “both”,
“Auto_Recording”: “cloud”,
“Close_Registration”: false,
“Cn_Meeting”: false,
“Enforce_Login”: false,
“Enforce_Login_Domains”: “”,
“Global_Dial_In_Countries”: [
“US”
],
“Global_Dial_In_Numbers”: ,
“Host_Video”: true,
“In_Meeting”: false,
“Join_Before_Host”: true,
“Mute_Upon_Entry”: false,
“End_Date_Time”: null,
“Participant_Video”: true,
“Registrants_Confirmation_Email”: true,
“Use_Pmi”: false,
“Waiting_Room”: false,
“Watermark”: false,
“Registrants_Email_Notification”: true
}
}

And got response like,

{
“created_at”: “2020-08-25T14:34:49Z”,
“duration”: 30,
“encrypted_password”: “UUZEU3ErWFNDT2Z0NGp0ZjhoQ0FmQT09”,
“h323_password”: “286813”,
“host_email”: “manickam.g@busofttech.com”,
“host_id”: “rVSEzwXlRnGNt0SGbk8I9A”,
“id”: ***********,
“join_url”: “https://us02web.zoom.us/j/85960142203”,
“password”: “5Jgyqh”,
“pstn_password”: “286813”,
“settings”: {
“alternative_hosts”: “”,
“approval_type”: 2,
“audio”: “both”,
“auto_recording”: “none”,
“close_registration”: false,
“cn_meeting”: false,
“enforce_login”: false,
“enforce_login_domains”: “”,
“global_dial_in_countries”: [
“US”
],
“global_dial_in_numbers”: [
{
“country”: “US”,
“country_name”: “US”,
“number”: “+1 9292056099”,
“type”: “toll”
},
{
“country”: “US”,
“country_name”: “US”,
“number”: “+1 3017158592”,
“type”: “toll”
},
{
“country”: “US”,
“country_name”: “US”,
“number”: “+1 3126266799”,
“type”: “toll”
},
{
“country”: “US”,
“country_name”: “US”,
“number”: “+1 6699006833”,
“type”: “toll”
},
{
“country”: “US”,
“country_name”: “US”,
“number”: “+1 2532158782”,
“type”: “toll”
},
{
“country”: “US”,
“country_name”: “US”,
“number”: “+1 3462487799”,
“type”: “toll”
}
],
“host_video”: false,
“in_meeting”: false,
“join_before_host”: false,
“meeting_authentication”: false,
“mute_upon_entry”: false,
“participant_video”: false,
“registrants_confirmation_email”: true,
“registrants_email_notification”: true,
“request_permission_to_unmute_participants”: false,
“use_pmi”: false,
“waiting_room”: true,
“watermark”: false
},
“start_time”: “2020-08-25T14:34:49Z”,
“start_url”: “https://us02web.zoom.us/s/85960142203?zak=eyJ6bV9za20iOiJ6bV9vMm0iLCJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhdWQiOiJjbGllbnQiLCJ1aWQiOiJyVlNFendYbFJuR050MFNHYms4STlBIiwiaXNzIjoid2ViIiwic3R5Ijo5OSwid2NkIjoidXMwMiIsImNsdCI6MCwic3RrIjoid2lnU1FSS1dWazl2MllBdzZlaXNPRWllY1d2d3pkTkpRX0pnOHhxNXhTVS5CZ1VzVW5NNVZEUnFNM1VyZWpkQlZXVTNRM05tWTBSbGRVbGtlREZ0WkhocWIwNHdTRUZWYkVnclRUQnliejBBQUNCSWRtdDZURVU0TmpSSVl6VTVWRkZJWmtvcmVsQnpURkoyYURKSVIzcENTZ0FFZFhNd01nIiwiZXhwIjoxNjA2MTQyMDg5LCJpYXQiOjE1OTgzNjYwODksImFpZCI6IldadjB3Rk9WVDZha0Iya1duZjNqUkEiLCJjaWQiOiIifQ.FBoxqexEkw6p_Ph9VU6JMBBzgSOYE5UX5nOF2ncOlrE”,
“status”: “waiting”,
“timezone”: “UTC”,
“topic”: “Demo 1”,
“type”: 2,
“uuid”: “qVKf0CvQQmiwpjpiQGRzNw==”
}

Error
Meeting start_timeand Meeting created_at both are same.

Which App Type (OAuth / Chatbot / JWT / Webhook)?
JWT

Which Endpoint/s?
https://api.zoom.us/v2/users/{userId}/meetings

How To Reproduce (If applicable)
Steps to reproduce the behavior:

  1. https://api.zoom.us/v2/users/{userId}/meetings
  2. See error

Screenshots (If applicable)
If applicable, add screenshots to help explain your problem.

Additional context
Add any other context about the problem here.

*This post has been edited to remove any meeting / webinar IDs

Hey @swamivenkat,

You need to either pass in a timezone, or add Z to the end of your state_time.

Try that and let me know if it work! :slight_smile:

Thanks,
Tommy

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.