- 用户中心
- 规则链管理
- 运行日志
- 共享节点管理
- 动态组件管理
- 节点组件管理
- 组件市场
- 设置
保存规则链
开发环境
开发环境
POST
/api/v1/rules/{id}
请求参数
Authorization
在 Header 添加参数
Authorization
,其值为在 Bearer 之后拼接 Token示例:
Authorization: Bearer ********************
Path 参数
id
string
流程ID
Body 参数application/json
ruleChain
object (流程基础信息)
规则链基础信息
id
string
ID
name
string
名称
debugMode
boolean
调试模式
root
boolean
根节点
disabled
boolean
停用
configuration
object
配置
additionalInfo
object
扩展信息
metadata
object
节点列表
firstNodeIndex
integer
第一个节点索引
endpoints
array[object (输入端节点配置) {8}]
输入端列表
nodes
array[object (流程节点配置) {6}]
规则链节点列表
connections
array[object (节点连接) {3}]
节点连接列表
示例
{
"ruleChain": {
"id": "string",
"name": "string",
"debugMode": true,
"root": true,
"disabled": true,
"configuration": {
"vars": {},
"secrets": "string"
},
"additionalInfo": {
"description": "string",
"layoutX": "string",
"layoutY": "string",
"createTime": "string",
"updateTime": "string",
"icon": "string",
"background": "string"
}
},
"metadata": {
"firstNodeIndex": 0,
"endpoints": [
{
"id": "string",
"type": "string",
"name": "string",
"debugMode": true,
"configuration": {},
"additionalInfo": {
"description": "string",
"layoutX": 0,
"layoutY": 0
},
"processors": null,
"routers": [
{
"id": "string",
"params": [
"string"
],
"from": {
"path": "string",
"configuration": null,
"processors": [
"string"
]
},
"to": {
"path": "string",
"configuration": null,
"wait": true,
"processors": [
"string"
]
}
}
]
}
],
"nodes": [
{
"id": "string",
"type": "string",
"name": "string",
"debugMode": true,
"configuration": {},
"additionalInfo": {
"description": "string",
"layoutX": 0,
"layoutY": 0,
"icon": "string",
"background": "string"
}
}
],
"connections": [
{
"fromId": "string",
"toId": "string",
"type": "string"
}
]
}
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'http://dev-cn.your-api-server.com/api/v1/rules/' \
--header 'Content-Type: application/json' \
--data-raw ''
返回响应
🟢200成功
application/json
Body
object {0}
示例
{}
修改于 2025-04-01 02:39:55