- 状态码
- 接口书 写说明
- 版本变更说明
- 后端接口
- 业务流程
- 获取流程列表(list结构)POST
- 流程从表数据更新(只支持单条更新)POST
- 流程从表数据添加(支持单条或多条数据)POST
- 流程作废POST
- 流程恢复POST
- 流程抄送POST
- 流程取回POST
- 流程中断POST
- 流程回退POST
- 流程从表数据(添加|更新)POST
- 流程从表数据删除POST
- 超管修改流程主表数据POST
- 获取流程实例各种办理人POST
- 流程中断POST
- 流程回退POST
- 流程取回POST
- 流程抄送POST
- 根据流程实例id获取待办节点信息POST
- 流程 - 取消委托POST
- 流程 - 委托POST
- 流程 - 拒绝委托POST
- 流程 - 接受委托POST
- 流程新建发起(或者初始化存草稿)POST
- 流程定义获取接口POST
- 流程执行实例查询接口POST
- 获取多个应用待办简略listPOST
- 获取流程从表数据列表POST
- 删除某个流程实例POST
- 流程恢复POST
- 刷新同步POST
- 流程提交POST
- 流程作废POST
- 查看单个流程详情POST
- 获取实例列表总数POST
- 获取流程列表POST
- 获取流程数据-从表单条数据详情POST
- 数据流
- 文件存储
- 消息服务
- 用户与角色
- 租户服务
- 通用接口
- 门户
- IOT
- 启聊
- 多语言
- 前端接口
流程从表数据添加(支持单条或多条数据)
POST
/openservice/php/app/openworkflow/insertSlaveData
后端接口/业务流程
请求参数
Query 参数
entId
string
操作企业id
示例值:
apiceshiqiye
userId
string
当前操作人
示例值:
apitest
Body 参数application/json
appId
string
应用ID
instanceId
integer
实例ID
nodeKey
string
节点key
tableId
string
从表id
datas
array [array]
必需
object
可选
masterTableId
string
主表id
masterRecordId
integer
主表记录id
示例
{
"appId": "string",
"instanceId": 0,
"nodeKey": "string",
"tableId": "string",
"datas": [
[
{
"name": "string",
"value": "string"
}
]
],
"masterTableId": "string",
"masterRecordId": 0
}
返回响应
🟢200成功
application/json
Body
status
integer
必需
code
integer
错误码
msg
string
必需
result
boolean
必需
示例
{
"status": 0,
"code": 0,
"msg": "string",
"result": true
}
修改于 2024-12-26 05:48:26