...
Visitor identifiers can be set by calling the send2crm library function:
Code Block | ||
---|---|---|
| ||
// Set a new identifier for the current visitor. // Will result in an immediate update if changed. send2crm?.analytics?.visitor?.setIdentifier(visitorId); // Test whether the current visitor is identified. if (send2crm?.analytics?.visitor?.isIdentified()) { ... } |
The value provided must be a valid identifier for a Visitor record that exists within the send2crm Send2CRM service for analytics functionality to work. If the identifier is not valid, the visitor will become anonymous after the attempted updated.
Identification via URL parameter
...