Push Preferences

Push preferences for Activity Feeds allow users to control how they receive push notifications for feed events. You can set preferences at the user level to control notifications for reactions, comments, follows, and other feed activities.

How Feeds Push Preferences Work

Feeds push preferences operate at the user level

  • User-level preferences: Global preferences that apply to all feed activities for a user.
  • Event-specific preferences: Granular control over specific types of feed events (reactions, comments, follows, mentions).

Feeds push preferences support two levels of notifications

  • all: Receive all push notifications for feed events (default).
  • none: Do not receive push notifications for feed events.

Additionally, you can temporarily disable push notifications until a specific time using the disabled_until parameter.

The system evaluates preferences in the following priority order

  1. Global disabled_until: If set and the current time is before that timestamp, all feed notifications are disabled.
  2. Feeds level: If set to “none”, all feed notifications are disabled.
  3. Event-specific preferences: For specific event types (reactions, comments, follows), these override the global feeds level.
  4. Default behavior: If no preferences are set, the default is “all”.

Setting Push Preferences

User-Level Feeds Preferences

Set global push preferences that apply to all feed activities for a user:

val input = PushPreferenceInput(
    feedsLevel = PushPreferenceInput.FeedsLevel.All // or None
)
client.updatePushNotificationPreferences(
    UpsertPushPreferencesRequest(preferences = listOf(input))
)

Event-Specific Feeds Preferences

Control notifications for specific types of feed events:

val input = PushPreferenceInput(
    feedsLevel = PushPreferenceInput.FeedsLevel.All, // Global feeds level
    feedsPreferences = FeedsPreferences(
        reaction = FeedsPreferences.Reaction.All, // Receive notifications for reactions
        comment = FeedsPreferences.Comment.All, // Receive notifications for activity comments
        commentReaction = FeedsPreferences.CommentReaction.All, // Receive notifications for comment reactions
        follow = FeedsPreferences.Follow.None, // Don't receive notifications for new followers
        mention = FeedsPreferences.Mention.All // Receive notifications for mentions

    )
)
client.updatePushNotificationPreferences(
    UpsertPushPreferencesRequest(preferences = listOf(input))
)

Temporarily Disable Feeds Notifications

Disable all feed notifications until a specific time:

val twoHoursFromNow = Calendar.getInstance()
    .apply { add(Calendar.HOUR_OF_DAY, 2) }
    .time

val input = PushPreferenceInput(
    feedsLevel = PushPreferenceInput.FeedsLevel.All,
    disabledUntil = twoHoursFromNow
)
client.updatePushNotificationPreferences(
    UpsertPushPreferencesRequest(preferences = listOf(input))
)

Feed Event Types

The following feed event types support granular push preferences:

Built-in Event Types

Event TypeDescriptionPreference Key
ReactionsWhen someone reacts to your activities or commentsreaction
CommentsWhen someone comments on your activitiescomment
Comment ReactionsWhen someone reacts to your commentscomment_reaction
New FollowersWhen someone follows youfollow
MentionsWhen you are mentioned in activities or commentsmention

Custom Activity Types

You can also configure push preferences for any custom activity types using the custom_activity_types field:

val input = PushPreferenceInput(
    feedsLevel = PushPreferenceInput.FeedsLevel.All,
    // Built-in event preferences
    feedsPreferences = FeedsPreferences(
        reaction = FeedsPreferences.Reaction.All,
        comment = FeedsPreferences.Comment.All,
        commentReaction = FeedsPreferences.CommentReaction.All,
        follow = FeedsPreferences.Follow.All,
        mention = FeedsPreferences.Mention.All,
        // Custom activity type preferences
        customActivityTypes = mapOf(
            "milestone" to "all", // Allow milestone notifications
            "achievement" to "all", // Allow achievement notifications
            "system_alert" to "none", // Block system alert notifications
            "promotion" to "none", // Block promotional notifications
            "custom_celebration" to "all", // Allow custom celebration notifications
        )
    )
)
client.updatePushNotificationPreferences(
    UpsertPushPreferencesRequest(preferences = listOf(input))
)

How Custom Activity Types Work:

  • Map any activity.type to a preference ("all" or "none")
  • Custom types not specified in the map default to "all"
  • This gives you complete control over which custom events trigger push notifications

Client-Side vs Server-Side Usage

Client-Side Usage

