24 lines
832 B
YAML
24 lines
832 B
YAML
description: Mixed results for bulk deletion operation
|
|
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. The rooms will be deleted when all participants leave the room.
|
|
example:
|
|
deleted:
|
|
- 'room-123'
|
|
- 'room-456'
|
|
markedForDeletion:
|
|
- 'room-789'
|
|
- 'room-101'
|