Quick Start
Get up and running with Cueflow in just a few minutes.
Step 1: Create Your Account
Go to app.cueflow.so and sign up with your email
Check your inbox for the magic link and click to verify
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
Go to Messages in the sidebar
Click New Message
Choose a message type (Banner, Modal, etc.)
Configure your content and targeting
Click Publish
That's it! Your message will now appear to matching users.
Next Steps
Installing the Embed Script - Detailed installation guide
Your First Message - Step-by-step message creation
Targeting Rules - Show messages to the right users
Last updated