User Identification
Attaching Unique Identifiers
freshpaint.identify('ada.lovelace@example.com');Freshpaint.identify('ada.lovelace@example.com');Freshpaint.shared().identify("ada.lovelace@example.com");[[FPAnalytics sharedAnalytics] identify:@"ada.lovelace@example.com"]Freshpaint
.with(getActivity().getApplicationContext())
.identify("ada.lovelace@example.com");Attaching User Properties
freshpaint.identify({
email: 'ada.lovelace@example.com',
name: 'Ada Lovelace',
});Freshpaint.identify({
email: 'ada.lovelace@example.com',
name: 'Ada Lovelace',
});Freshpaint.shared().identify(
nil,
traits: [
"email": "ada.lovelace@example.com",
"name": "Ada Lovelace"
]
)[[FPAnalytics sharedAnalytics]
identify:nil
traits:@{ @"email": @"ada.lovelace@example.com",
@"name": @"Ada Lovelace" }]Freshpaint
.with(getActivity().getApplicationContext())
.identify(new Traits()
.putValue("email", "ada.lovelace@example.com")
.putValue("name", "Ada Lovelace")
);User Information
Last updated
Was this helpful?