description: > **Mixed results**. Some rooms were deleted immediately while others were marked for deletion (due to active participants). content: application/json: schema: type: object properties: deleted: type: array items: type: string description: List of rooms that were deleted immediately markedForDeletion: type: array items: type: string description: >- List of rooms that were marked for deletion but not actually deleted. These rooms will be deleted when all participants leave. example: deleted: - 'room-123' - 'room-456' markedForDeletion: - 'room-789' - 'room-101'