0.2.6-development • Published 2 years ago

chatinc v0.2.6-development

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

ChatInc Javascript SDK

The official ChatInc Javascript package is here! Super charge creating your bot experiences with a fully loaded journey and campaign builder SDK 🚀.

Get Started

  1. Run npm install chatinc in your terminal

Quick Start

import Chat from 'chatinc'

const chat = new Chat('API_KEY')
  
 chat.createJourney('JOURNEY_ID', 'entry', [
    {
    type: 'text',
    entry: 'entry',
    message: 'Hello world',
    }]
  )
 
 
 
  chat.createCampaign({
    title: 'My first campaign',
    message: 'Hello world',
    messageExample: 'Hello world',
    buttons: [
        {
          text: 'Button 1',
          type : 'jorney',
          journeyId: 'JOURNEY_ID'
      },
  ]
 })