Overview
Integration Options
Integration
Use Case
Best For
JavaScript SDK
<script>
(function(w,d,i){
w.Cueflow=w.Cueflow||{q:[],
init:function(u){this.q.push(['init',u])},
update:function(u){this.q.push(['update',u])},
track:function(e,p){this.q.push(['track',e,p])},
check:function(){this.q.push(['check'])},
shutdown:function(){this.q.push(['shutdown'])}
};
var s=d.createElement('script');s.async=1;
s.src='https://script.cueflow.so/embed/cueflow.js';
s.setAttribute('data-workspace-id',i);
d.head.appendChild(s);
})(window,document,'YOUR_WORKSPACE_ID');
</script>
<script>
Cueflow.init({
id: 'user-123',
email: '[email protected]',
name: 'Jane Smith'
});
</script>REST API
Getting Your Credentials
Workspace ID (for JavaScript SDK)
API Key (for REST API)
Next Steps
Last updated