Group assignation
You can assign groups to your users, along with properties describing the group.
Requirements:- Group type and group name must be less than 128 characters long.
- Authorized characters are alphanumeric (uppercase included) and you can insert the following special characters: '-', '_', '.', ' ' (space), '/', and ':'.
import { assignGroup, unassignGroup } from "@screeb/react-native";
assignGroup("company", "Apple");
assignGroup("plan", "Growth");
Default group type
Group type can be omitted:
import { assignGroup, unassignGroup } from "@screeb/react-native";
assignGroup(null, "cohort-42");
From the Screeb platform, to customize the conditions the surveys are displayed for a visitor, you can apply custom targeting rules using group membership.
Group name vs group id
It is recommended to identify groups by using an immutable group id instead of a group name.
import { assignGroup, unassignGroup } from "@screeb/react-native";
assignGroup("company", "nuR4eecu", { name: "Apple" });
Unassign group
At any time, you can unassign a user from a segment;
import { assignGroup, unassignGroup } from "@screeb/react-native";
unassignGroup(null, "cohort-42");
Attributes
In order to bring context to your event handling, some properties can be added to the event.
Requirements:- Property names must be limited to 128 characters
- No more than 1000 attributes
- Supported types for values: string, number, boolean and Date.
import { assignGroup, unassignGroup } from "@screeb/react-native";
assignGroup("company", "nuR4eecu", {
name: "Apple",
employes: "100.000+",
})