Installing Centerflow
Integrating Centerflow with your website or e-commerce platform is straightforward. While the primary method involves adding a JavaScript tracking snippet to the <head> section of your site for comprehensive event and workflow tracking, Centerflow also offers a variety of SDKs and integrations to simplify this process.
How to integrate:
This document will guide you through the standard tracking script installation. For specific SDK or platform integration instructions, please refer to our 'Integrations & SDKs' section.
Here's an example of a tracking script that you can utilize, but be sure to substitute the encodedData value with the one provided in your Centerflow workspace:
<!-- Centerflow tracking code -->
<script>
(function() {
var applicationUrl = "https://app.centerflow.nl";
var encodedData = "YOUR_ENCODED_DATA";
var script = document.createElement("script");
script.async = true;
script.src = applicationUrl + "/tracker.js?data=" + encodedData + "&v=" + new Date().getTime();
document.head.appendChild(script);
})();
</script>Replace YOUR_ENCODED_DATA with the encoded string provided in your Centerflow workspace settings.