Users who logged in via Mobile
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Monday
I've been using User Experience Analytics but can't get down to seeing exactly which users have logged in. Is there a way I can see this? I'm an admin user.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Monday
Hi tworzala,
User Experience Analytics is excellent for trends and aggregate data, but it often anonymizes specific user data by default or makes it hard to extract a simple list of names.
As an Admin, the most reliable way to see "Who logged in via Mobile" is to query the system logs or the OAuth tokens, as the Mobile App uses OAuth for authentication.
Here are two ways to get this data:
Method 1: Transaction Logs (Best for "Who is using it right now/today") You can filter the transaction logs based on the User Agent string, which identifies the device.
Type syslog_transaction.list in the filter navigator.
Apply the following filter:
Created on Today (or your desired date range).
AND User agent contains ServiceNow (The mobile app usually identifies itself as 'ServiceNow/<version>').
OR User agent contains Android or iPhone.
AND URL starts with /api/now/v1/table (or similar API calls often used by mobile).
Group by Created by.
Method 2: OAuth Tokens (Best for "Who has the app authorized") Since the Mobile App requests an OAuth token to stay logged in, checking active tokens is a quick way to see who is set up.
Type oauth_credential.list in the filter navigator.
Filter by:
Peer contains Mobile (or look for "ServiceNow Agent", "Now Mobile").
Expires > [Current Time] (to see only active sessions).
Look at the User column.
Note: If you really want this data inside User Experience Analytics, you would need to check if "User Tracking" is enabled in the properties, but for simple auditing, the tables above are faster.
Hope this helps!
If this response solves your issue, please mark it as Accepted Solution.
This helps the community grow and assists others in finding valid answers faster.
Best regards,
Brandão.
