Documentation

Overview

There are two ways to gather data.

  • Dashboard in the back office: perfect for gaining quick insights into key behavioral metrics without the need Watchers provides a robust method for additional integration. No extra setup is required partners to access this data.
  • Data collection via webhook: recommended for those needing deeper, receive real-time analytics. This approach involves setting up a webhook URL in the admin panel to receive event data directly in your system. These on user interactions within chat environments by sending events can be used directly to create custom scenarios triggered through your backend, such as rewarding users for specific actions.

Back Office Dashboard

The back office dashboard includes the following sections and functionalities:

  1. Overview Metrics
    1. DAU/WAU/MAU metrics available for daily, weekly, and monthly user engagement tracking.
    2. Messages and User Activity
    3. Metrics for total messages sent, animated reactions, and reactions to messages are available for the last 90 days and 6 months.
    4. Active users and users who sent at least one message are tracked over the same periods for comprehensive insights.
  2. Data Updates
    1. A "Refresh" button for instant data updates.
    2. Automated synchronization with the latest metrics occurs at 00:00 GMT (0).

This dashboard system allows partners to track key behavioural metrics in chats. For deeper analytics, we recommend implementing a system to monitor and respond to user activities, ensuring seamless integration with your data collection via a webhook, which is described in the next section.


Webhooks

📘

Note: All event timestamps are stored in GMT+0. Please take this into account when building charts to ensure accurate time-based analysis.
handling protocols.

Enabling Event Tracking

Webhooks can be configured to receive real-time events directly into an external database. Here’s how to set it up:

All Events Webhook: To begin receiving chats, are tagged. A list of events can be found below.

  1. Enable events, enable this feature through the toggle under the "All events" section.
  2. Provide a valid URL where events Admin Panel. Once enabled, our system will be sent.
  3. Click "Save" to transmit event data to confirm the settings.
  4. Use the "Test" button to verify the webhook configuration.

Room Events Webhook:

  1. Enable the toggle under the "Rooms" section.
  2. Provide the desired URL for room-specific events.
  3. Events include:
    1. Create your specified API endpoint each time a scheduled room is created.
    2. Updates to scheduled room details (date, time, name), including status changes.
    3. Deletion of a scheduled room.
    4. Updates to the list of users with voice permissions (speakers) whenever room data is modified.
  4. Save and test relevant user interaction occurs within the configuration as needed.

Webhooks enable seamless integration of platform events into external systems for further analysis and processing.

API Endpoint Requirements

Each event is communicated via a POST request to your API. The general structure of these requests is as follows:

{
"event": "event_name",
"value": {
	"user_id": "user_id",
	"project": "project_name",
	...other fields depends on event
	}
}

Recommendations for Data Storage and Analysis Tools

ClickHouse is a columnar database management system that is ideal for handling large volumes of event data due to its:

  • High performance for real-time data ingestion.
  • Excellent support for analytical queries.
  • Compatibility with structured and semi-structured data formats.

Recommended Steps:

  • Create a dedicated table for events: Depending on your specific needs, design a schema that includes necessary fields such as event_type, user_id, timestamp, and additional properties.
  • Process webhook events directly: Capture webhook payloads in real-time and write them into ClickHouse using an HTTP endpoint.
  • Partition data: Partition your tables by time (e.g., daily or hourly) to optimize query performance and simplify data management.

Optional: If you anticipate high throughput or require buffering, consider integrating tools like Kafka to preprocess or distribute webhook events before storing them in ClickHouse.

Events and Properties

This section outlines the key events tracked for product analytics, offering insights into user behavior and interactions within chats. Each event is detailed in the table below, including its name, associated properties, and a brief description.

List of Events

🚧

Note: Events highlighted in bold in the ‘Event’ column are mandatory for tracking basic product metrics related to user interactions within the chat.

 \{  
    "event": "following\\_filter\\_toggle",  
    "value": \\{
        "event\\_id": "test\\_33",
        "screen\\_size": "2056x1164",
        "platform": "none",
        "platformUserAgent": “”
        "source": "room",
        "status": "on",
        "project": "dev",
        "user\\_id": "454334341212"
        "nickname": "Andy"
    },
}

Event

Additional Properties

Description

Payload example

session_started

room_status = on_air, soon, unavailable, ended

Sent when the userId and roomId are present in the URL parameters and the iframe is open. Tracking it by unique values makes sense since one person can send multiple events within one session.

  "event": "session_started",
  "value": {
    "user_id": "kit78",
    "event_id": "144444",
    "platform": "none",
    "screen_size": "629x919",
    "platformUserAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36",
    "project": "dev",
    "room_status": "on_air"
  },
  "key": "JGMHFqonZuwKeoly+bzNnw=="
}

room_opened

