Files
2026-07-13 12:31:34 +08:00

478 B

更新数据

1、请求地址:/api/updateGroupById

2、请求方式:POST

3、请求参数

参数 类型 必须 说明
id int 域名id
name string 分组名称

4、返回参数

5、请求示例

POST {{baseUrl}}/api/updateGroupById
Content-Type: application/json
X-Token: <token>

{
  "id": 1,
  "name": "项目2"
}

6、返回示例

{
  "code": 0,
  "data": null,
  "msg": "success"
}