Delete a Meeting Room

Delete a specific meeting room.

Request URL

DELETE {base_url}/services/openapi/v1.0/room/room_delete/{roomId}

Request parameters

Path parameter
Parameter Required Type Description
roomId Yes Long The ID of the meeting room.
Note: You can query the room ID using the Query Multiple Meeting Rooms interface.

Response parameters

Parameter Type Description
data Object <Details> The detailed information.
status String The result of the request.
  • Success
  • Failed
requestId String The ID of the request, which can be used to quickly locate the request.
Details
Parameter Type Description
roomId Long The ID of the meeting room.

Example

Request parameter

Delete a meeting room (ID: 3101).

DELETE /services/openapi/v1.0/room/room_delete/3101 HTTP/1.1
Host: workplace.yeastar.com
Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJncmFudF90eXBlIjoiY2xpZW50X2NyZWRlbnRpYWxzIiwic2NvcGUiOlsiL29wZW5hcGkvIl0sImF0aSI6IjEyNGFmMGI3LWNjMzgtNGEwZC1hZWIwLTEyNWYxNzIwZWRmYyIsImVudGVycHJpc2VfaWQiOjEwMDQzMywicmVnaW9uIjoiR0wiLCJhdXRob3JpdGllcyI6WyJST0xFX0NMSUVOVCJdLCJqdGkiOiI2ZDRkMGFhMi0wYWY4LTQ5NTctOWFkYS1hOWM4ZmFhMDc4ODciLCJjbGllbnRfaWQiOiI3OTU2OGFhMC0wYjBkLTQyZjYtOGRiNC03OWExNmQ3MzQ3MmEiLCJ0cyI6MTY4OTc2NDMwNywiZXhwX2luIjo4NjM5OX0.qJg3rOhz5rPtXKyO0mVFeL_TmHExNzhYU2g-1XIOBzo

Response parameter

HTTP/1.1 200 OK
{
    "data": {
        "roomId": 3101
    },
    "status": "Success",
    "requestId": "dd3d962d315819d22f1031adbee9f7f2"
}