Triggered every time messages are loaded after entering the chat. It helps to determine how many people opened the chat based on session_started and did not load the messages.

  "event": "room_opened",
  "value": {
    "user_id": "kit78",
    "event_id": "144444",
    "platform": "none",
    "screen_size": "629x919",
    "platformUserAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36",
    "project": "dev"
  },
  "key": "JGMHFqonZuwKeoly+bzNnw=="
}

la_opened

A user opens the License Agreement.

  "event": "la_opened",
  "value": {
    "user_id": "kit7693",
    "event_id": "144444",
    "platform": "none",
    "screen_size": "629x919",
    "platformUserAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36",
    "project": "dev"
  },
  "key": "JGMHFqonZuwKeoly+bzNnw=="
}

la_closed

A user clicks on the close icon of the License Agreement (x).

  "event": "la_closed",
  "value": {
    "user_id": "kit7693",
    "event_id": "144444",
    "platform": "none",
    "screen_size": "629x919",
    "platformUserAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36",
    "project": "dev"
  },
  "key": "JGMHFqonZuwKeoly+bzNnw=="
}

agreement_accepted

A user clicks on the Accept and Continue buttons (accepts PP and LA).

    "event": "agreement_accepted",
    "value": {
        "event_id": "test_33",
        "screen_size": "2056x1164",
        "platform": "none",
        "platformUserAgent": "",
        "source": "room",
        "project": "dev",
        "user_id": "45433434121233"
    },
}

name_set

User clicks on Save and Continue button after entering their name.

  "event": "name_set",
  "value": {
    "user_id": "kit7693",
    "event_id": "144444",
    "platform": "none",
    "screen_size": "629x919",
    "platformUserAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36",
    "project": "dev"
  },
  "key": "JGMHFqonZuwKeoly+bzNnw=="
}

avatar_set

User clicks on Save button after setting their avatar.

  "event": "avatar_set",
  "value": {
    "user_id": "kit7693",
    "event_id": "144444",
    "platform": "none",
    "screen_size": "629x919",
    "platformUserAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36",
    "project": "dev"
  },
  "key": "JGMHFqonZuwKeoly+bzNnw=="
}

Settings

settings_opened

User clicks on the Settings button.

  "event": "settings_opened",
  "value": {
    "user_id": "kit7693",
    "event_id": "144444",
    "platform": "none",
    "screen_size": "629x919",
    "platformUserAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36",
    "project": "dev"
  },
  "key": "JGMHFqonZuwKeoly+bzNnw=="
}

settings_closed

User clicks on the close icon of the settings (x).

  "event": "settings_closed",
  "value": {
    "user_id": "kit7693",
    "event_id": "144444",
    "platform": "none",
    "screen_size": "629x919",
    "platformUserAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36",
    "project": "dev"
  },
  "key": "JGMHFqonZuwKeoly+bzNnw=="
}

profile_opened

User clicks on the Profile button.

  "event": "profile_opened",
  "value": {
    "user_id": "kit7693",
    "event_id": "144444",
    "platform": "none",
    "screen_size": "629x919",
    "platformUserAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36",
    "project": "dev"
  },
  "key": "JGMHFqonZuwKeoly+bzNnw=="
}

change_avatar_pressed

User clicks on the Change Avatar button.

  "event": "change_avatar_pressed",
  "value": {
    "user_id": "kit7693",
    "event_id": "144444",
    "platform": "none",
    "screen_size": "629x919",
    "platformUserAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36",
    "project": "dev"
  },
  "key": "JGMHFqonZuwKeoly+bzNnw=="
}

avatar_changed

User changes their avatar (selects a different avatar and clicks Save).

  "event": "avatar_changed",
  "value": {
    "user_id": "kit7693",
    "event_id": "144444",
    "platform": "none",
    "screen_size": "629x919",
    "platformUserAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36",
    "project": "dev"
  },
  "key": "JGMHFqonZuwKeoly+bzNnw=="
}

change_name_pressed

User clicks on the Change button in the name input field.

  "event": "change_name_pressed",
  "value": {
    "user_id": "kit7693",
    "event_id": "144444",
    "platform": "none",
    "screen_size": "629x919",
    "platformUserAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36",
    "project": "dev"
  },
  "key": "JGMHFqonZuwKeoly+bzNnw=="
}

name_changed

User changes their name (re-sets the name).

  "event": "name_changed",
  "value": {
    "user_id": "kit7693",
    "event_id": "144444",
    "platform": "none",
    "screen_size": "629x919",
    "platformUserAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36",
    "project": "dev"
  },
  "key": "JGMHFqonZuwKeoly+bzNnw=="
}

banned_opened

User clicks on the Blocked button.

  "event": "banned_opened",
  "value": {
    "user_id": "kit7693",
    "event_id": "144444",
    "platform": "none",
    "screen_size": "629x919",
    "platformUserAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36",
    "project": "dev"
  },
  "key": "JGMHFqonZuwKeoly+bzNnw=="
}

