public function Stats::getDailyStats in Auth0 Single Sign On 8.2
Parameters
string $from:
string $to:
Return value
mixed
File
- vendor/
auth0/ auth0-php/ src/ API/ Management/ Stats.php, line 25
Class
Namespace
Auth0\SDK\API\ManagementCode
public function getDailyStats($from, $to) {
return $this->apiClient
->method('get')
->addPath('stats')
->addPath('daily')
->withParam('from', $from)
->withParam('to', $to)
->call();
}