@mentions working in flow designer
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
yesterday
Hello,
Is it possible to hard code an automated string in a flow designer step to activate the @mentions functionality (sending the Activity Stream @Mentions notification email)?
A step I currently have is something like
Action - Update Record
Table - Task
Field - Work Notes
var requestedBy = fd_data.trigger.current.requested_by.name;
var notes = "@" + requestedBy + " test123";
return notes;I've tried placing requestedBy in [] brackets and tried requestedBy.user_name, but to no avail. Any help would be appreciated.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
yesterday
Hi @TerryC03 ,
Therefore, the relevant fields must be populated on this table in order to trigger the notification.
If this response was helpful, please consider marking it as Correct and Helpful. You may mark more than one reply as an accepted solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
yesterday
Ok. My table is different. I'll try that. Thank you.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
yesterday
If your goal is to notify someone, why not just use the 'send email' or 'send notification' action from the flow? Since you have this in the flow, it means you always want to do this. The @ mention functionality is to notify someone from the ticket itself, while working on it. Automation can use normal notifications.
What is your use case? Why are you trying to get something so complex while the simple solution is there?
Please mark any helpful or correct solutions as such. That helps others find their solutions.
Mark
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
33m ago
Hello @TerryC03 ,
did that worked ?
If not !! try using @[sys_id] instead of @DisplayName. That’s the format Flow Designer needs to trigger the Activity Stream @mention notifications.
var requestedBySysId = fd_data.trigger.current.requested_by.sys_id;
var notes = "@[" + requestedBySysId + "] test123";
return notes;
If my response helped mark as helpful and accept the solution.
