Skip to main content
Version: .NET MAUI SDK

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 ':'.
using Screeb.Maui;

await Screeb.AssignGroup("company", "Apple");
await Screeb.AssignGroup("plan", "Growth");

Default group type

Group type can be omitted:

using Screeb.Maui;

await Screeb.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.

using Screeb.Maui;

await Screeb.AssignGroup("company", "nuR4eecu", new Dictionary<string, object>
{
["name"] = "Apple"
});

Unassign group

At any time, you can unassign a user from a segment;

using Screeb.Maui;

await Screeb.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.
using Screeb.Maui;

await Screeb.AssignGroup("company", "nuR4eecu", new Dictionary<string, object>
{
["name"] = "Apple",
["employes"] = "100.000+"
});