Report APIs

Overview

This page contains the APIs for retrieving the reports available in FusionAuth. Here are the APIs:

Generate Daily Active Users Report

This report retrieves 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

Generates the daily active users report

URI

GET/api/report/daily-active-user?start={start}&end={end}&applicationId={applicationId}

Request Parameters

applicationId[UUID]optional

A specific application to query for. If not provided a “Global” (across all applications) daily active users report will be returned.

end[Long]required

The 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[Long]required

The 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 generated daily active users report.

CodeDescription
200The 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.
503The 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[Integer]

The 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[Integer]

The number of daily active users for this count.

total[Integer]

The 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
    }
  ]
}

Generate Login Report

This report retrieves the number of logins for a given application or across all applications. You must specify a date range for the report. The report is always generated in hours. if you want to calculate daily logins, you'll need to roll up the results in the response.

Request

Generates the logins report

URI

GET/api/report/login?start={start}&end={end}&applicationId={applicationId}

Generates the logins report for an individual user by username or email address

URI

GET/api/report/login?start={start}&end={end}&applicationId={applicationId}&loginId={loginId}

Generates the logins report for an individual user by unique Id

URI

GET/api/report/login?start={start}&end={end}&applicationId={applicationId}&userId={userId}

Request Parameters

applicationId[UUID]optional

A specific application to query for. If not provided a “Global” (across all applications) logins report will be returned.

end[Long]required

The 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[Long]required

The 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[String]optionalavailable since 1.4.0

When 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[UUID]optionalavailable since 1.4.0

When 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 generated logins report.

CodeDescription
200The 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.
503The 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 logins counts.

hourlyCounts[x].interval[Integer]

The interval for this count. The interval values for the logins report are the number of hours since Epoch UTC shifted to the report timezone.

hourlyCounts[x].count[Integer]

The number of logins for this count.

total[Integer]

The total (sum) of each count across the query range.

Example Response JSON

{
  "total": 100,
  "hourlyCounts": [
    {
      "interval": 401824,
      "count": 60
    },
    {
      "interval": 401825,
      "count": 40
    }
  ]
}

Generate Monthly Active Users Report

This report retrieves 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 generated using months as the interval.

Request

Generates the monthly active users report

URI

GET/api/report/monthly-active-user?start={start}&end={end}&applicationId={applicationId}

Request Parameters

applicationId[UUID]optional

A specific application to query for. If not provided a “Global” (across all applications) monthly active users report will be returned.

end[Long]required

The 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[Long]required

The 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 generated monthly active users report.

CodeDescription
200The 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.
503The 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[Integer]

The 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[Integer]

The number of monthly active users for this count.

total[Integer]

The 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
    }
  ]
}

Generate Registration Report

This report retrieves 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 generated in hours. if you want to calculate daily registrations, you'll need to roll up the results in the response.

Request

Generates the registrations report

URI

GET/api/report/registration?start={start}&end={end}&applicationId={applicationId}

Request Parameters

applicationId[UUID]optional

A specific application to query for. If not provided a “Global” (across all applications) registrations report will be returned.

end[Long]required

The 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[Long]required

The 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 generated registrations report.

CodeDescription
200The 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.
503The 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[Integer]

The 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[Integer]

The number of registrations for this count.

total[Integer]

The total (sum) of each count across the query range.

Example Response JSON

{
  "total": 100,
  "hourlyCounts": [
    {
      "interval": 401824,
      "count": 60
    },
    {
      "interval": 401825,
      "count": 40
    }
  ]
}

Generate 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

Generates the Totals Report

URI

GET/api/report/totals

Response

The response for this API contains the generated totals report.

CodeDescription
200The 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.
503The 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[Integer]

The total number of logins (all time) for the Application.

applicationTotals[id].registrations[Integer]

The current number of registrations for the Application. This doesn’t include registrations for user’s that have been deleted from FusionAuth.

applicationTotals[id].totalRegistrations[Integer]

The total number of registrations (all time) for the Application.

globalRegistrations[Integer]

The 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[Integer]

The 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
}