You are here

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

Parameters

string $id:

Return value

mixed

File

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

Class

Jobs

Namespace

Auth0\SDK\API\Management

Code

public function get($id) {
  return $this->apiClient
    ->method('get')
    ->addPath('jobs', $id)
    ->call();
}