Account notifications
This is your starting point for deciding which alerts Sosyabot sends you and where they show up.
Why it matters
You can turn alerts on or off for each event, so you only hear about the things you care about. This keeps your inbox and app tidy.
Step by step
Open your notification settings
Click your profile, then go to the notification settings page.
Pick the alerts you want
For each kind of update, choose whether you want it in the app, by email, or as a push alert.
Save and you're done
Your choices apply right away. You can come back and change them any time.
TIP
Not sure where to start? Leave the important ones on (like payment and team invites) and switch off the rest.
Good to know
- You control alerts per event, so you can keep some and mute others.
- The same alert can reach you in different places: in the app, by email, or as a push.
- Turning one combination off only mutes that one thing, not everything.
- You can change your choices whenever you like.
Related
For developers
Preferences live in the Settings hub (/app/settings → Notification preferences tab; the old /app/notification-preferences address redirects there). Each preference is a tuple of (user, channel, type); switching it off mutes that single combination.
GET /api/v1/notification-preferences fetch current prefs
PUT /api/v1/notification-preferences update{
uid: ObjectId,
channel: "in_app" | "email" | "push",
type: string, // event type
enabled: boolean,
}Event types include payment.requested, payment.rejected, subscription.activated, trial.endingSoon, trial.expired, quota.warning, team.invitation, marketplace.order_received, and news. The full list is in Notifications → Preferences.