What is the difference between interactive and non interactive sessions in servicenow
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-14-2020 10:42 PM
In flow designer in the trigger point in advanced options we have run for interactive sessions and non interactive session.
Can anyone explain me ?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-21-2020 10:21 PM
Hi Priya
I would like to add my views on this Thread along with Namrata and Vishakha.
A server script may get executed depending upon the database operation or some event. At times, it might be required to determine whether the script being executed is for an interactive user session. An interactive user session means that the user manually logged in using the sign-in screen. On the other hand, if it was a REST API or SOAP call that triggered the server-side script, the session is not considered to be interactive.
gs.isInteractive(); //returns true if the session is interactive
During Non-interactive authentication, the user does not input log on data, instead, previously established credentials are used. Non-interactive authentication is performed when an application uses the Security Support Provider Interface (SSPI) and a security package to establish a secure network connection.
Please Mark Correct and Helpful
Thanks and Regards
Gaurav Shirsat
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-10-2021 07:59 AM
Nicely explained!!