0.0.1 • Published 7 years ago
autopilothq-node v0.0.1
autopilothq-node
A node client for the AutopilotHQ API
For detailed API information reference AutopilotHQ API Documentation
Usage
Require Intercom:
var autopilot = require('autopilot-node');Create a Autopilot Instance:
Using API Key
var autopilot = new Autopilot('apikey', [reqOpts]);Contacts
Add/Update Contact
autopilot.contact().add({ email: 'test@example.com'});autopilot.contact().update({ email: 'test@example.com'});Get Contact
autopilot.contact('test@example.com').get(); // also takes autopilot contact idDelete Contact
autopilot.contact('test@example.com').delete(); // also takes autopilot contact id0.0.1
7 years ago