unblocking_pressed

User clicks on the Unblock button, action is performed.

  "event": "unblocking_pressed",
  "value": {
    "user_id": "kit7693",
    "event_id": "144444",
    "platform": "none",
    "screen_size": "629x919",
    "platformUserAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36",
    "project": "dev"
  },
  "key": "JGMHFqonZuwKeoly+bzNnw=="
}

delete_profile_pressed

User clicks on the Delete Profile button.

  "event": "delete_profile_pressed",
  "value": {
    "user_id": "kit7693",
    "event_id": "144444",
    "platform": "none",
    "screen_size": "629x919",
    "platformUserAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36",
    "project": "dev"
  },
  "key": "JGMHFqonZuwKeoly+bzNnw=="
}

delete_profile_confirmed

User confirms the deletion of the profile.

  "event": "delete_profile_confirmed",
  "value": {
    "user_id": "kit7693",
    "event_id": "144444",
    "platform": "none",
    "screen_size": "629x919",
    "platformUserAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36",
    "project": "dev"
  },
  "key": "JGMHFqonZuwKeoly+bzNnw=="
}

delete_profile_cancelled

User cancels the deletion of the profile.

  "event": "delete_profile_cancelled",
  "value": {
    "user_id": "kit7693",
    "event_id": "144444",
    "platform": "none",
    "screen_size": "629x919",
    "platformUserAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36",
    "project": "dev"
  },
  "key": "JGMHFqonZuwKeoly+bzNnw=="
}

account_restored

User restores the account.

  "event": "account_restored",
  "value": {
    "user_id": "kit7693",
    "event_id": "144444",
    "platform": "none",
    "screen_size": "629x919",
    "platformUserAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36",
    "project": "dev"
  },
  "key": "JGMHFqonZuwKeoly+bzNnw=="
}

User-list

user-list_opened

User opens the user list (clicks on the participant counter).

  "event": "user-list_opened",
  "value": {
    "user_id": "kit7693",
    "event_id": "144444",
    "platform": "none",
    "screen_size": "629x919",
    "platformUserAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36",
    "project": "dev"
  },
  "key": "JGMHFqonZuwKeoly+bzNnw=="
}

user-list_closed

User closes the user list (clicks on (x)).

  "event": "user-list_closed",
  "value": {
    "user_id": "kit7693",
    "event_id": "144444",
    "platform": "none",
    "screen_size": "629x919",
    "platformUserAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36",
    "project": "dev"
  },
  "key": "JGMHFqonZuwKeoly+bzNnw=="
}

Messaging

message_sent

message_type = text / sticker (sticker_sent is not removed) / reply / bot_request\
replyedUserId = user1234 replyedMessageId = msg5678

Message is sent\
message_type added since 05/12/2023 replyedUserId and replyedMessageId added since 21/05/2024

  "event": "message_sent",
  "value": {
    "user_id": "kit7693",
    "event_id": "144444",
    "messageType": "text",
    "text": "Hello, World!",
    "platform": "none",
    "screen_size": "629x919",
    "platformUserAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36",
    "source": "room",
    "message_id": 71126,
    "project": "dev",
    "replyedUserId": "user1234", 
    "replyedMessageId": "msg5678"
  },
  "key": "JGMHFqonZuwKeoly+bzNnw=="
}

message_changed

User edits the message.

  "event": "message_changed",
  "value": {
    "user_id": "kit7693",
    "event_id": "144444",
    "platform": "none",
    "screen_size": "629x919",
    "platformUserAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36",
    "project": "dev"
  },
  "key": "JGMHFqonZuwKeoly+bzNnw=="
}

scrolled_to_unread_messages

User scrolls to unread/latest messages by clicking the down arrow.

  "event": "scrolled_to_unread_messages",
  "value": {
    "user_id": "kit7693",
    "event_id": "144444",
    "platform": "none",
    "screen_size": "629x919",
    "platformUserAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36",
    "project": "dev"
  },
  "key": "JGMHFqonZuwKeoly+bzNnw=="
}

message_text_copied

User copies the text of a message.

  "event": "message_text_copied",
  "value": {
    "user_id": "kit7693",
    "event_id": "144444",
    "platform": "none",
    "screen_size": "629x919",
    "platformUserAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36",
    "project": "dev"
  },
  "key": "JGMHFqonZuwKeoly+bzNnw=="
}

Moderation by User

report_pressed

User clicks on the "Reports" menu item.

  "event": "report_pressed",
  "value": {
    "user_id": "kit7693",
    "event_id": "144444",
    "platform": "none",
    "screen_size": "629x919",
    "platformUserAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36",
    "project": "dev"
  },
  "key": "JGMHFqonZuwKeoly+bzNnw=="
}

report_sent

type - type of report as a string (Violence, Provocations, Personal Details, Flood, Spam, Fraud, Begging, Other)

