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
- Set up an HTTP endpoint that accepts
POSTrequests with a JSON body containingto,from,content - In Enbbox: Integrations → Add Provider → SMS → Generic SMS
- Enter the Webhook URL and optional Secret for HMAC verification
- Click Test Connection → Activate
Request Format
Enbbox will POST to your endpoint:
{
"to": "+1234567890",
"from": "YourApp",
"content": "Your verification code is 123456"
}