Skip to content

Latest commit

 

History

History
65 lines (48 loc) · 2.13 KB

smooch.md

File metadata and controls

65 lines (48 loc) · 2.13 KB

Requirements

You will need a Smooch app with a channel configured before connecting Smooch to Botpress

Smooch App

  1. On the Smooch home page, click on Create new app.
  2. Enter a name for your app and click Create App
  3. Connect a channel to your app (Telegram, Whatsapp, or any other listed channel)
  4. You should see a channel in the Overview section of your app

Configuration

App Id

The smooch channel needs the app id to identify the smooch app when making API calls

  1. Go to the Settings section of your app
  2. You should see an App Id section if you scroll down. Copy paste this value to the appId channel configuration

Key Id and Key Secret

The key id and secret are needed to authenticate API calls to Smooch

  1. At the bottom of to the Settings section of your app, click Generate API key
  2. Copy paste the id (the one that starts with app_) in the keyId channel configuration
  3. Copy paste the secret in the keySecret configuration

Webhook Secret

The webhook secret is needed to validate webhooks requests. You get a webhook secret for each webhook integration you create

  1. Go to the Integration section of your app
  2. In the API & Webhooks section, click on Webhooks
  3. Click Connect, then Create a webhook
  4. Set the webhook URL to: <EXTERNAL_URL>/api/v1/messaging/webhooks/v1/<YOUR_BOT_ID/smooch
  5. Select v2 as your webhook version
  6. Select Conversation message and Postbacks in the basic triggers
  7. Click Create Webhook. You will see the webhook you created in the table, and the secret in the last column
  8. Copy paste the webhook secret in the webhookSecret channel configuration

Save Configuration

  1. Edit your bot config
{
  // ... other data
  "messaging": {
    "channels": {
      "smooch": {
        "version": "1.0.0",
        "enabled": true,
        "appId": "your_app_id",
        "webhookSecret": "your_webhook_secret",
        "keyId": "your_key_id",
        "keySecret": "your_key_secret"
      }
      // ... other channels can also be configured here
    }
  }
}
  1. Restart Botpress.