Session end API

The Zoom API to end session
PUT : https://api.zoom.us/v2/videosdk/sessions/{sessionID}/status
body: {
“action” : “end”
}
The above API works fine when session ID is a string without “/”.
But gives below error when sessionID has “/” .

{
“code”: 2300,
“message”: “This API endpoint is not recognized.”
}

How to handle this ?

@sudhant22 please double encode the session ID

1 Like

Thank you. Issue is resolved after double encoding the session ID.