User confirms sending the selected report item.

  "event": "report_sent",
  "value": {
    "user_id": "kit7693",
    "event_id": "144444",
    "reportType": "violence",
    "platform": "none",
    "screen_size": "629x919",
    "platformUserAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36",
    "project": "dev"
  },
  "key": "JGMHFqonZuwKeoly+bzNnw=="
}

report_cancelled

type - type of report as a string (Violence, Provocations, Personal Details, Flood, Spam, Fraud, Begging, Other)

User cancels sending the selected report item.

  "event": "avatar_set",
  "value": {
    "user_id": "kit7693",
    "event_id": "144444",
    "platform": "none",
    "screen_size": "629x919",
    "platformUserAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36",
    "project": "dev"
  },
  "key": "JGMHFqonZuwKeoly+bzNnw=="
}

Emotions

emo_panel_pressed

User opens the Emotion Panel (taps on the heart icon).

  "event": "emo_panel_pressed",
  "value": {
    "user_id": "kit7693",
    "event_id": "144444",
    "platform": "none",
    "screen_size": "629x919",
    "platformUserAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36",
    "project": "dev"
  },
  "key": "JGMHFqonZuwKeoly+bzNnw=="
}

emoji_sent

sending the ordinal number of the emoji as a parameter, where the far left one is number 1

User sends an emoji.

  "event": "emo_panel_pressed",
  "value": {
    "user_id": "kit7693",
    "event_id": "144444",
    "platform": "none",
    "emoji_number": "1",
    "screen_size": "629x919",
    "platformUserAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36",
    "project": "dev"
  },
  "key": "JGMHFqonZuwKeoly+bzNnw=="
}

Poll/Quiz

pq_opened

type - poll type, quiz type, multiple_poll type, multiple_quiz type user_status - user status (authorized or not) question - question text img - whether the poll has an image (true, false)

User opens a poll in which they have not yet participated.

  "event": "pq_opened",
  "value": {
    "user_id": "6666",
    "event_id": "123",
    "screen_size": "3440x556",
    "platform": "none",
    "platformUserAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36",
    "type": "poll",
    "question": "123",
    "img": false,
    "user_status": true,
    "project": "test-stage"
  },
  "key": "JGMHFqonZuwKeoly+bzNnw=="
}

pq_viewed

type - poll type, quiz type, multiple_poll type, multiple_quiz type question - question text img - whether the poll has an image (true, false)

User opens a poll to view the results.

  "event": "pq_viewed",
  "value": {
    "user_id": "6666",
    "event_id": "123",
    "screen_size": "3440x556",
    "platform": "none",
    "platformUserAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36",
    "type": "poll",
    "question": "123",
    "img": false,
    "project": "test-stage"
  },
  "key": "JGMHFqonZuwKeoly+bzNnw=="
}

pq_answer_sent

type - poll type, quiz type, multiple_poll type, multiple_quiz type question - question text answer - answer text, for multiple answers, multiple options are sent as separate strings img - whether the poll has an image (true, false)

User votes/answers the poll.

  "event": "pq_answer_sent",
  "value": {
    "user_id": "6666",
    "event_id": "123",
    "screen_size": "3440x556",
    "platform": "none",
    "platformUserAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36",
    "type": "poll",
    "question": "123",
    "img": false,
    "answer": "123",
    "project": "test-stage"
  },
  "key": "JGMHFqonZuwKeoly+bzNnw=="
}

pq_closed

type - poll type, quiz type, multiple_poll type, multiple_quiz type question - question text img - whether the poll has an image (true, false)

User closes the poll.

  "event": "pq_closed",
  "value": {
    "user_id": "6666",
    "event_id": "123",
    "screen_size": "3440x556",
    "platform": "none",
    "platformUserAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36",
    "type": "poll",
    "question": "123",
    "img": false,
    "project": "test-stage"
  },
  "key": "JGMHFqonZuwKeoly+bzNnw=="
}

Marketing offers

hl_viewed

hl_content - highlight text (if there is a heading, if there is no text, pass none)

User views the highlight.

  "event": "hl_viewed",
  "value": {
    "user_id": "kit7693",
    "hl_content": "4141",
    "event_id": "144444",
    "platform": "none",
    "screen_size": "629x919",
    "platformUserAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36",
    "project": "dev"
  },
  "key": "JGMHFqonZuwKeoly+bzNnw=="
}

hl_button_pressed

hl_content - highlight text (if there is a heading, if there is no text, pass none) hl_button_text - text on the button

User clicks on the button in the highlight.

  "event": "hl_button_pressed",
  "value": {
    "user_id": "kit7693",
    "hl_content": "4141",
    "hl_button_text": "See more",
    "event_id": "144444",
    "platform": "none",
    "screen_size": "629x919",
    "platformUserAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36",
    "project": "dev"
  },
  "key": "JGMHFqonZuwKeoly+bzNnw=="
}

