Identity
Set identityโ
Identify users on login so you can track them across sessions and match survey responses to real users.
Requirements:
- The unique visitor id must be between 1 and 255 characters.
On module initโ
ScreebModule.forRoot({
autoInit: true,
websiteId: "<YOUR-CHANNEL-ID>",
userId: "<USER-ID>",
userProperties: {
firstname: "<user-firstname>",
plan: "<user-plan>",
last_seen_at: new Date(),
authenticated: true,
},
})
After initโ
import { ScreebModule, ScreebService } from "@screeb/sdk-angular";
constructor(private screeb: ScreebService) {}
// Set identity
await this.screeb.identity("<USER-ID>");
// With properties
await this.screeb.identity("<USER-ID>", {
email: "support@screeb.app",
plan: "growth-monthly",
});
Reset identity (logout)โ
await this.screeb.identityReset();
Update propertiesโ
await this.screeb.identityProperties({
email: "support@screeb.app",
age: 42,
logged: true,
signed_up_at: new Date(),
});
// Delete a property by setting it to null
await this.screeb.identityProperties({ company: null });
Get current identityโ
const identity = await this.screeb.identityGet();
Good practices with an existing CDPโ
When Amplitude, Segment or RudderStack is a Screeb source, Screeb resolves the respondent of each forwarded event from its user id, or from its anonymous id when the visitor is not logged in. Once both ids appear on the same event, Screeb aliases them to one respondent, so a visitor who logs in keeps a single profile. Screeb never moves an id from one respondent to another, and it does not read your CDP's identifiers from your app: keeping the two tools on the same identifiers is part of your instrumentation. Three rules do it.
1. One user id, the same string everywhereโ
Identify the user in Screeb with exactly the value you give your CDP's identify: a stable
internal id rather than an email, which can change. Do it in the same place in your code so
neither tool lags behind the other.
await this.screeb.identity(userId);
Amplitude drops user ids and device ids shorter than 5 characters, and the event then reaches Screeb as anonymous: use ids of 5 characters or more.
2. Give your CDP the Screeb anonymous idโ
Before login, CDP events carry only the CDP's own anonymous id, which is not the Screeb respondent the SDK displays surveys for. Read the Screeb anonymous id and hand it to your CDP as its anonymous or device id; the Screeb respondent id is one of its own aliases, so nothing else is needed on the Screeb side.
const { anonymous_id: anonymousId } = await this.screeb.identityGet();
// Amplitude
amplitude.init(AMPLITUDE_API_KEY, { deviceId: anonymousId }); // or amplitude.setDeviceId(anonymousId)
// Segment
analytics.setAnonymousId(anonymousId);
// RudderStack
rudderanalytics.setAnonymousId(anonymousId);
Do this before the CDP sends its first event. The stock Amplitude, Segment and RudderStack
snippets fire an initial page() or session event as soon as they load, before the Screeb
anonymous id is available: remove that call or defer the CDP's load() / init() until you
have the id. Otherwise that first event alone creates one stray anonymous respondent, and
everything after it is aligned.
Without this rule, anonymous visitors exist twice (one respondent per tool) and surveys triggered by CDP events cannot display for them.
3. Reset both tools together on logoutโ
Reset Screeb, read the new anonymous id, then reset your CDP and give it that id, in this order. Reset once, on logout only: resetting on every anonymous screen creates a new respondent each time on both sides.
await this.screeb.identityReset();
Then repeat rule 2 with your CDP's reset().
What the "ignore anonymous users" settings changeโ
The integration's "ignore events from anonymous users" option and the workspace-level "Ignore anonymous users" setting drop CDP events that carry no user id. Rule 2 needs both off to cover the pre-login window. An event carrying a user id is never dropped by them, so the login-time merge happens either way.
Check it worksโ
Read the current identity and compare anonymous_id and user_id with what your CDP
reports for the same visitor. In Screeb, the respondent page then lists both ids among its
aliases, and a survey targeted on a CDP event displays a few seconds after the event.