Quick Start

Get up and running with Cueflow in just a few minutes.

Step 1: Create Your Account

  1. Go to app.cueflow.so/signuparrow-up-right and sign up with your email

  2. Check your inbox for the magic link and click to verify

  3. Create your first workspace by entering a name for your team or product

Step 2: Add the Script

Add this loader script in your application's <head> tag:

<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>

Find your Workspace ID on the Developer Guidearrow-up-right page in the sidebar.

Step 3: Initialize with User Data

After the script loads, initialize Cueflow with your user's information:

Step 4: Create Your First Message

  1. Go to Messagesarrow-up-right in the sidebar

  2. Click New Message

  3. Choose a message type (Banner, Modal, etc.)

  4. Configure your content and targeting

  5. Click Publish

That's it! Your message will now appear to matching users.

Next Steps

Last updated