mirror of
https://github.com/NodeBB/NodeBB.git
synced 2026-02-08 23:57:27 +01:00
23 lines
531 B
YAML
23 lines
531 B
YAML
|
|
get:
|
||
|
|
tags:
|
||
|
|
- users
|
||
|
|
summary: Get group names that the user can invite
|
||
|
|
parameters:
|
||
|
|
- in: path
|
||
|
|
name: uid
|
||
|
|
schema:
|
||
|
|
type: integer
|
||
|
|
required: true
|
||
|
|
description: uid of the user to make the query for
|
||
|
|
example: 1
|
||
|
|
responses:
|
||
|
|
'200':
|
||
|
|
description: A collection of group names returned
|
||
|
|
content:
|
||
|
|
application/json:
|
||
|
|
schema:
|
||
|
|
type: array
|
||
|
|
items:
|
||
|
|
type: string
|
||
|
|
'401':
|
||
|
|
$ref: ../../../../components/responses/401.yaml#/401
|