25 lines
618 B
YAML
25 lines
618 B
YAML
/guilds/{guildId}:
|
|
delete:
|
|
security:
|
|
- bearerAuth: []
|
|
tags:
|
|
- 'guilds'
|
|
summary: 'DELETE a guild with its id'
|
|
parameters:
|
|
- name: 'guildId'
|
|
in: 'path'
|
|
required: true
|
|
responses:
|
|
allOf:
|
|
- $ref: '#/definitions/UnauthorizedError'
|
|
- $ref: '#/definitions/ForbiddenError'
|
|
- $ref: '#/definitions/NotFoundError'
|
|
- '200':
|
|
content:
|
|
application/json:
|
|
schema:
|
|
type: 'object'
|
|
properties:
|
|
deletedGuildId:
|
|
type: 'number'
|