npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

autopilot-api

v2.2.0

Published

A third-party Node.js wrapper for Autopilot's REST API.

Downloads

578

Readme

autopilot-api

A third-party Node.js wrapper for Autopilot's REST API.

Example:

let Autopilot = require('autopilot-api');
let autopilot = new Autopilot('c5359558cf764d17bc49f13a87e8a56e');

let contact = { FirstName: 'Bob', LastName: 'Barker', Email: '[email protected]' };

autopilot.contacts.upsert(contact)
	.then(console.log)
	.catch(console.error);

Quick links:

Installation

npm install autopilot-api --save

Usage

Begin by initializing with your API key:

let Autopilot = require('autopilot-api');
let autopilot = new Autopilot('c5359558cf764d17bc49f13a87e8a56e');

Now you will be able to interact with Autopilot resources as described below.

Optionally you can pass an endpoint to use. This can be useful in testing if you want to call the sandbox api.

let Autopilot = require('autopilot-api');
let autopilot = new Autopilot('c5359558cf764d17bc49f13a87e8a56e', 'https://private-anon-5efcbf2622-autopilot.apiary-mock.com/v1');

Contacts

Upsert Contact

  • Method: autopilot.contacts.upsert(data[, callback])

  • Parameters:

    | Name | Type | Required | Description | |------------|---------------------|----------|---------------------------------------------------------------------------------------| | data | object or array | Yes | The contact data to be upserted. If an array is provided, a bulk upsert is performed. | | callback | function | No | A callback function to be executed upon completion. |

  • Promise example:

      let contact = { FirstName: 'Bob', LastName: 'Barker', Email: '[email protected]' };
    
      autopilot.contacts.upsert(contact)
      	.then(console.log)
      	.catch(console.error);
  • Callback example:

      let contact = { FirstName: 'Bob', LastName: 'Barker', Email: '[email protected]' };
    
      autopilot.contacts.upsert(contact, (err, response) => {
      	if (err) {
      		return console.error(err, response);
      	}
    
      	console.log(response);
      });

Get Contact

  • Method: autopilot.contacts.get(id[, callback])

  • Parameters:

    | Name | Type | Required | Description | |------------|------------|----------|------------------------------------------------------------------| | id | string | Yes | Either the Autopilot contact_id or the contact's email address | | callback | function | No | A callback function to be executed upon completion. |

  • Promise example:

      autopilot.contacts.get('[email protected]')
      	.then(console.log)
      	.catch(console.error);
  • Callback example:

      autopilot.contacts.get('[email protected]', (err, response) => {
      	if (err) {
      		return console.error(err, response);
      	}
    
      	console.log(response);
      });

Delete Contact

  • Method: autopilot.contacts.delete(id[, callback])

  • Parameters:

    | Name | Type | Required | Description | |------------|------------|----------|------------------------------------------------------------------| | id | string | Yes | Either the Autopilot contact_id or the contact's email address | | callback | function | No | A callback function to be executed upon completion. |

  • Promise example:

      autopilot.contacts.delete('[email protected]')
      	.then(console.log)
      	.catch(console.error);
  • Callback example:

      autopilot.contacts.delete('[email protected]', (err, response) => {
      	if (err) {
      		return console.error(err, response);
      	}
    
      	console.log(response);
      });

Unsubscribe Contact

  • Method: autopilot.contacts.unsubscribe(id[, callback])

  • Parameters:

    | Name | Type | Required | Description | |------------|------------|----------|------------------------------------------------------------------| | id | string | Yes | Either the Autopilot contact_id or the contact's email address | | callback | function | No | A callback function to be executed upon completion. |

  • Promise example:

      autopilot.contacts.unsubscribe('[email protected]')
      	.then(console.log)
      	.catch(console.error);
  • Callback example:

      autopilot.contacts.unsubscribe('[email protected]', (err, response) => {
      	if (err) {
      		return console.error(err, response);
      	}
    
      	console.log(response);
      });

List Custom Contact Fields

  • Method: autopilot.contacts.fields([callback])

  • Parameters:

    | Name | Type | Required | Description | |------------|------------|----------|------------------------------------------------------------------| | callback | function | No | A callback function to be executed upon completion. |

  • Promise example:

      autopilot.contacts.fields()
      	.then(console.log)
      	.catch(console.error);
  • Callback example:

      autopilot.contacts.fields((err, response) => {
      	if (err) {
      		return console.error(err, response);
      	}
    
      	console.log(response);
      });

Lists

List Lists

  • Method: autopilot.lists.list([callback])

  • Parameters:

    | Name | Type | Required | Description | |------------|------------|----------|------------------------------------------------------------------| | callback | function | No | A callback function to be executed upon completion. |

  • Promise example:

      autopilot.lists.list()
      	.then(console.log)
      	.catch(console.error);
  • Callback example:

      autopilot.lists.list((err, response) => {
      	if (err) {
      		return console.error(err, response);
      	}
    
      	console.log(response);
      });

