N/A
How do I get all Device ID and Machine Finger Print of a user?
Please run the below query against the database to get all the DeviceID and Machine Finger Print of a user
select * from ARRFDEVICEINFO where deviceidseqid IN( select deviceidseqid from arrfdevuserasso where username='<USERNAME>' and orgname='<ORGNAME>');
N/A