Enbbox Docs

Generic SMS

Connect any SMS provider to Enbbox via generic HTTP webhook. Custom SMS integration with configurable endpoint, headers, and payload format.

Overview

The Generic SMS provider lets you send SMS notifications to any HTTP endpoint. Use this when your SMS provider isn't natively supported.

Setup

  1. Set up an HTTP endpoint that accepts POST requests with a JSON body containing to, from, content
  2. In Enbbox: IntegrationsAdd ProviderSMSGeneric SMS
  3. Enter the Webhook URL and optional Secret for HMAC verification
  4. Click Test ConnectionActivate

Request Format

Enbbox will POST to your endpoint:

{
  "to": "+1234567890",
  "from": "YourApp",
  "content": "Your verification code is 123456"
}

On this page