UsersByEmail.php in Auth0 Single Sign On 8.2
Namespace
Auth0\SDK\API\ManagementFile
vendor/auth0/auth0-php/src/API/Management/UsersByEmail.phpView source
<?php
namespace Auth0\SDK\API\Management;
class UsersByEmail extends GenericResource {
public function get($params = []) {
$client = $this->apiClient
->method('get')
->addPath('users-by-email');
foreach ($params as $param => $value) {
$client
->withParam($param, $value);
}
return $client
->call();
}
}
Classes
Name | Description |
---|---|
UsersByEmail |