Delete
Last updated
Last updated
To delete an existing room you need to execute a DELETE request against the /rooms/:id endpoint.
The id uniquely identifies the room and you can find it in the response.
This is a destructive operation which cannot be undone. If the deleted room is in-use -> all people will be kicked out of it and the video conference will immediately end.
By default related room resources are not deleted - e.g. if you have recordings, transcripts, chat for the room, they won't be deleted when deleting the room. If you insist on hard deleting all related room resources too, then a separate DELETE request to the /rooms/:id/resources endpoint. Other option is to set the "delete_resources" param to true in the optional body of the DELETE /rooms/:id/ request if your HTTP client supports bodies on DELETE requests.
Response (204 -> No Content)
Response is empty because the room was deleted and there is no content to return.