How It Works
Replyke automatically creates notification records when relevant events occur (e.g., someone comments on an entity, someone follows a user). Your app polls or fetches those records and displays them in a notification feed. When push delivery is also needed, a webhook fires at the same time so your backend can forward the event to FCM or APNs.In This Section
Hook
How to use
useAppNotifications — fetch notifications, unread count, and mark as readNotification Templates
Customize the display text for each notification type
Webhook Integration
Forward notifications to push services via webhook
Hooks
useAppNotifications
Full API reference for
useAppNotificationsNotification Types
Replyke generates notifications for the following events:| Type | Trigger |
|---|---|
entity-comment | Someone comments on your entity |
comment-reply | Someone replies to your comment |
entity-mention | You are mentioned in an entity |
comment-mention | You are mentioned in a comment |
entity-upvote | Someone upvotes your entity |
comment-upvote | Someone upvotes your comment |
entity-reaction | Someone reacts to your entity |
comment-reaction | Someone reacts to your comment |
entity-reaction-milestone-specific | Your entity reaches a milestone for a specific reaction type |
entity-reaction-milestone-total | Your entity reaches a total reaction milestone |
comment-reaction-milestone-specific | Your comment reaches a milestone for a specific reaction type |
comment-reaction-milestone-total | Your comment reaches a total reaction milestone |
new-follow | Someone follows you |
connection-request | Someone sends you a connection request |
connection-accepted | Someone accepts your connection request |
space-membership-approved | A moderator approves your pending space membership request |
system | A custom message sent from the dashboard |

