Contacts are the users of your product who receive your in-app messages. They're automatically created when users interact with your app through the embed script.
How Contacts are Created
Contacts are created automatically when you call Cueflow.init() in your app:
Cueflow.init({id:'user-123',// Creates or updates contactemail:'[email protected]',name:'Jane Smith',plan:'pro'});
Each unique id creates a new contact. If the ID already exists, the contact is updated with new data.
Viewing Contacts
Contact List
Go to Contacts in the sidebar to see all contacts:
Search by name, email, or ID
Sort by last seen, signup date, or name
Filter by properties
Paginate through large lists
Contact Details
Click any contact to see:
Profile - Name, email, avatar, and properties
Attributes - Standard and custom properties
Events - Actions they've taken
Messages - What they've seen and interacted with
Contact Properties
Standard Properties
These properties are built-in and available for all contacts:
Property
Type
Description
id
String
Required. Your unique user identifier
email
String
User's email address
name
String
Display name
phone
String
Phone number
avatarUrl
String
Profile image URL
role
String
User role (e.g., "admin", "member")
plan
String
Subscription plan
signedUpAt
Date
When they signed up
lastSeenAt
Date
Last activity (auto-updated)
Custom Attributes
Create your own properties for any data you need. See Custom Attributes.
Updating Contacts
Via Embed Script
Update contacts when their data changes:
Via API
Use the server-side API to update contacts programmatically:
Via Dashboard
Go to Contacts
Click on a contact
Edit properties directly
Changes apply immediately
Searching and Filtering
Search
Search contacts by:
Email address
Name
External ID
Filters
Filter the contact list by any property:
Plan equals "pro"
Signed up in last 7 days
Has custom attribute
Exporting Contacts
Export your contact list:
Go to Contacts
Apply any filters
Click Export
Download CSV file
Deleting Contacts
To remove a contact:
Go to Contacts
Click on the contact
Click Delete in the menu
Confirm deletion
Deleting a contact removes all their data including events, message interactions, and feedback responses. This cannot be undone.
Contact Identification
The ID Field
The id field is the most important property. It must be: