Receiving SMS Messages
Prerequisites
Before proceeding, ensure you have obtained a phone number and API key as described in the prerequisites.
Installation
Create a Gemfile in your project root:
Install the dependencies:
This guide uses version rcs 2.0.0.pre.rc.5. Requires Ruby version >=
2.7.0
Configuration
Create an .env file in your project root and add your Pinnacle API key and signing secret:
Setting Up a Webhook
To receive inbound SMS messages, you need to configure a webhook in the Pinnacle dashboard:
- Navigate to Development > Webhooks in the Pinnacle dashboard
- Click Create new webhook
- Give your webhook a descriptive name
- Enter your webhook endpoint URL
- For local development, use an ngrok tunnel pointing to port 4567 (port our Sinatra server will run on)
- For production, use your deployed server URL
- After creation, copy the signing secret and add it to your
.envfile - Attach a phone number to your webhook to receive messages. If the number is a sandbox number, ensure that you’ve whitelisted a number and verified the 4 digit PIN.
Creating Your Webhook Endpoint
Create a new Ruby file (e.g., server.rb) and add the following snippet to the right.
The code above creates a Sinatra endpoint that:
- Receives webhook POST requests at
/inbound-sms - Verifies the webhook signature using your signing secret
- Processes incoming message events
- Handles both received messages and message status updates
Running Your Server
Start the Sinatra server:
Your server will start on http://localhost:4567. If you’re using ngrok for local development, start it in a separate terminal:
Use the ngrok URL (e.g., https://abc123.ngrok.io/inbound-sms) as your webhook endpoint in the Pinnacle dashboard.
Testing Your Webhook
Send an SMS to your Pinnacle phone number from any mobile device. You should see the message logged in your server console:
If you’re not receiving any messages, make sure you have a phone number associated with your webhook.
Your webhook should now be successfully receiving inbound SMS messages as well message status updates for outbound messages!
For more detail about processing the message payload received, please view the process method.
Optionally, you can also create the /send-sms/{phone_number} endpoint to send an initial SMS message out.

