Zoom Rest-API V2 End Meeting Issue

We have migrated the Zoom API from V1 to V2 and we face the strange issue i.e. meeting is not getting ended when we hit the end meeting endpoint.

 

https://zoom.github.io/api/#update-a-meetings-status

 

Please suggest as this is one of the major concerns for us.

Hi Face2Face Health, 

Can you share the payload that you sent using this endpoint so that we can take a closer look?

Thanks

Hi Michael,

As requested please find payload of Create and End Meeting let me know if you have any queries -

Create Meeting -
URL:https://api.zoom.us/v2/users/YALYW6rUQjOuUN3qMuJKog/meetings
Method:POST
Data:
{
“topic”: “string”,
“type”: 2,
“start_time”: “2018-09-10 11:31:00”,
“duration”: “10”,
“password”: “123456”,
“settings”: {
“join_before_host”: false,
“audio”: “both”,
“auto_recording”: “none”,
“enforce_login”: false
}
}

 

End Meeting -
url:https://api.zoom.us/v2/meetings/{meetingId}
method:PATCH
data:
‘{
“action”: “end”
}’

 

Hi Face2Face Health,

I wasn’t able to duplicate the issue. Did you receive a 204, 500, or 404 status when you did the update meeting status API? It may take a moment after you ended the meeting to be unavailable.

 

 

Hi Michael,

We are getting the 204 response code and meeting keeps continued & zoom app is not getting closed.

Thanks.

Hi Face2Face Health, 

You have to use this endpoint https://api.zoom.us/v2/meetings/{meeting-id}/ status 

and use this within the payload

{
“action”: “end”
}