We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 46e4e32 + 0cc86d4 commit f158650Copy full SHA for f158650
1 file changed
src/FusionAuth/FusionAuthClient.php
@@ -4291,6 +4291,22 @@ public function retrieveTotalReport()
4291
->go();
4292
}
4293
4294
+ /**
4295
+ * Retrieves the totals report. This allows excluding applicationTotals from the report. An empty list will include the applicationTotals.
4296
+ *
4297
+ * @param array $excludes List of fields to exclude in the response. Currently only allows applicationTotals.
4298
4299
+ * @return ClientResponse The ClientResponse.
4300
+ * @throws \Exception
4301
+ */
4302
+ public function retrieveTotalReportWithExcludes($excludes)
4303
+ {
4304
+ return $this->start()->uri("/api/report/totals")
4305
+ ->urlParameter("excludes", $excludes)
4306
+ ->get()
4307
+ ->go();
4308
+ }
4309
+
4310
/**
4311
* Retrieve two-factor recovery codes for a user.
4312
*
0 commit comments