Hi,
I’m using Camunda Run 7.18 and the API REST.
After searching for many days, I still can’t find the way to send the BusinessKey with a Signal Start Event and a POST request.
Below the extract of my bpmn file based on documentation at Signal Events | docs.camunda.org.
Whatever I’ve tried, the process start but the businessKey is not set. I can only see the variable.
<bpmn:startEvent id="StartEvent_1">
<bpmn:outgoing>Flow_0dqym3f</bpmn:outgoing>
<bpmn:signalEventDefinition id="SignalEventDefinition_0zgilgu" signalRef="Signal_2kqubni">
<bpmn:extensionElements>
<camunda:in businessKey="${execution.processBusinessKey}" /> (or =${variableName} or ="555")
</bpmn:extensionElements>
</bpmn:signalEventDefinition>
</bpmn:startEvent>
</bpmn:process>
and my post to {{baseUrl}}/signal
{
"name": "SIGNAL_NEW",
"businessKey":"4",
"variables": {
"processBusinessKey": {
"value":"4",
"type":"string"
}
}
}
Someone has been successful?