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.
25 lines
677 B
YAML
25 lines
677 B
YAML
4 years ago
|
delete:
|
||
|
tags:
|
||
|
- users
|
||
|
summary: delete a single user account (preserve content)
|
||
|
description: This route deletes a single user's account, but preserves the content (posts, bookmarks, etc.)
|
||
|
parameters:
|
||
|
- in: path
|
||
|
name: uid
|
||
|
schema:
|
||
|
type: integer
|
||
|
required: true
|
||
|
description: uid of the user to delete
|
||
|
example: 7
|
||
|
responses:
|
||
|
'200':
|
||
|
description: user account deleted
|
||
|
content:
|
||
|
application/json:
|
||
|
schema:
|
||
|
type: object
|
||
|
properties:
|
||
|
status:
|
||
|
$ref: ../../../components/schemas/Status.yaml#/Status
|
||
|
response:
|
||
|
type: object
|