Stream

bad_connection

Agora indicates that the user has poor connection quality.

  "event": "bad_connection",
  "value": {
    "user_id": "kit7693",
    "event_id": "144444",
    "platform": "none",
    "screen_size": "629x919",
    "platformUserAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36",
    "project": "dev"
  },
  "key": "JGMHFqonZuwKeoly+bzNnw=="
}

Feedback form

ff_stream_evaluated

evaluation - rating from 1 to 5

User rates the stream.

  "event": "ff_stream_evaluated",
  "value": {
    "user_id": "kit7693",
    "evaluation": 2,
    "event_id": "144444",
    "platform": "none",
    "screen_size": "629x919",
    "platformUserAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36",
    "project": "dev"
  },
  "key": "JGMHFqonZuwKeoly+bzNnw=="
}

ff_stream_type_of_problem_selected

type - dn_work, interruptions, microphone

User selects the type of problem.

  "event": "ff_stream_type_of_problem_selected",
  "value": {
    "user_id": "kit7693",
    "type": "dn_work",
    "event_id": "144444",
    "platform": "none",
    "screen_size": "629x919",
    "platformUserAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36",
    "project": "dev"
  },
  "key": "JGMHFqonZuwKeoly+bzNnw=="
}

ff_stream_connection_tested

speed - speed measurement result ping - connection ping

User performs an internet connection test.

  "event": "ff_stream_connection_tested",
  "value": {
    "user_id": "kit7693",
    "speed": "30152.28 Kbs",
    "event_id": "144444",
    "platform": "none",
    "screen_size": "629x919",
    "platformUserAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36",
    "project": "dev"
  },
  "key": "JGMHFqonZuwKeoly+bzNnw=="
}

ff_stream_success

User completes all steps.

  "event": "ff_stream_success",
  "value": {
    "user_id": "kit7693",
    "event_id": "144444",
    "platform": "none",
    "screen_size": "629x919",
    "platformUserAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36",
    "project": "dev"
  },
  "key": "JGMHFqonZuwKeoly+bzNnw=="
}

ff_stream_closed

step - at which step the user closed the form

User closes the form.

  "event": "ff_stream_closed",
  "value": {
    "user_id": "kit7693",
    "step": 5,
    "event_id": "144444",
    "platform": "none",
    "screen_size": "629x919",
    "platformUserAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36",
    "project": "dev"
  },
  "key": "JGMHFqonZuwKeoly+bzNnw=="
}

Reactions

message_reaction_sent

sending the ordinal number of the emoji as a parameter, where the far left one is number 1

User sends a reaction to a message.

  "event": "message_reaction_sent",
  "value": {
    "user_id": "kit7693",
    "message_reaction_number": 2,
    "event_id": "144444",
    "platform": "none",
    "screen_size": "629x919",
    "platformUserAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36",
    "project": "dev"
  },
  "key": "JGMHFqonZuwKeoly+bzNnw=="
}

Stickers

sticker_button_pressed

User opens the sticker panel.

  "event": "sticker_button_pressed",
  "value": {
    "user_id": "kit7693",
    "event_id": "144444",
    "platform": "none",
    "screen_size": "629x919",
    "platformUserAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36",
    "project": "dev"
  },
  "key": "JGMHFqonZuwKeoly+bzNnw=="
}

sticker_sent

sending the ordinal number of the sticker as a parameter, where the far left one is number 1

User sends a sticker in the chat.

  "event": "sticker_sent",
  "value": {
    "user_id": "6666",
    "event_id": "123",
    "screen_size": "3440x556",
    "platform": "none",
    "platformUserAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36",
    "sticker_number": 4,
    "project": "test-stage"
  },
  "key": "JGMHFqonZuwKeoly+bzNnw=="
}

Slow mode

message_sending_blocked_slowmode

Message sending is blocked due to slow mode.

  "event": "message_sending_blocked_slowmode",
  "value": {
    "user_id": "kit7693",
    "event_id": "144444",
    "platform": "none",
    "screen_size": "629x919",
    "platformUserAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36",
    "project": "dev"
  },
  "key": "JGMHFqonZuwKeoly+bzNnw=="
}

Copybetting

betshare_list_opened

User clicks on the Share button in the chat (gray button).

  "event": "betshare_list_opened",
  "value": {
    "user_id": "kit7693",
    "event_id": "144444",
    "platform": "none",
    "screen_size": "629x919",
    "platformUserAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36",
    "project": "dev"
  },
  "key": "JGMHFqonZuwKeoly+bzNnw=="
}

betshare_list_bet_shared

