Zoomtopia is here. Unlock the transformative power of generative AI, helping you connect, collaborate, and Work Happy with AI Companion.
Register nowEmpowering you to increase productivity, improve team effectiveness, and enhance skills.
Learn moreKeep your Zoom app up to date to access the latest features.
Download Center Download the Zoom appDownload hi-res images and animations to elevate your next Zoom meeting.
Browse Backgrounds Zoom Virtual BackgroundsEmpowering you to increase productivity, improve team effectiveness, and enhance skills.
Zoom AI CompanionUser groups are unique spaces where community members can collaborate, network, and exchange knowledge on similar interests and expertise.
Help & Resources is your place to discover helpful Zoom support resources, browse Zoom Community how-to documentation, and stay updated on community announcements.
The Events page is your destination for upcoming webinars, platform training sessions, targeted user events, and more. Stay updated on opportunities to enhance your skills and connect with fellow Zoom users.
Starting February 3, 2025, Zoom Phone customers must add their phone numbers to an approved 10DLC campaign in order to use SMS/MMS capabilities on their numbers.
Introducing more live support options! More Zoom customers now have access to live agent chat support. Sign in and visit our Contact Support page to see all your available support options. We’re here to help!
2022-04-29 09:24 AM
Hi all. I'm working on an integration and am trying to add a module to update meetings. I'm receiving a 200 response but meetings aren't actually being updated with the changes. To debug I'm just trying this in Postman with the following configuration:
Request URL: https://api.zoom.us/v2/users/me/meetings/[redacted]
Method: PATCH
Headers:
Request Body:
{
"topic": "Updated Topic"
}
The meeting ID I'm using is valid and as you can see this is a very basic update. I'm just trying to get this one simple change working before expanding what can be updated. Any assistance is appreciated!
Solved! Go to Solution.
2022-04-29 09:39 AM
Hi @Nate1, it looks like you are not using the update meeting endpoint which would explain why the meeting is not updating. I believe you are wanting to use the Update a meeting endpoint. Here is what you should be using:
Request URL: https://api.zoom.us/v2/meetings/{meetingId}
Method: PATCH
Headers:
Request Body:
{ "topic": "Updated Topic" }
Once you are set up using this endpoint you should be good to go!
2022-04-29 09:39 AM
Hi @Nate1, it looks like you are not using the update meeting endpoint which would explain why the meeting is not updating. I believe you are wanting to use the Update a meeting endpoint. Here is what you should be using:
Request URL: https://api.zoom.us/v2/meetings/{meetingId}
Method: PATCH
Headers:
Request Body:
{ "topic": "Updated Topic" }
Once you are set up using this endpoint you should be good to go!
2022-04-29 11:04 AM
Welp I feel pretty foolish haha. Thanks for your help!