Vonage
note
Currently, only WhatsApp is supported on this channel.
Prerequisite
- An HTTPS Endpoint to your bot - Set the externalUrl field in botpress.config.json
- Create an HTTPS tunnel to your machine using Ngrok. Tutorial
- Using Nginx and Let's Encrypt. Tutorial
 
- Set the externalUrl field in 
- Give it a name
- Click Generate new application
 
Get your API credentials
- Go to your Account Settings.
- Scroll down and copy your API key, API secret and Signature secret from the LIVE credentials section.
- In this page, under SMS Settings, make sure SMS Api is selected.
- Under Signature method method, select MD5 HASH.
- Go to your applications and select your newly created application (https://dashboard.nexmo.com/applications/).
- Copy the Application ID.
Configure your bot
- Edit data/bots/<YOUR_BOT_ID>/bot.config.json. In themessaging.channels.vonagesection write this configuration:
- enabled: set to- true;
- apiKey: paste your API key;
- apiSecret: paste your API Secret;
- signatureSecret: paste your Signature secret;
- useTestingApi (optional): set to- trueif you want to use the- Sandboxinstead of the- Liveversion of Vonage API (see Setup a Messages Sandbox).- Your - bot.config.jsonshould look like this:
{
  // ... other data
  "messaging": {
    "channels": {
      "vonage": {
        "enabled": true,
        "apiKey": "your_api_key",
        "apiSecret": "your_api_secret",
        "signatureSecret": "your_signature_secret",
        "useTestingApi": false
      }
      // ... other channels can also be configured here
    }
  }
}
- Restart Botpress.
- You should see your webhook endpoint in the console on startup.
Setup a Messages Sandbox
When wanting to test the integration with Vonage and WhatsApp, you need to enable a Sandbox where you can send test messages.
- In the left end side menu of Vonage Dashboard select Messages and Dispatch (beta) 
- Click Sandbox. 
- Click the channel you want to setup and follow the instructions detailed on the page. 
- Under - Webhooks, type the following URLs:- Inbound: - <EXTERNAL_URL>/api/v1/messaging/webhooks/v1/<YOUR_BOT_ID>/vonage- Status: - <EXTERNAL_URL>/api/v1/messaging/webhooks/v1/<YOUR_BOT_ID>/vonage
File Reception
Vonage currently supports receiving image , audio, video, file , and location.
note
Please, keep in mind that the links coming from the Vonage API are only valid for 10 minutes.
An action (Storage - Store File Locally) is available in order to store the file locally.