06/26/2023 01:55 AM
Hi
Have a use case to create a notification template where we can capture 'UPDATEUSER ${user?.updateuser}' in this return format: [userName] [firstName] [lastName].
Need idea on how to achieve that? It has been noticed that '${user?.updateuser}' only returns the username
Solved! Go to Solution.
06/26/2023 02:17 AM
Hi @ant ,
Please try below
${user?.updateuser?.username} ${user?.updateuser?.firstname} ${user?.updateuser?.lastname}