How to apply custom info for analytics?
You could add an advance analytics with this.member in the node to display the info saved in the member data before.
- return new Promise((resolve, reject) => {
- resolve({
- category: `${this.member.botMeta.tempData.template}`,
- action: this.messageEvent.data.text,
- label: `${this.member.botMeta.tempData.v1}`
- })
- })
Please see the advanced analytics documentation here.
Related Articles
How to apply custom info for member tag?
You could add an advance member tag with this.member in the node to display the info saved in the member data before. return new Promise((resolve, reject) => { resolve({ tags: [`${this.member.botMeta.tempData.template}`] }) }) Please see the advanced ...
Some analytics are not working, we cannot see the country where the users come from (it says “no relevant info”).
The WhatsApp analytics in the Dashboard only apply to templated messages. Please click here for more details. You could check the user country by checking their external ID on the member page. (eg. 85291239132, 852 is the country code of Hong Kong) ...
What is analytics?
Analytics is a function that counts the number of times users pass through a node. By creating analytics with “Category”, “Action” and “Label” on any node, you can classify and segmentize the user journey on Stella. You may visualize the analytic ...
How to get an access token for my custom app?
Our Standard Procedure will show you a step-by-step guideline on how to get an access token for your custom app. It will also highlight tips you should pay attention to during your chatbot building journey. For more details, please click here.
Where can I check the analytics labelling data I set in each nodes?
Go to "Dashboard" and head to the Analytics section. There, you will see the number of "count" and "unique count" under each category/action/label. "Count" refers to the number of interactions in the corresponding node. "Unique count" refers to the ...