Update meeting api not working return 200 response code

Description

We are trying to update meeting using api but we are receiving 200 response code and details also not updating on created meeting. As per your document its should return 201 response code, but we received 200.

Error
we are not receiving any error message. On execution of meeting update api we are getting response code 200.
Which App Type (OAuth / Chatbot / JWT / Webhook)?
we are using OAuth.

How To Reproduce (If applicable)
Steps to reproduce the behavior:
url : https://api.zoom.us/v2/users/me/meetings/73233835115

Header :

{Authorization=bearer { token }, Accept=application/json, Content-Type=application/json}

Request body :

{“duration”:60,“start_time”:“2020-06-01T16:02:00”,“settings”:{“join_before_host”:false,“watermark”:true,“waiting_room”:true,“use_pmi”:false,“approval_type”:0,“participant_video”:true,“close_registration”:true,“audio”:“both”,“host_video”:true,“auto_recording”:“cloud”,“mute_upon_entry”:false,“registration_type”:1},“timezone”:“Asia/Calcutta”,“topic”:" zoom api Class 1 June Extend “,“schedule_for”:”",“type”:2}

Response code : 200 (with no error)

Please help me out from this issue so that I can move forward in zoom api.

From
Nitin Chopkar

Hey @nitinchopkar,

It seems your url is not correct. The correct endpoint to update a meeting is:

https://api.zoom.us/v2/meetings/{meetingId}

Thanks,
Tommy

Yes , I corrected that one and its working now.

Thank you.

Great @nitinchopkar let us know if you need any other help!