Giter VIP home page Giter VIP logo

bullhorn-rest's Introduction

Bullhorn::Rest

Code Climate Code Climate

Ruby wrapper for the Bullhorn REST API. For additional information on the API itself, see the official Bullhorn documentation.

Installation

Add this line to your application's Gemfile:

gem 'bullhorn-rest'

And then execute:

$ bundle

Or install it yourself as:

$ gem install bullhorn-rest

If you haven't accessed the bullhorn API before, it may be nececarry to follow these additional steps:

  1. Visit https://auth.bullhornstaffing.com/oauth/authorize?action=Login&client_id=XXX&response_type=code&username=XXX in a browser, replacing the client_id and username with your credentials.
  2. Type the password into the login form.
  3. Check that you are redirected to the redirect URL and that a code parameter has been appended to the URL.

Usage

require 'bullhorn/rest'

client = Bullhorn::Rest::Client.new(username: '<USERNAME>', password: '<PASSWORD>', client_id: '<CLIENT_ID>', client_secret: '<CLIENT_SECRET>')

# Returns all candidates
client.candidates

# Returns all candidates belonging to the current user
client.user_candidates

# Returns all candidates belonging to the user's department
client.department_candidates

# Get data for a particular candidate
client.candidate(id)

# Geta for multiple candidates
client.candidate([id1, id2])

# Update a candidate
client.update_candidate(id, attributes)

# Create a candidate
client.create_candidate(attributes)

# Delete a candidate
client.delete_candidate(id)

# Query for candidates
client.query_candidates(where: "email = '[email protected]'")

The above api methods generalize to all entities in the system. E.g. for the JobOrder entity simple replace occurences of candidate with job_order in all of the above methods.

Entities

The following entities are exposed via the API:

  • appointment
  • appointment_attendee
  • business_sector
  • candidate
  • candidate_certification
  • candidate_education
  • candidate_reference
  • candidate_work_history
  • category
  • client_contact
  • client_corporation
  • corporate_user
  • corporation_department
  • country
  • custom_action
  • job_order
  • job_submission
  • note
  • note_entity
  • placement
  • placement_change_request
  • placement_commission
  • sendout
  • skill
  • specialty
  • state
  • task
  • tearsheet
  • tearsheet_recipient
  • time_unit

User Entities

Additionally, the following entities have user_<entity> and department_<entity> methods available:

  • candidate
  • client_contact
  • client_corporation
  • job_order
  • note
  • placement

Immutable Entities

The following entities are immutable and do not have any of the update/create/delete methods available:

  • category
  • corporate_user
  • country
  • skill
  • specialty
  • state
  • time_unit

Hashie's

By adding the magic that is: https://github.com/intridea/hashie we can now refer to the JSON responses directly in ruby.

res = client.candidates 

start = res.start
total = res.total

You can go as deeply nested in the response as you like and all the array/collection goodness Ruby supports is yours.

Pagination

Any request that returns multiple items will be paginated to 100 items by default. Any query will return 500 by default. You can override these.

In order to iterate through the entire result set page by page, you can use convenience methods: has_next_page? and next_page like in the following:

res = client.candidates 

while res.has_next_page?
  ... process response ...
  res.next_page
end

Associations

"Has Many" associations can be accessed by passing in the name of the association in the association key of the options hash on the normal entity method. For instance, in order to get all of the candidates associated with a tearsheet:

candidates = client.tearsheet(id, association: 'candidates')

Contributing

  1. Fork it ( http://github.com//bullhorn-rest/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

bullhorn-rest's People

Contributors

dannysmith avatar ghempton avatar mrmattwright avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.