You are here

public function Blacklists::getAll in Auth0 Single Sign On 8.2

Parameters

string $aud:

Return value

mixed

File

vendor/auth0/auth0-php/src/API/Management/Blacklists.php, line 12

Class

Blacklists

Namespace

Auth0\SDK\API\Management

Code

public function getAll($aud) {
  return $this->apiClient
    ->method('get')
    ->addPath('blacklists')
    ->addPath('tokens')
    ->withParam('aud', $aud)
    ->call();
}