summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author陈劲松 <[email protected]>2019-09-06 16:36:45 +0800
committer陈劲松 <[email protected]>2019-09-06 16:36:45 +0800
commit044bb6256c94ae87475511990eed9d933ab21f3a (patch)
treeb8bdfb11c09d08159a7452657973bdaddc65cf88
parent7237f136ce87414a0481c5ce9aa696526d8d0394 (diff)
给业务系统分配节点的功能归入新增、修改接口
-rw-r--r--nezha接口文档.md8
1 files changed, 6 insertions, 2 deletions
diff --git a/nezha接口文档.md b/nezha接口文档.md
index 04aea1d..b92fa87 100644
--- a/nezha接口文档.md
+++ b/nezha接口文档.md
@@ -1977,6 +1977,7 @@ data |Object |R |&nbsp;
name |String |R |名称
remark |String |O |备注
usergroupIds |Integer[] |O |用户组id,分配现有用户组
+uuids |Integer[] |O |节点组id,分配节点
示例:
@@ -1985,7 +1986,8 @@ usergroupIds |Integer[] |O |用户组id,分配现有用户组
{
"name": "system22",
"remark": "en",
- "usergroupIds": [1,2,3,4]
+ "usergroupIds": [1,2,3,4],
+ "uuids": [1,3,4]
}
```
@@ -2019,6 +2021,7 @@ id |Integer |R |id
name |String |R |名称
remark |String |O |备注
usergroupIds |Integer[] |O |用户组id
+uuids |Integer[] |O |节点组id,分配节点
示例:
@@ -2027,7 +2030,8 @@ usergroupIds |Integer[] |O |用户组id
"id": 9,
"name": "cab9",
"remark": "en",
- "usergroupIds": [1,2,3,4]
+ "usergroupIds": [1,2,3,4],
+ "uuids": [1,3,4]
}
```