本页面提供了用户管理的 API 接口参考,包括用户创建、查询、更新和删除等功能。
创建用户
使用以下 API 接口创建新用户:
POST /api/user/create
请求参数:
username
(string): 用户名password
(string): 密码email
(string): 邮箱地址
示例:
{
"username": "newuser",
"password": "password123",
"email": "newuser@example.com"
}
查询用户
使用以下 API 接口查询用户信息:
GET /api/user/query
请求参数:
username
(string): 用户名
示例:
{
"username": "newuser"
}
更新用户
使用以下 API 接口更新用户信息:
PUT /api/user/update
请求参数:
username
(string): 用户名new_password
(string): 新密码(可选)new_email
(string): 新邮箱地址(可选)
示例:
{
"username": "newuser",
"new_password": "newpassword123",
"new_email": "newuser_updated@example.com"
}
删除用户
使用以下 API 接口删除用户:
DELETE /api/user/delete
请求参数:
username
(string): 用户名
示例:
{
"username": "newuser"
}
更多详细信息和示例,请访问API 文档首页。
用户管理 API