JBPM 7.31 reassign notifications

77 Views Asked by At

In JBPM is possible to resend a notifications after a reassign operation?

Example:

This is an example of my process

1

The Task Evolution is configured to send a notification to the potential owners.

If the task is not processed administrator user can reassign the task to a new group.

Here is an example of the notification configuration

2

My goal is that the notifications is sent to the new group.

How can I do?

1

There are 1 best solutions below

2
On

You can create new notification using kie-server REST API:

POST /server/admin/containers/{containerId}/tasks/{taskInstanceId}/notifications

You can define user/group details to which email can be send in the request payload:

{
  "from" : "[email protected]",
  "reply-to" : "[email protected]",
  "users" : [ "john" ],
  "emails" : [ "[email protected]" ],
  "groups" : null,
  "subject" : "reminder",
  "body" : "my test content"
}