Dear Sir:
Is there any way to identify if a user is using a single email address on multiple devices? Perhaps there’s a setting that can be configured on the platform to verify this?
Dear Sir:
Is there any way to identify if a user is using a single email address on multiple devices? Perhaps there’s a setting that can be configured on the platform to verify this?
not possible by appsheet. you can suppose a scenario investigating with admin panel on google workspace - devices
Yep. USEREMAIL() gives you the user’s email, CONTEXT("Device") gives you a unique device identifier.
If you are looking for a way to look it up in the AppSheet logged information…I don’t think device information is captured anywhere automatically.
To elaborate on @Steve 's response to capture device info within the App itself…
You would need to use the CONTEXT() function to grab the DEVICE ID and then save it to a table associated with the user email address. When the user accesses the app on another device, you would APPEND / ADD the new DEVICE ID into the table - how you go about and how you report it depends on your need.