You are here

public function UsersByEmail::get in Auth0 Single Sign On 8.2

File

vendor/auth0/auth0-php/src/API/Management/UsersByEmail.php, line 7

Class

UsersByEmail

Namespace

Auth0\SDK\API\Management

Code

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();
}