Tracking User Data in Cincopa Analytics
If you have your own members' site and want to track your users by email, name, or account ID on Cincopa analytics, you can easily integrate these details into your Cincopa player. By setting the user data, such as email, name, and account ID, it will be sent with every video view to Cincopa, allowing you to later access the analytics and search for views by specific users.
How to Add User Tracking Data
To track user data like email, name, and account ID, simply add the following script to your page. This will ensure that the specified data is sent with every video view.
Example:
<script type="text/javascript">
var cincopa = cincopa || {};
cincopa.analytics = {
email: "john@debug.com",
name: "John Doe",
acc_id: "123456"
};
</script>