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.
How to save and use a custom locale for my chatbot?
A custom locale allows you to set up a conversation flow to control the language of your chatbot response. Follow the procedures here to customize the locale with Stella now!