You are here

public function UserBlocks::unblockByIdentifier in Auth0 Single Sign On 8.2

Parameters

string $identifier:

Return value

mixed

File

vendor/auth0/auth0-php/src/API/Management/UserBlocks.php, line 49

Class

UserBlocks

Namespace

Auth0\SDK\API\Management

Code

public function unblockByIdentifier($identifier) {
  return $this->apiClient
    ->method('delete')
    ->addPath('user-blocks')
    ->withParam('identifier', $identifier)
    ->call();
}