41 lines
1.4 KiB
YAML
41 lines
1.4 KiB
YAML
description: Successfully retrieved the list of users
|
|
content:
|
|
application/json:
|
|
schema:
|
|
type: object
|
|
properties:
|
|
users:
|
|
type: array
|
|
items:
|
|
$ref: '../../schemas/internal/meet-user.yaml'
|
|
pagination:
|
|
$ref: '../../schemas/meet-pagination.yaml'
|
|
examples:
|
|
multiple_users:
|
|
summary: Response with multiple users
|
|
value:
|
|
users:
|
|
- userId: 'admin'
|
|
name: 'Admin'
|
|
role: 'admin'
|
|
- userId: 'alice_smith'
|
|
name: 'Alice Smith'
|
|
role: 'user'
|
|
- userId: 'bob_jones'
|
|
name: 'Bob Jones'
|
|
role: 'room_member'
|
|
pagination:
|
|
nextPageToken: 'eyJvZmZzZXQiOjEwfQ=='
|
|
isTruncated: true
|
|
maxItems: 3
|
|
single_page:
|
|
summary: Response with all users in a single page
|
|
value:
|
|
users:
|
|
- userId: 'admin'
|
|
name: 'Admin'
|
|
role: 'admin'
|
|
pagination:
|
|
isTruncated: false
|
|
maxItems: 10
|