AbCohort
Fired automatically by Satori Client Module. No action required if it is installed. If not: The player was assigned to a cohort. The event should be fired every session.
experimentName
string
Required
experiment_name
The experiment name
experimentCohort
string
Required
experiment_cohort
The variant or cohort name.
additionalData
Dictionary<string, object>
Optional
additional_data
Any additional information
Experiment Naming Convention
To keep experiment information consistent across games for easier analysis, please do your best to use the following naming convention:
{game_code}_{platform}_{test.name}
game_code – Three-letter game code, e.g. FNI, SBP, FMT, etc.
If a game doesn't have a three-letter code, just use its full name:
game.that.doest.have.code
platform
ios – ios
and – android
all – in case you run this test on both platforms at the same time (start and end dates should be equal)
test.name – whatever test name you like; if it includes multiple words, use a dot (
.
) instead of spaces.
Notes
If a user is in multiple tests, the event should be fired multiple times.
This cohort data will be attached as a global parameter and will be
included in the payload of all events afterwards.
In order to clear an experiment, please use theClearAbCohort(string experimentName)
method.
Code examples:
Last updated