Would like to know how to set the business key which will be showed in Cockpit? The purpose is to ease the searching on the specific record (business key can put more meaningful word) rather than refer to the instance ID.
Thanks alot!
Regards,
FPL
--
You received this message because you are subscribed to the Google Groups "camunda BPM users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to camunda-bpm-us...@googlegroups.com.
To post to this group, send email to camunda-...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/camunda-bpm-users/63d51237-2336-469e-a859-95a08bcce3ea%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Thanks for your reply. May I know how to set it in REST API? As our system using the following command to start the camunda workflow.
http://{0}:{1}/engine-rest/process-definition/{2}/start
Thanks!
Regards,
FPL
Request
POST /process-definition/aProcessDefinitionId/start
Request body:
{"variables":
{"aVariable" : {"value" : "aStringValue", "type": "String"},
"anotherVariable" : {"value" : true, "type": "Boolean"}},
"businessKey" : "myBusinessKey"
}