Reports
Overview
This page contains the APIs for retrieving the reports available in FusionAuth. Here are the APIs:
Retrieve Daily Active Users Report
This report includes the number of daily active users for a given application or across all applications. You must specify a date range for the report. true
Request
Request Parameters
applicationId
UUIDA specific application to query for. If not provided a “Global” (across all applications) daily active users report will be returned.
end
LongrequiredThe end of the query range. This is an instant but it is truncated to days in the report timezone (which is set in the system settings).
start
LongrequiredThe start of the query range. This is an instant but it is truncated to days in the report timezone (which is set in the system settings).
Response
The response for this API contains the daily active users report.
Response CodesCode | Description |
---|---|
200 | The request was successful. The response will contain a JSON body. |
400 | The request was invalid and/or malformed. The response will contain an Errors JSON Object with the specific errors. This status will also be returned if a paid FusionAuth license is required and is not present. |
401 | You did not supply a valid Authorization header. The header was omitted or your API key was not valid. The response will be empty. See Authentication. |
404 | The object you requested doesn't exist. The response will be empty. |
500 | There was an internal error. A stack trace is provided and logged in the FusionAuth log files. The response will be empty. |
503 | The search index is not available or encountered an exception so the request cannot be completed. The response will contain a JSON body. |
Response Body
dailyActiveUsers
The list of daily active users counts.
dailyActiveUsers[x].interval
IntegerThe interval for this count. The interval values for the daily active users report are the number of days since Epoch UTC shifted to the report timezone.
dailyActiveUsers[x].count
IntegerThe number of daily active users for this count.
total
IntegerThe total (sum) of each count across the query range.
Example Response JSON
{
"total": 30,
"dailyActiveUsers": [
{
"interval": 16739,
"count": 10
},
{
"interval": 16740,
"count": 10
},
{
"interval": 16741,
"count": 10
}
]
}
Retrieve Login Report
This report includes the number of login for a given application or across all applications. You must specify a date range for the report. The report is always calculated in hours. if you want to calculate daily logins, you'll need to roll up the results in the response.
Request
Request Parameters
applicationId
UUIDA specific application to query for. If not provided a “Global” (across all applications) login report will be returned.
end
LongrequiredThe end of the query range. This is an instant but it is truncated to hours in the report timezone (which is set in the system settings).
start
LongrequiredThe start of the query range. This is an instant but it is truncated to hours in the report timezone (which is set in the system settings).
loginId
StringAvailable since 1.4.0When this parameter is provided it will reduce the scope of the report to a single user with the requested email or username specified by this parameter.
This parameter is mutually exclusive with userId
, if both are provided, the loginId
will take precedence.
userId
UUIDAvailable since 1.4.0When this parameter is provided it will reduce the scope of the report to a single user with the requested unique Id.
This parameter is mutually exclusive with loginId
, if both are provided, the loginId
will take precedence.
Response
The response for this API contains the login report.
Response CodesCode | Description |
---|---|
200 | The request was successful. The response will contain a JSON body. |
400 | The request was invalid and/or malformed. The response will contain an Errors JSON Object with the specific errors. This status will also be returned if a paid FusionAuth license is required and is not present. |
401 | You did not supply a valid Authorization header. The header was omitted or your API key was not valid. The response will be empty. See Authentication. |
404 | The object you requested doesn't exist. The response will be empty. |
500 | There was an internal error. A stack trace is provided and logged in the FusionAuth log files. The response will be empty. |
503 | The search index is not available or encountered an exception so the request cannot be completed. The response will contain a JSON body. |
Response Body
hourlyCounts
The list of login counts.
hourlyCounts[x].interval
IntegerThe interval for this count. The interval values for the login report are the number of hours since Epoch UTC shifted to the report timezone.
hourlyCounts[x].count
IntegerThe number of login for this count.
total
IntegerThe total (sum) of each count across the query range.
Example Response JSON
{
"total": 100,
"hourlyCounts": [
{
"interval": 401824,
"count": 60
},
{
"interval": 401825,
"count": 40
}
]
}
Retrieve Monthly Active Users Report
This report includes the number of monthly active users for a given application or across all applications. You must specify a date range for the report. The report is always calculated using months as the interval.
Request
Request Parameters
applicationId
UUIDA specific application to query for. If not provided a “Global” (across all applications) monthly active users report will be returned.
end
LongrequiredThe end of the query range. This is an instant but it is truncated to months in the report timezone (which is set in the system settings).
start
LongrequiredThe start of the query range. This is an instant but it is truncated to months in the report timezone (which is set in the system settings).
Response
The response for this API contains the monthly active users report.
Response CodesCode | Description |
---|---|
200 | The request was successful. The response will contain a JSON body. |
400 | The request was invalid and/or malformed. The response will contain an Errors JSON Object with the specific errors. This status will also be returned if a paid FusionAuth license is required and is not present. |
401 | You did not supply a valid Authorization header. The header was omitted or your API key was not valid. The response will be empty. See Authentication. |
404 | The object you requested doesn't exist. The response will be empty. |
500 | There was an internal error. A stack trace is provided and logged in the FusionAuth log files. The response will be empty. |
503 | The search index is not available or encountered an exception so the request cannot be completed. The response will contain a JSON body. |
Response Body
monthlyActiveUsers
The list of monthly active users counts.
monthlyActiveUsers[x].interval
IntegerThe interval for this count. The interval values for the monthly active users report are the number of months since Epoch UTC shifted to the report timezone.
monthlyActiveUsers[x].count
IntegerThe number of monthly active users for this count.
total
IntegerThe total (sum) of each count across the query range.
Example Response JSON
{
"total": 39,
"monthlyActiveUsers": [
{
"count": 10,
"interval": 543
},
{
"count": 10,
"interval": 544
},
{
"count": 10,
"interval": 545
},
{
"count": 9,
"interval": 546
}
]
}
Retrieve Registration Report
This report includes the number of registrations for a given application or across all applications. You must specify a date range for the report. The report is always calculated in hours. if you want to calculate daily registrations, you'll need to roll up the results in the response.
Request
Request Parameters
applicationId
UUIDA specific application to query for. If not provided a “Global” (across all applications) registrations report will be returned.
end
LongrequiredThe end of the query range. This is an instant but it is truncated to hours in the report timezone (which is set in the system settings).
start
LongrequiredThe start of the query range. This is an instant but it is truncated to hours in the report timezone (which is set in the system settings).
Response
The response for this API contains the registrations report.
Response CodesCode | Description |
---|---|
200 | The request was successful. The response will contain a JSON body. |
400 | The request was invalid and/or malformed. The response will contain an Errors JSON Object with the specific errors. This status will also be returned if a paid FusionAuth license is required and is not present. |
401 | You did not supply a valid Authorization header. The header was omitted or your API key was not valid. The response will be empty. See Authentication. |
404 | The object you requested doesn't exist. The response will be empty. |
500 | There was an internal error. A stack trace is provided and logged in the FusionAuth log files. The response will be empty. |
503 | The search index is not available or encountered an exception so the request cannot be completed. The response will contain a JSON body. |
Response Body
hourlyCounts
The list of registrations counts.
hourlyCounts[x].interval
IntegerThe interval for this count. The interval values for the registrations report are the number of hours since Epoch UTC shifted to the report timezone.
hourlyCounts[x].count
IntegerThe number of registrations for this count.
total
IntegerThe total (sum) of each count across the query range.
Example Response JSON
{
"total": 100,
"hourlyCounts": [
{
"interval": 401824,
"count": 60
},
{
"interval": 401825,
"count": 40
}
]
}
Retrieve Totals Report
The Report Totals API is used to retrieve the number users currently registered and how many login requests have been serviced by FusionAuth globally as well as broken down by each Application.
Request
Response
The response for this API contains the totals report.
Response CodesCode | Description |
---|---|
200 | The request was successful. The response will contain a JSON body. |
400 | The request was invalid and/or malformed. The response will contain an Errors JSON Object with the specific errors. This status will also be returned if a paid FusionAuth license is required and is not present. |
401 | You did not supply a valid Authorization header. The header was omitted or your API key was not valid. The response will be empty. See Authentication. |
404 | The object you requested doesn't exist. The response will be empty. |
500 | There was an internal error. A stack trace is provided and logged in the FusionAuth log files. The response will be empty. |
503 | The search index is not available or encountered an exception so the request cannot be completed. The response will contain a JSON body. |
Response Body
applicationTotals
A map where the key is the Id of the Application and the value is an object that contains the totals for that Application.
applicationTotals[id].logins
IntegerThe total number of logins (all time) for the Application.
applicationTotals[id].registrations
IntegerThe current number of registrations for the Application. This doesn’t include registrations for user’s that have been deleted from FusionAuth.
applicationTotals[id].totalRegistrations
IntegerThe total number of registrations (all time) for the Application.
globalRegistrations
IntegerThe current number of registered users. This value is incremented each time a new user is added to FusionAuth, and this value is decremented when a user is deleted from FusionAuth.
totalGlobalRegistrations
IntegerThe total number of registrations (all time). When a user is removed from FusionAuth this number is not decremented.
Example Response JSON
{
"applicationTotals": {
"00000000-0000-0000-0000-000000000000": {
"logins": 20,
"registrations": 10,
"totalRegistrations": 10
},
"00000000-0000-0000-0000-000000000001": {
"logins": 20,
"registrations": 10,
"totalRegistrations": 10
},
"00000000-0000-0000-0000-000000000002": {
"logins": 20,
"registrations": 10,
"totalRegistrations": 10
},
"00000000-0000-0000-0000-000000000003": {
"logins": 20,
"registrations": 10,
"totalRegistrations": 10
},
"00000000-0000-0000-0000-000000000004": {
"logins": 20,
"registrations": 10,
"totalRegistrations": 10
}
},
"globalRegistrations": 10,
"totalGlobalRegistrations": 10
}