I want to send a user message. for example “You have a new task .”
but I don’t know when to send the message.
for example:
Perform 1,send message to 2,3,4 user.
if 2 exception . don’t send .2,3,4 all successful ,send message.
what can I do ?
I want to send a user message. for example “You have a new task .”
but I don’t know when to send the message.
for example:
Perform 1,send message to 2,3,4 user.
if 2 exception . don’t send .2,3,4 all successful ,send message.
what can I do ?
Hi,
I believe the solution would be to send the notification when the task is created. You can do this by configuring task listener on “create” event for each of the user tasks.
Regards,
Srihari.
Hello,
Thanks @hari_kiran
If one of the tasks fails to create.other successful. The message has been sent.
@Luka.xiaofeng , if you follow the above approach, notifications will only be sent when the task creation is successful.
Hi,
Thanks @hari_kiran
for example , above image
perform 1 and create three tasks . Error may occur
Hi,
You wont create tasks, they get created automatically when the flow/token reaches that user task. So as per your usecase, when task 1 is created, a notification will be sent to assignee of user task1. Similarly, when Task2 and Task3 gets created, notifications will be sent accordingly to the respective users/groups.
Regards,
Srihari.
Hi @hari_kiran
Thank you for your reply.