
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-24-2025 11:07 PM
Hello all,
I could do my bit, but I am not able to find where I could post the Body of the notification.
Provider > Notification
I had referenced the event I created here and defined the Content on the related list, but not sure where to add the body. Do I need to create a Notification Flow Action?
Regards,
Anish
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-25-2025 03:32 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-24-2025 11:22 PM
you need to give the body in Message field
check these links
Create custom notifications in Next Experience
Create provider notification in ServiceNow when mentioned on Ticket
something like this, I just checked OOTB one
If my response helped please mark it correct and close the thread so that it benefits future readers.
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-25-2025 12:28 AM - edited 06-25-2025 12:31 AM
Thanks @Ankur Bawiskar, good to see you after long time.
I followed the Next Experience option, but it still does not trigger the notification.
Sentiment Triggered Notification (Flow Action)
Input
Input variables:
Script (Step)
(function execute(inputs, outputs) {
var sentiment = inputs.sentiment;
var reasoning = inputs.reasoning;
var gr = new GlideRecord('sn_customerservice_case');
if (!gr.get(inputs.caseSysID)) {
gs.warn("Case record not found");
return;
}
gs.eventQueue(
'case.sentiment.detected', // Custom event name
gr,
sentiment,
reasoning
);
})(inputs, outputs);
NOTE - The event is not getting fired as well, checked the Event logs.
Provider > Notification (Application scope - Global)
Next Experience Content
if you can check and let me know where I did make mistake.
Regards,
Anish
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-25-2025 12:44 AM
Good to see you as well.
not sure if you can trigger that via script
Haven't done that so not much idea.
If my response helped please mark it correct and close the thread so that it benefits future readers.
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-25-2025 12:51 AM
I chose Script in Flow Action, since I was configuring the rest of the flow in Flow designer.
What other alternates should we try. I know of Business rule, but not sure how to pass flow output to business rule.
Regards,
Anish
Trigger the event from Script Step in Flow (it works)!
Done!
The problem was that one of the flow inputs was defined in a scope while the flow was in global scope.