Skip to main content

Delete a room.

DELETE 
/rooms/:room_id

Synchronously delete a Room. Participants from that room will be kicked out, they won't be able to join that room anymore, and you won't be charged anymore for that room.

Request

Path Parameters

    room_id uuidrequired

    The unique identifier of a room.

Responses

204: The resource was deleted successfully.

404: Resource not found

Request samples


curl -L -X DELETE 'https://api.telnyx.com/v2/rooms/:room_id' \
-H 'Authorization: Bearer <TOKEN>'

Response samples


{
"code": "string",
"title": "string",
"detail": "string",
"source": {
"pointer": "string",
"parameter": "string"
},
"meta": {}
}