Twilio integration
Connect Twilio SMS as a v4 channel and send with from.type twilio.
Twilio is a first-class v4 channel type. Connect your Twilio account in the dashboard, assign Twilio senders to an API key on Channels, then send with optional from constraints.
When to use Twilio
- SMS/MMS reach when the recipient is not on iMessage
- Hybrid outbound (Twilio-first, continue on Blooio after a reply)
- Explicit SMS branding via a Twilio number
Send on Twilio
curl -X POST https://api.blooio.com/v4/messages \
-H "Authorization: Bearer bl_live_..." \
-H "Content-Type: application/json" \
-d '{
"from": { "type": "twilio" },
"to": "+15551234567",
"content": { "type": "text", "text": "Hello via SMS" }
}'Try itPin a specific Twilio line with from.number:
{ "from": { "type": "twilio", "number": "+15559876543" } }Setup checklist
- Connect Twilio under Integrations in the dashboard.
- Import or select numbers.
- On Channels, drag Twilio senders onto the API key that should use them.
- Optionally enable Hybrid Outbound when Blooio + Twilio are both assigned.