- 状态码
- 接口书 写说明
- 版本变更说明
- 后端接口
- 业务流程
- 流程从表数据(添加|更新)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/getCountList
/openApi/out/app/openworkflow/getCountList
后端接口/业务流程
请求参数
Body 参数application/json
appId
string
应用id
condition
object
必需
groups
array [object {2}]
必需
type
string
必需
loginUserId
string
指定用户id
entId
string
指定企业id
示例
{
"entId": "kaahuanjing",
"condition": {
"groups": [
{
"type": "OR",
"conditions": [
{
"symbol": "unequal",
"type": "string",
"field": "gongzuobiaoti",
"value": "测试代办列表",
"table": "gongzuoxietong"
}
]
}
],
"type": "OR"
},
"appId": "GongZuoXieTong",
"loginUserId": "ApiTest"
}
示例代码
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/getCountList' \
--header 'Content-Type: application/json' \
--data-raw '{
"entId": "kaahuanjing",
"condition": {
"groups": [
{
"type": "OR",
"conditions": [
{
"symbol": "unequal",
"type": "string",
"field": "gongzuobiaoti",
"value": "测试代办列表",
"table": "gongzuoxietong"
}
]
}
],
"type": "OR"
},
"appId": "GongZuoXieTong",
"loginUserId": "ApiTest"
}'
返回响应
🟢200成功
application/json
Body
status
integer
必需
code
integer
必需
msg
string
必需
result
integer
必需
guid
string
必需
示例
{
"status": 200,
"code": 200,
"msg": "",
"result": 521,
"guid": "95ee5923423e204f"
}
修改于 2024-10-11 08:40:58