1.0.11 • Published 4 years ago

mds-intercom-client v1.0.11

Weekly downloads
2
License
MIT
Repository
github
Last release
4 years ago

mds-intercom-client

wercker status

Simple intercom.io client with Promises for nodejs.

This library supports Intercom API v2.0, all parameters described in official documentarion at https://developers.intercom.com/intercom-api-reference/reference.

Functions returns a Promise with API response.

Installation

npm install mds-intercom-client or yarn add mds-intercom-client

Examples

const Intercom = require('mds-intercom-client')
const intercom = new Intercom(apiKey)

// Create a contact
intercom.contacts.create({
  type: 'lead',
  email: 'john@example.com',
  name: 'John',
}).then(contact => {
  console.log(contact)
}).catch(err => {
  console.error(err)
})

Status

CONTACTS

  • ✅ Create a contact
  • ✅ Retrieve a contact
  • ✅ Update a contact
  • ✅ Delete a contact
  • ✅ Merge two contacts
  • ✅ Search for contacts
  • List all contacts
  • List attached companies
  • List attached tags

VISITORS

  • Retrieve a visitor
  • Update a visitor
  • Delete a visitor
  • ✅ Convert a visitor

COMPANIES

  • Create or update a company
  • Retrieve a company
  • Attach a contact
  • Detach a contact
  • List all companies
  • Scroll over all companies
  • List attached contacts

DATA ATTRIBUTES

  • Create a data attribute
  • Update a data attribute
  • List all data attributes

DATA EVENTS

  • ✅ Submit a data event
  • ✅ List all data events

TAGS

  • ✅ Create or update a tag
  • ✅ Delete a tag
  • ✅ Attach a contact
  • Attach a conversation
  • Tag companies
  • ✅ Detach a contact
  • Detach a conversation
  • Untag companies
  • ✅ List all tags

Testing

Create .env file with your Intercom application token and run yarn test:

echo $INTERCOM_TOKEN > .env
yarn install
yarn test
1.0.11

4 years ago

1.0.10

4 years ago

1.0.9

4 years ago

1.0.8

4 years ago

1.0.7

4 years ago

1.0.6

4 years ago

1.0.5

4 years ago

1.0.3

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago