Hello,
I wanted to ask if there is a way to extract the processInstanceId inside a camunda embedded form.
Hi @Serjey_Nisey,
not directly. But you can use an input mapping like ${task.getProcessInstanceId()}
to access the local variable with the process instance ID: Process Variables | docs.camunda.org
And Expression Language | docs.camunda.org
Hope this helps, Ingo