There was an error while loading. Please reload this page.
// Enable autoload require_once __DIR__ . "/vendor/autoload.php"; // Create the Token object $pcr_token = new PCRecruiter\Token(); $pcr_token->setConfig(__DIR__ . "/pcr.php"); // Get the token $token = $pcr_token->get()['message']->SessionId;
// Get all positions $pcr_positions = new PCRecruiter\Positions($token); $positions = $pcr_positions->get()['message']->Results;
$position_by_id = $pcr_positions->get($job_id)['message']->Results;