Passing messages with parameters

Dear all,

here the case:

The question: is it possible, using only the modeler, to pass one or more parameters together with the message? Or this can be done only by using message API?

Best regards,

Davide

Message are sent during the runtime of the process - at that point you can send a payload of data along with the message. This isn’t something that you can configure from the modeler.

You can do it with a expression:

just add the setVariable method into the expression:
.setVariable(‘myVarName’, ‘myVarValue’)

+1 to get: https://app.camunda.com/jira/browse/CAM-7505 added :slight_smile:

3 Likes