Help changing the Meeting Host via postman - 204 returned

Description
Hello. I need to move some of my Zoom meetings to another host and I’m trying to accomplish it using Postman and the PATCH method API.

The code postman generates is:

curl --request PATCH
–url https://api.zoom.us/v2/meetings/xxx
–header ‘Accept: /
–header ‘Accept-Encoding: gzip, deflate’
–header 'Authorization: Bearer xxx
–header ‘Cache-Control: no-cache’
–header ‘Connection: keep-alive’
–header ‘Content-Length: 48’
–header ‘Content-Type: application/json’
–header ‘Cookie: cred=xxx’
–header ‘Host: api.zoom.us
–header ‘Postman-Token: xxx’
–header ‘User-Agent: PostmanRuntime/7.18.0’
–header ‘cache-control: no-cache’
–data ‘{“scheduled_for”:“myemail”}’

However, the only thing returned is Status 204 - No content.

What I’m doing wrong? Please note I can run GET method without any issues.

Thanks,
Rodrigo

Error
Status 204 - No content.

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

Which Endpoint/s?
PATCH method of the API described on the description.

I forgot to mention that even though 204 is the expected result, the host meeting is not changing at all… even if I type a fake email address on the scheduled_for field, it returns the same 204.

Hey @rodrigoaraujorge,

Can you try setting schedule_for instead of scheduled_for?

Thanks,
Tommy

Thanks Tommy. Yeah that was the issue… don’t know how this typo was invisible to my eyes =]

1 Like

Happy to hear that fixed it! :slight_smile:

Thanks,
Tommy

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