Quick Start

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

Step 1: Create Your Account

  1. Go to app.cueflow.so 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: Install the Embed Script

Add the Cueflow script to your website or app. Place this code before the closing </body> tag:

<script src="https://script.cueflow.so/embed/cueflow.js"
        data-workspace-id="YOUR_WORKSPACE_ID"></script>

Find your Workspace ID on the Install page in the sidebar.

Step 3: Initialize with User Data

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

<script>
  Cueflow.init({
    id: 'user-123',           // Required - unique user ID
    email: '[email protected]',
    name: 'Jane Smith',
    plan: 'pro'               // Any custom properties
  });
</script>

Step 4: Create Your First Message

  1. Go to Messages 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