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.
40 lines
1.1 KiB
YAML
40 lines
1.1 KiB
YAML
4 years ago
|
get:
|
||
|
tags:
|
||
|
- admin
|
||
|
summary: Get user group details
|
||
|
parameters:
|
||
|
- name: name
|
||
|
in: path
|
||
|
required: true
|
||
|
schema:
|
||
|
type: string
|
||
|
example: administrators
|
||
|
responses:
|
||
|
"200":
|
||
|
description: ""
|
||
|
content:
|
||
|
application/json:
|
||
|
schema:
|
||
|
allOf:
|
||
|
- type: object
|
||
|
properties:
|
||
|
group:
|
||
|
$ref: ../../../../components/schemas/GroupObject.yaml#/GroupFullObject
|
||
|
groupNames:
|
||
|
type: array
|
||
|
items:
|
||
|
type: object
|
||
|
properties:
|
||
|
encodedName:
|
||
|
type: string
|
||
|
displayName:
|
||
|
type: string
|
||
|
selected:
|
||
|
type: boolean
|
||
|
allowPrivateGroups:
|
||
|
type: number
|
||
|
maximumGroupNameLength:
|
||
|
type: number
|
||
|
maximumGroupTitleLength:
|
||
|
type: number
|
||
|
- $ref: ../../../../components/schemas/CommonProps.yaml#/CommonProps
|