# 批量查询节点列表

# 调用方式: GET

# 接口地址:

https://api.freelog.com/v2/nodes/list
1

# url传入参数说明:

nodeIds和nodeDomains参数最少需要传递一个

参数 必选 类型及范围 说明
nodeIds 可选 string 节点ID,多个用逗号分隔
nodeDomains 可选 string 节点主域名,多个用逗号分隔
projection 可选 string 需要筛选获取的字段,多个用逗号分隔

# 返回说明:

返回值字段 字段类型 字段说明
nodeId int 节点ID
nodeName string 节点名称
nodeDomain string 节点域名前缀
nodeThemeId string 节点主题展品ID
pageBuildId string 兼容旧版,nodeThemeId的别名,后期可能取消字段.建议使用nodeThemeId
ownerUserId int 节点所有者ID
ownerUserName string 节点所有者名称
status int 节点状态(1:下线 2:上线 4:冻结) 通过与或运算符计算. 例如 1|4=5,代表冻结+下线
createDate date 创建日期
nodeLogo string 节点图标
nodeTitle string 节点标题
nodeShortDescription string 节点简介
nodeVisibility int 访问权限 1:公开 2:私密 3:暂停

# 返回示例

{
  "ret": 0,
  "errCode": 0,
  "errcode": 0,
  "msg": "success",
  "data": [
    {
      "nodeThemeId": "641a6d07a3366d002f5f49a6",
      "nodeTestThemeId": "e510887cc5e01ead8e8e26366f1340d9",
      "tags": [
        "tag3"
      ],
      "auditStatus": 0,
      "status": 2,
      "nodeVisibility": 1,
      "nodeId": 80000000,
      "nodeName": "节点01",
      "nodeDomain": "node-01",
      "ownerUserId": 50028,
      "ownerUserName": "12345676789",
      "createDate": "2020-10-12T09:16:28.919Z",
      "updateDate": "2023-04-03T03:46:13.762Z",
      "nodeLogo": "",
      "nodeShortDescription": "节点01的简介",
      "nodeTitle": "节点01的标题",
      "pageBuildId": "641a6d07a3366d002f5f49a6"
    }
  ]
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29