User clicks on the "Share" button in the list of bets (green button).

  "event": "betshare_list_bet_shared",
  "value": {
    "user_id": "123",
    "event_id": "123",
    "screen_size": "500x1000",
    "platform": "none",
    "platformUserAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36",
 "bet": {
"id": 783,
"data": "{\"betType\":\"SYSTEM\",\"status\":3,\"totalFactor\":3.6,\"orderDate\":\"2024-02-06T18:29:17.163Z\",\"barcode\":\"167798842222221111312621221\",\"positions\":[{\"positionId\":1,\"factorValue\":3.6,\"status\":3,\"eventId\":\"174848522722\",\"eventTitle\":\"Man Utd - Southampton\",\"eventDate\":\"2024-02-076T18:29:17.163Z\",\"outcomeId\":\"194749637022\",\"outcomeGroupTitle\":\"Over/under:\",\"outcomeTitle\":\"Over\",\"blockTitle\":\"2.5\",\"additionalValue\":null,\"sportTypeTitle\":\"FootBall\",\"sportTypeId\":128},{\"positionId\":2,\"factorValue\":3.6,\"status\":3,\"eventId\":\"174848522722\",\"eventTitle\":\"Man Utd - Southampton\",\"eventDate\":\"2024-02-07T18:29:17.163Z\",\"outcomeId\":\"194749637022\",\"outcomeGroupTitle\":\"Results:\",\"outcomeTitle\":\"Win1\",\"blockTitle\":null,\"additionalValue\":null,\"sportTypeTitle\":\"FootBall\",\"sportTypeId\":128}]}",
"status": 3,
"barcode": "167798842222221111312621221",
"timesRepeated": 0,
"betType": "SYSTEM",
"totalFactor": 3.6,
"orderDate": "2024-02-06T18:29:17.163Z",
"positions": [
{
"positionId": 1,
"factorValue": 3.6,
"status": 3,
"eventId": "174848522722",
"eventTitle": "Man Utd - Southampton",
"eventDate": "2024-02-076T18:29:17.163Z",
"outcomeId": "194749637022",
"outcomeGroupTitle": "Over/under:",
"outcomeTitle": "Over",
"blockTitle": "2.5",
"additionalValue": null,
"sportTypeTitle": "FootBall",
"sportTypeId": 128
},
{
"positionId": 2,
"factorValue": 3.6,
"status": 3,
"eventId": "174848522722",
"eventTitle": "Man Utd - Southampton",
"eventDate": "2024-02-07T18:29:17.163Z",
"outcomeId": "194749637022",
"outcomeGroupTitle": "Results:",
"outcomeTitle": "Win1",
"blockTitle": null,
"additionalValue": null,
"sportTypeTitle": "FootBall",
"sportTypeId": 128
}
]
},
    "project": "dev"
  },
  "key": "JGMHFqonZuwKeoly+bzNnw=="
}

betshare_chat_repeated

User clicks on the "Repeat Bet" button in the chat.

  "event": "betshare_chat_repeated",
  "value": {
    "user_id": "321",
    "event_id": "174848522722,174848522722",
    "screen_size": "500x1000",
    "platform": "none",
    "platformUserAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36",
    "bet": {
      "id": 783,
      "data": "{\"betType\":\"SYSTEM\",\"status\":3,\"totalFactor\":3.6,\"orderDate\":\"2024-02-06T18:29:17.163Z\",\"barcode\":\"167798842222221111312621221\",\"positions\":[{\"positionId\":1,\"factorValue\":3.6,\"status\":3,\"eventId\":\"174848522722\",\"eventTitle\":\"Man Utd - Southampton\",\"eventDate\":\"2024-02-076T18:29:17.163Z\",\"outcomeId\":\"194749637022\",\"outcomeGroupTitle\":\"Over/under:\",\"outcomeTitle\":\"Over\",\"blockTitle\":\"2.5\",\"additionalValue\":null,\"sportTypeTitle\":\"FootBall\",\"sportTypeId\":128},{\"positionId\":2,\"factorValue\":3.6,\"status\":3,\"eventId\":\"174848522722\",\"eventTitle\":\"Man Utd - Southampton\",\"eventDate\":\"2024-02-07T18:29:17.163Z\",\"outcomeId\":\"194749637022\",\"outcomeGroupTitle\":\"Results:\",\"outcomeTitle\":\"Win1\",\"blockTitle\":null,\"additionalValue\":null,\"sportTypeTitle\":\"FootBall\",\"sportTypeId\":128}]}",
      "status": 3,
      "barcode": "167798842222221111312621221",
      "timesRepeated": 0,
      "betType": "SYSTEM",
      "totalFactor": 3.6,
      "orderDate": "2024-02-06T18:29:17.163Z",
      "positions": [
        {
          "positionId": 1,
          "factorValue": 3.6,
          "status": 3,
          "eventId": "174848522722",
          "eventTitle": "Man Utd - Southampton",
          "eventDate": "2024-02-076T18:29:17.163Z",
          "outcomeId": "194749637022",
          "outcomeGroupTitle": "Over/under:",
          "outcomeTitle": "Over",
          "blockTitle": "2.5",
          "additionalValue": null,
          "sportTypeTitle": "FootBall",
          "sportTypeId": 128
        },
        {
          "positionId": 2,
          "factorValue": 3.6,
          "status": 3,
          "eventId": "174848522722",
          "eventTitle": "Man Utd - Southampton",
          "eventDate": "2024-02-07T18:29:17.163Z",
          "outcomeId": "194749637022",
          "outcomeGroupTitle": "Results:",
          "outcomeTitle": "Win1",
          "blockTitle": null,
          "additionalValue": null,
          "sportTypeTitle": "FootBall",
          "sportTypeId": 128
        }
      ]
    },
    "project": "dev"
  },
  "key": "JGMHFqonZuwKeoly+bzNnw=="
}

