mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-12-26 02:10:36 +01:00
27 lines
646 B
YAML
27 lines
646 B
YAML
get:
|
|
tags:
|
|
- users
|
|
summary: get chat room
|
|
parameters:
|
|
- in: path
|
|
name: uid
|
|
schema:
|
|
type: integer
|
|
required: true
|
|
description: uid of the user to query
|
|
example: 2
|
|
responses:
|
|
'200':
|
|
description: successfully retrieved private chat room with user
|
|
content:
|
|
application/json:
|
|
schema:
|
|
type: object
|
|
properties:
|
|
status:
|
|
$ref: ../../../components/schemas/Status.yaml#/Status
|
|
response:
|
|
type: object
|
|
properties:
|
|
roomId:
|
|
type: number |