You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
2.2 KiB
YAML
61 lines
2.2 KiB
YAML
3 years ago
|
get:
|
||
|
tags:
|
||
|
- chats
|
||
|
summary: get chat room users
|
||
|
description: This operation retrieves the users in a chat room message
|
||
|
parameters:
|
||
|
- in: path
|
||
|
name: roomId
|
||
|
schema:
|
||
|
type: number
|
||
|
required: true
|
||
|
description: a valid chat room id
|
||
|
example: 1
|
||
|
responses:
|
||
|
'200':
|
||
|
description: Users successfully retrieved
|
||
|
content:
|
||
|
application/json:
|
||
|
schema:
|
||
|
type: object
|
||
|
properties:
|
||
|
status:
|
||
|
$ref: ../../../components/schemas/Status.yaml#/Status
|
||
|
response:
|
||
|
type: object
|
||
|
properties:
|
||
|
users:
|
||
|
type: array
|
||
|
items:
|
||
|
type: object
|
||
|
properties:
|
||
|
uid:
|
||
|
type: number
|
||
|
description: A user identifier
|
||
|
username:
|
||
|
type: string
|
||
|
description: A friendly name for a given user account
|
||
|
picture:
|
||
|
nullable: true
|
||
|
type: string
|
||
|
status:
|
||
|
type: string
|
||
|
displayname:
|
||
|
type: string
|
||
|
description: This is either username or fullname depending on forum and user settings
|
||
|
icon:text:
|
||
|
type: string
|
||
|
description: A single-letter representation of a username. This is used in the
|
||
|
auto-generated icon given to users
|
||
|
without an avatar
|
||
|
icon:bgColor:
|
||
|
type: string
|
||
|
description: A six-character hexadecimal colour code assigned to the user. This
|
||
|
value is used in conjunction with
|
||
|
`icon:text` for the user's
|
||
|
auto-generated icon
|
||
|
example: "#f44336"
|
||
|
isOwner:
|
||
|
type: boolean
|
||
|
canKick:
|
||
|
type: boolean
|