lowcode/rule/chain/infolowcodeRuleChainInfo
请求参数
默认值:{{Ithings-Project-Id}}
用户正在使用的设备ID(小程序,ios,安卓的设备ID)
示例代码
curl --location --request POST '/api/v1/lowcode/rule/chain/info/read' \
--header 'Ithings-Project-Id: {{Ithings-Project-Id}}' \
--header 'Ithings-Token: {{iThings-token}}' \
--header 'app-code: {{appCode}}' \
--header 'device-id;' \
--header 'Content-Type: application/json' \
--data-raw ''
返回响应
data
object (RuleChainInfo)
可选表示节点是否处于调试模式。如果为true,则在节点处理消息时会触发调试回调函数,此设置会覆盖节点的 DebugMode
配置
表示此规则链是根规则链还是子规则链(仅作为标记使用,不应用于实际逻辑)
detail
object (RuleChainDetail)
可选createdTime
integer <int64>
可选updatedTime
integer <int64>
可选{
"code": "200",
"msg": "string",
"data": {
"id": "string",
"groupID": "string",
"name": "string",
"debugMode": 0,
"root": 0,
"disabled": 0,
"configuration": {},
"additionalInfo": {},
"detail": {
"id": "string",
"firstNodeIndex": 0,
"endpoints": {},
"nodes": {},
"connections": {},
"createdTime": 0,
"updatedTime": 0
},
"desc": "string",
"createdTime": 0,
"updatedTime": 0
}
}
修改于 2025-03-24 08:11:41