- Print
- DarkLight
Overview
The Twilio service allows you to send messages within Twilio. It requires you to setup the Twilio authentication in the Integrations section of your Organization.
Some more detailed information is available here.
Setup
To start leveraging Twilio integration, first subscribe to the Twilio add-on that can be accessed from the LimaCharlie Marketplace.
After the add-on has been enabled, setup the Twilio authentication in the Integrations
section of your Organization.
Authentication in Twilio uses two components, a SID and a Token. The LimaCharlie Twilio configuration combines both components in a single field like SID/TOKEN
.
Detection & Response
Example Response portion of a D&R rule that sends a message out via Twilio as the response action:
- action: service request
name: twilio
request:
body: Triggered_alert
from: '+15551234567'
to: '+15559878543'
Note that the Triggered_alert
in the example above is the actual text that would be sent to the number you specify.
REST
Send Message
{
"body": "Critical credentials theft alert.",
"to": "+14443339999",
"from": "+15551112222"
}