Update Meeting through API Not Working | Community
Skip to main content
Newcomer
April 29, 2022
Solved

Update Meeting through API Not Working

  • April 29, 2022
  • 2 replies
  • 3 views

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: 

  • Authorization - Bearer [Redacted]
  • Content-Type - application/json

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!

    Best answer by TSENick

    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: 

    • Authorization - Bearer [Redacted]
    • Content-Type - application/json

    Request Body:

    {
        "topic": "Updated Topic"
    }

     

    Once you are set up using this endpoint you should be good to go!

    2 replies

    TSENickAnswer
    Community Champion | Employee
    April 29, 2022

    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: 

    • Authorization - Bearer [Redacted]
    • Content-Type - application/json

    Request Body:

    {
        "topic": "Updated Topic"
    }

     

    Once you are set up using this endpoint you should be good to go!

    Nate1Author
    Newcomer
    April 29, 2022

    Welp I feel pretty foolish haha. Thanks for your help!