mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
31 lines
843 B
YAML
31 lines
843 B
YAML
/api/v4/limits/users:
|
|
get:
|
|
tags:
|
|
- users
|
|
summary: Gets the user limits for the server
|
|
description: >
|
|
Gets the user limits for the server
|
|
|
|
##### Permissions
|
|
|
|
Requires `sysconsole_read_user_management_users`.
|
|
|
|
operationId: getUserLimits
|
|
responses:
|
|
"200":
|
|
description: User limits for server
|
|
content:
|
|
application/json:
|
|
schema:
|
|
type: array
|
|
items:
|
|
$ref: "#/components/schemas/UserLimits"
|
|
"400":
|
|
$ref: "#/components/responses/BadRequest"
|
|
"401":
|
|
$ref: "#/components/responses/Unauthorized"
|
|
"403":
|
|
$ref: "#/components/responses/Forbidden"
|
|
"500":
|
|
$ref: "#/components/responses/InternalServerError"
|