Is there an API that we can run to find out how many registered devices so far in AuthHub? Is this API /{tenantName}/auth/v1/MeTrustedDevices the correct to get the all the IA ( Intelligent Authentication) Risk devices?
AuthHub 2.x and 3.x
There are no available APIs as of today to return the registered devices list for IA Risk and we have to query the database.
The below queries can be used to get the list of registered devices:
- select * from IA_DEVICES;
- select count(*) from IA_DEVICES;
The API /{tenantName}/auth/v1/MeTrustedDevices is related to the AuthHub only deployment where customers may not use IA risk and wants to use AuthHub exclusively.