- BASE
- 业务对象
- DEMO
- 系统配置
- 流程模块
- 流程定义
- 流程实例
- 流程任务
- 流程代理
- 任务抄送
- 业务矩阵
- 流程统计
- 我的相 关
- AUTH模块
- CMS模块
- ORG模块
- 数据权限
- 流程服务接口
- 应用市场模块
- 应用广场
- 钉钉全量同步用户信息GET
- 钉钉同步单人用户信息GET
- 测试GET
- testPOST
- 测试租户保存GET
- 222POST
- 測試回調GET
计算节点人员信息
开发中
POST
/ab-bpm/bpm/task/handleNodeFreeSelectUser
根据配置,处理节点可自由选择下一个节点的执行人的逻辑
用于节点上配置了明确候选人,自由分支选择,自由候选人选择时用
请求参数
Header 参数
Authorization
string
可选
默认值:
Bearer{{Auth_Token}}
Body 参数application/json
defId
string
必需
actionName
string
必需
presetDestination
string
必需
opinion
string
必需
extendConf
object
必需
param
object
必需
data
object
表单数据
taskId
string
必需
示例
{
"defId": "string",
"actionName": "string",
"presetDestination": "string",
"opinion": "string",
"extendConf": {
"param": {
"id": "string",
"backR": "string",
"type": "string"
}
},
"data": {},
"taskId": "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 '/ab-bpm/bpm/task/handleNodeFreeSelectUser' \
--header 'Authorization: Bearer{{Auth_Token}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"defId": "string",
"actionName": "string",
"presetDestination": "string",
"opinion": "string",
"extendConf": {
"param": {
"id": "string",
"backR": "string",
"type": "string"
}
},
"data": {},
"taskId": "string"
}'
返回响应
🟢200成功
application/json
Body
isOk
boolean
必需
code
string
必需
message
string
必需
data
object
必需
nodeUserType
string
自由选择节点人员类型: no,groupUser,nodeUser,allUser
ensureCandidate
object
明确候选人插件信息
nodeInfoList
array [object {6}]
必需
custGatewayRouter
boolean
节点是否支持自由分支选择
msg
string
必需
示例
{
"isOk": true,
"code": "string",
"message": "string",
"data": {
"nodeUserType": "string",
"ensureCandidate": {
"enable": true,
"emptyNodeSettingUser": true,
"skiptBeforMyTask": true,
"noSkiptNodes": [
"string"
],
"canSetUserNodes": true,
"userCanEmpty": true,
"timelyCalGateWay": true
},
"nodeInfoList": [
{
"nodeKey": "string",
"nodeName": "string",
"nodeType": "string",
"identitiesMsg": "string",
"outGoingNodes": [
{
"nodeKey": "string",
"nodeName": "string"
}
],
"emptyUserStrategy": "string"
}
],
"custGatewayRouter": true
},
"msg": "string"
}
修改于 2024-11-18 09:40:42