Skip to content

Barren-Hill-Fire-Co/active911

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Active911 for Node.js

Build Status npm version

by Barren Hill Volunteer Fire Co

Original Author: Ben Burwell

Installation

Installation is simple: npm install --save @barrenhill/active911.

Basic Usage

var Active911 = require('active911');
var client = new Active911.RefreshClient('YOUR REFRESH TOKEN');

client.getAgency().then(function(agency) {
  console.log(agency.name);
}).catch(function(err) {
  console.log('Problem getting Agency details:', err);
});

API Methods

The following public API methods are available:

  • getAgency()
  • getDevice(device_id)
  • getAlerts({ alert_days: 1, alert_minutes: 30 }), where the object parameter is optional. You should not use both keys; if alert_minutes is provided, it will override alert_days as documented on the wiki.
  • getDeviceAlerts(device_id)
  • getAlert(alert_id)
  • getLocations()
  • getLocation(location_id)
  • getResource(resource_id)

Each method returns a promise for a result, which will resolve as either an object or an array, depending on the cardinality (e.g. getAlerts resolves as an array, while getAlert resolves as an object).

For details on the format of the result, please see the Active911 API wiki.

Contributing

Contributions are encouraged. For a list of open issues, see https://github.com/Barren-Hill-Fire-Co/active911/issues.

More Information

More information about the API is available on the Active911 wiki.

About

Unofficial npm package for accessing the Active911 API. Active911 enables 🚒 and 🚑 agencies to quickly access real-time incident information.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%