bullhorn-api
TypeScript icon, indicating that this package has built-in type declarations

1.0.1 • Public • Published

Bullhorn API

Install

npm install --save bullhorn-api

Usage

const bullhorn = new Bullhorn({
  client_id: '',
  client_secret: '',
  username: '',
  password: '',
});
 
bullhorn.login()
  .then(data => {
    const query = encodeURIComponent('dateAvailable:[20170101 TO 20190101]');
    bullhorn.fetch(`search/Candidate?query=${query}&fields=name`)
      .then(req => {
        return req.json();
      }).then((req) => {
        console.log(req)
      })
  });

/bullhorn-api/

    Package Sidebar

    Install

    npm i bullhorn-api

    Weekly Downloads

    3

    Version

    1.0.1

    License

    ISC

    Unpacked Size

    7.87 kB

    Total Files

    9

    Last publish

    Collaborators

    • codler