Is there a plugin or kind of extension through which I can check what values I am passing in CleverTap object? Apart from accessing the data from CleverTap dashboard, how can I view it on my website?
For e.g., when I include the below code in my JS file,
clevertap.profile.push({
"Site": {
"Name": "Jack Montana", // User's name
"Age": 28
}
});
And after refreshing the webpage, when I check the value of cleverTap on my console, I get an empty object,
{event: Array(0), profile: Array(0), account: Array(1), onUserLogin: Array(0), notifications: Array(0), …}
Why I am not able to see the data which I pushed to profile array? How can I view it apart from cleverTap dashboard?