FGC-RBAC
账户管理

删除账户

POST
/DeleteAccount

删除指定账户,支持同时删除多个账户(用户名以英文逗号分隔)。

AuthorizationBearer <token>

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

username*用户名

要删除的账户登录名,多个账户以英文逗号分隔

Response Body

application/json

curl -X POST "https://camp.app.hzgcloud.cn/rbac/ServerCommand/DeleteAccount" \  -H "Content-Type: application/json" \  -d '{    "username": "test"  }'
{
  "ErrCode": 0,
  "Message": "删除成功"
}