Resumator Node.js API Client
$ npm install resumator --save
A basic example using resumator
client to save an Applicant
var resumator = require('resumator');
var client = resumator.createClient({
apiKey: process.env.RESUMATOR_API_KEY
});
client.applicants.save({
first_name: 'Julian',
last_name: 'Duque',
email: 'julianduquej@gmail.com'
}, function (err, res, body) {
// process result
});
You can check the official Resumator API in the following url: http://www.resumatorapi.com/v1/
Get activity by id
client.activities.get(id, callback);
Get activities list
client.activities.list([options], callback);
Get applicant by id
client.applicants.get(id, callback);
Get applicants list
client.applicants.list([options], callback);
Save an applicant
client.applicants.save(applicant, callback);
Get category by id
client.categories.get(id, callback);
Get categories list
client.categories.list([options], callback);
Save a category
client.categories.save(applicant, callback);
Get contact by id
client.contacts.get(id, callback);
Get contacts list
client.contacts.list([options], callback);
Not implemented yet
Get job by id
client.jobs.get(id, callback);
Get jobs list
client.jobs.list([options], callback);
Save a job
client.jobs.save(applicant, callback);
Not implemented yet
Save a note
client.notes.save(note, callback);
Get task by id
client.tasks.get(id, callback);
Get tasks list
client.tasks.list([options], callback);
Get user by id
client.users.get(id, callback);
Get users list
client.users.list([options], callback);
Copyright (c) 2014 - Julian Duque, NodeSource
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.