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: '[email protected]'});
autopilot.contact().update({ email: '[email protected]'});

Get Contact

autopilot.contact('[email protected]').get(); // also takes autopilot contact id

Delete Contact

autopilot.contact('[email protected]').delete(); // also takes autopilot contact id

About

A node client for the AutopilotHQ API

Resources

License

Stars

Watchers

Forks

Packages

No packages published