Pick your notification type
Sending notifications requires the
notification:create permission. Add it from the Permissions guide. The experience must belong to your app, or the company must have your app installed.Send to everyone in an experience
Send notifications to all users with access to an experience:Example use case: If you’re building a fitness tracking app, you could
send a notification to everyone when a new workout program is released. You
could also send targeted notifications to users who completed a 7-day streak
to celebrate their achievement.
Send to specific users
Use theuser_ids parameter to send notifications only to specific users. These users must also have access to the experience.
Send to company team members
Send notifications to all team members of a company (dashboard app users):Example use case: If you’re building a tax filing dashboard, you could
send notifications to all team members when a filing deadline is approaching.
You could also send targeted reminders to specific users who still need to
complete steps in the filing process.
Send to specific team members
Use theuser_ids parameter to send notifications only to specific team members. These users must also be team members of the company.
Deep link with rest_path
Direct users to specific pages in your app when they tap a notification using therest_path parameter.
Setting up your app path
First, configure your app path in the dashboard to handle the dynamic route parameter:- Go to your app settings in the developer dashboard
- In the hosting section, update your “App path” to include
[restPath]
Sending notifications with deep links
Add therest_path parameter to your notification. Whop appends it to your app’s base URL.
Handling the route in your app
When a user taps the notification, Whop directs them to the full URL constructed from your app path and therest_path.
Example for experience app:
If you host your app at https://your-app.com and send:
Custom notification icons
By default, notifications display your experience avatar, company avatar, or both. Customize the icon by providing the Whop user ID of the profile picture you want to use.Next steps
Build a chatbot
Pair notifications with in-app messages so users get pinged regardless of where they are.
Listen to webhooks
Trigger notifications off
payment.succeeded, membership.activated, and other server events.Forums
Notify users when new posts or comments land in your forum experience.
Request permissions
Confirm your app’s permission setup so notifications send successfully.

