Update a meeting API issues

Description
While update a meeting start_time and end_time was not updating properly, start_time would be updated as end_time, Which I have given in the payload.

Error
Not an error, Updated a meeting as wrong time

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

Which Endpoint/s?
Update a meeting

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

  1. Create a new meeting with random start and end date
  2. update that meeting date
  3. PATCH: https://api.zoom.us/v2/meetings/{meetingId} / [{“key”:“Content-Type”,“value”:“application/json”}] /
    {
    “topic”: “2020 - Corona - batch”,
    “type”: 8,
    “start-time”: “2020-05-08T06:10:00Z”,
    “password”: “password”,
    “duration”: 480,
    “recurrence”: {
    “type”: 2,
    “repeat_interval”: 1,
    “weekly_days”: “2,3,4,5,6”,
    “end_date_time”: “2020-07-15T12:10:00Z”
    }
    }
  4. Date been changed, But not an specified date

Additional context
Add any other context about the problem here.

Hi @Mani.bala, thanks for posting & using Zoom! The end_date_time that you have added here changes the date the meeting recurs until, not the end time of the single meeting instance. Is this the desired change you’re looking for?