Push Webhook
Set up a custom push webhook integration in Enbbox. Route push notifications to any HTTP endpoint for custom processing.
Overview
The Push Webhook provider lets you send push notifications to any HTTP endpoint. Use this for custom push delivery infrastructure.
Setup
- Set up an HTTP endpoint that accepts
POSTrequests with push payload - In Enbbox: Integrations → Add Provider → Push → Push Webhook
- Enter the Webhook URL and optional Secret for HMAC verification
- Click Test Connection → Activate
Request Format
{
"title": "New Message",
"body": "You have a new notification",
"data": { "screen": "inbox" },
"device_tokens": ["token1", "token2"]
}