How to add the payload clicked in analytics?
You could add an advanced analytics in the following node to record the payload clicked by customer.
- return new Promise((resolve, reject) => {
- resolve({
- category: "Question 1",
- action: "Payload clicked",
- label: this.messageEvent.data.payload
- })
- })
Related Articles
How to add the payload clicked in member tag?
You could add an advance member tag in the following node to record the payload clicked by customer. return new Promise((resolve) => { resolve({ tags: [`${this.messageEvent.data.payload}`] }) }) Please see the related documentation here and ...
What is payload?
Payload is used for users to make button clicks. You can name your payload in any way you want, just note that the payload name is case-sensitive. The payload name also must match the payload set in the responses in order to trigger that particular ...
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 ...
As a partner, where can I add more WhatsApp channels for my client?
Yes, you may simply follow the steps below. 1. Please go to https://partner.stellabot.com/ and find your client 2. Click Edit Subscriptions and add more WhatsApp Channel in the Additional Items section and click Confirm 3. Go back to Channels in ...
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 ...