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

api_key "string"
required

A US1 API key for Twilio- - https://www.twilio.com/docs/iam/api-keys

api_secret "string"
required

The API Secret for Twilio

from "string"
required

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

account_sid "string"
required

The SID for your Twilio account

Example Request

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