【发布时间】:2016-07-05 20:01:44
【问题描述】:
我试图弄清楚如何确定使用 Camunda 提供的 REST API 的 BPM 流程调用是否成功,该 API 将从 Node.js 应用程序调用:
http://localhost:8080/engine-rest/process-definition/key/TestBPM/start
{
"links": [
{
"method": "GET",
"href": "http://localhost:8080/engine-rest/process-instance/72cc8ced-42e9-11e6-9c9d-4c72b965fca0",
"rel": "self"
}
],
"id": "72cc8ced-42e9-11e6-9c9d-4c72b965fca0",
"definitionId": "TestBPM:4:128925ef-42e9-11e6-9c9d-4c72b965fca0",
"businessKey": null,
"caseInstanceId": null,
"ended": true,
"suspended": false,
"tenantId": null
}
在那个 JSON 响应中,我收到了进程结束的消息,但我需要知道的是在哪个结束状态结束了进程......我有办法做到这一点吗??
BPM:
【问题讨论】:
-
文档是怎么说的?
标签: java node.js business-process-management camunda