We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6e6fed3 + f82717f commit 00d329cCopy full SHA for 00d329c
1 file changed
src/main/python/fusionauth/fusionauth_client.py
@@ -3304,6 +3304,18 @@ def retrieve_total_report(self):
3304
.get() \
3305
.go()
3306
3307
+ def retrieve_total_report_with_excludes(self, excludes):
3308
+ """
3309
+ Retrieves the totals report. This allows excluding applicationTotals from the report. An empty list will include the applicationTotals.
3310
+
3311
+ Attributes:
3312
+ excludes: List of fields to exclude in the response. Currently only allows applicationTotals.
3313
3314
+ return self.start().uri('/api/report/totals') \
3315
+ .url_parameter('excludes', self.convert_true_false(excludes)) \
3316
+ .get() \
3317
+ .go()
3318
3319
def retrieve_two_factor_recovery_codes(self, user_id):
3320
"""
3321
Retrieve two-factor recovery codes for a user.
0 commit comments