Notification.send(instanceId,activityName,argumentSetName,parameters)

Sends a notification to an instance of any process. For example: // The following is the complete option to notify an instance by its ID. // "argumentSetName" is necessary if the Message Wait event has multiple Argument sets theotherargs["arg3"]=var3 theotherargs["arg4"]=var4 send Notification using instanceId = myInstanceId, // this id is normally obtained from a database where it has been previously stored activityName = "WaitbyInstanceID", argumentSetName = "WaitbyInstanceIDIn", parameters = theotherargs

Arguments:

Name Type Description Mode
instanceId String instance id of the target instance. For external notifications the instanceId must contain the organization at the end following a '@' in
activityName String name of the activity to receive the notification. in
argumentSetName String name of the target arguments set. in
parameters Map(Any, Any) array of pairs (name, value) of the parameters of the notification. in