Skip to main content
Version: 1.0.0

Users

Overview

Users in the context of Nudge are individuals who use your application. Nudge views users as central to the dynamic and personalized experiences you aim to create. By tracking user interactions and gathering data on their behaviors, Nudge facilitates the personalization of the in-app experience to meet diverse user needs.

Tracking a user

You can track the users of your application by using Nudge's APIs and SDKs

  await nudge.initSession({externalId:'CLIENT_IDENTIFIABLE_USER_ID'});

User properties

User properties are the attributes of a user that you can send while creating or updating a user. These properties can be used to target users and analyze their behavior.

 await nudge.initSession({externalId:'CLIENT_IDENTIFIABLE_USER_ID',
properties:{
"name": "Client User 1",
"age": 27,
"gender": "M",
"country":"US",
}});