How to correctly setup a Twilio integration

Twilio is a cloud communications platform that enables you to send and receive SMS and voice messages. It is a powerful tool to engage your users and bring them back to your website.

twilio logo
PUT
/integrations/twilio
Schema Type: "object"
Required Fields:
account_sidapi_keyapi_secretfrom

Properties

account_sid "string"
required

The SID for your Twilio account

api_key "string"
required

The API key for Twilio

api_secret "string"
required

The API Secret for Twilio

from "string"
required

The phone number to send from, in E.164 format

region "string"

The region to use for Twilio, defaults to 'us1'

Example Request

{
  "account_sid": "ACXXXXXXXX",
  "api_key": "SKXXXXXXXX",
  "api_secret": "your_api_secret",
  "from": "+15017122661",
  "region": "us1"
}