We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b76d42b + e63ba65 commit 999b839Copy full SHA for 999b839
1 file changed
lib/fusionauth/fusionauth_client.rb
@@ -3383,6 +3383,18 @@ def retrieve_total_report
3383
.go
3384
end
3385
3386
+ #
3387
+ # Retrieves the totals report. This allows excluding applicationTotals from the report. An empty list will include the applicationTotals.
3388
3389
+ # @param excludes [Array] List of fields to exclude in the response. Currently only allows applicationTotals.
3390
+ # @return [FusionAuth::ClientResponse] The ClientResponse object.
3391
+ def retrieve_total_report_with_excludes(excludes)
3392
+ start.uri('/api/report/totals')
3393
+ .url_parameter('excludes', excludes)
3394
+ .get
3395
+ .go
3396
+ end
3397
+
3398
#
3399
# Retrieve two-factor recovery codes for a user.
3400
0 commit comments