Identity
Set identity
When a user is identified in your app, you won't be able to identify who responded to surveys until you call the SetIdentity command.
Thanks to this, you will be able to track this user over multiple platforms (desktop, mobile, tablet...).
The identifier of your website visitor must be unique and idempotent. User email is good, but can change over time. We recommend that you use the user id.
Requirements:- The unique visitor id must have a length between 1 to 255 characters.
using Screeb.Maui;
await Screeb.SetIdentity("<user-id>");
Reset current identity
When the user logs out, please call the ResetIdentity command.
This command must be called only once, since it creates a new identity on Screeb side. If you call it on every anonymous view, you won't be able to track visitor navigation and surveys will be sent many times to the same visitor.
using Screeb.Maui;
await Screeb.ResetIdentity();
Ignore anonymous user
If you want to ignore anonymous users and only track identified users, you can use the ignore Anonymous option. This will ensure that no data is collected for users who have not been identified.
To Activate the ignore Anonymous option, go to your screeb workspace settings and set the ignore Anonymous option to true.
(go to your workspace Settings)
By setting ignore Anonymous to true, the widget will not collect any data until the SetIdentity command is called with a unique visitor identifier.
Attributes
Screeb allows tracking some custom data about your website visitors. Those properties can be inserted as "hidden fields" in your surveys or can be used for an advanced targeting rule.
Requirements:- Property names must be limited to 128 characters
- No more than 1000 attributes
- Supported types for values: string, number (Int, Long, Double), boolean and Date.
using Screeb.Maui;
// Set visitor properties
await Screeb.SetProperties(new Dictionary<string, object>
{
["example-prop1"] = false,
["example-prop2"] = 29,
["example-prop3"] = "iPhone 13"
});
// Delete visitor property: set values to null
await Screeb.SetProperties(new Dictionary<string, object>
{
["example-prop1"] = null,
["example-prop2"] = null,
["example-prop3"] = null
});