Skip to main content

DELETE API to Delete Meeting Room


DELETE
    https://<appname>.metered.live/api/v1/room/{roomName}

<appname> - replace it the name of your app.

<roomName> - The name of the room that you want to delete.

Description

This endpoint allows you to Delete a Meeting Room

Parameters

ParametersDescriptionRequiredOptions
Query
secretKeystringyour secret keyyes-
Bodyapplication/json
roomNamestringThe name of the room which you want to deleteyes-

Request Samples

cURL
curl --request DELETE \
--url 'https://appname.metered.live/api/v1/room/roomName?secretKey={replace_this_with_your_secretKey}' \
--header 'Accept: application/json'

Responses

200
{
"success": true,
"message": "Room successfully archived"
}
400

{
"success": false,
"message": "Invalid request"
}
500

{
"eventCode": "",
"message": "error message"
}