App Notifications in Replyke are in-app records — they appear in a notification feed inside your app. To deliver push notifications (iOS APNs, Android FCM) when users are not actively using the app, you can configure a webhook that fires whenever a notification is created.Documentation Index
Fetch the complete documentation index at: https://docs.replyke.com/llms.txt
Use this file to discover all available pages before exploring further.
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.