Profile

profile_opened

Event of viewing an open profile.

  "event": "profile_opened",
  "value": {
    "user_id": "kit7693",
    "source": "menu",
    "profile_user_id": 437216553,
    "event_id": "144444",
    "platform": "none",
    "screen_size": "629x919",
    "platformUserAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36",
    "project": "dev"
  },
  "key": "JGMHFqonZuwKeoly+bzNnw=="
}

Records

records_player

View = minimized/expanded

User clicks on the collapse/expand button of the player.

  "event": "records_player",
  "value": {
    "user_id": "kit7693",
    "view": "minimized",
    "event_id": "144444",
    "platform": "none",
    "screen_size": "629x919",
    "platformUserAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36",
    "project": "dev"
  },
  "key": "JGMHFqonZuwKeoly+bzNnw=="
}

records_play

time_stamp = 1/2/3.../50 - second of audio playback when the button is pressed

User clicks on the Play button.

  "event": "records_play",
  "value": {
    "user_id": "kit7693",
    "time_stamp": "0",
    "event_id": "144444",
    "platform": "none",
    "screen_size": "629x919",
    "platformUserAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36",
    "project": "dev"
  },
  "key": "JGMHFqonZuwKeoly+bzNnw=="
}

records_pause

User clicks on the Pause button.

  "event": "records_pause",
  "value": {
    "user_id": "kit7693",
    "time_stamp": "2",
    "event_id": "144444",
    "platform": "none",
    "screen_size": "629x919",
    "platformUserAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36",
    "project": "dev"
  },
  "key": "JGMHFqonZuwKeoly+bzNnw=="
}

records_forward

Duration = 15

User clicks on the Forward button.

  "event": "records_forward",
  "value": {
    "user_id": "kit7693",
    "Duration": 15,
    "event_id": "144444",
    "platform": "none",
    "screen_size": "629x919",
    "platformUserAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36",
    "project": "dev"
  },
  "key": "JGMHFqonZuwKeoly+bzNnw=="
}

records_back

Duration = 15

User clicks on the Back button.

  "event": "records_back",
  "value": {
    "user_id": "kit7693",
    "Duration": 15,
    "event_id": "144444",
    "platform": "none",
    "screen_size": "629x919",
    "platformUserAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36",
    "project": "dev"
  },
  "key": "JGMHFqonZuwKeoly+bzNnw=="
}

records_speed_changed

Speed - 1/1.5/2

User changes the playback speed.

  "event": "records_speed_changed",
  "value": {
    "user_id": "kit7693",
    "Speed": 1.5,
    "event_id": "144444",
    "platform": "none",
    "screen_size": "629x919",
    "platformUserAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36",
    "project": "dev"
  },
  "key": "JGMHFqonZuwKeoly+bzNnw=="
}

Session time

session_time

Duration = 10/20/30/60...

Tracking the length of user's session in the room.

  "event": "session_time",
  "value": {
    "user_id": "kit7693",
    "duration": 6240,
    "event_id": "144444",
    "platform": "none",
    "screen_size": "629x919",
    "platformUserAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36",
    "project": "dev"
  },
  "key": "JGMHFqonZuwKeoly+bzNnw=="
}

Info Pop-ups

ip_viewed

header = Welcome to... - text of the header, if there is no header, pass none show = once/multiple_times show_when = on_each_entry/once_daily - type of display selected

User is shown a pop-up.

  "event": "ip_viewed",
  "value": {
    "user_id": "kit7693",
    "header": "Welcome to the chat!",
    "show": "multiple_times",
    "show_when": "on_each_entry",
    "event_id": "144444",
    "platform": "none",
    "screen_size": "629x919",
    "platformUserAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36",
    "project": "dev"
  },
  "key": "JGMHFqonZuwKeoly+bzNnw=="
}

ip_button_pressed

