- 状态码
- 接口书 写说明
- 版本变更说明
- 后端接口
- 业务流程
- 流程从表数据(添加|更新)POST
- 流程从表数据删除POST
- 获取应用扩展配置GET
- 模板打印导出(DF)POST
- 流程作废POST
- 获取流程列表(list结构)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
/openApi/out/app/openworkflow/getList
/openApi/out/app/openworkflow/getList
后端接口/业务流程
请求参数
Body 参数application/json
appId
string
应用id
condition
array[string]
条件组
tableId
string
表id
searchFields
array[string]
查询字段
pageNum
string
第几页
pageSize
string
每页数量
order
array[string]
排序
loginUserId
string
指定用户id
entId
string
指定企业id
示例
{
"entId": "ceshiQiye",
"pageSize": 10,
"pageNum": 1,
"condition": {
"groups": [
{
"type": "AND",
"conditions": [
{
"symbol": "unequal",
"type": "string",
"field": "gongzuobiaoti",
"value": "测试代办列表",
"table": "gongzuoxietong"
}
]
}
],
"type": "AND"
},
"appId": "GongZuoXieTong",
"tableId": "gongzuoxietong",
"searchFields": {
"all": "all",
"gongzuobiaoti": "gongzuobiaoti"
},
"loginUserId": "WMS",
"order": [
{
"type": "asc",
"field": "gongzuobiaoti"
}
]
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST '/openApi/out/app/openworkflow/getList' \
--header 'Content-Type: application/json' \
--data-raw '{
"entId": "ceshiQiye",
"pageSize": 10,
"pageNum": 1,
"condition": {
"groups": [
{
"type": "AND",
"conditions": [
{
"symbol": "unequal",
"type": "string",
"field": "gongzuobiaoti",
"value": "测试代办列表",
"table": "gongzuoxietong"
}
]
}
],
"type": "AND"
},
"appId": "GongZuoXieTong",
"tableId": "gongzuoxietong",
"searchFields": {
"all": "all",
"gongzuobiaoti": "gongzuobiaoti"
},
"loginUserId": "WMS",
"order": [
{
"type": "asc",
"field": "gongzuobiaoti"
}
]
}'
返回响应
🟢200成功
application/json
Body
msg
string
必需
result
object
必需
5e002a666c5b8a78496a2c09
object
必需
code
integer
必需
success
boolean
必需
guid
string
必需
uuid
string
必需
status
integer
必需
示例
{
"msg": "",
"result": {
"5e002a666c5b8a78496a2c09": {
"current_nodes": [
"WorkNode_4"
],
"instance_id": 10090,
"update_at": "2018-05-10 16:48:32",
"created_at": "2018-05-10 16:47:43",
"version_id": 1,
"created_by": "ApiTest",
"app_id": 10090,
"definition_title": "工作协同",
"status": "start"
}
},
"code": 8010001,
"success": true,
"guid": "d86e60663e6e2290",
"uuid": "d86e60663e6e2290",
"status": 200
}
修改于 2024-04-25 03:16:14