2017 © Pedro Peláez
 

library jobvite

A PHP library for interacting with Jobvite's API

image

jeremylivingston/jobvite

A PHP library for interacting with Jobvite's API

  • Tuesday, April 12, 2016
  • by jeremylivingston
  • Repository
  • 1 Watchers
  • 1 Stars
  • 37 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

Jobvite

Build Status, (*1)

PHP library for interacting with Jobvite's job feed API, (*2)

Installation

The suggested installation method is via composer:, (*3)

php composer.phar require jeremylivingston/jobvite

After installing the Jobvite library, simply create a new instance of the client and call the getJobFeed method:, (*4)

<?php

use Livingstn\Jobvite\Client;

$client = new Client('companyId', 'apiKey', 'secretKey');
$jobFeed = $client->getJobFeed();

A PHP stdClass will be returned containing all of the fields in the API response. View the Jobvite documentation for a full example response: http://careers.jobvite.com/careersites/JobviteWebServices.pdf, (*5)

Optional filters can be provided to the getJobFeed method as follows:, (*6)

<?php

use Livingstn\Jobvite\Client;

$client = new Client('companyId', 'apiKey', 'secretKey');
$jobFeed = $client->getJobFeed(['type' => 'Full-time', location' => 'Detroit, MI, USA']);

At the time of writing, any of the following filters can be used:, (*7)

  • type - Job type, configured in Admin
  • availableTo - Publishing settings for your jobs
  • category - The categories used on your career site, configured in Admin
  • location - City, state, Country
  • region - Region, configured in Admin
  • start - Denotes the starting index. (Default: 1)
  • count - Denotes the number of jobs from the starting index (Default: 100)

The Versions

12/04 2016

dev-master

9999999-dev http://www.github.com/jeremylivingston/jobvite

A PHP library for interacting with Jobvite's API

  Sources   Download

MIT

The Requires

 

The Development Requires

php jobvite

12/04 2016

v1.0.0

1.0.0.0 http://www.github.com/jeremylivingston/jobvite

A PHP library for interacting with Jobvite's API

  Sources   Download

MIT

The Requires

 

The Development Requires

php jobvite