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.
60 lines
1.5 KiB
YAML
60 lines
1.5 KiB
YAML
4 years ago
|
delete:
|
||
|
tags:
|
||
|
- users
|
||
|
summary: delete a single user account
|
||
|
parameters:
|
||
|
- in: path
|
||
|
name: uid
|
||
|
schema:
|
||
|
type: integer
|
||
|
required: true
|
||
|
description: uid of the user to delete
|
||
|
responses:
|
||
|
'200':
|
||
|
description: user account deleted
|
||
|
content:
|
||
|
application/json:
|
||
|
schema:
|
||
|
type: object
|
||
|
properties:
|
||
|
status:
|
||
|
$ref: ../../components/schemas/Status.yaml#/Status
|
||
|
response:
|
||
|
type: object
|
||
|
put:
|
||
|
tags:
|
||
|
- users
|
||
|
summary: update a user account
|
||
|
parameters:
|
||
|
- in: path
|
||
|
name: uid
|
||
|
schema:
|
||
|
type: integer
|
||
|
required: true
|
||
|
description: uid of the user to update
|
||
|
requestBody:
|
||
|
required: true
|
||
|
content:
|
||
|
application/json:
|
||
|
schema:
|
||
|
$ref: ../../components/schemas/UserRequest.yaml#/UserRequest
|
||
|
responses:
|
||
|
'200':
|
||
|
description: user profile updated
|
||
|
content:
|
||
|
application/json:
|
||
|
schema:
|
||
|
type: object
|
||
|
properties:
|
||
|
status:
|
||
|
$ref: ../../components/schemas/Status.yaml#/Status
|
||
|
response:
|
||
|
$ref: ../../components/schemas/UserObj.yaml#/UserObj
|
||
|
'401':
|
||
|
$ref: ../../components/responses/401.yaml#/401
|
||
|
'403':
|
||
|
$ref: ../../components/responses/403.yaml#/403
|
||
|
'426':
|
||
|
$ref: ../../components/responses/426.yaml#/426
|
||
|
'500':
|
||
|
$ref: ../../components/responses/500.yaml#/500
|