Enbbox Docs

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

  1. Set up an HTTP endpoint that accepts POST requests with push payload
  2. In Enbbox: IntegrationsAdd ProviderPushPush Webhook
  3. Enter the Webhook URL and optional Secret for HMAC verification
  4. Click Test ConnectionActivate

Request Format

{
  "title": "New Message",
  "body": "You have a new notification",
  "data": { "screen": "inbox" },
  "device_tokens": ["token1", "token2"]
}

On this page