Insert List

  • Method: autopilot.lists.insert(name[, callback])

  • Parameters:

    | Name | Type | Required | Description | |------------|------------|----------|------------------------------------------------------------------| | name | string | Yes | The name for a new list. | | callback | function | No | A callback function to be executed upon completion. |

  • Promise example:

      autopilot.lists.insert('Animal Rights Supporters')
      	.then(console.log)
      	.catch(console.error);
  • Callback example:

      autopilot.lists.insert('Animal Rights Supporters', (err, response) => {
      	if (err) {
      		return console.error(err, response);
      	}
    
      	console.log(response);
      });

List Contacts in List

  • Method: autopilot.lists.roster(id[, bookmark, callback])

  • Parameters:

    | Name | Type | Required | Description | |------------|------------|----------|-----------------------------------------------------------------------------------------------------------------------------------| | id | string | Yes | The id of the list to query. | | bookmark | string | No | If there are more contacts on the list than have been returned, the bookmark will allow you to access the next group of contacts. | | callback | function | No | A callback function to be executed upon completion. |

  • Promise example:

      autopilot.lists.roster('contactlist_06444749-9C0F-4894-9A23-D6872F9B6EF8')
      	.then(console.log)
      	.catch(console.error);
  • Callback example:

      autopilot.lists.roster('contactlist_06444749-9C0F-4894-9A23-D6872F9B6EF8', () => {
      	if (err) {
      		return console.error(err, response);
      	}
    
      	console.log(response);
      });

Check if Contact is in List

  • Method: autopilot.lists.has(listId, contactId[, callback])

  • Parameters:

    | Name | Type | Required | Description | |-------------|------------|----------|-------------------------------------------------------------------| | listId | string | Yes | The id of the list to query. | | contactId | string | Yes | Either the Autopilot contact_id or the contact's email address. | | callback | function | No | A callback function to be executed upon completion. |

  • Promise example:

      autopilot.lists.has('contactlist_06444749-9C0F-4894-9A23-D6872F9B6EF8', '[email protected]')
      	.then(console.log)
      	.catch(console.error);
  • Callback example:

      autopilot.lists.has('contactlist_06444749-9C0F-4894-9A23-D6872F9B6EF8', '[email protected]', (err, response) => {
      	if (err) {
      		return console.error(err, response);
      	}
    
      	console.log(response);
      });

Add Contact to List

  • Method: autopilot.lists.add(listId, contactId[, callback])

  • Parameters:

    | Name | Type | Required | Description | |-------------|------------|----------|-------------------------------------------------------------------| | listId | string | Yes | The id of the list to query. | | contactId | string | Yes | Either the Autopilot contact_id or the contact's email address. | | callback | function | No | A callback function to be executed upon completion. |

  • Promise example:

      autopilot.lists.add('contactlist_06444749-9C0F-4894-9A23-D6872F9B6EF8', '[email protected]')
      	.then(console.log)
      	.catch(console.error);
  • Callback example:

      autopilot.lists.add('contactlist_06444749-9C0F-4894-9A23-D6872F9B6EF8', '[email protected]', (err, response) => {
      	if (err) {
      		return console.error(err, response);
      	}
    
      	console.log(response);
      });

Remove Contact from List

  • Method: autopilot.lists.remove(listId, contactId[, callback])

  • Parameters:

    | Name | Type | Required | Description | |-------------|------------|----------|-------------------------------------------------------------------| | listId | string | Yes | The id of the list to query. | | contactId | string | Yes | Either the Autopilot contact_id or the contact's email address. | | callback | function | No | A callback function to be executed upon completion. |

  • Promise example:

      autopilot.lists.remove('contactlist_06444749-9C0F-4894-9A23-D6872F9B6EF8', '[email protected]')
      	.then(console.log)
      	.catch(console.error);
  • Callback example:

      autopilot.lists.remove('contactlist_06444749-9C0F-4894-9A23-D6872F9B6EF8', '[email protected]', (err, response) => {
      	if (err) {
      		return console.error(err, response);
      	}
    
      	console.log(response);
      });

Smart Segments

List Smart Segments

  • Method: autopilot.smartSegments.list([callback])

  • Parameters:

    | Name | Type | Required | Description | |-------------|------------|----------|----------------------------------------------------------------------| | callback | function | No | A callback function to be executed upon completion. |

  • Promise example:

      autopilot.smartSegments.list()
      	.then(console.log)
      	.catch(console.error);
  • Callback example:

      autopilot.smartSegments.list((err, response) => {
      	if (err) {
      		return console.error(err, response);
      	}
    
      	console.log(response);
      });

