Scripting in Flow Designer
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-23-2023 05:19 AM
This code works in Vancouver but not in Utha (Scripting in Flow Designer)
// Get the email body
var emailBody = fd_data.trigger.inbound_email.body_text;
return emailBody;
Is there is an alternate for fd_data.trigger.inbound_email.body_text?
// Get the email body
var emailBody = fd_data.trigger.inbound_email.body_text;
return emailBody;
Is there is an alternate for fd_data.trigger.inbound_email.body_text?
3 REPLIES 3

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-23-2023 05:53 AM
try print the object 'fd_date.trigger.inbound_email ' and see if you can use some other key.
gs.info(JSON.stringify(fd_data.trigger.inbound_email,null,4))
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-23-2023 06:15 AM
what came in emailBody when you checked in logs?
Regards,
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-23-2023 06:28 AM