Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions src/main/java/io/fusionauth/client/FusionAuthClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -4076,6 +4076,20 @@ public ClientResponse<TotalsReportResponse, Void> retrieveTotalReport() {
.go();
}

/**
* Retrieves the totals report. This allows excluding applicationTotals from the report. An empty list will include the applicationTotals.
*
* @param excludes List of fields to exclude in the response. Currently only allows applicationTotals.
* @return The ClientResponse object.
*/
public ClientResponse<TotalsReportResponse, Void> retrieveTotalReportWithExcludes(List<String> excludes) {
return start(TotalsReportResponse.class, Void.TYPE)
.uri("/api/report/totals")
.urlParameter("excludes", excludes)
.get()
.go();
}

/**
* Retrieve two-factor recovery codes for a user.
*
Expand Down