LogoLogo
  • Go to Docs Center
  • Meet Plum Fuse
  • Tutorial
    • Basics
    • Deployment
    • Building A Complex Application
  • How to...
    • Send SMS messages using the REST module
    • Use the SMS Module
    • Upload an Audio Recording to Storage
    • Use Plum's Transcription API
  • Fuse Navigation
  • Application Manager
    • New Application
    • Managing Applications
    • Folders
  • Template Center
  • Deployments
    • Deployments Table
    • Creating Deployments
    • Updating Deployments
    • Deleting Deployments
    • Outbound Deployments
  • Logs
  • Reports
  • My Account
    • Global Options
    • Admin Options
  • Users & Sharing
    • Single Sign On
  • Application Editor
    • Application Editor Overview
    • Settings
      • Language Settings
        • Text-To-Speech (TTS) Options
      • User Input Settings
      • Connection Settings
      • Post-Call Webservice
      • JavaScript Libraries
    • Audio Manager
      • Languages
      • Prompt Table
      • Audio Formats
      • Bulk Uploading Audio Prompts
    • Modules
  • Modules
  • Call-Flow
    • Prompt
    • Transfer
    • Go To App
    • Go To Page
    • Compare Variable
    • Counter
    • Exit
    • Call Log
    • Label
    • Subdialog
  • Input
    • Address
    • Yes/No
    • Custom Field
    • Date/Time
    • Number
    • Digits
    • Language
    • Menu
    • Dynamic Menu
    • Name
    • Record
  • Data
    • Email
    • SMS
    • Set Variable
    • Call Recording
    • Evaluate JS
    • REST
    • SOAP
  • Integration
    • Setting up authentication
    • Dialogflow
    • DynamoDB
    • AWS S3
  • Variables
    • Shadow Variables
  • Module Settings
  • Key Fuse Info
  • 📞Outbound
    • Queuing Calls with CSV
    • View Pending Calls
    • Viewing Completed Calls
    • Detecting Voicemail
    • Outbound Parameters
    • Outbound FAQs
  • 🔒Data Security
    • 'Private' Mode
    • Managing Secure Phone Numbers
    • Sensitive Data Types
  • 🔑APIs
    • Authentication
    • Outbound Calls
      • Queue Call
      • Queue Multiple Calls
      • Get Outbound Call Status
      • Cancel Outbound Calls
    • Logs
      • Get Call Logs
      • Get Call Logs With Details
      • Get A Detailed Call Log
  • 🗒️Release Notes
Powered by GitBook
On this page
  • Setting Up SMS in Fuse
  • Phase 1 - Set up your account for Outbound SMS
  • Phase 2 - Get familiar with the REST module
  • Phase 3 - Build your application
  • Phase 4 - Deploy your application
  • Phase 5 - Logging
  1. How to...

Send SMS messages using the REST module

PreviousHow to...NextUse the SMS Module

Last updated 3 years ago

Setting Up SMS in Fuse

Not only is Plum Fuse a great low-code option for voice applications, but you can also use Fuse to send SMS messages. Combining voice and SMS allows you to align those channels for more seamless and robust communications. If, for example, you want to automate delivery of an SMS message to a customer during, or at the end of a service interaction, Fuse allows you to do that.

Presently, using SMS in Fuse relies on the . This is one of Fuse’s advanced modules, and provides a lot of flexibility in your voice applications.

Phase 1 - Set up your account for Outbound SMS

To get started with using SMS in Fuse you need two key components.

  • The first is an active Plum DEV account. Fuse does not have its own dedicated SMS API at present. However, using the REST module allows you to leverage the in DEV.

    • If you don’t already have an active DEV account, contact your to have them set one up for you.

  • The second necessary component is an SMS-enabled phone number. Phone numbers provisioned through Plum Voice are not automatically SMS-enabled so you will have to request this for each number you would like to use with SMS.

    • If you need to provision a new SMS-enabled number, or would like to convert a number that already exists in your account to an SMS-enabled number, contact .

    • IMPORTANT! Your SMS-enabled number must be non-PCI. SMS is unencrypted, which makes SMS messaging incompatible with PCI numbers and infrastructure.

If you plan to receive SMS responses from customers, you will need to set up your own application URL. Additional information about with your DEV account is available in the DEV documentation.

Phase 2 - Get familiar with the REST module

Once your Fuse account is properly configured to handle SMS messages, you need to ensure that you understand how to use the REST module.

The is an advanced module and requires additional configuration compared to the and modules available in Fuse.

The REST module allows Fuse users to access Plum DEV’s SMS API. From the DEV SMS API documentation, you will need the API URL. You need to be sure to include the correct resource type in the URL, so check to see if you need to use queue.json or queue.xml.

These are the same credentials you use to access Plum DEV. To use with the REST module in Fuse, your credentials must be in base-64.

The format in the Header field must be: Authorization: Basic XXXXX

Replace the Xs with your login credentials converted to base-64. First, format your credentials as ‘username:password’, e.g., FuseUser:12345. Converting that to base-64 is RnVzZVVzZXI6MTIzNDU=.

The text in the Header section would then be: Authorization: Basic RnVzZVVzZXI6MTIzNDU=

Next, make sure that the Request Type is POST and that the Return Type matches the resource type in the URL. If you used JSON in the URL, use JSON here, likewise for XML.

Then, add your required form data parameters, the to, from, and body fields. Click the small + button at the bottom of the module until you have three variable fields.

In the left column, provide the variable names. These are the same as the required form data parameters.

The right column contains the values associated with each parameter.

  • The value for the 'to' variable must be a 10-digit number. In the example below, this is a variable collected in the preceding module, titled sms_dest. Click the small + button in the text field and enter the desired variable.

  • The value in the ‘from’ field must be an SMS-enabled phone number associated with your Plum DEV account.

A note about phone numbers

Currently, you will need two phone numbers to execute this process.

When you deploy your application, the number you associate with the Fuse application can be any number in your account.

The phone number used to send SMS messages must be an SMS-enabled, non-PCI number associated with your DEV account.

  • The value for the ‘body’ field is the actual content of the SMS message. This can include any information collected or pulled into the voice application during the call, such as customer info from a CRP/ERP, URLs, and any variables active in the call.

Phase 3 - Build your application

Once you are comfortable with the REST module, go ahead and build your voice application. Insert the outbound SMS REST module where appropriate.

Phase 4 - Deploy your application

Your voice app can be deployed to any phone number in your account. It does not need to be an SMS-enabled number.

Phase 5 - Logging

To access SMS log data, you need to login to your Plum DEV account. Select ‘SMS Applications’ from the top navigation bar.

This same information is available via API if you want to proactively pull the data and manipulate/process/use on your end.

After entering the API URL, click on the gear icon of the REST module and click the option. A field called Header appears. This is the section where you enter your credentials so you can access the SMS API.

When you are ready to test your application, you must deploy it first. Go to the ‘Deployments’ section of Fuse to do this. For detailed instructions on , see the Fuse documentation.

Once there, go to the logs section. .

If you have issues using the SMS functionality in Plum Fuse,

Show Headers
how to deploy a Fuse app
For more information on SMS logging, see the DEV documentation
contact Plum Support.
REST module
SMS API
Account Manager
Plum Support
how to configure your application URL
REST module
Input
Call-Flow