peoplehr-api
v0.1.0
Published
[](https://travis-ci.org/dave-nicholas/peoplehr-api)
Downloads
10
Readme
peoplehr-api
A small library for use with the peoplehr api for use with Node.js
Installation
yarn add peoplehr-api or
npm install peoplehr-apiUsage
You can pass in the api key in the constructor.
const PeopleHRAPI = require('peoplehr-api');
const phr = new PeopleHRAPI('api key.....'); //or configure set process.env
phr.query(
'Employee', //The endpointto query
'GetAllEmployeeDetail', //The method to call
{ IncludeLeavers: false } //The payload
)
.then(res => console.log(res));A list of the availabel endpoints can be found at here.
Configuration
You can also use the following environmet variables to set the api key
process.env.PEOPLEHR_API_KEY = 'api key ...';or if you use create-react-app you can create a .env file in your directory and add the following line.
REACT_APP_PEOPLEHR_API_KEY=your_api_key