How It Works
Configure a webhook URL in the dashboard
In your Replyke project dashboard, go to Settings → Webhooks and add a webhook URL pointing to your backend endpoint. Select the App Notification Created event.
Receive the event on your backend
When Replyke creates an app notification, it sends an HTTP POST to your webhook URL with a JSON payload describing the notification:
Look up the recipient's push token
Use
data.userId to look up the FCM or APNs token stored in your own database for that user.Payload Fields
| Field | Type | Description |
|---|---|---|
type | string | Always "app-notification.created" |
projectId | string | The Replyke project ID |
data.projectId | string | The Replyke project ID (repeated inside data) |
data.userId | string | The recipient’s user ID |
data.type | string | The notification type (e.g., "entity-comment") |
data.action | string | Navigation hint for the push tap action |
data.metadata | object | Type-specific data — see Notification Templates for fields per type |
You are responsible for managing and storing push tokens in your own backend. Replyke does not store device tokens.

