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
Namespace
Auth0\SDK\API\ManagementCode
public function getAll($aud) {
return $this->apiClient
->method('get')
->addPath('blacklists')
->addPath('tokens')
->withParam('aud', $aud)
->call();
}