WebHook获取可驳回节点
业务场景说明
当外部系统接收到每刻推送的表单数据,并且使其在外部系统流程中完成后,需要驳回到之前的某个节点,需要先通过接口获取到可以驳回的节点列表。
请求地址
/api/openapi/process/web-hook/history/tasks/{taskId}
请求方式
POST
请求参数
参数说明
参数名 | 类型 | 是否必须 | 参数说明 |
---|---|---|---|
taskId | String | 是 | 任务id |
参数示例
{
"taskId": "执行任务的id"
}
响应参数
参数说明
参数名 | 类型 | 是否必须 | 参数说明 |
---|---|---|---|
taskId | String | 是 | 任务id |
taskName | String | 是 | 任务名称 |
operators | String | 是 | 操作人 |
参数示例
{
"success": true,
"errorMsg": "",
"data": [
{
"taskId": "xxxxxxxx",
"taskName": "xxxxxxxxx",
"operators": "xxxxxxxxx"
}
]
}