How to get the Authentication calls by application id?

How to get the Authentication calls by application/client? Or is there any API that gives the token issued/authentication calls against the Application?

Hey @Vilas.DharmaSuryawan welcome to the community!

You should be able to query against the Management API /v2/logs endpoint - It depends on what you are after specifically but for example you might query for successful logins (log type s) like so:

GET https://{your_domain}.auth0.com/api/v2/logs?q=client_id:"YOUR_CLIENT_ID" AND type:s&include_totals=true

The following log types may be useful as well:

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.