Skip to content

TourConnect/autopilothq-node

Repository files navigation

autopilothq-node

A node client for the AutopilotHQ API

Build Status

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 id

Delete Contact

autopilot.contact('test@example.com').delete(); // also takes autopilot contact id