When using client-side authentication, users can only update their own preferences:

// Client-side: user_id is automatically set to the current user
val input = PushPreferenceInput(
    // userId not needed - automatically set to current user
    feedsLevel = PushPreferenceInput.FeedsLevel.All,
    feedsPreferences = FeedsPreferences(
        reaction = FeedsPreferences.Reaction.None,
        comment = FeedsPreferences.Comment.All,
    )
)
client.updatePushNotificationPreferences(
    UpsertPushPreferencesRequest(preferences = listOf(input))
)

Server-Side Usage

With server-side authentication, you can update preferences for any user:

// Server-side: can update preferences for any user
await client.updatePushNotificationPreferences({
  preferences: [
    {
      user_id: "user-1",
      feeds_level: "none",
    },
    {
      user_id: "user-2",
      feeds_preferences: {
        reaction: "all",
        comment: "none",
        follow: "all",
      },
    },
  ],
});

Follow Push Preferences

When following users or feeds, you can set push preferences to control notifications for future activities from those feeds.

Setting Follow Push Preferences

// Follow with push preference for all activities
timeline.follow(
    targetFid = FeedId("user:alice"),
    // Receive notifications for Alice's future activities
    pushPreference = FollowRequest.PushPreference.All,
)

// Follow with no push notifications for activities
timeline.follow(
    targetFid = FeedId("user:bob"),
    // Don't receive notifications for Bob's activities
    pushPreference = FollowRequest.PushPreference.None
)

Follow Push Preference Options

ValueDescription
allReceive push notifications for all activities from the followed feed
noneDon’t receive push notifications for activities from the followed feed (default)

Note: Follow push preferences are different from user-level push preferences:

  • Follow push preferences control notifications from specific feeds you follow
  • User-level push preferences control global notification settings for all feeds

Examples

Complete Feeds Preferences Setup

// Set comprehensive feeds preferences
val input = PushPreferenceInput(
    feedsLevel = PushPreferenceInput.FeedsLevel.All, // Enable feeds notifications globally
    feedsPreferences = FeedsPreferences(
        // Built-in event preferences
        reaction = FeedsPreferences.Reaction.All, // Get notified of all activity reactions
        comment = FeedsPreferences.Comment.All, // Get notified of all comments
        commentReaction = FeedsPreferences.CommentReaction.All, // Get notified of all comment reactions
        follow = FeedsPreferences.Follow.None, // Don't notify for new followers
        mention = FeedsPreferences.Mention.All, // Get notified when mentioned
        // Custom activity type preferences
        customActivityTypes = mapOf(
            "milestone" to "all", // Allow milestone notifications
            "achievement" to "all", // Allow achievement notifications
            "system_maintenance" to "none", // Block maintenance notifications
            "promotional_offer" to "none", // Block promotional notifications
        )
    )
)
client.updatePushNotificationPreferences(
    UpsertPushPreferencesRequest(preferences = listOf(input))
)

Do Not Disturb Mode for Feeds

// Enable "Do Not Disturb" for feeds until 9 AM tomorrow
val tomorrow = Calendar.getInstance()
    .apply {
        add(Calendar.DAY_OF_MONTH, 1)
        set(Calendar.HOUR_OF_DAY, 9)
        set(Calendar.MINUTE, 0)
        set(Calendar.SECOND, 0)
        set(Calendar.MILLISECOND, 0)
    }
    .time

val input = PushPreferenceInput(
    feedsLevel = PushPreferenceInput.FeedsLevel.None,
    disabledUntil = tomorrow
)
client.updatePushNotificationPreferences(
    UpsertPushPreferencesRequest(preferences = listOf(input))
)

Minimal Feeds Notifications

// Only get notified for comments and mentions
val input = PushPreferenceInput(
    feedsLevel = PushPreferenceInput.FeedsLevel.All,
    feedsPreferences = FeedsPreferences(
        reaction = FeedsPreferences.Reaction.None, // Skip reaction notifications
        comment = FeedsPreferences.Comment.All, // Keep comment notifications
        follow = FeedsPreferences.Follow.None, // Skip follower notifications
        mention = FeedsPreferences.Mention.All // Keep mention notifications
    )
)
client.updatePushNotificationPreferences(
    UpsertPushPreferencesRequest(preferences = listOf(input))
)
© Getstream.io, Inc. All Rights Reserved.