账户管理
编辑账户
修改指定账户的基本信息,包括姓名、邮箱、启用状态及所属组织。
Authorization
bearer AuthorizationBearer <token>
In: header
Request Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
curl -X POST "https://camp.app.hzgcloud.cn/rbac/ServerCommand/EditAccount" \ -H "Content-Type: application/json" \ -d '{ "username": "test", "fullName": "测试用户11", "email": "test@demo.com", "isActived": 1 }'{
"ErrCode": 0,
"Message": "修改成功",
"data": {
"username": "test",
"fullName": " 测试用户",
"email": "test@demo.com",
"isActived": 1,
"roles": "",
"orgSuperior": "||"
}
}