2021-05-31 05:28:43 +00:00
|
|
|
tags:
|
|
|
|
- Account Users
|
|
|
|
operationId: delete-an-account-user
|
|
|
|
summary: Delete an Account User
|
|
|
|
description: Delete an Account User
|
|
|
|
security:
|
|
|
|
- platformAppApiKey: []
|
|
|
|
parameters:
|
|
|
|
- name: data
|
|
|
|
in: body
|
|
|
|
required: true
|
|
|
|
schema:
|
|
|
|
type: object
|
2021-11-17 13:25:15 +00:00
|
|
|
required:
|
|
|
|
- user_id
|
2021-05-31 05:28:43 +00:00
|
|
|
properties:
|
|
|
|
user_id:
|
|
|
|
type: integer
|
|
|
|
description: The ID of the user
|
|
|
|
|
|
|
|
responses:
|
|
|
|
200:
|
|
|
|
description: Success
|
|
|
|
401:
|
|
|
|
description: Unauthorized
|
|
|
|
404:
|
|
|
|
description: The account does not exist
|