Targeting Lapsed Spenders #

In this example, we target lapsed spenders - players who have spent money in your game in the past, but have not spent any in a while - in your game. You can use Satori to identify these players and target them to increase their engagement and spending. This re-targeting can be in the form of free in-game currency, or other incentives.

Creating the audience #

The first step is to create an audience that contains the players you want to target. In this example, we will target players who have spent money at least once in the past, but have not spent any in the last 30 days.

  1. Navigate to the Audiences screen in the Satori dashboard and click New Audience.

Create Audience
Create Audience

  1. For Audience Name we will use Lapsed Spenders. You must also provide a Description for the audience.

  2. Click Create. The Audience Details screen for the new audience is displayed.

Audience Details
Audience Details

  1. Enter the appropriate Audience Filter. This filter should check that the player has made at least one prior purchase and that they haven’t made any purchases in the last 30 days.
Filtering
You can make use of the purchaseCompletedCount and purchaseCompletedSeenLast computed properties to check that an identity has completed a purchase, and the last time they did so.
Now() - PropertiesComputed("purchaseCompletedSeenLast", 0) > Duration("30d") and PropertiesComputed("purchaseCompletedCount", 0) > 0
  1. Click Save. The audience is now created and will be updated with identities that match the filter.
Audience refresh interval
By default the Satori server will refresh the identities in an audience every 10 minutes, so an identity may not be added immediately. This can be configured with the audience.processor_interval_sec configuration parameter.

Audience Identities
Audience Identities

Targeting the audience #

Now that you have created the audience, you can target it with any desired campaign, whether it be a with a free in-game currency offer or other reward, or access to a new feature.

Access to new features #

In this example, we will target lapsed spenders with a new feature that is only available to them, a new game mode in this case.

To do this, we will create a new feature flag that is only enabled for lapsed spenders.

  1. Navigate to the Feature Flags screen in the Satori dashboard and click New Feature Flag.

Create Feature Flag
Create Feature Flag

  1. For Flag Name let’s use NewGameMode for this example.

  2. As the Default Value - the value for the flag when it is not explicitly set - we will use {"enabled": false}.

  3. Next, from the page of our new feature flag, click New Variant.

Create Feature Flag Variant
Create Feature Flag Variant

  1. For Variant Name we will use NewGameModeLapsedSpenders. For the Audiences select the Lapsed-Spenders one created earlier.

  2. For the Variant Value we will use {"enabled": true}.

  3. Click Save. The feature flag variant is now created and identities in the selected audience will receive that value, enabling them to see the new game mode.