We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 69c4db5 + 00d329c commit 42ba6b5Copy full SHA for 42ba6b5
1 file changed
src/main/python/fusionauth/fusionauth_client.py
@@ -3435,6 +3435,18 @@ def retrieve_total_report(self):
3435
.get() \
3436
.go()
3437
3438
+ def retrieve_total_report_with_excludes(self, excludes):
3439
+ """
3440
+ Retrieves the totals report. This allows excluding applicationTotals from the report. An empty list will include the applicationTotals.
3441
+
3442
+ Attributes:
3443
+ excludes: List of fields to exclude in the response. Currently only allows applicationTotals.
3444
3445
+ return self.start().uri('/api/report/totals') \
3446
+ .url_parameter('excludes', self.convert_true_false(excludes)) \
3447
+ .get() \
3448
+ .go()
3449
3450
def retrieve_two_factor_recovery_codes(self, user_id):
3451
"""
3452
Retrieve two-factor recovery codes for a user.
0 commit comments