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.
26 lines
742 B
YAML
26 lines
742 B
YAML
4 years ago
|
delete:
|
||
|
tags:
|
||
|
- groups
|
||
|
summary: Delete an existing group
|
||
|
description: This operation deletes an existing group, all members within this group will cease to be members after the group is deleted.
|
||
|
parameters:
|
||
|
- in: path
|
||
|
name: slug
|
||
|
schema:
|
||
|
type: string
|
||
|
required: true
|
||
|
description: slug of the group you wish to delete
|
||
|
example: my-test-group
|
||
|
responses:
|
||
|
'200':
|
||
|
description: group successfully deleted
|
||
|
content:
|
||
|
application/json:
|
||
|
schema:
|
||
|
type: object
|
||
|
properties:
|
||
|
status:
|
||
|
$ref: ../../components/schemas/Status.yaml#/Status
|
||
|
response:
|
||
|
type: object
|
||
|
properties: {}
|