-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Coder edited this page Oct 29, 2017
·
4 revisions
// 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;