The official Node.js binding for the Fonolo Call-Back Service.
Before using this library, you must have:
- A Fonolo Account; visit fonolo.com for more details.
- a valid Fonolo Account SID and Auth Token, available from the Fonolo Portal
- Node.js v7 or higher
npm install fonolo
Query the Fonolo API for a list of call-backs between July 1st and Aug 1st, 2017:
var client = require('fonolo')(<account sid>, <auth token>);
client.calls.get(
{
start_date: '2017-07-01',
end_date: '2017-08-01'
}).then(data => {
console.log(JSON.stringify(data, null, 2));
}).catch(err => {
console.log(err);
});
Full API documentation is available from the Fonolo developer site.
- Added support for the realtime and scheduled call-backs view.
- Added support for the timezones endpoint
- Initial release.