List Contacts in Smart Segment

  • Method: autopilot.smartSegments.roster(id[, bookmark, callback])

  • Parameters:

    | Name | Type | Required | Description | |------------------|------------|----------|----------------------------------------------------------------------| | id | string | Yes | The id of the smart segment to query. | | bookmark | string | No | If there are more contacts on the smart segment than have been returned, the bookmark will allow you to access the next group of contacts. | | callback | function | No | A callback function to be executed upon completion. |

  • Promise example:

      autopilot.smartSegments.roster('contactlist_06444749-9C0F-4894-9A23-D6872F9B6EF8')
      	.then(console.log)
      	.catch(console.error);
  • Callback example:

      autopilot.smartSegments.roster('contactlist_06444749-9C0F-4894-9A23-D6872F9B6EF8', (err, response) => {
      	if (err) {
      		return console.error(err, response);
      	}
    
      	console.log(response);
      });

Journeys (via triggers)

Add Contact to Journey

  • Method: autopilot.journeys.add(triggerId, contactId[, callback])

  • Parameters:

    | Name | Type | Required | Description | |-------------|------------|----------|----------------------------------------------------------------------| | triggerId | string | Yes | The id of the trigger associated with the Journey we're adding to. | | contactId | string | Yes | Either the Autopilot contact_id or the contact's email address. | | callback | function | No | A callback function to be executed upon completion. |

  • Promise example:

      autopilot.lists.add('0001', '[email protected]')
      	.then(console.log)
      	.catch(console.error);
  • Callback example:

      autopilot.lists.add('0001', '[email protected]', (err, response) => {
      	if (err) {
      		return console.error(err, response);
      	}
    
      	console.log(response);
      });

List Journeys with Triggers

  • Method: autopilot.journeys.list([callback])

  • Parameters:

    | Name | Type | Required | Description | |-------------|------------|----------|----------------------------------------------------------------------| | callback | function | No | A callback function to be executed upon completion. |

  • Promise example:

      autopilot.journeys.list()
      	.then(console.log)
      	.catch(console.error);
  • Callback example:

      autopilot.journeys.list((err, response) => {
      	if (err) {
      		return console.error(err, response);
      	}
    
      	console.log(response);
      });

Account

Get Account

  • Method: autopilot.account.get([callback])

  • Parameters:

    | Name | Type | Required | Description | |-------------|------------|----------|----------------------------------------------------------------------| | callback | function | No | A callback function to be executed upon completion. |

  • Promise example:

      autopilot.account.get()
      	.then(console.log)
      	.catch(console.error);
  • Callback example:

      autopilot.account.get((err, response) => {
      	if (err) {
      		return console.error(err, response);
      	}
    
      	console.log(response);
      });

REST Hooks

List REST Hooks

  • Method: autopilot.restHooks.list([callback])

  • Parameters:

    | Name | Type | Required | Description | |-------------|------------|----------|----------------------------------------------------------------------| | callback | function | No | A callback function to be executed upon completion. |

  • Promise example:

      autopilot.restHooks.list()
      	.then(console.log)
      	.catch(console.error);
  • Callback example:

      autopilot.restHooks.list((err, response) => {
      	if (err) {
      		return console.error(err, response);
      	}
    
      	console.log(response);
      });

Register REST Hook

  • Method: autopilot.restHooks.register(event, targetUrl, [callback])

  • Parameters:

    | Name | Type | Required | Description | |-------------|------------|----------|--------------------------------------------------------------------------------| | event | string | Yes | The event name that you wish to be told about. | | targetUrl | string | Yes | The URL in your API which you want Autopilot to POST to when the event occurs. | | callback | function | No | A callback function to be executed upon completion. |

  • Promise example:

      autopilot.restHooks.register('contact_added', 'http://www.priceisright.com/tracking')
      	.then(console.log)
      	.catch(console.error);
  • Callback example:

      autopilot.restHooks.register('contact_added', 'http://www.priceisright.com/tracking', (err, response) => {
      	if (err) {
      		return console.error(err, response);
      	}
    
      	console.log(response);
      })

Unregister REST Hook

  • Method: autopilot.restHooks.unregister(hookId, [callback])

  • Parameters:

    | Name | Type | Required | Description | |-------------|------------|----------|----------------------------------------------------------------------| | hookId | string | Yes | The id of the hook to unregister. | | callback | function | No | A callback function to be executed upon completion. |

  • Promise example:

      autopilot.restHooks.unregister('hook_ED75BA78-2405-4564-B24C-F2B8F936C7C6')
      	.then(console.log)
      	.catch(console.error);
  • Callback example:

      autopilot.restHooks.unregister('hook_ED75BA78-2405-4564-B24C-F2B8F936C7C6', (err, response) => {
      	if (err) {
      		return console.error(err, response);
      	}
    
      	console.log(response);
      });

Delete All REST Hooks

  • Method: autopilot.restHooks.deleteAll([callback])

  • Parameters:

    | Name | Type | Required | Description | |-------------|------------|----------|----------------------------------------------------------------------| | callback | function | No | A callback function to be executed upon completion. |

  • Promise example:

      autopilot.restHooks.deleteAll()
      	.then(console.log)
      	.catch(console.error);
  • Callback example:

      autopilot.restHooks.deleteAll((err, response) => {
      	if (err) {
      		return console.error(err, response);
      	}
    
      	console.log(response);
      });

License

Released under MIT.