You are here

UsersByEmail.php in Auth0 Single Sign On 8.2

File

vendor/auth0/auth0-php/src/API/Management/UsersByEmail.php
View 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

Namesort descending Description
UsersByEmail