The current store key from the PersonaClick account.
stream
string
optionally
Data stream code. Alphanumeric string (letters, numbers only). Max length: 16. The empty default value will mean "web". Can be "ios", "android" or any other string. Used to distinguish between mobile apps, websites, and other events sources.
success
function
optionally
The function will be executed after successful initialization.
error
function
optionally
The function will be executed after unsuccessful initialization (any Personaclick API response other than 200).
Example of use
personaclick("init", "c6d2fe5fdca0c8e51d10b07523bc07", "web", function() {
// Do something in case of successful initialization
console.log("The PersonaClick initialization was successful");
}, function() {
// Do something in case of unsuccessful initialization
console.log("The PersonaClick initialization was unsuccessful");
});