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
16 changes: 16 additions & 0 deletions src/FusionAuth/FusionAuthClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -4291,6 +4291,22 @@ public function retrieveTotalReport()
->go();
}

/**
* Retrieves the totals report. This allows excluding applicationTotals from the report. An empty list will include the applicationTotals.
*
* @param array $excludes List of fields to exclude in the response. Currently only allows applicationTotals.
*
* @return ClientResponse The ClientResponse.
* @throws \Exception
*/
public function retrieveTotalReportWithExcludes($excludes)
{
return $this->start()->uri("/api/report/totals")
->urlParameter("excludes", $excludes)
->get()
->go();
}

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