BetaThe V4 API is in beta — endpoints and functionality may change.

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 it

Pin a specific Twilio line with from.number:

{ "from": { "type": "twilio", "number": "+15559876543" } }

Setup checklist

  1. Connect Twilio under Integrations in the dashboard.
  2. Import or select numbers.
  3. On Channels, drag Twilio senders onto the API key that should use them.
  4. Optionally enable Hybrid Outbound when Blooio + Twilio are both assigned.