You are here

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

Parameters

string $user_id:

Return value

mixed

File

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

Class

UserBlocks

Namespace

Auth0\SDK\API\Management

Code

public function get($user_id) {
  return $this->apiClient
    ->method('get')
    ->addPath('user-blocks', $user_id)
    ->call();
}