User clicks on the button in the pop-up.

  "event": "ip_button_pressed",
  "value": {
    "user_id": "kit7693",
    "header": "Hello!",
    "button_text": "Hello!",
    "content": "close",
    "show": "multiple_times",
    "show_when": "on_each_entry",
    "event_id": "144444",
    "platform": "none",
    "screen_size": "629x919",
    "platformUserAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36",
    "project": "dev"
  },
  "key": "JGMHFqonZuwKeoly+bzNnw=="
}

Autotranslate

autotranslation_toggle

status = on/off

Status changed by the user by pressing the button

    "event": "autotranslation_toggle",
    "value": {
        "event_id": "test_33",
        "screen_size": "2056x1164",
        "platform": "none",
        "platformUserAgent": “”
        "source": "room",
        "status": "on",
        "project": "dev",
        "user_id": "454334341212"
    },
}

autotranslation_language

language_selected = english/spanish/...\
source = modal/settings

Language selected by the user\
Interface through which the user changed the language

    "event": "autotranslation_language",
    "value": {
        "event_id": "test_33",
        "screen_size": "2056x1164",
        "platform": "none",
        "platformUserAgent": "",
        "source": "settings",
        "language_selected": "az",
        "project": "dev",
        "user_id": "454334341212"
    },
}

User following

following_filter_toggle

status = on/off

Triggered when the user presses the button to filter chat content based on following status.


{
    "event": "following_filter_toggle",
    "value": {
        "event_id": "test_33",
        "screen_size": "2056x1164",
        "platform": "none",
        "platformUserAgent": “”
        "source": "room",
        "status": "on",
        "project": "dev",
        "user_id": "454334341212"
        "nickname": "Adel" – новое поле
    },
}

/


Properties Contained in Each Event

The table below outlines the properties contained in each event, ensuring you have all the necessary information to process and analyze user interactions effectively:

PropertiesDescriptionExample
user_idUser IDBUmXxFyNMNE6FUVhL+ECSQ==
event_idRoom ID16888417
platform*platformweb, ios, android (*—if sent via GET)
platformUserAgentplatformUserAgentMozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36
screen_sizePhysical screen size360x800
projectproject idpartner-prod

Q&A on Data Storage and Processing

  1. Location of Storage and Processing
    Data is processed and stored entirely within Google Cloud infrastructure. Data distribution is carried out based on territorial principles to ensure compliance with local data protection laws and regulations. For instance, data subject to GDPR regulations is stored in Google Cloud’s European regions. This approach provides enhanced protection a complete understanding of users’ personal data and ensures compliance with GDPR requirements for data processing and storage within the European Union. We strictly adhere to Google Cloud’s policies and technical security measures to safeguard our users’ data in line with best practices and international standards.

  2. How Long?
    We retain users’ personal data only as long as necessary to provide our services in accordance with the contract and GDPR requirements. Once the data is no longer needed for these purposes, it is deleted or anonymized. Our processes ensure compliance with GDPR’s principle of storage limitation, and we regularly review stored data to remove any unnecessary information.

Scenarios and Retention Periods for Data Deletion:

a. End of Collaboration with a Partner. When the collaboration (contract) with a partner ends, we delete all data accumulated during the partnership, except for information that may be required by regulators. We ensure no information is retained longer than necessary.

b. User-Initiated Data Deletion:

  • If a user or their representative requests data deletion from the platform where the chat is integrated, all data related to the user is erased.

  • Users can delete their accounts through the chat interface. After deletion, chat messages what events are anonymized immediately, and all other user data is deleted within 30 days of the request. During this 30-day period, the user has the option to recover their data. After this period, all user data stored on Watchers’ side is permanently deleted.

  • Users can also delete their messages sent in the chat. Once deleted, the message becomes hidden for all chat users and is marked as deleted in the database. After 30 days, the message is also removed from the message feed in the admin panel. However, if the message had any complaints filed against it, it will continue to appear in the report list. Once the complaints are reviewed and processed, the message will be moved to the archive

c. API Tracked, including payload examples for immediate data deletion. We provide an API that allows Watchers platform users to send requests for the immediate deletion of all data associated with each specific user, except for data required to meet regulatory requirements. This ensures partners can respond to user deletion requests promptly and securely, further enhancing GDPR compliance.

  1. What Type of Data is Stored and Processed
    To ensure the operation of our chats and analyze user interactions, we work with two types of data:
  • Operational Data: These data are necessary for the direct operation of the chats. They include the user's name or nickname, which may be classified as personal data. We use these data solely so that users can use our chats without issues.
  • Chat Name / Nickname
  • IP (optional)
  • User messages
  • Analytical Data: These data are used event, refer to analyze how users interact with our chats and which features they use. For analytics, we apply anonymized data, meaning they contain no personal information about the user. detailed event list section below. This allows us section will help you configure your systems to improve our services without compromising user confidentiality.
    Thus, we clearly differentiate data necessary for the operation of the chats (operational) handle and data necessary for analysis and improvement of our services (analytical), while ensuring the protection of our users' personal information.