Click to choose or drag a CSV file here Columns auto-mapped: name, email, phone, company, title, linkedin, stage, country…
Map Your Columns
⚠ Unknown Stages — Map Before Importing
Skipped Rows (suspicious names / no identifier)
Account Data Cleanup
Auditing accounts…
Add Task
Settings
Kipplo Enrichment API
Credits used
0 / 50
API Key
Person Enrichment Integration ID
"Enrich Person Company Data By LinkedIn Profile URL" — 1 credit/record
Company Enrichment Integration ID
"Enrich Company Data by Domain/Company Name" — 1 credit/record
Email Enrichment Integration ID
"Enrich Contact Details By LinkedIn URL" — per-field pricing
Credit Limit (for tracker)
CRM Behaviour
Stale contact threshold (days)
Contacts not reached out to in this many days show an orange ● in the table
Tags — one-time SQL migration
Run once in your Supabase SQL Editor to enable tags:
ALTER TABLE public.user_contacts ADD COLUMN IF NOT EXISTS tags text[] DEFAULT '{}';
Next Action Engine — one-time SQL migration
Run once to enable automatic task creation from call dispositions:
ALTER TABLE public.tasks
ADD COLUMN IF NOT EXISTS action_type text,
ADD COLUMN IF NOT EXISTS due_time text,
ADD COLUMN IF NOT EXISTS priority text DEFAULT 'Medium',
ADD COLUMN IF NOT EXISTS status text DEFAULT 'Pending';
Deals ownership — one-time SQL migration
Run once to add per-user ownership to deals:
ALTER TABLE public.deals
ADD COLUMN IF NOT EXISTS user_id uuid REFERENCES auth.users(id),
ADD COLUMN IF NOT EXISTS owner_id uuid REFERENCES auth.users(id);
-- Backfill your existing deals (replace with your user ID from Auth > Users):
-- UPDATE public.deals SET user_id = '<your-user-id>' WHERE user_id IS NULL;