diff --git a/app/src/App.tsx b/app/src/App.tsx index c067962a..993b29d8 100644 --- a/app/src/App.tsx +++ b/app/src/App.tsx @@ -10,6 +10,7 @@ import { Sentinel } from '@/components/modules/Sentinel'; import { Inventory } from '@/components/modules/Inventory'; import { Settings } from '@/components/modules/Settings'; import { Catalyst } from '@/components/modules/Catalyst'; +import { CRM } from '@/components/modules/CRM'; import { NotificationCenter } from '@/components/layout/NotificationCenter'; import { useCrmBootstrap } from '@/hooks/useCrmBootstrap'; import type { ModuleId } from '@/types'; @@ -51,6 +52,7 @@ export const MODULE_ROUTES: Array<{ { id: 'inventory', path: '/inventory', title: 'Inventory', component: Inventory }, { id: 'catalyst', path: '/catalyst', title: 'The Catalyst', component: Catalyst }, { id: 'settings', path: '/settings', title: 'Settings', component: Settings }, + { id: 'crm', path: '/crm', title: 'CRM', component: CRM }, { id: 'admin', path: '/admin', title: 'Admin', component: AdminPage, adminOnly: true }, ]; diff --git a/app/src/components/layout/Sidebar.tsx b/app/src/components/layout/Sidebar.tsx index 5f602b36..6a0cf001 100644 --- a/app/src/components/layout/Sidebar.tsx +++ b/app/src/components/layout/Sidebar.tsx @@ -8,6 +8,7 @@ import { Sliders, Megaphone, Shield, + Users, type LucideIcon, } from 'lucide-react'; import { useStore } from '@/store/useStore'; @@ -22,6 +23,7 @@ const NAV_ICONS: Record = { '/catalyst': Megaphone, '/settings': Sliders, '/admin': Shield, + '/crm': Users, }; export function Sidebar() { diff --git a/app/src/components/modules/CRM.tsx b/app/src/components/modules/CRM.tsx new file mode 100644 index 00000000..940b0a1a --- /dev/null +++ b/app/src/components/modules/CRM.tsx @@ -0,0 +1,868 @@ +// app/src/components/modules/CRM.tsx +// Top-level Founder CRM Module Shell +// Implements the CRM navigation frame and subpage routing defined in Doc 10 +// Sub-pages: Contacts, Client 360, Opportunities, Tasks, Imports, Kanban + +import { useState, useEffect, useCallback } from 'react'; +import { motion, AnimatePresence } from 'framer-motion'; +import { + Users, ClipboardList, + Upload, Layers, Search, RefreshCw, AlertCircle, + ChevronRight, Calendar, TrendingUp, Phone, Mail, + Target, Clock, UserCheck, X +} from 'lucide-react'; +import { fetchContacts, fetchKanbanBoard, fetchTasks, fetchOpportunities } from '@/lib/crmApi'; +import type { + CrmContactListItem, KanbanColumn, CrmTask, CrmOpportunityCard +} from '@/types/crmTypes'; + +// ── Sub-view type ───────────────────────────────────────────────────────────── +type CrmView = 'contacts' | 'kanban' | 'opportunities' | 'tasks' | 'imports' | 'client360'; + +// ── QD Score Bar ────────────────────────────────────────────────────────────── +function QdBar({ value, type }: { value: number; type: 'intent' | 'urgency' }) { + const pct = Math.round(value * 100); + const color = type === 'intent' + ? pct > 70 ? '#22c55e' : pct > 40 ? '#f59e0b' : '#ef4444' + : pct > 70 ? '#ef4444' : pct > 40 ? '#f59e0b' : '#6b7280'; + + return ( +
+
+ +
+ {pct} +
+ ); +} + +// ── Buyer Type Badge ────────────────────────────────────────────────────────── +function BuyerBadge({ type }: { type: string | null }) { + const map: Record = { + high_intent: { label: 'High Intent', color: '#22c55e' }, + slow_burn_investor: { label: 'Investor', color: '#6366f1' }, + nri: { label: 'NRI', color: '#0ea5e9' }, + family_decision_unit: { label: 'Family Unit', color: '#f59e0b' }, + price_sensitive: { label: 'Price Sensitive',color: '#f97316' }, + broker_referral: { label: 'Broker', color: '#a855f7' }, + repeat_visitor: { label: 'Repeat', color: '#06b6d4' }, + }; + const cfg = type ? (map[type] ?? { label: type, color: '#6b7280' }) : { label: 'Unknown', color: '#3f3f46' }; + return ( + + {cfg.label} + + ); +} + +// ── Status Badge ────────────────────────────────────────────────────────────── +function StatusBadge({ status }: { status: string | null }) { + const colMap: Record = { + new: '#6b7280', contacted: '#3b82f6', qualified: '#06b6d4', + site_visit_scheduled: '#8b5cf6', site_visited: '#a855f7', + negotiation: '#f59e0b', booking_initiated: '#22c55e', + booked: '#16a34a', lost: '#ef4444', dormant: '#374151', + }; + const s = status ?? 'new'; + const color = colMap[s] ?? '#6b7280'; + const label = s.replace(/_/g, ' ').replace(/\b\w/g, c => c.toUpperCase()); + return ( + + {label} + + ); +} + +// ── Contact List View ───────────────────────────────────────────────────────── +function ContactListView({ onSelectContact }: { onSelectContact: (id: string) => void }) { + const [contacts, setContacts] = useState([]); + const [total, setTotal] = useState(0); + const [loading, setLoading] = useState(true); + const [error, setError] = useState(null); + const [search, setSearch] = useState(''); + const [buyerFilter, setBuyerFilter] = useState(''); + const [page, setPage] = useState(0); + const LIMIT = 30; + + const load = useCallback(async () => { + setLoading(true); + setError(null); + try { + const result = await fetchContacts({ + search: search || undefined, + buyer_type: buyerFilter || undefined, + limit: LIMIT, + offset: page * LIMIT, + }); + setContacts(result.contacts); + setTotal(result.total); + } catch (e) { + setError((e as Error).message); + } finally { + setLoading(false); + } + }, [search, buyerFilter, page]); + + useEffect(() => { void load(); }, [load]); + + return ( +
+ {/* Toolbar */} +
+
+ + { setSearch(e.target.value); setPage(0); }} + placeholder="Search name, email, phone…" + className="w-full pl-9 pr-4 py-2 rounded-xl text-sm text-white placeholder-zinc-500 outline-none focus:ring-1 focus:ring-white/20" + style={{ background: 'hsl(var(--surface))', border: '1px solid hsl(var(--border-subtle))' }} + /> + {search && ( + + )} +
+ + + {total.toLocaleString()} contacts +
+ + {error && ( +
+ + {error} +
+ )} + + {/* Table */} +
+ {/* Header */} +
+ Name + Contact + Buyer Type + Lead Status + Intent + Interactions + Tasks +
+ + {loading ? ( +
+ + Loading contacts… +
+ ) : contacts.length === 0 ? ( +
+ +

No contacts found. Import a CSV or add manually.

+
+ ) : ( +
+ {contacts.map((c) => ( + onSelectContact(c.person_id)} + className="grid items-center px-4 py-3 cursor-pointer hover:bg-white/[0.03] transition-colors" + style={{ gridTemplateColumns: '2fr 1.5fr 1.2fr 1.2fr 1fr 0.8fr 0.8fr' }} + > +
+
+ {c.full_name.slice(0, 2).toUpperCase()} +
+
+

{c.full_name}

+ {c.last_interaction_at && ( +

+ Last: {new Date(c.last_interaction_at).toLocaleDateString('en-IN', { day: 'numeric', month: 'short' })} +

+ )} +
+
+
+ {c.primary_email &&

{c.primary_email}

} + {c.primary_phone &&

{c.primary_phone}

} +
+
+
+
+ +
+
+ {c.interaction_count} +
+
+ {c.pending_tasks > 0 ? ( + + {c.pending_tasks} + + ) : ( + + )} +
+
+ ))} +
+ )} +
+ + {/* Pagination */} + {total > LIMIT && ( +
+ + Page {page + 1} of {Math.ceil(total / LIMIT)} + +
+ )} +
+ ); +} + +// ── Kanban View ─────────────────────────────────────────────────────────────── +function KanbanView({ onSelectContact }: { onSelectContact: (id: string) => void }) { + const [board, setBoard] = useState([]); + const [loading, setLoading] = useState(true); + const [error, setError] = useState(null); + + useEffect(() => { + setLoading(true); + fetchKanbanBoard() + .then(setBoard) + .catch(e => setError((e as Error).message)) + .finally(() => setLoading(false)); + }, []); + + const activeColumns = board.filter(c => c.count > 0 || ['new', 'qualified', 'site_visited', 'negotiation', 'booked'].includes(c.status)); + + return ( +
+ {error && ( +
+ {error} +
+ )} + {loading ? ( +
+ Loading pipeline… +
+ ) : ( +
+ {activeColumns.map(col => ( +
+
+ {col.label} + {col.count} +
+
+ {col.items.length === 0 ? ( +
No clients
+ ) : col.items.map(card => ( + onSelectContact(card.person_id)} + className="p-3 rounded-xl cursor-pointer hover:bg-white/[0.06] transition-all" + style={{ background: 'rgba(255,255,255,0.03)', border: '1px solid rgba(255,255,255,0.07)' }} + > +
+
+ {card.client_name.slice(0, 2).toUpperCase()} +
+
+

{card.client_name}

+ {card.budget_band &&

{card.budget_band}

} +
+
+
+ + {card.urgency && card.urgency !== 'low' && ( + {card.urgency} + )} +
+ +
+ ))} +
+
+ ))} +
+ )} +
+ ); +} + +// ── Opportunities View ──────────────────────────────────────────────────────── +function OpportunitiesView({ onSelectContact }: { onSelectContact: (id: string) => void }) { + const [opps, setOpps] = useState([]); + const [loading, setLoading] = useState(true); + + useEffect(() => { + fetchOpportunities({ limit: 100 }) + .then(setOpps) + .finally(() => setLoading(false)); + }, []); + + const stageColor: Record = { + prospect: '#6b7280', qualified: '#3b82f6', proposal: '#8b5cf6', + site_visit: '#06b6d4', negotiation: '#f59e0b', booking: '#22c55e', + agreement: '#16a34a', closed_won: '#166534', closed_lost: '#7f1d1d', + }; + + return ( +
+ {loading ? ( +
+ Loading pipeline… +
+ ) : opps.length === 0 ? ( +
+ +

No opportunities in the pipeline yet.

+
+ ) : ( +
+
+ Client + Project + Stage + Value + Probability + Next Action +
+
+ {opps.map(o => { + const color = stageColor[o.stage] ?? '#6b7280'; + return ( +
o.person_id && onSelectContact(o.person_id)} + > +

{o.client_name ?? '—'}

+

{o.project_name ?? '—'}

+ + {o.stage.replace(/_/g, ' ')} + +

+ {o.value ? `₹${(o.value / 1e7).toFixed(1)}Cr` : '—'} +

+
+
+
+
+ {o.probability ?? 0}% +
+

{o.next_action ?? '—'}

+
+ ); + })} +
+
+ )} +
+ ); +} + +// ── Tasks View ──────────────────────────────────────────────────────────────── +function TasksView({ onSelectContact }: { onSelectContact: (id: string) => void }) { + const [tasks, setTasks] = useState([]); + const [loading, setLoading] = useState(true); + + useEffect(() => { + fetchTasks({ status: 'pending', limit: 100 }) + .then(setTasks) + .finally(() => setLoading(false)); + }, []); + + const priorityColor: Record = { + urgent: '#ef4444', high: '#f59e0b', normal: '#6b7280', low: '#374151', + }; + + return ( +
+ {loading ? ( +
+ Loading tasks… +
+ ) : tasks.length === 0 ? ( +
+ +

No pending tasks.

+
+ ) : ( +
+ {tasks.map(t => { + const color = priorityColor[t.priority] ?? '#6b7280'; + const overdue = t.due_at && new Date(t.due_at) < new Date(); + return ( + t.person_id && onSelectContact(t.person_id)} + > +
+
+

{t.title}

+

{t.client_name} · {t.reminder_type.replace(/_/g, ' ')}

+
+
+ {t.due_at && ( +

+ {new Date(t.due_at).toLocaleDateString('en-IN', { day: 'numeric', month: 'short' })} +

+ )} + + {t.priority} + +
+ + ); + })} +
+ )} +
+ ); +} + +// ── Import View (lightweight inline) ──────────────────────────────────────── +function ImportsView() { + return ( +
+ +
+

CRM CSV Import

+

+ Upload any CRM CSV export. Velocity will auto-map columns, propose normalizations, + and queue them for your review before committing to canonical records. +

+
+ +

Supports exports from Salesforce, HubSpot, Excel, or any flat contact list

+
+ ); +} + +// ── Client 360 Inline Panel ─────────────────────────────────────────────────── +function Client360Panel({ personId, onClose }: { personId: string; onClose: () => void }) { + const [data, setData] = useState(null); + const [loading, setLoading] = useState(true); + const [error, setError] = useState(null); + + useEffect(() => { + setLoading(true); + setError(null); + import('@/lib/crmApi').then(({ fetchClient360 }) => + fetchClient360(personId) + .then(setData) + .catch(e => setError((e as Error).message)) + .finally(() => setLoading(false)) + ); + }, [personId]); + + return ( + + {/* Header */} +
+
+ + Client 360 +
+ +
+ +
+ {loading && ( +
+ Loading dossier… +
+ )} + {error && ( +
+ {error} +
+ )} + {data && ( +
+ {/* Identity */} +
+
+
+ {data.identity.full_name.slice(0, 2).toUpperCase()} +
+
+

{data.identity.full_name}

+
+ + {data.current_lead && } +
+
+
+
+ {data.identity.primary_email && ( +
+ + {data.identity.primary_email} +
+ )} + {data.identity.primary_phone && ( +
+ + {data.identity.primary_phone} +
+ )} +
+
+ + {/* QD Scores */} + {Object.keys(data.qd_overview).length > 0 && ( +
}> +
+ {Object.entries(data.qd_overview).map(([type, score]) => ( +
+
+ {type.replace(/_score$/, '').replace(/_/g, ' ')} + {score.computed_at ? new Date(score.computed_at).toLocaleDateString('en-IN') : ''} +
+ +
+ ))} +
+
+ )} + + {/* Property Interests */} + {data.property_interests.length > 0 && ( +
}> +
+ {data.property_interests.map(pi => ( +
+
+

{pi.project_name}

+ {pi.configuration &&

{pi.configuration}

} +
+ {(pi.budget_min || pi.budget_max) && ( +

+ ₹{pi.budget_min ? (pi.budget_min / 1e7).toFixed(1) : '?'}–{pi.budget_max ? (pi.budget_max / 1e7).toFixed(1) : '?'} Cr +

+ )} +
+ ))} +
+
+ )} + + {/* Active Opportunities */} + {data.active_opportunities.length > 0 && ( +
}> +
+ {data.active_opportunities.map(o => ( +
+
+

{o.stage.replace(/_/g, ' ')}

+ {o.next_action &&

{o.next_action}

} +
+
+ {o.value &&

₹{(o.value / 1e7).toFixed(1)}Cr

} + {o.probability != null &&

{o.probability}% prob.

} +
+
+ ))} +
+
+ )} + + {/* Recent Interactions */} + {data.recent_interactions.length > 0 && ( +
}> +
+ {data.recent_interactions.map(i => ( +
+ {i.channel} +
+ {i.summary &&

{i.summary}

} + {i.happened_at && ( +

+ {new Date(i.happened_at).toLocaleDateString('en-IN', { day: 'numeric', month: 'short', year: '2-digit' })} +

+ )} +
+
+ ))} +
+
+ )} + + {/* Pending Tasks */} + {data.tasks.length > 0 && ( +
}> +
+ {data.tasks.map(t => ( +
+

{t.title}

+ {t.due_at && ( + + + {new Date(t.due_at).toLocaleDateString('en-IN', { day: 'numeric', month: 'short' })} + + )} +
+ ))} +
+
+ )} + + {/* Risk Flags and Next Actions */} + {(data.risk_flags.length > 0 || data.recommended_next_actions.length > 0) && ( +
}> + {data.risk_flags.map(f => ( +
+ + {f.replace(/_/g, ' ')} +
+ ))} + {data.recommended_next_actions.map((a, i) => ( +
+ + {a} +
+ ))} +
+ )} +
+ )} +
+
+ ); +} + +// ── Section wrapper ─────────────────────────────────────────────────────────── +function Section({ title, icon, children }: { title: string; icon: React.ReactNode; children: React.ReactNode }) { + return ( +
+
+ {icon} +

{title}

+
+ {children} +
+ ); +} + +// ── Nav Tab ─────────────────────────────────────────────────────────────────── +function NavTab({ + label, icon, active, count, onClick, +}: { + label: string; icon: React.ReactNode; + active: boolean; count?: number; onClick: () => void; +}) { + return ( + + ); +} + +// ── Main CRM Component ──────────────────────────────────────────────────────── +export function CRM() { + const [view, setView] = useState('contacts'); + const [selectedPersonId, setSelectedPersonId] = useState(null); + + const handleSelectContact = (id: string) => { + setSelectedPersonId(id); + }; + + return ( +
+ {/* Module Header */} +
+
+

Client Intelligence

+

Canonical CRM — contacts, pipeline, interactions, and 360° dossiers

+
+
+
+ Canonical Mode +
+
+ + {/* Navigation Tabs */} +
+ } active={view === 'contacts'} onClick={() => setView('contacts')} /> + } active={view === 'kanban'} onClick={() => setView('kanban')} /> + } active={view === 'opportunities'} onClick={() => setView('opportunities')} /> + } active={view === 'tasks'} onClick={() => setView('tasks')} /> + } active={view === 'imports'} onClick={() => setView('imports')} /> +
+ + {/* View Content */} + + + {view === 'contacts' && } + {view === 'kanban' && } + {view === 'opportunities' && } + {view === 'tasks' && } + {view === 'imports' && } + + + + {/* Client 360 Slide-over Panel */} + + {selectedPersonId && ( + <> + setSelectedPersonId(null)} + className="fixed inset-0 bg-black/40 z-40 backdrop-blur-sm" + /> + setSelectedPersonId(null)} /> + + )} + +
+ ); +} diff --git a/app/src/lib/crmApi.ts b/app/src/lib/crmApi.ts new file mode 100644 index 00000000..9407be08 --- /dev/null +++ b/app/src/lib/crmApi.ts @@ -0,0 +1,219 @@ +// app/src/lib/crmApi.ts +// CRM API client — canonical CRM routes +// Implements the frontend adapter layer from Doc 10 (TypeScript Module Spec) + +import type { + CrmContactListItem, + CrmPerson, + Client360Snapshot, + CrmOpportunityCard, + CrmTask, + KanbanColumn, + ImportBatchSummary, + ImportProposal, + ImportReviewDecision, + QdScoreEntry, +} from '@/types/crmTypes'; + +const API_BASE = import.meta.env.VITE_API_BASE_URL ?? ''; + +function getAuthHeaders(): Record { + const token = localStorage.getItem('velocity_token'); + return token ? { Authorization: `Bearer ${token}` } : {}; +} + +async function apiFetch(path: string, options?: RequestInit): Promise { + const res = await fetch(`${API_BASE}${path}`, { + ...options, + headers: { + 'Content-Type': 'application/json', + ...getAuthHeaders(), + ...(options?.headers ?? {}), + }, + }); + if (!res.ok) { + const err = await res.json().catch(() => ({ detail: res.statusText })); + throw new Error(err.detail ?? `API error ${res.status}`); + } + return res.json() as Promise; +} + +// ── Contact List ────────────────────────────────────────────────────────────── + +export async function fetchContacts(params: { + search?: string; + buyer_type?: string; + status?: string; + limit?: number; + offset?: number; +}): Promise<{ contacts: CrmContactListItem[]; total: number; limit: number; offset: number }> { + const qs = new URLSearchParams(); + if (params.search) qs.set('search', params.search); + if (params.buyer_type) qs.set('buyer_type', params.buyer_type); + if (params.status) qs.set('status', params.status); + if (params.limit != null) qs.set('limit', String(params.limit)); + if (params.offset != null) qs.set('offset', String(params.offset)); + const res = await apiFetch<{ status: string; data: { contacts: CrmContactListItem[]; total: number; limit: number; offset: number } }>( + `/api/crm/contacts?${qs}` + ); + return res.data; +} + +export async function fetchContact(personId: string): Promise { + const res = await apiFetch<{ status: string; data: CrmPerson }>(`/api/crm/contacts/${personId}`); + return res.data; +} + +// ── Client 360 ──────────────────────────────────────────────────────────────── + +export async function fetchClient360(personId: string): Promise { + const res = await apiFetch<{ status: string; data: Client360Snapshot }>(`/api/crm/client-360/${personId}`); + return res.data; +} + +// ── Opportunities ───────────────────────────────────────────────────────────── + +export async function fetchOpportunities(params?: { + stage?: string; + limit?: number; + offset?: number; +}): Promise { + const qs = new URLSearchParams(); + if (params?.stage) qs.set('stage', params.stage); + if (params?.limit != null) qs.set('limit', String(params.limit)); + if (params?.offset != null) qs.set('offset', String(params.offset)); + const res = await apiFetch<{ status: string; data: CrmOpportunityCard[] }>(`/api/crm/opportunities?${qs}`); + return res.data; +} + +// ── Tasks ───────────────────────────────────────────────────────────────────── + +export async function fetchTasks(params?: { + status?: string; + assigned_to?: string; + limit?: number; +}): Promise { + const qs = new URLSearchParams(); + if (params?.status) qs.set('status', params.status); + if (params?.assigned_to) qs.set('assigned_to', params.assigned_to); + if (params?.limit != null) qs.set('limit', String(params.limit)); + const res = await apiFetch<{ status: string; data: CrmTask[] }>(`/api/crm/tasks?${qs}`); + return res.data; +} + +export async function createTask(body: { + person_id: string; + lead_id?: string; + reminder_type?: string; + title: string; + notes?: string; + due_at?: string; + priority?: string; +}): Promise<{ reminder_id: string; title: string }> { + const res = await apiFetch<{ status: string; data: { reminder_id: string; title: string } }>('/api/crm/tasks', { + method: 'POST', + body: JSON.stringify(body), + }); + return res.data; +} + +// ── Kanban ──────────────────────────────────────────────────────────────────── + +export async function fetchKanbanBoard(): Promise { + const res = await apiFetch<{ status: string; data: KanbanColumn[] }>('/api/crm/kanban'); + return res.data; +} + +// ── QD Scores ───────────────────────────────────────────────────────────────── + +export async function fetchQdScore(personId: string): Promise<{ + person_id: string; + scores: Record; + timeseries: Array<{ score_type: string; value: number; timestamp: string | null; signal_source: string | null; delta: number | null }>; +}> { + const res = await apiFetch<{ + status: string; + data: { + person_id: string; + scores: Record; + timeseries: Array<{ score_type: string; value: number; timestamp: string | null; signal_source: string | null; delta: number | null }>; + }; + }>(`/api/crm/qd/${personId}`); + return res.data; +} + +// ── Import Batches ───────────────────────────────────────────────────────────── + +export async function uploadCrmImport(file: File, sourceSystem = 'csv_upload'): Promise<{ + batch_id: string; + row_count: number; + mapped_columns: number; + unmapped_columns: number; + mapping_confidence: number; + proposals_created: number; + parse_errors: string[]; + lifecycle: string; + message: string; +}> { + const form = new FormData(); + form.append('file', file); + const res = await fetch(`${API_BASE}/api/crm/imports?source_system=${sourceSystem}`, { + method: 'POST', + headers: { ...getAuthHeaders() }, + body: form, + }); + if (!res.ok) { + const err = await res.json().catch(() => ({ detail: res.statusText })); + throw new Error(err.detail ?? `Upload error ${res.status}`); + } + const json = await res.json(); + return json.data; +} + +export async function fetchImportBatches(lifecycle?: string): Promise { + const qs = lifecycle ? `?lifecycle=${lifecycle}` : ''; + const res = await apiFetch<{ status: string; data: ImportBatchSummary[] }>(`/api/crm/imports${qs}`); + return res.data; +} + +export async function fetchImportBatch(batchId: string): Promise<{ + batch_id: string; + filename: string; + row_count: number; + mapping_manifest: Record; + lifecycle: string; + proposals: ImportProposal[]; + proposal_count: number; +}> { + const res = await apiFetch<{ status: string; data: ReturnType extends Promise ? R : never }>(`/api/crm/imports/${batchId}`); + return res.data as Awaited>; +} + +export async function reviewProposal( + batchId: string, + proposalId: string, + decision: ImportReviewDecision, + notes = '' +): Promise<{ decision_id: string; decision: string }> { + const res = await apiFetch<{ status: string; data: { decision_id: string; decision: string } }>( + `/api/crm/imports/${batchId}/review-proposal`, + { + method: 'PUT', + body: JSON.stringify({ proposal_id: proposalId, decision, notes }), + } + ); + return res.data; +} + +export async function commitImportBatch(batchId: string): Promise<{ + committed: number; + skipped: number; + errors: string[]; + lifecycle: string; +}> { + const res = await apiFetch<{ + status: string; + data: { committed: number; skipped: number; errors: string[]; lifecycle: string }; + }>(`/api/crm/imports/${batchId}/commit`, { method: 'POST' }); + return res.data; +} diff --git a/app/src/types/crmTypes.ts b/app/src/types/crmTypes.ts new file mode 100644 index 00000000..62061e04 --- /dev/null +++ b/app/src/types/crmTypes.ts @@ -0,0 +1,214 @@ +// app/src/types/crmTypes.ts +// Canonical CRM TypeScript types — aligned to Doc 10 (TypeScript Module Spec) +// and Doc 09 (Database Schema and Root API Spec) + +// ── Identity ────────────────────────────────────────────────────────────────── + +export interface CrmContactListItem { + person_id: string; + full_name: string; + primary_email: string | null; + primary_phone: string | null; + buyer_type: string | null; + lead_id: string | null; + lead_status: string | null; + budget_band: string | null; + urgency: string | null; + intent_score: number; + urgency_score: number; + interaction_count: number; + last_interaction_at: string | null; + pending_tasks: number; + created_at: string | null; +} + +export interface CrmPerson { + person_id: string; + full_name: string; + primary_email: string | null; + primary_phone: string | null; + buyer_type: string | null; + persona_labels: string[]; + source_confidence: number; + created_at: string | null; +} + +// ── Lead ───────────────────────────────────────────────────────────────────── + +export type CrmLeadStatus = + | 'new' | 'contacted' | 'qualified' | 'site_visit_scheduled' + | 'site_visited' | 'negotiation' | 'booking_initiated' + | 'booked' | 'lost' | 'dormant'; + +export interface CrmLead { + lead_id: string; + status: CrmLeadStatus; + budget_band: string | null; + urgency: string | null; + financing_posture: string | null; + timeline_to_decision: string | null; + objections: string[]; + motivations: string[]; + created_at: string | null; +} + +// ── Opportunity ─────────────────────────────────────────────────────────────── + +export type CrmOpportunityStage = + | 'prospect' | 'qualified' | 'proposal' | 'site_visit' + | 'negotiation' | 'booking' | 'agreement' + | 'closed_won' | 'closed_lost'; + +export interface CrmOpportunityCard { + opportunity_id: string; + stage: CrmOpportunityStage; + value: number | null; + probability: number | null; + expected_close_date: string | null; + next_action: string | null; + project_id: string | null; + unit_id: string | null; + // When fetched from list endpoint, person-level fields are included + person_id?: string; + client_name?: string; + client_phone?: string; + project_name?: string; +} + +// ── Interaction ─────────────────────────────────────────────────────────────── + +export type IntelChannel = + | 'whatsapp' | 'phone' | 'email' | 'site_visit' + | 'office_meeting' | 'video_call' | 'cctv' + | 'perception_session' | 'system'; + +export interface InteractionTimelineItem { + interaction_id: string; + channel: IntelChannel; + interaction_type: string; + happened_at: string | null; + summary: string | null; +} + +// ── Task / Reminder ─────────────────────────────────────────────────────────── + +export interface CrmTask { + reminder_id: string; + reminder_type: string; + title: string; + notes: string | null; + due_at: string | null; + status: 'pending' | 'done' | 'snoozed' | 'cancelled'; + priority: 'low' | 'normal' | 'high' | 'urgent'; + // Populated in list view + person_id?: string; + client_name?: string; + client_phone?: string; +} + +// ── Property Interest ───────────────────────────────────────────────────────── + +export interface PropertyInterest { + interest_id: string; + project_name: string; + unit_preference: string | null; + configuration: string | null; + budget_min: number | null; + budget_max: number | null; + priority: number; +} + +// ── QD Score ────────────────────────────────────────────────────────────────── + +export interface QdScoreEntry { + score_type: string; + current_value: number; + computed_at: string | null; + reasoning: string | null; +} + +export interface QdOverview { + [score_type: string]: QdScoreEntry; +} + +// ── Account ─────────────────────────────────────────────────────────────────── + +export interface AccountLink { + account_id: string; + account_name: string; + account_type: string; + industry: string | null; +} + +// ── Client 360 Snapshot ──────────────────────────────────────────────────────── + +export interface Client360Snapshot { + client_ref: string; + snapshot_type: 'client_360'; + identity: CrmPerson; + account_links: AccountLink[]; + current_lead: CrmLead | null; + active_opportunities: CrmOpportunityCard[]; + recent_interactions: InteractionTimelineItem[]; + property_interests: PropertyInterest[]; + tasks: CrmTask[]; + qd_overview: QdOverview; + risk_flags: string[]; + recommended_next_actions: string[]; + note: string; +} + +// ── Import Batch ──────────────────────────────────────────────────────────── + +export type ImportLifecycle = + | 'uploaded' | 'parsed' | 'mapped' | 'proposed' + | 'approved' | 'committed' | 'failed'; + +export interface ImportBatchSummary { + batch_id: string; + source_system: string; + filename: string; + row_count: number; + mapped_count: number; + unresolved_count: number; + lifecycle: ImportLifecycle; + created_at: string | null; +} + +export interface ImportProposal { + proposal_id: string; + payload: { + row_number: number; + canonical_payload: Record; + raw_row: Record; + unresolved_fields: string[]; + missing_required: string[]; + confidence: number; + review_required: boolean; + }; + confidence: number; + status: string; + review_required: boolean; +} + +export type ImportReviewDecision = 'approved' | 'rejected' | 'needs_more_info'; + +// ── Kanban Board ────────────────────────────────────────────────────────────── + +export interface KanbanColumn { + status: CrmLeadStatus | string; + label: string; + count: number; + items: KanbanCard[]; +} + +export interface KanbanCard { + lead_id: string; + person_id: string; + client_name: string; + client_phone: string | null; + buyer_type: string | null; + budget_band: string | null; + urgency: string | null; + intent_score: number; +} diff --git a/app/src/types/index.ts b/app/src/types/index.ts index f3760e39..6c217657 100644 --- a/app/src/types/index.ts +++ b/app/src/types/index.ts @@ -1,5 +1,5 @@ // Navigation Module Types -export type ModuleId = 'dashboard' | 'oracle' | 'sentinel' | 'inventory' | 'settings' | 'catalyst' | 'admin'; +export type ModuleId = 'dashboard' | 'oracle' | 'sentinel' | 'inventory' | 'settings' | 'catalyst' | 'admin' | 'crm'; export type SentinelSubTab = 'overview' | 'live-session'; diff --git a/backend/api/routes_crm_imports.py b/backend/api/routes_crm_imports.py new file mode 100644 index 00000000..2a5befea --- /dev/null +++ b/backend/api/routes_crm_imports.py @@ -0,0 +1,798 @@ +""" +backend/api/routes_crm_imports.py +CRM Import Route Family + Client 360 Routes + +Implements the canonical CRM API surface as specified in Doc 09 (Root API Spec): + POST /api/crm/imports — upload CSV batch + GET /api/crm/imports — list import batches + GET /api/crm/imports/{id} — get batch detail + proposals + PUT /api/crm/imports/{id}/approve-proposal — approve a single proposal + POST /api/crm/imports/{id}/commit — commit approved proposals to canonical + GET /api/crm/contacts — canonical contact list (with QD summary) + GET /api/crm/contacts/{id} — canonical contact detail + GET /api/crm/client-360/{id} — Client 360 aggregated snapshot + GET /api/crm/opportunities — opportunity pipeline list + GET /api/crm/tasks — reminder/task list + GET /api/crm/kanban — kanban board (canonical leads) + +Uses canonical crm_*, intel_*, workflow_* tables. +""" +from __future__ import annotations + +import json +import logging +import uuid +from datetime import datetime, timezone +from typing import Any + +from fastapi import APIRouter, HTTPException, Query, Request, UploadFile, File, status +from pydantic import BaseModel, Field + +from backend.services.imports.ingest_service import ( + parse_csv_content, + infer_column_mapping, + build_normalized_proposals, + create_import_batch_record, + persist_import_batch, + persist_proposals_as_workflow_actions, +) +from backend.services.client_graph.aggregation_service import ( + get_client_360, + get_contact_list, +) + +logger = logging.getLogger("velocity.api.crm_imports") + +router = APIRouter() + + +def _now() -> str: + return datetime.now(timezone.utc).isoformat() + + +async def _get_pool(request: Request): + pool = getattr(request.app.state, "db_pool", None) + if pool is None: + raise HTTPException(status_code=503, detail="Database unavailable.") + return pool + + +# ── Models ──────────────────────────────────────────────────────────────────── + +class ProposalApprovalRequest(BaseModel): + proposal_id: str + decision: str = Field(..., pattern="^(approved|rejected|needs_more_info)$") + notes: str = Field(default="", max_length=2000) + + +class CreatePersonRequest(BaseModel): + full_name: str = Field(..., min_length=1, max_length=200) + primary_email: str | None = None + primary_phone: str | None = None + buyer_type: str | None = None + budget_band: str | None = None + project_name: str | None = None + source_system: str = "manual" + notes: str | None = None + metadata_json: dict[str, Any] = Field(default_factory=dict) + + +class CreateLeadRequest(BaseModel): + person_id: str + status: str = "new" + budget_band: str | None = None + urgency: str | None = None + financing_posture: str | None = None + assigned_user_id: str | None = None + metadata_json: dict[str, Any] = Field(default_factory=dict) + + +class CreateReminderRequest(BaseModel): + person_id: str + lead_id: str | None = None + reminder_type: str = "follow_up" + title: str = Field(..., min_length=1, max_length=500) + notes: str | None = None + due_at: str | None = None + priority: str = "normal" + + +# ── Import Endpoints ────────────────────────────────────────────────────────── + +@router.post("/crm/imports", status_code=201, tags=["CRM Imports"]) +async def upload_crm_import( + request: Request, + file: UploadFile = File(...), + source_system: str = Query(default="csv_upload"), +) -> dict[str, Any]: + """ + Upload a CSV file to start a CRM import batch. + Parses headers, infers column mapping, and creates workflow_actions proposals. + """ + pool = await _get_pool(request) + content_bytes = await file.read() + try: + content = content_bytes.decode("utf-8") + except UnicodeDecodeError: + content = content_bytes.decode("latin-1") + + parsed = parse_csv_content(content) + mapping = infer_column_mapping(parsed["headers"]) + + batch = create_import_batch_record( + filename=file.filename or "upload.csv", + row_count=parsed["row_count"], + mapping_manifest=mapping, + source_system=source_system, + ) + + proposals = build_normalized_proposals( + rows=parsed["rows"], + mapping=mapping["mapped"], + batch_id=batch["batch_id"], + source_system=source_system, + ) + + async with pool.acquire() as conn: + await persist_import_batch(conn, batch) + inserted = await persist_proposals_as_workflow_actions(conn, proposals) + + logger.info("Import batch %s: %d rows, %d proposals", batch["batch_id"], parsed["row_count"], inserted) + + return { + "status": "ok", + "data": { + "batch_id": batch["batch_id"], + "row_count": parsed["row_count"], + "mapped_columns": mapping["mapped_count"], + "unmapped_columns": mapping["unmapped_count"], + "mapping_confidence": mapping["confidence"], + "proposals_created": inserted, + "parse_errors": parsed["parse_errors"], + "lifecycle": "parsed", + "message": f"Import batch created. {inserted} proposals queued for review.", + }, + } + + +@router.get("/crm/imports", tags=["CRM Imports"]) +async def list_import_batches( + request: Request, + lifecycle: str | None = None, + limit: int = Query(default=20, ge=1, le=100), + offset: int = Query(default=0, ge=0), +) -> dict[str, Any]: + """List all CRM import batches with lifecycle status.""" + pool = await _get_pool(request) + clauses = ["1=1"] + params: list[Any] = [] + + if lifecycle: + params.append(lifecycle) + clauses.append(f"lifecycle = ${len(params)}::import_lifecycle") + + params.extend([limit, offset]) + where = " AND ".join(clauses) + + async with pool.acquire() as conn: + rows = await conn.fetch( + f""" + SELECT batch_id, source_system, uploaded_filename, row_count, + mapped_count, unresolved_count, lifecycle, created_at, updated_at + FROM workflow_import_batches + WHERE {where} + ORDER BY created_at DESC + LIMIT ${len(params) - 1} OFFSET ${len(params)} + """, + *params, + ) + total = await conn.fetchval( + f"SELECT COUNT(*) FROM workflow_import_batches WHERE {where}", + *params[:-2], + ) + + batches = [ + { + "batch_id": str(r["batch_id"]), + "source_system": r["source_system"], + "filename": r["uploaded_filename"], + "row_count": r["row_count"], + "mapped_count": r["mapped_count"], + "unresolved_count": r["unresolved_count"], + "lifecycle": r["lifecycle"], + "created_at": r["created_at"].isoformat() if r["created_at"] else None, + } + for r in rows + ] + + return {"status": "ok", "data": batches, "meta": {"total": total, "limit": limit, "offset": offset}} + + +@router.get("/crm/imports/{batch_id}", tags=["CRM Imports"]) +async def get_import_batch(request: Request, batch_id: str) -> dict[str, Any]: + """Get import batch detail including pending proposals.""" + pool = await _get_pool(request) + async with pool.acquire() as conn: + batch_row = await conn.fetchrow( + "SELECT * FROM workflow_import_batches WHERE batch_id = $1::uuid", + batch_id, + ) + if not batch_row: + raise HTTPException(status_code=404, detail=f"Import batch '{batch_id}' not found.") + + proposal_rows = await conn.fetch( + """ + SELECT action_id, proposal_payload, confidence, status, approval_required, created_at + FROM workflow_actions + WHERE action_type = 'import_proposal' + AND proposal_payload->>'batch_id' = $1 + ORDER BY (proposal_payload->>'row_number')::int ASC + LIMIT 200 + """, + batch_id, + ) + + proposals = [ + { + "proposal_id": str(r["action_id"]), + "payload": r["proposal_payload"], + "confidence": float(r["confidence"]) if r["confidence"] else 0.0, + "status": r["status"], + "review_required": r["approval_required"], + } + for r in proposal_rows + ] + + return { + "status": "ok", + "data": { + "batch_id": str(batch_row["batch_id"]), + "source_system": batch_row["source_system"], + "filename": batch_row["uploaded_filename"], + "row_count": batch_row["row_count"], + "mapping_manifest": batch_row["mapping_manifest"], + "lifecycle": batch_row["lifecycle"], + "proposals": proposals, + "proposal_count": len(proposals), + }, + } + + +@router.put("/crm/imports/{batch_id}/review-proposal", tags=["CRM Imports"]) +async def review_proposal( + request: Request, batch_id: str, body: ProposalApprovalRequest +) -> dict[str, Any]: + """ + Human review of a single import proposal. + Creates a workflow_approvals record and updates the action status. + Approved actions with high confidence may be auto-staged for commit. + """ + pool = await _get_pool(request) + async with pool.acquire() as conn: + action = await conn.fetchrow( + "SELECT action_id, confidence, approval_required FROM workflow_actions WHERE action_id = $1::uuid", + body.proposal_id, + ) + if not action: + raise HTTPException(status_code=404, detail="Proposal not found.") + + decision_id = str(uuid.uuid4()) + new_status = "approved" if body.decision == "approved" else "rejected" + + await conn.execute( + """ + INSERT INTO workflow_approvals (decision_id, action_id, decision, decision_notes, decided_at) + VALUES ($1::uuid, $2::uuid, $3, $4, NOW()) + """, + decision_id, + body.proposal_id, + body.decision, + body.notes, + ) + await conn.execute( + "UPDATE workflow_actions SET status = $1::wf_status, updated_at = NOW() WHERE action_id = $2::uuid", + new_status, + body.proposal_id, + ) + + return { + "status": "ok", + "data": { + "decision_id": decision_id, + "proposal_id": body.proposal_id, + "decision": body.decision, + "message": f"Proposal {body.decision}.", + }, + } + + +@router.post("/crm/imports/{batch_id}/commit", tags=["CRM Imports"]) +async def commit_approved_proposals(request: Request, batch_id: str) -> dict[str, Any]: + """ + Commit all approved proposals for a batch into canonical crm_people + crm_leads tables. + Only approved proposals are committed. Rejected/pending are skipped. + This implements the writeback flow from Doc 07 and Doc 09. + """ + pool = await _get_pool(request) + committed = 0 + skipped = 0 + errors: list[str] = [] + + async with pool.acquire() as conn: + approved_rows = await conn.fetch( + """ + SELECT action_id, proposal_payload + FROM workflow_actions + WHERE action_type = 'import_proposal' + AND proposal_payload->>'batch_id' = $1 + AND status = 'approved' + """, + batch_id, + ) + + for row in approved_rows: + try: + payload = row["proposal_payload"] + canonical = payload.get("canonical_payload", {}) + if not canonical.get("full_name"): + skipped += 1 + continue + + person_id = str(uuid.uuid4()) + await conn.execute( + """ + INSERT INTO crm_people ( + person_id, full_name, primary_email, primary_phone, + buyer_type, source_confidence, metadata_json, created_at, updated_at + ) VALUES ( + $1::uuid, $2, $3, $4, $5, $6, $7::jsonb, NOW(), NOW() + ) + ON CONFLICT DO NOTHING + """, + person_id, + canonical.get("full_name"), + canonical.get("primary_email"), + canonical.get("primary_phone"), + canonical.get("buyer_type"), + payload.get("confidence", 0.5), + json.dumps({"source_batch": batch_id, "import_row": payload.get("row_number")}), + ) + + if canonical.get("status") or canonical.get("budget_band"): + lead_id = str(uuid.uuid4()) + await conn.execute( + """ + INSERT INTO crm_leads ( + lead_id, person_id, source_system, status, budget_band, + metadata_json, created_at, updated_at + ) VALUES ( + $1::uuid, $2::uuid, $3, 'new'::crm_lead_status, $4, $5::jsonb, NOW(), NOW() + ) + ON CONFLICT DO NOTHING + """, + lead_id, + person_id, + payload.get("source_system", "csv_upload"), + canonical.get("budget_band"), + json.dumps({"import_batch": batch_id}), + ) + + # Stage property interest if project_name present + if canonical.get("project_name"): + await conn.execute( + """ + INSERT INTO crm_property_interests ( + interest_id, person_id, lead_id, project_name, created_at + ) VALUES ( + $1::uuid, $2::uuid, $3::uuid, $4, NOW() + ) + ON CONFLICT DO NOTHING + """, + str(uuid.uuid4()), + person_id, + lead_id, + canonical.get("project_name"), + ) + + # Mark action as executed + await conn.execute( + "UPDATE workflow_actions SET status = 'executed'::wf_status, updated_at = NOW() WHERE action_id = $1::uuid", + row["action_id"], + ) + committed += 1 + + except Exception as e: + errors.append(f"Proposal {row['action_id']}: {str(e)}") + skipped += 1 + + # Update batch lifecycle + await conn.execute( + "UPDATE workflow_import_batches SET lifecycle = 'committed'::import_lifecycle, canonical_count = $1, updated_at = NOW() WHERE batch_id = $2", + committed, + batch_id, + ) + + return { + "status": "ok", + "data": { + "batch_id": batch_id, + "committed": committed, + "skipped": skipped, + "errors": errors, + "lifecycle": "committed", + }, + } + + +# ── Contact / Person Endpoints ────────────────────────────────────────────── + +@router.get("/crm/contacts", tags=["CRM Contacts"]) +async def list_contacts( + request: Request, + search: str | None = Query(default=None), + buyer_type: str | None = Query(default=None), + status: str | None = Query(default=None), + limit: int = Query(default=50, ge=1, le=200), + offset: int = Query(default=0, ge=0), +) -> dict[str, Any]: + """Canonical contact list with QD summary, interaction count, and lead status.""" + pool = await _get_pool(request) + async with pool.acquire() as conn: + result = await get_contact_list(conn, search, buyer_type, status, limit, offset) + return {"status": "ok", "data": result} + + +@router.post("/crm/contacts", status_code=201, tags=["CRM Contacts"]) +async def create_contact(request: Request, body: CreatePersonRequest) -> dict[str, Any]: + """Create a new canonical person record manually.""" + pool = await _get_pool(request) + person_id = str(uuid.uuid4()) + + async with pool.acquire() as conn: + await conn.execute( + """ + INSERT INTO crm_people ( + person_id, full_name, primary_email, primary_phone, + buyer_type, source_confidence, metadata_json, created_at, updated_at + ) VALUES ($1::uuid, $2, $3, $4, $5, 1.0, $6::jsonb, NOW(), NOW()) + """, + person_id, + body.full_name, + body.primary_email, + body.primary_phone, + body.buyer_type, + json.dumps({**body.metadata_json, "manual_entry": True}), + ) + + if body.project_name or body.budget_band: + lead_id = str(uuid.uuid4()) + await conn.execute( + """ + INSERT INTO crm_leads ( + lead_id, person_id, source_system, status, budget_band, + metadata_json, created_at, updated_at + ) VALUES ($1::uuid, $2::uuid, $3, 'new'::crm_lead_status, $4, '{}'::jsonb, NOW(), NOW()) + """, + lead_id, + person_id, + body.source_system, + body.budget_band, + ) + if body.project_name: + await conn.execute( + """ + INSERT INTO crm_property_interests (interest_id, person_id, lead_id, project_name, created_at) + VALUES ($1::uuid, $2::uuid, $3::uuid, $4, NOW()) + """, + str(uuid.uuid4()), + person_id, + lead_id, + body.project_name, + ) + + return {"status": "ok", "data": {"person_id": person_id, "full_name": body.full_name}} + + +@router.get("/crm/contacts/{person_id}", tags=["CRM Contacts"]) +async def get_contact(request: Request, person_id: str) -> dict[str, Any]: + """Get a single canonical contact record.""" + pool = await _get_pool(request) + async with pool.acquire() as conn: + row = await conn.fetchrow( + """ + SELECT person_id, full_name, primary_email, primary_phone, secondary_phone, + buyer_type, persona_labels, source_confidence, created_at, updated_at + FROM crm_people WHERE person_id = $1::uuid + """, + person_id, + ) + if not row: + raise HTTPException(status_code=404, detail=f"Contact '{person_id}' not found.") + return { + "status": "ok", + "data": { + "person_id": str(row["person_id"]), + "full_name": row["full_name"], + "primary_email": row["primary_email"], + "primary_phone": row["primary_phone"], + "buyer_type": row["buyer_type"], + "persona_labels": row["persona_labels"] or [], + "source_confidence": float(row["source_confidence"] or 0.0), + }, + } + + +# ── Client 360 Endpoint ──────────────────────────────────────────────────── + +@router.get("/crm/client-360/{person_id}", tags=["CRM Client 360"]) +async def client_360(request: Request, person_id: str) -> dict[str, Any]: + """ + Aggregated Client360 dossier — identity, opportunities, interactions, + property interests, tasks, QD overview, risk flags, and next actions. + Derived read model — not primary truth. + """ + pool = await _get_pool(request) + async with pool.acquire() as conn: + snapshot = await get_client_360(conn, person_id) + if not snapshot: + raise HTTPException(status_code=404, detail=f"Client '{person_id}' not found.") + return {"status": "ok", "data": snapshot} + + +# ── Opportunities Endpoint ───────────────────────────────────────────────── + +@router.get("/crm/opportunities", tags=["CRM Opportunities"]) +async def list_opportunities( + request: Request, + stage: str | None = None, + limit: int = Query(default=50, ge=1, le=200), + offset: int = Query(default=0, ge=0), +) -> dict[str, Any]: + """Canonical opportunity pipeline list.""" + pool = await _get_pool(request) + clauses = ["1=1"] + params: list[Any] = [] + + if stage: + params.append(stage) + clauses.append(f"co.stage = ${len(params)}::crm_opportunity_stage") + + params.extend([limit, offset]) + where = " AND ".join(clauses) + + async with pool.acquire() as conn: + rows = await conn.fetch( + f""" + SELECT co.opportunity_id, co.stage, co.value, co.probability, + co.expected_close_date, co.next_action, + p.person_id, p.full_name, p.primary_phone, + ip.project_name, + co.created_at, co.updated_at + FROM crm_opportunities co + INNER JOIN crm_leads cl ON cl.lead_id = co.lead_id + INNER JOIN crm_people p ON p.person_id = cl.person_id + LEFT JOIN inventory_projects ip ON ip.project_id = co.project_id + WHERE {where} + ORDER BY co.updated_at DESC + LIMIT ${len(params) - 1} OFFSET ${len(params)} + """, + *params, + ) + + opportunities = [ + { + "opportunity_id": str(r["opportunity_id"]), + "stage": r["stage"], + "value": float(r["value"]) if r["value"] else None, + "probability": r["probability"], + "expected_close_date": r["expected_close_date"].isoformat() if r["expected_close_date"] else None, + "next_action": r["next_action"], + "person_id": str(r["person_id"]), + "client_name": r["full_name"], + "client_phone": r["primary_phone"], + "project_name": r["project_name"], + } + for r in rows + ] + + return {"status": "ok", "data": opportunities, "meta": {"count": len(opportunities)}} + + +# ── Tasks / Reminders Endpoint ───────────────────────────────────────────── + +@router.get("/crm/tasks", tags=["CRM Tasks"]) +async def list_tasks( + request: Request, + status_filter: str | None = Query(default="pending", alias="status"), + assigned_to: str | None = None, + limit: int = Query(default=50, ge=1, le=200), +) -> dict[str, Any]: + """Reminder / task inbox for the CRM operator.""" + pool = await _get_pool(request) + clauses = ["1=1"] + params: list[Any] = [] + + if status_filter: + params.append(status_filter) + clauses.append(f"ir.status = ${len(params)}") + if assigned_to: + params.append(assigned_to) + clauses.append(f"ir.assigned_to = ${len(params)}::uuid") + + params.append(limit) + where = " AND ".join(clauses) + + async with pool.acquire() as conn: + rows = await conn.fetch( + f""" + SELECT ir.reminder_id, ir.reminder_type, ir.title, ir.notes, + ir.due_at, ir.status, ir.priority, + p.person_id, p.full_name, p.primary_phone + FROM intel_reminders ir + INNER JOIN crm_people p ON p.person_id = ir.person_id + WHERE {where} + ORDER BY ir.due_at ASC NULLS LAST, ir.created_at DESC + LIMIT ${len(params)} + """, + *params, + ) + + tasks = [ + { + "reminder_id": str(r["reminder_id"]), + "reminder_type": r["reminder_type"], + "title": r["title"], + "notes": r["notes"], + "due_at": r["due_at"].isoformat() if r["due_at"] else None, + "status": r["status"], + "priority": r["priority"], + "person_id": str(r["person_id"]), + "client_name": r["full_name"], + "client_phone": r["primary_phone"], + } + for r in rows + ] + + return {"status": "ok", "data": tasks, "meta": {"count": len(tasks)}} + + +@router.post("/crm/tasks", status_code=201, tags=["CRM Tasks"]) +async def create_task(request: Request, body: CreateReminderRequest) -> dict[str, Any]: + """Create a reminder / follow-up task.""" + pool = await _get_pool(request) + reminder_id = str(uuid.uuid4()) + + async with pool.acquire() as conn: + due_dt = None + if body.due_at: + try: + due_dt = datetime.fromisoformat(body.due_at) + except ValueError: + pass + + await conn.execute( + """ + INSERT INTO intel_reminders ( + reminder_id, person_id, lead_id, reminder_type, title, + notes, due_at, status, priority, created_by_type, created_at + ) VALUES ( + $1::uuid, $2::uuid, $3::uuid, $4, $5, $6, $7, 'pending', $8, 'human', NOW() + ) + """, + reminder_id, + body.person_id, + body.lead_id, + body.reminder_type, + body.title, + body.notes, + due_dt, + body.priority, + ) + + return {"status": "ok", "data": {"reminder_id": reminder_id, "title": body.title}} + + +# ── Canonical Kanban (from crm_leads) ───────────────────────────────────── + +@router.get("/crm/kanban", tags=["CRM Kanban"]) +async def get_canonical_kanban(request: Request) -> dict[str, Any]: + """ + Canonical Kanban board from crm_leads table. + Groups clients by lead status with QD summary. + """ + pool = await _get_pool(request) + STAGES = ["new", "contacted", "qualified", "site_visit_scheduled", "site_visited", + "negotiation", "booking_initiated", "booked", "lost", "dormant"] + + async with pool.acquire() as conn: + rows = await conn.fetch( + """ + SELECT + cl.lead_id, cl.status, cl.budget_band, cl.urgency, + p.person_id, p.full_name, p.primary_phone, p.buyer_type, + COALESCE(qs.intent_value, 0.0) AS intent_score + FROM crm_leads cl + INNER JOIN crm_people p ON p.person_id = cl.person_id + LEFT JOIN LATERAL ( + SELECT MAX(CASE WHEN score_type = 'intent_score' THEN current_value END) AS intent_value + FROM intel_qd_scores WHERE person_id = p.person_id + ) qs ON TRUE + ORDER BY qs.intent_value DESC NULLS LAST, cl.updated_at DESC + """ + ) + + grouped: dict[str, list[dict]] = {s: [] for s in STAGES} + for r in rows: + s = r["status"] or "new" + grouped.setdefault(s, []).append({ + "lead_id": str(r["lead_id"]), + "person_id": str(r["person_id"]), + "client_name": r["full_name"], + "client_phone": r["primary_phone"], + "buyer_type": r["buyer_type"], + "budget_band": r["budget_band"], + "urgency": r["urgency"], + "intent_score": float(r["intent_score"]), + }) + + board = [ + { + "status": s, + "label": s.replace("_", " ").title(), + "count": len(grouped.get(s, [])), + "items": grouped.get(s, []), + } + for s in STAGES + ] + return {"status": "ok", "data": board} + + +# ── QD Score Access ──────────────────────────────────────────────────────── + +@router.get("/crm/qd/{person_id}", tags=["CRM QD"]) +async def get_qd_score(request: Request, person_id: str) -> dict[str, Any]: + """QD score summary and recent timeseries for a client.""" + pool = await _get_pool(request) + async with pool.acquire() as conn: + scores = await conn.fetch( + "SELECT score_type, current_value, computed_at, reasoning FROM intel_qd_scores WHERE person_id = $1::uuid", + person_id, + ) + timeseries = await conn.fetch( + """ + SELECT score_type, value, timestamp, signal_source, delta + FROM intel_qd_timeseries + WHERE person_id = $1::uuid + ORDER BY timestamp DESC + LIMIT 50 + """, + person_id, + ) + + if not scores: + raise HTTPException(status_code=404, detail=f"No QD scores for client '{person_id}'.") + + return { + "status": "ok", + "data": { + "person_id": person_id, + "scores": { + r["score_type"]: { + "current_value": float(r["current_value"]), + "computed_at": r["computed_at"].isoformat() if r["computed_at"] else None, + "reasoning": r["reasoning"], + } + for r in scores + }, + "timeseries": [ + { + "score_type": r["score_type"], + "value": float(r["value"]), + "timestamp": r["timestamp"].isoformat() if r["timestamp"] else None, + "signal_source": r["signal_source"], + "delta": float(r["delta"]) if r["delta"] else None, + } + for r in timeseries + ], + }, + } diff --git a/backend/db/schema_crm_canonical.sql b/backend/db/schema_crm_canonical.sql new file mode 100644 index 00000000..83da2596 --- /dev/null +++ b/backend/db/schema_crm_canonical.sql @@ -0,0 +1,708 @@ +-- ============================================================================= +-- schema_crm_canonical.sql +-- Project Velocity — Canonical CRM and Platform Schema +-- ============================================================================= +-- Covers: crm_*, intel_*, inventory_*, workflow_* canonical domains +-- as specified in Doc 09: Database Schema and Root API Spec +-- and Doc 07: Contracts and Schema Blueprint +-- +-- Run AFTER schema.sql and schema_addendum.sql +-- psql -U velocity_user -d velocity_db -f schema_crm_canonical.sql +-- +-- Existing tables: users_and_roles, leads_intelligence, velocity_vault_assets, +-- omnichannel_logs, consent_log, video_scene_maps, +-- perception_sessions, cctv_events, leads, chat_logs +-- These are treated as legacy feeders per the reconciliation matrix. +-- ============================================================================= + +CREATE EXTENSION IF NOT EXISTS "pgcrypto"; +CREATE EXTENSION IF NOT EXISTS "pg_trgm"; + +-- ───────────────────────────────────────────────────────────────────────────── +-- ENUM TYPES — Canonical Domain +-- ───────────────────────────────────────────────────────────────────────────── + +DO $$ BEGIN + CREATE TYPE crm_lead_status AS ENUM ( + 'new', 'contacted', 'qualified', 'site_visit_scheduled', 'site_visited', + 'negotiation', 'booking_initiated', 'booked', 'lost', 'dormant' + ); +EXCEPTION WHEN duplicate_object THEN NULL; +END $$; + +DO $$ BEGIN + CREATE TYPE crm_opportunity_stage AS ENUM ( + 'prospect', 'qualified', 'proposal', 'site_visit', 'negotiation', + 'booking', 'agreement', 'closed_won', 'closed_lost' + ); +EXCEPTION WHEN duplicate_object THEN NULL; +END $$; + +DO $$ BEGIN + CREATE TYPE crm_account_type AS ENUM ( + 'individual', 'company', 'broker', 'developer', 'referral_partner', 'nri_family' + ); +EXCEPTION WHEN duplicate_object THEN NULL; +END $$; + +DO $$ BEGIN + CREATE TYPE crm_relationship_type AS ENUM ( + 'spouse', 'parent', 'sibling', 'business_partner', 'broker_referral', + 'co_buyer', 'family_member', 'advisor' + ); +EXCEPTION WHEN duplicate_object THEN NULL; +END $$; + +DO $$ BEGIN + CREATE TYPE intel_channel AS ENUM ( + 'whatsapp', 'phone', 'email', 'site_visit', 'office_meeting', + 'video_call', 'cctv', 'perception_session', 'system' + ); +EXCEPTION WHEN duplicate_object THEN NULL; +END $$; + +DO $$ BEGIN + CREATE TYPE intel_call_direction AS ENUM ('inbound', 'outbound'); +EXCEPTION WHEN duplicate_object THEN NULL; +END $$; + +DO $$ BEGIN + CREATE TYPE wf_status AS ENUM ( + 'pending', 'review_required', 'approved', 'rejected', 'executed', 'failed', 'cancelled' + ); +EXCEPTION WHEN duplicate_object THEN NULL; +END $$; + +DO $$ BEGIN + CREATE TYPE import_lifecycle AS ENUM ( + 'uploaded', 'parsed', 'mapped', 'proposed', 'approved', 'committed', 'failed' + ); +EXCEPTION WHEN duplicate_object THEN NULL; +END $$; + +-- ───────────────────────────────────────────────────────────────────────────── +-- SECTION 1: CRM CORE DOMAIN (crm_*) +-- ───────────────────────────────────────────────────────────────────────────── + +-- TABLE: crm_people +-- Purpose: canonical person-level contact identity +CREATE TABLE IF NOT EXISTS crm_people ( + person_id UUID PRIMARY KEY DEFAULT gen_random_uuid(), + full_name TEXT NOT NULL, + primary_email TEXT, + primary_phone TEXT, + secondary_phone TEXT, + linkedin_url TEXT, + city TEXT, + nationality TEXT, + buyer_type TEXT, -- high_intent, slow_burn_investor, nri, etc. + persona_labels JSONB NOT NULL DEFAULT '[]'::jsonb, + source_confidence FLOAT CHECK (source_confidence BETWEEN 0.0 AND 1.0), + -- Legacy feeder references (migration linkage) + legacy_lead_id TEXT, -- links to old leads.id + legacy_li_id UUID, -- links to leads_intelligence.id + -- Metadata + metadata_json JSONB NOT NULL DEFAULT '{}'::jsonb, + created_at TIMESTAMPTZ NOT NULL DEFAULT NOW(), + updated_at TIMESTAMPTZ NOT NULL DEFAULT NOW() +); + +CREATE INDEX IF NOT EXISTS idx_crm_people_email ON crm_people (primary_email); +CREATE INDEX IF NOT EXISTS idx_crm_people_phone ON crm_people (primary_phone); +CREATE INDEX IF NOT EXISTS idx_crm_people_name_trgm ON crm_people USING GIN (full_name gin_trgm_ops); +CREATE INDEX IF NOT EXISTS idx_crm_people_buyer_type ON crm_people (buyer_type); + +-- TABLE: crm_accounts +-- Purpose: company, employer, brokerage, or client organization +CREATE TABLE IF NOT EXISTS crm_accounts ( + account_id UUID PRIMARY KEY DEFAULT gen_random_uuid(), + account_name TEXT NOT NULL, + parent_account_id UUID REFERENCES crm_accounts(account_id) ON DELETE SET NULL, + account_type crm_account_type NOT NULL DEFAULT 'company', + industry TEXT, + location_ref TEXT, + website TEXT, + metadata_json JSONB NOT NULL DEFAULT '{}'::jsonb, + created_at TIMESTAMPTZ NOT NULL DEFAULT NOW(), + updated_at TIMESTAMPTZ NOT NULL DEFAULT NOW() +); + +CREATE INDEX IF NOT EXISTS idx_crm_accounts_name ON crm_accounts (account_name); +CREATE INDEX IF NOT EXISTS idx_crm_accounts_type ON crm_accounts (account_type); + +-- TABLE: crm_households +-- Purpose: family or co-buyer unit grouping +CREATE TABLE IF NOT EXISTS crm_households ( + household_id UUID PRIMARY KEY DEFAULT gen_random_uuid(), + household_name TEXT NOT NULL, + primary_person_id UUID REFERENCES crm_people(person_id) ON DELETE SET NULL, + notes TEXT, + metadata_json JSONB NOT NULL DEFAULT '{}'::jsonb, + created_at TIMESTAMPTZ NOT NULL DEFAULT NOW() +); + +-- TABLE: crm_relationships +-- Purpose: person-to-person relationship graph +CREATE TABLE IF NOT EXISTS crm_relationships ( + relationship_id UUID PRIMARY KEY DEFAULT gen_random_uuid(), + person_a_id UUID NOT NULL REFERENCES crm_people(person_id) ON DELETE CASCADE, + person_b_id UUID NOT NULL REFERENCES crm_people(person_id) ON DELETE CASCADE, + relationship_type crm_relationship_type NOT NULL, + household_id UUID REFERENCES crm_households(household_id) ON DELETE SET NULL, + notes TEXT, + created_at TIMESTAMPTZ NOT NULL DEFAULT NOW(), + UNIQUE (person_a_id, person_b_id, relationship_type) +); + +CREATE INDEX IF NOT EXISTS idx_crm_rel_a ON crm_relationships (person_a_id); +CREATE INDEX IF NOT EXISTS idx_crm_rel_b ON crm_relationships (person_b_id); + +-- TABLE: crm_leads +-- Purpose: funnel-stage commercial qualification layer +CREATE TABLE IF NOT EXISTS crm_leads ( + lead_id UUID PRIMARY KEY DEFAULT gen_random_uuid(), + person_id UUID NOT NULL REFERENCES crm_people(person_id) ON DELETE CASCADE, + account_id UUID REFERENCES crm_accounts(account_id) ON DELETE SET NULL, + source_system TEXT DEFAULT 'velocity', + status crm_lead_status NOT NULL DEFAULT 'new', + budget_band TEXT, + urgency TEXT, -- low, medium, high, critical + financing_posture TEXT, -- cash, loan, nri_remittance, emi + timeline_to_decision TEXT, + objections JSONB NOT NULL DEFAULT '[]'::jsonb, + motivations JSONB NOT NULL DEFAULT '[]'::jsonb, + assigned_user_id UUID REFERENCES users_and_roles(id) ON DELETE SET NULL, + -- Legacy feeder + legacy_lead_id TEXT, + metadata_json JSONB NOT NULL DEFAULT '{}'::jsonb, + created_at TIMESTAMPTZ NOT NULL DEFAULT NOW(), + updated_at TIMESTAMPTZ NOT NULL DEFAULT NOW() +); + +CREATE INDEX IF NOT EXISTS idx_crm_leads_person ON crm_leads (person_id); +CREATE INDEX IF NOT EXISTS idx_crm_leads_status ON crm_leads (status); +CREATE INDEX IF NOT EXISTS idx_crm_leads_assigned ON crm_leads (assigned_user_id); +CREATE INDEX IF NOT EXISTS idx_crm_leads_source ON crm_leads (source_system); + +-- TABLE: crm_opportunities +-- Purpose: deal pipeline objects +CREATE TABLE IF NOT EXISTS crm_opportunities ( + opportunity_id UUID PRIMARY KEY DEFAULT gen_random_uuid(), + lead_id UUID NOT NULL REFERENCES crm_leads(lead_id) ON DELETE CASCADE, + project_id UUID, -- references inventory_projects + unit_id UUID, -- references inventory_units + stage crm_opportunity_stage NOT NULL DEFAULT 'prospect', + value DECIMAL(15, 2), + probability INTEGER CHECK (probability BETWEEN 0 AND 100), + expected_close_date DATE, + next_action TEXT, + notes TEXT, + metadata_json JSONB NOT NULL DEFAULT '{}'::jsonb, + created_at TIMESTAMPTZ NOT NULL DEFAULT NOW(), + updated_at TIMESTAMPTZ NOT NULL DEFAULT NOW() +); + +CREATE INDEX IF NOT EXISTS idx_crm_opp_lead ON crm_opportunities (lead_id); +CREATE INDEX IF NOT EXISTS idx_crm_opp_stage ON crm_opportunities (stage); +CREATE INDEX IF NOT EXISTS idx_crm_opp_project ON crm_opportunities (project_id); + +-- TABLE: crm_property_interests +-- Purpose: project and unit interest linking per client +CREATE TABLE IF NOT EXISTS crm_property_interests ( + interest_id UUID PRIMARY KEY DEFAULT gen_random_uuid(), + person_id UUID NOT NULL REFERENCES crm_people(person_id) ON DELETE CASCADE, + lead_id UUID REFERENCES crm_leads(lead_id) ON DELETE SET NULL, + project_id UUID, + project_name TEXT NOT NULL, + unit_preference TEXT, + configuration TEXT, -- 2BHK, 3BHK, Penthouse, etc. + budget_min DECIMAL(15, 2), + budget_max DECIMAL(15, 2), + priority INTEGER DEFAULT 1, -- 1 = primary, 2 = secondary + notes TEXT, + created_at TIMESTAMPTZ NOT NULL DEFAULT NOW() +); + +CREATE INDEX IF NOT EXISTS idx_crm_pi_person ON crm_property_interests (person_id); +CREATE INDEX IF NOT EXISTS idx_crm_pi_project ON crm_property_interests (project_id); + +-- TABLE: crm_stage_history +-- Purpose: canonical audit trail of lead stage transitions +CREATE TABLE IF NOT EXISTS crm_stage_history ( + history_id UUID PRIMARY KEY DEFAULT gen_random_uuid(), + lead_id UUID NOT NULL REFERENCES crm_leads(lead_id) ON DELETE CASCADE, + from_status TEXT, + to_status TEXT NOT NULL, + changed_by UUID REFERENCES users_and_roles(id) ON DELETE SET NULL, + changed_by_type TEXT DEFAULT 'human', -- human, ai, system + notes TEXT, + happened_at TIMESTAMPTZ NOT NULL DEFAULT NOW() +); + +CREATE INDEX IF NOT EXISTS idx_crm_stage_lead ON crm_stage_history (lead_id, happened_at DESC); + +-- ───────────────────────────────────────────────────────────────────────────── +-- SECTION 2: INTERACTION AND EVIDENCE GRAPH (intel_*) +-- ───────────────────────────────────────────────────────────────────────────── + +-- TABLE: intel_interactions +-- Purpose: umbrella interaction event record +CREATE TABLE IF NOT EXISTS intel_interactions ( + interaction_id UUID PRIMARY KEY DEFAULT gen_random_uuid(), + person_id UUID NOT NULL REFERENCES crm_people(person_id) ON DELETE CASCADE, + lead_id UUID REFERENCES crm_leads(lead_id) ON DELETE SET NULL, + channel intel_channel NOT NULL, + interaction_type TEXT NOT NULL, -- message, call, visit, email, note + happened_at TIMESTAMPTZ NOT NULL DEFAULT NOW(), + summary TEXT, + source_ref TEXT, + metadata_json JSONB NOT NULL DEFAULT '{}'::jsonb, + created_at TIMESTAMPTZ NOT NULL DEFAULT NOW() +); + +CREATE INDEX IF NOT EXISTS idx_intel_int_person ON intel_interactions (person_id, happened_at DESC); +CREATE INDEX IF NOT EXISTS idx_intel_int_lead ON intel_interactions (lead_id, happened_at DESC); +CREATE INDEX IF NOT EXISTS idx_intel_int_channel ON intel_interactions (channel); + +-- TABLE: intel_messages +-- Purpose: text-level message records (WhatsApp, chat) +CREATE TABLE IF NOT EXISTS intel_messages ( + message_id UUID PRIMARY KEY DEFAULT gen_random_uuid(), + interaction_id UUID NOT NULL REFERENCES intel_interactions(interaction_id) ON DELETE CASCADE, + thread_id UUID, + sender_role TEXT NOT NULL, -- lead, broker, system, oracle + sender_name TEXT, + message_text TEXT NOT NULL, + delivered_at TIMESTAMPTZ NOT NULL DEFAULT NOW(), + metadata_json JSONB NOT NULL DEFAULT '{}'::jsonb +); + +CREATE INDEX IF NOT EXISTS idx_intel_msg_interaction ON intel_messages (interaction_id, delivered_at DESC); + +-- TABLE: intel_whatsapp_threads +-- Purpose: WhatsApp thread-level summaries +CREATE TABLE IF NOT EXISTS intel_whatsapp_threads ( + thread_id UUID PRIMARY KEY DEFAULT gen_random_uuid(), + person_id UUID NOT NULL REFERENCES crm_people(person_id) ON DELETE CASCADE, + lead_id UUID REFERENCES crm_leads(lead_id) ON DELETE SET NULL, + phone_number TEXT, + thread_summary TEXT, + message_count INTEGER DEFAULT 0, + last_message_at TIMESTAMPTZ, + metadata_json JSONB NOT NULL DEFAULT '{}'::jsonb, + created_at TIMESTAMPTZ NOT NULL DEFAULT NOW() +); + +CREATE INDEX IF NOT EXISTS idx_intel_wa_person ON intel_whatsapp_threads (person_id); + +-- TABLE: intel_calls +-- Purpose: voice call records +CREATE TABLE IF NOT EXISTS intel_calls ( + call_id UUID PRIMARY KEY DEFAULT gen_random_uuid(), + interaction_id UUID NOT NULL REFERENCES intel_interactions(interaction_id) ON DELETE CASCADE, + call_direction intel_call_direction NOT NULL DEFAULT 'outbound', + duration_seconds INTEGER, + recording_ref TEXT, -- storage path or URL to recording + transcript_ref TEXT, -- path to transcript JSON + call_outcome TEXT, -- connected, no_answer, voicemail, dropped + called_number TEXT, + metadata_json JSONB NOT NULL DEFAULT '{}'::jsonb +); + +CREATE INDEX IF NOT EXISTS idx_intel_call_interaction ON intel_calls (interaction_id); + +-- TABLE: intel_transcripts +-- Purpose: transcript and speaker segmentation storage +CREATE TABLE IF NOT EXISTS intel_transcripts ( + transcript_id UUID PRIMARY KEY DEFAULT gen_random_uuid(), + call_id UUID REFERENCES intel_calls(call_id) ON DELETE SET NULL, + interaction_id UUID REFERENCES intel_interactions(interaction_id) ON DELETE SET NULL, + language TEXT DEFAULT 'en', + full_text TEXT, + speaker_segments_json JSONB NOT NULL DEFAULT '[]'::jsonb, + confidence FLOAT CHECK (confidence BETWEEN 0.0 AND 1.0), + word_count INTEGER, + metadata_json JSONB NOT NULL DEFAULT '{}'::jsonb, + created_at TIMESTAMPTZ NOT NULL DEFAULT NOW() +); + +CREATE INDEX IF NOT EXISTS idx_intel_transcript_call ON intel_transcripts (call_id); +CREATE INDEX IF NOT EXISTS idx_intel_transcript_interaction ON intel_transcripts (interaction_id); + +-- TABLE: intel_emails +-- Purpose: email thread records +CREATE TABLE IF NOT EXISTS intel_emails ( + email_id UUID PRIMARY KEY DEFAULT gen_random_uuid(), + interaction_id UUID NOT NULL REFERENCES intel_interactions(interaction_id) ON DELETE CASCADE, + from_address TEXT, + to_addresses JSONB NOT NULL DEFAULT '[]'::jsonb, + subject TEXT, + body_text TEXT, + has_attachments BOOLEAN DEFAULT FALSE, + sent_at TIMESTAMPTZ NOT NULL DEFAULT NOW(), + metadata_json JSONB NOT NULL DEFAULT '{}'::jsonb +); + +CREATE INDEX IF NOT EXISTS idx_intel_email_interaction ON intel_emails (interaction_id); + +-- TABLE: intel_visits +-- Purpose: site visit and meeting records +CREATE TABLE IF NOT EXISTS intel_visits ( + visit_id UUID PRIMARY KEY DEFAULT gen_random_uuid(), + person_id UUID NOT NULL REFERENCES crm_people(person_id) ON DELETE CASCADE, + lead_id UUID REFERENCES crm_leads(lead_id) ON DELETE SET NULL, + project_id UUID, + project_name TEXT, + unit_id UUID, + visited_at TIMESTAMPTZ NOT NULL DEFAULT NOW(), + visit_notes TEXT, + host_user_id UUID REFERENCES users_and_roles(id) ON DELETE SET NULL, + revisit_intent TEXT, -- very_likely, likely, uncertain, unlikely + cctv_session_ref TEXT, + perception_session_ref TEXT, + metadata_json JSONB NOT NULL DEFAULT '{}'::jsonb +); + +CREATE INDEX IF NOT EXISTS idx_intel_visits_person ON intel_visits (person_id, visited_at DESC); +CREATE INDEX IF NOT EXISTS idx_intel_visits_project ON intel_visits (project_id); + +-- TABLE: intel_reminders +-- Purpose: reminders and follow-up task chains +CREATE TABLE IF NOT EXISTS intel_reminders ( + reminder_id UUID PRIMARY KEY DEFAULT gen_random_uuid(), + person_id UUID NOT NULL REFERENCES crm_people(person_id) ON DELETE CASCADE, + lead_id UUID REFERENCES crm_leads(lead_id) ON DELETE SET NULL, + opportunity_id UUID REFERENCES crm_opportunities(opportunity_id) ON DELETE SET NULL, + reminder_type TEXT NOT NULL, -- call_back, follow_up, site_visit, document, negotiation + title TEXT NOT NULL, + notes TEXT, + due_at TIMESTAMPTZ, + completed_at TIMESTAMPTZ, + status TEXT NOT NULL DEFAULT 'pending', -- pending, done, snoozed, cancelled + assigned_to UUID REFERENCES users_and_roles(id) ON DELETE SET NULL, + created_by_type TEXT DEFAULT 'human', -- human, ai, system + priority TEXT DEFAULT 'normal', -- low, normal, high, urgent + metadata_json JSONB NOT NULL DEFAULT '{}'::jsonb, + created_at TIMESTAMPTZ NOT NULL DEFAULT NOW() +); + +CREATE INDEX IF NOT EXISTS idx_intel_reminder_person ON intel_reminders (person_id, due_at); +CREATE INDEX IF NOT EXISTS idx_intel_reminder_status ON intel_reminders (status, due_at); +CREATE INDEX IF NOT EXISTS idx_intel_reminder_assigned ON intel_reminders (assigned_to, due_at); + +-- TABLE: intel_qd_scores +-- Purpose: latest meaningful QD summary by client +CREATE TABLE IF NOT EXISTS intel_qd_scores ( + qd_id UUID PRIMARY KEY DEFAULT gen_random_uuid(), + person_id UUID NOT NULL REFERENCES crm_people(person_id) ON DELETE CASCADE, + score_type TEXT NOT NULL, -- intent_score, urgency_score, engagement_score + current_value FLOAT NOT NULL CHECK (current_value BETWEEN 0.0 AND 1.0), + computed_at TIMESTAMPTZ NOT NULL DEFAULT NOW(), + evidence_refs_json JSONB NOT NULL DEFAULT '[]'::jsonb, + reasoning TEXT, + metadata_json JSONB NOT NULL DEFAULT '{}'::jsonb, + UNIQUE (person_id, score_type) +); + +CREATE INDEX IF NOT EXISTS idx_intel_qd_person ON intel_qd_scores (person_id); + +-- TABLE: intel_qd_timeseries +-- Purpose: time-series QD propagation and shifts +CREATE TABLE IF NOT EXISTS intel_qd_timeseries ( + timeseries_id UUID PRIMARY KEY DEFAULT gen_random_uuid(), + person_id UUID NOT NULL REFERENCES crm_people(person_id) ON DELETE CASCADE, + score_type TEXT NOT NULL, + signal_source TEXT, + timestamp TIMESTAMPTZ NOT NULL DEFAULT NOW(), + value FLOAT NOT NULL CHECK (value BETWEEN 0.0 AND 1.0), + delta FLOAT, + evidence_ref TEXT, + metadata_json JSONB NOT NULL DEFAULT '{}'::jsonb +); + +CREATE INDEX IF NOT EXISTS idx_intel_qd_ts_person ON intel_qd_timeseries (person_id, timestamp DESC); +CREATE INDEX IF NOT EXISTS idx_intel_qd_ts_type ON intel_qd_timeseries (score_type, timestamp DESC); + +-- TABLE: intel_vehicle_events +-- Purpose: number-plate and vehicle detection events +CREATE TABLE IF NOT EXISTS intel_vehicle_events ( + event_id UUID PRIMARY KEY DEFAULT gen_random_uuid(), + person_id UUID REFERENCES crm_people(person_id) ON DELETE SET NULL, + visit_id UUID REFERENCES intel_visits(visit_id) ON DELETE SET NULL, + zone TEXT, + license_plate_hash TEXT, -- hashed for privacy + vehicle_class TEXT, -- luxury, standard, unknown + wealth_indicator TEXT, -- HNI, standard, unknown + cctv_ref TEXT, + captured_at TIMESTAMPTZ NOT NULL DEFAULT NOW(), + metadata_json JSONB NOT NULL DEFAULT '{}'::jsonb +); + +CREATE INDEX IF NOT EXISTS idx_intel_vehicle_person ON intel_vehicle_events (person_id); + +-- TABLE: intel_perception_events +-- Purpose: behavioral and dwell-time intelligence from perception sessions +CREATE TABLE IF NOT EXISTS intel_perception_events ( + perception_id UUID PRIMARY KEY DEFAULT gen_random_uuid(), + person_id UUID REFERENCES crm_people(person_id) ON DELETE SET NULL, + visit_id UUID REFERENCES intel_visits(visit_id) ON DELETE SET NULL, + session_ref TEXT, -- perception_sessions.id linkage + event_type TEXT NOT NULL, -- room_dwell, engagement_spike, exit + rooms_visited JSONB NOT NULL DEFAULT '[]'::jsonb, + dwell_time_seconds INTEGER, + engagement_score FLOAT CHECK (engagement_score BETWEEN 0.0 AND 1.0), + camera_id TEXT, + media_ref TEXT, + happened_at TIMESTAMPTZ NOT NULL DEFAULT NOW(), + metadata_json JSONB NOT NULL DEFAULT '{}'::jsonb +); + +CREATE INDEX IF NOT EXISTS idx_intel_perception_person ON intel_perception_events (person_id); + +-- TABLE: intel_cctv_links +-- Purpose: CCTV evidence references linked to client/visit contexts +CREATE TABLE IF NOT EXISTS intel_cctv_links ( + link_id UUID PRIMARY KEY DEFAULT gen_random_uuid(), + person_id UUID REFERENCES crm_people(person_id) ON DELETE SET NULL, + visit_id UUID REFERENCES intel_visits(visit_id) ON DELETE SET NULL, + cctv_event_id UUID REFERENCES cctv_events(id) ON DELETE SET NULL, + clip_ref TEXT, + camera_zone TEXT, + confidence FLOAT CHECK (confidence BETWEEN 0.0 AND 1.0), + linked_at TIMESTAMPTZ NOT NULL DEFAULT NOW(), + metadata_json JSONB NOT NULL DEFAULT '{}'::jsonb +); + +CREATE INDEX IF NOT EXISTS idx_intel_cctv_person ON intel_cctv_links (person_id); + +-- ───────────────────────────────────────────────────────────────────────────── +-- SECTION 3: INVENTORY DOMAIN (inventory_*) +-- ───────────────────────────────────────────────────────────────────────────── + +-- TABLE: inventory_projects +-- Purpose: project-level inventory master +CREATE TABLE IF NOT EXISTS inventory_projects ( + project_id UUID PRIMARY KEY DEFAULT gen_random_uuid(), + project_name TEXT NOT NULL UNIQUE, + developer_name TEXT NOT NULL, + city TEXT NOT NULL DEFAULT 'Kolkata', + micro_market TEXT, + address TEXT, + total_units INTEGER, + rera_number TEXT, + project_status TEXT DEFAULT 'active', -- active, sold_out, upcoming + launch_date DATE, + possession_date DATE, + location_json JSONB NOT NULL DEFAULT '{}'::jsonb, + amenities_json JSONB NOT NULL DEFAULT '[]'::jsonb, + metadata_json JSONB NOT NULL DEFAULT '{}'::jsonb, + created_at TIMESTAMPTZ NOT NULL DEFAULT NOW(), + updated_at TIMESTAMPTZ NOT NULL DEFAULT NOW() +); + +CREATE INDEX IF NOT EXISTS idx_inv_projects_name ON inventory_projects (project_name); +CREATE INDEX IF NOT EXISTS idx_inv_projects_market ON inventory_projects (micro_market); + +-- TABLE: inventory_units +-- Purpose: unit-level availability and attributes +CREATE TABLE IF NOT EXISTS inventory_units ( + unit_id UUID PRIMARY KEY DEFAULT gen_random_uuid(), + project_id UUID NOT NULL REFERENCES inventory_projects(project_id) ON DELETE CASCADE, + unit_label TEXT NOT NULL, + configuration TEXT NOT NULL, -- 2BHK, 3BHK, Penthouse, etc. + area_sqft DECIMAL(10, 2), + price_current DECIMAL(15, 2), + price_psf DECIMAL(10, 2), + status TEXT NOT NULL DEFAULT 'available', -- available, reserved, sold, hold + floor INTEGER, + tower TEXT, + facing TEXT, + has_attached_amenities JSONB NOT NULL DEFAULT '[]'::jsonb, + metadata_json JSONB NOT NULL DEFAULT '{}'::jsonb, + updated_at TIMESTAMPTZ NOT NULL DEFAULT NOW(), + UNIQUE (project_id, unit_label) +); + +CREATE INDEX IF NOT EXISTS idx_inv_units_project ON inventory_units (project_id); +CREATE INDEX IF NOT EXISTS idx_inv_units_status ON inventory_units (status); +CREATE INDEX IF NOT EXISTS idx_inv_units_config ON inventory_units (configuration); + +-- TABLE: inventory_import_jobs +-- Purpose: track inventory CSV import operations +CREATE TABLE IF NOT EXISTS inventory_import_jobs ( + job_id UUID PRIMARY KEY DEFAULT gen_random_uuid(), + project_id UUID REFERENCES inventory_projects(project_id) ON DELETE SET NULL, + filename TEXT NOT NULL, + row_count INTEGER, + imported_by UUID REFERENCES users_and_roles(id) ON DELETE SET NULL, + status TEXT NOT NULL DEFAULT 'pending', + errors_json JSONB NOT NULL DEFAULT '[]'::jsonb, + created_at TIMESTAMPTZ NOT NULL DEFAULT NOW(), + completed_at TIMESTAMPTZ +); + +-- ───────────────────────────────────────────────────────────────────────────── +-- SECTION 4: AI WORKFLOW AND GOVERNANCE (workflow_*) +-- ───────────────────────────────────────────────────────────────────────────── + +-- TABLE: workflow_actions +-- Purpose: track proposed AI/human actions before approval +CREATE TABLE IF NOT EXISTS workflow_actions ( + action_id UUID PRIMARY KEY DEFAULT gen_random_uuid(), + action_type TEXT NOT NULL, -- import_review, merge_proposal, writeback, enrichment + target_domain TEXT NOT NULL, -- crm, intel, inventory + target_entity_ref TEXT, + proposal_payload JSONB NOT NULL DEFAULT '{}'::jsonb, + reasoning_summary TEXT, + evidence_refs JSONB NOT NULL DEFAULT '[]'::jsonb, + confidence FLOAT CHECK (confidence BETWEEN 0.0 AND 1.0), + status wf_status NOT NULL DEFAULT 'pending', + approval_required BOOLEAN NOT NULL DEFAULT TRUE, + created_by_agent TEXT, + created_at TIMESTAMPTZ NOT NULL DEFAULT NOW(), + updated_at TIMESTAMPTZ NOT NULL DEFAULT NOW() +); + +CREATE INDEX IF NOT EXISTS idx_wf_actions_status ON workflow_actions (status, created_at DESC); +CREATE INDEX IF NOT EXISTS idx_wf_actions_domain ON workflow_actions (target_domain); + +-- TABLE: workflow_approvals +-- Purpose: explicit human review decisions +CREATE TABLE IF NOT EXISTS workflow_approvals ( + decision_id UUID PRIMARY KEY DEFAULT gen_random_uuid(), + action_id UUID NOT NULL REFERENCES workflow_actions(action_id) ON DELETE CASCADE, + reviewer_id UUID REFERENCES users_and_roles(id) ON DELETE SET NULL, + decision TEXT NOT NULL, -- approved, rejected, needs_more_info + decision_notes TEXT, + decided_at TIMESTAMPTZ NOT NULL DEFAULT NOW() +); + +CREATE INDEX IF NOT EXISTS idx_wf_approvals_action ON workflow_approvals (action_id); + +-- TABLE: workflow_writebacks +-- Purpose: track AI-suggested and approved canonical mutations +CREATE TABLE IF NOT EXISTS workflow_writebacks ( + writeback_id UUID PRIMARY KEY DEFAULT gen_random_uuid(), + action_id UUID REFERENCES workflow_actions(action_id) ON DELETE SET NULL, + approval_id UUID REFERENCES workflow_approvals(decision_id) ON DELETE SET NULL, + target_domain TEXT NOT NULL, + target_entity_ref TEXT NOT NULL, + change_payload JSONB NOT NULL DEFAULT '{}'::jsonb, + status wf_status NOT NULL DEFAULT 'pending', + approved_by UUID REFERENCES users_and_roles(id) ON DELETE SET NULL, + executed_at TIMESTAMPTZ, + error_detail TEXT, + created_at TIMESTAMPTZ NOT NULL DEFAULT NOW() +); + +CREATE INDEX IF NOT EXISTS idx_wf_wb_status ON workflow_writebacks (status, created_at DESC); +CREATE INDEX IF NOT EXISTS idx_wf_wb_domain ON workflow_writebacks (target_domain); + +-- TABLE: workflow_import_batches +-- Purpose: CRM import batch lifecycle tracking (RawImportBatch contract) +CREATE TABLE IF NOT EXISTS workflow_import_batches ( + batch_id UUID PRIMARY KEY DEFAULT gen_random_uuid(), + source_system TEXT NOT NULL, -- csv_upload, salesforce, hubspot, manual + uploaded_filename TEXT, + mime_type TEXT DEFAULT 'text/csv', + storage_ref TEXT, + row_count INTEGER, + mapped_count INTEGER DEFAULT 0, + unresolved_count INTEGER DEFAULT 0, + canonical_count INTEGER DEFAULT 0, + uploaded_by UUID REFERENCES users_and_roles(id) ON DELETE SET NULL, + lifecycle import_lifecycle NOT NULL DEFAULT 'uploaded', + mapping_manifest JSONB NOT NULL DEFAULT '{}'::jsonb, + errors_json JSONB NOT NULL DEFAULT '[]'::jsonb, + metadata_json JSONB NOT NULL DEFAULT '{}'::jsonb, + created_at TIMESTAMPTZ NOT NULL DEFAULT NOW(), + updated_at TIMESTAMPTZ NOT NULL DEFAULT NOW() +); + +CREATE INDEX IF NOT EXISTS idx_wf_import_lifecycle ON workflow_import_batches (lifecycle, created_at DESC); +CREATE INDEX IF NOT EXISTS idx_wf_import_user ON workflow_import_batches (uploaded_by); + +-- TABLE: workflow_agent_runs +-- Purpose: track NemoClaw and AI agent invocation logs +CREATE TABLE IF NOT EXISTS workflow_agent_runs ( + run_id UUID PRIMARY KEY DEFAULT gen_random_uuid(), + agent_name TEXT NOT NULL, -- nemoclaw, import_mapper, enrichment_engine + trigger_type TEXT NOT NULL, -- import, enrichment, qd_update, writeback + trigger_ref TEXT, + input_payload JSONB NOT NULL DEFAULT '{}'::jsonb, + output_payload JSONB NOT NULL DEFAULT '{}'::jsonb, + status TEXT NOT NULL DEFAULT 'running', -- running, completed, failed + duration_ms INTEGER, + error_detail TEXT, + started_at TIMESTAMPTZ NOT NULL DEFAULT NOW(), + completed_at TIMESTAMPTZ +); + +CREATE INDEX IF NOT EXISTS idx_wf_agent_runs_agent ON workflow_agent_runs (agent_name, started_at DESC); +CREATE INDEX IF NOT EXISTS idx_wf_agent_runs_status ON workflow_agent_runs (status); + +-- ───────────────────────────────────────────────────────────────────────────── +-- TRIGGERS: auto-update updated_at +-- ───────────────────────────────────────────────────────────────────────────── + +CREATE OR REPLACE FUNCTION set_canonical_updated_at() +RETURNS TRIGGER LANGUAGE plpgsql AS $$ +BEGIN + NEW.updated_at = NOW(); + RETURN NEW; +END; +$$; + +DO $$ DECLARE + t TEXT; +BEGIN + FOREACH t IN ARRAY ARRAY[ + 'crm_people', 'crm_accounts', 'crm_leads', 'crm_opportunities', + 'inventory_projects', 'inventory_units', + 'workflow_actions', 'workflow_import_batches' + ] LOOP + EXECUTE format( + 'DROP TRIGGER IF EXISTS trg_%s_updated_at ON %s; + CREATE TRIGGER trg_%s_updated_at + BEFORE UPDATE ON %s + FOR EACH ROW EXECUTE FUNCTION set_canonical_updated_at();', + t, t, t, t + ); + END LOOP; +END $$; + +-- ───────────────────────────────────────────────────────────────────────────── +-- INVENTORY SEED: 14 Canonical Kolkata Projects +-- ───────────────────────────────────────────────────────────────────────────── + +INSERT INTO inventory_projects (project_id, project_name, developer_name, city, micro_market) +VALUES + (gen_random_uuid(), 'Eden Devprayag', 'Eden Group', 'Kolkata', 'Rajarhat'), + (gen_random_uuid(), 'Sugam Prakriti', 'Sugam Homes', 'Kolkata', 'Barasat'), + (gen_random_uuid(), 'Atri Aqua', 'Atri Developers', 'Kolkata', 'New Town'), + (gen_random_uuid(), 'Atri Surya Toron', 'Atri Developers', 'Kolkata', 'Rajarhat'), + (gen_random_uuid(), 'Siddha Suburbia Bungalow', 'Siddha Group', 'Kolkata', 'Madanpur'), + (gen_random_uuid(), 'Merlin Avana', 'Merlin Group', 'Kolkata', 'Tangra'), + (gen_random_uuid(), 'DTC Good Earth', 'DTC Projects', 'Kolkata', 'New Town'), + (gen_random_uuid(), 'Siddha Serena', 'Siddha Group', 'Kolkata', 'New Town'), + (gen_random_uuid(), 'Siddha Sky Waterfront', 'Siddha Group', 'Kolkata', 'Beliaghata'), + (gen_random_uuid(), 'Godrej Blue', 'Godrej Properties', 'Kolkata', 'New Town'), + (gen_random_uuid(), 'DTC Sojon', 'DTC Projects', 'Kolkata', 'Rajarhat'), + (gen_random_uuid(), 'Shriram Grand City', 'Shriram Properties', 'Kolkata', 'Howrah'), + (gen_random_uuid(), 'Godrej Elevate', 'Godrej Properties', 'Kolkata', 'Dum Dum'), + (gen_random_uuid(), 'Ambuja Utpaala', 'Ambuja Neotia', 'Kolkata', 'Tollygunge') +ON CONFLICT (project_name) DO NOTHING; + +-- ───────────────────────────────────────────────────────────────────────────── +-- COMMENTS +-- ───────────────────────────────────────────────────────────────────────────── + +COMMENT ON TABLE crm_people IS 'Canonical person-level contact identity. Primary join key across all CRM tables.'; +COMMENT ON TABLE crm_leads IS 'Funnel-stage commercial qualification. One person may have multiple lead contexts.'; +COMMENT ON TABLE crm_opportunities IS 'Deal pipeline objects linked to leads and inventory.'; +COMMENT ON TABLE intel_interactions IS 'Umbrella interaction event. All channels (WhatsApp, call, email, visit) link here.'; +COMMENT ON TABLE intel_transcripts IS 'Speaker-segmented call transcripts. speaker_segments_json is first-class data.'; +COMMENT ON TABLE intel_qd_scores IS 'Latest QD summary by score_type per client. UNIQUE constraint enforces one row per type.'; +COMMENT ON TABLE inventory_projects IS 'Master project catalog. 14 canonical Kolkata projects seeded.'; +COMMENT ON TABLE workflow_import_batches IS 'RawImportBatch contract. Immutable after upload.'; +COMMENT ON TABLE workflow_writebacks IS 'AI-proposed canonical mutations. Never auto-execute without approval.'; diff --git a/backend/main.py b/backend/main.py index 9556ca1d..5a0e7c7f 100644 --- a/backend/main.py +++ b/backend/main.py @@ -27,6 +27,7 @@ from backend.api.routes_mobile_edge import router as mobile_edge_router from backend.api.routes_inventory import router as inventory_router from backend.api.routes_admin_surface import router as admin_surface_router from backend.api.routes_oracle_templates import router as oracle_templates_router +from backend.api.routes_crm_imports import router as crm_imports_router from backend.auth.dependencies import ( create_access_token, verify_password, get_current_user ) @@ -106,6 +107,7 @@ app.include_router(vault_router, prefix="/api/vault", tags=["Vault"]) app.include_router(mobile_edge_router, prefix="/api/mobile-edge", tags=["Mobile Edge"]) app.include_router(inventory_router, prefix="/api/inventory", tags=["Inventory"]) app.include_router(admin_surface_router, prefix="/api/admin-surface", tags=["Admin Surface"]) +app.include_router(crm_imports_router, prefix="/api", tags=["CRM Canonical"]) # Public vault link (no /api prefix — shared externally with prospects) from backend.routers.vault import router as public_vault_router diff --git a/backend/scripts/seed_synthetic_crm.py b/backend/scripts/seed_synthetic_crm.py new file mode 100644 index 00000000..724810a7 --- /dev/null +++ b/backend/scripts/seed_synthetic_crm.py @@ -0,0 +1,458 @@ +#!/usr/bin/env python3 +""" +backend/scripts/seed_synthetic_crm.py +Seed the canonical CRM tables from the synthetic dataset CSVs. + +Usage: + python -m backend.scripts.seed_synthetic_crm [--dry-run] [--limit N] + +Reads from: db assets/synthetic_crm_v1/csv/ +Writes to: canonical crm_*, intel_*, inventory_* tables + +This script implements the import → canonical commit flow without going through +the HTTP import review UI — for initial database seeding only. +""" +from __future__ import annotations + +import argparse +import asyncio +import csv +import json +import logging +import os +import sys +import uuid +from datetime import datetime, timezone +from pathlib import Path + +logging.basicConfig(level=logging.INFO, format='%(asctime)s %(levelname)s %(message)s') +logger = logging.getLogger("velocity.seed") + +# ── Data directory ──────────────────────────────────────────────────────────── +REPO_ROOT = Path(__file__).parent.parent.parent +CSV_DIR = REPO_ROOT / "db assets" / "synthetic_crm_v1" / "csv" + + +def read_csv(filename: str) -> list[dict]: + path = CSV_DIR / filename + if not path.exists(): + logger.warning("CSV not found: %s", path) + return [] + with open(path, encoding="utf-8", newline="") as f: + return list(csv.DictReader(f)) + + +def safe_float(val: str | None, default: float | None = None) -> float | None: + if not val or val.strip() in ("", "null", "None", "nan"): + return default + try: + return float(val) + except (ValueError, TypeError): + return default + + +def safe_int(val: str | None, default: int | None = None) -> int | None: + if not val or val.strip() in ("", "null", "None"): + return default + try: + return int(float(val)) + except (ValueError, TypeError): + return default + + +def safe_dt(val: str | None) -> datetime | None: + if not val or val.strip() in ("", "null", "None"): + return None + for fmt in ("%Y-%m-%dT%H:%M:%S", "%Y-%m-%d %H:%M:%S", "%Y-%m-%d", "%Y-%m-%dT%H:%M:%S.%f"): + try: + return datetime.strptime(val.strip(), fmt).replace(tzinfo=timezone.utc) + except ValueError: + continue + return None + + +async def seed(dry_run: bool = False, limit: int | None = None) -> None: + from backend.db.pool import create_pool, close_pool + + logger.info("Connecting to database…") + pool = await create_pool() + + async with pool.acquire() as conn: + # Verify canonical schema exists + exists = await conn.fetchval( + "SELECT EXISTS (SELECT 1 FROM information_schema.tables WHERE table_name = 'crm_people')" + ) + if not exists: + logger.error("Canonical schema not found. Run schema_crm_canonical.sql first.") + return + + # ── Phase 1: Inventory Projects ────────────────────────────────────────── + logger.info("[1/9] Seeding inventory_projects…") + projects_rows = read_csv("inventory_projects.csv") + project_name_to_id: dict[str, str] = {} + + if not dry_run: + async with pool.acquire() as conn: + for row in projects_rows: + pname = row.get("project_name", "").strip() + if not pname: + continue + pid = await conn.fetchval( + "SELECT project_id FROM inventory_projects WHERE project_name = $1", + pname, + ) + if pid: + project_name_to_id[pname] = str(pid) + continue + pid = str(uuid.uuid4()) + await conn.execute( + """ + INSERT INTO inventory_projects (project_id, project_name, developer_name, city, micro_market, created_at, updated_at) + VALUES ($1::uuid, $2, $3, $4, $5, NOW(), NOW()) + ON CONFLICT (project_name) DO NOTHING + """, + pid, + pname, + row.get("developer_name", ""), + row.get("city", "Kolkata"), + row.get("micro_market", ""), + ) + project_name_to_id[pname] = pid + logger.info(" → %d projects mapped", len(project_name_to_id)) + + # ── Phase 2: crm_people ────────────────────────────────────────────────── + logger.info("[2/9] Seeding crm_people…") + people_rows = read_csv("crm_people.csv") + if limit: + people_rows = people_rows[:limit] + + person_id_map: dict[str, str] = {} # original CSV person_id → DB person_id + + if not dry_run: + async with pool.acquire() as conn: + for row in people_rows: + src_id = row.get("person_id", "") + full_name = row.get("full_name", "").strip() + if not full_name: + continue + + new_id = str(uuid.uuid4()) + persona_labels: list[str] = [] + raw_labels = row.get("persona_labels", "") + if raw_labels.startswith("["): + try: + persona_labels = json.loads(raw_labels) + except json.JSONDecodeError: + pass + + await conn.execute( + """ + INSERT INTO crm_people ( + person_id, full_name, primary_email, primary_phone, + buyer_type, persona_labels, source_confidence, + legacy_lead_id, metadata_json, created_at, updated_at + ) VALUES ( + $1::uuid, $2, $3, $4, $5, $6::jsonb, $7, + $8, $9::jsonb, NOW(), NOW() + ) + ON CONFLICT DO NOTHING + """, + new_id, + full_name, + row.get("primary_email") or None, + row.get("primary_phone") or None, + row.get("buyer_type") or None, + json.dumps(persona_labels), + safe_float(row.get("source_confidence"), 0.8), + src_id or None, + json.dumps({"synthetic": True, "source_id": src_id}), + ) + person_id_map[src_id] = new_id + + logger.info(" → %d people seeded", len(person_id_map)) + + # ── Phase 3: crm_leads ─────────────────────────────────────────────────── + logger.info("[3/9] Seeding crm_leads…") + leads_rows = read_csv("crm_leads.csv") + lead_id_map: dict[str, str] = {} + + VALID_STATUSES = { + 'new', 'contacted', 'qualified', 'site_visit_scheduled', 'site_visited', + 'negotiation', 'booking_initiated', 'booked', 'lost', 'dormant' + } + + if not dry_run: + async with pool.acquire() as conn: + for row in leads_rows: + src_person_id = row.get("person_id", "") + db_person_id = person_id_map.get(src_person_id) + if not db_person_id: + continue + + src_lead_id = row.get("lead_id", "") + raw_status = row.get("status", "new").lower().strip() + status = raw_status if raw_status in VALID_STATUSES else "new" + + new_lead_id = str(uuid.uuid4()) + await conn.execute( + """ + INSERT INTO crm_leads ( + lead_id, person_id, source_system, status, + budget_band, urgency, financing_posture, + timeline_to_decision, legacy_lead_id, + metadata_json, created_at, updated_at + ) VALUES ( + $1::uuid, $2::uuid, $3, $4::crm_lead_status, + $5, $6, $7, $8, $9, $10::jsonb, NOW(), NOW() + ) + ON CONFLICT DO NOTHING + """, + new_lead_id, + db_person_id, + row.get("source_system", "csv_upload"), + status, + row.get("budget_band") or None, + row.get("urgency") or None, + row.get("financing_posture") or None, + row.get("timeline_to_decision") or None, + src_lead_id or None, + json.dumps({"synthetic": True, "source_lead_id": src_lead_id}), + ) + lead_id_map[src_lead_id] = new_lead_id + + logger.info(" → %d leads seeded", len(lead_id_map)) + + # ── Phase 4: crm_property_interests ───────────────────────────────────── + logger.info("[4/9] Seeding crm_property_interests…") + pi_rows = read_csv("crm_property_interests.csv") + seeded_pi = 0 + + if not dry_run: + async with pool.acquire() as conn: + for row in pi_rows: + src_person_id = row.get("person_id", "") + db_person_id = person_id_map.get(src_person_id) + if not db_person_id: + continue + db_lead_id = lead_id_map.get(row.get("lead_id", "")) + project_name = row.get("project_name", "").strip() + if not project_name: + continue + + await conn.execute( + """ + INSERT INTO crm_property_interests ( + interest_id, person_id, lead_id, project_name, + unit_preference, configuration, budget_min, budget_max, priority, created_at + ) VALUES ( + $1::uuid, $2::uuid, $3::uuid, $4, $5, $6, $7, $8, $9, NOW() + ) + ON CONFLICT DO NOTHING + """, + str(uuid.uuid4()), + db_person_id, + db_lead_id, + project_name, + row.get("unit_preference") or None, + row.get("configuration") or None, + safe_float(row.get("budget_min")), + safe_float(row.get("budget_max")), + safe_int(row.get("priority"), 1), + ) + seeded_pi += 1 + + logger.info(" → %d property interests seeded", seeded_pi) + + # ── Phase 5: intel_interactions ────────────────────────────────────────── + logger.info("[5/9] Seeding intel_interactions…") + int_rows = read_csv("intel_interactions.csv") + interaction_id_map: dict[str, str] = {} + + VALID_CHANNELS = { + 'whatsapp', 'phone', 'email', 'site_visit', 'office_meeting', + 'video_call', 'cctv', 'perception_session', 'system' + } + + if not dry_run: + async with pool.acquire() as conn: + for row in int_rows: + src_person_id = row.get("person_id", "") + db_person_id = person_id_map.get(src_person_id) + if not db_person_id: + continue + + raw_channel = row.get("channel", "system").lower().strip() + channel = raw_channel if raw_channel in VALID_CHANNELS else "system" + + src_int_id = row.get("interaction_id", "") + new_int_id = str(uuid.uuid4()) + + happened_at = safe_dt(row.get("happened_at")) or datetime.now(timezone.utc) + db_lead_id = lead_id_map.get(row.get("lead_id", "")) + + await conn.execute( + """ + INSERT INTO intel_interactions ( + interaction_id, person_id, lead_id, channel, + interaction_type, happened_at, summary, created_at + ) VALUES ( + $1::uuid, $2::uuid, $3::uuid, $4::intel_channel, + $5, $6, $7, NOW() + ) + ON CONFLICT DO NOTHING + """, + new_int_id, + db_person_id, + db_lead_id, + channel, + row.get("interaction_type", "message"), + happened_at, + row.get("summary") or None, + ) + interaction_id_map[src_int_id] = new_int_id + + logger.info(" → %d interactions seeded", len(interaction_id_map)) + + # ── Phase 6: intel_qd_scores ───────────────────────────────────────────── + logger.info("[6/9] Seeding intel_qd_scores…") + qd_rows = read_csv("intel_qd_scores.csv") + seeded_qd = 0 + + if not dry_run: + async with pool.acquire() as conn: + for row in qd_rows: + src_person_id = row.get("person_id", "") + db_person_id = person_id_map.get(src_person_id) + if not db_person_id: + continue + + score_type = row.get("score_type", "intent_score") + current_value = safe_float(row.get("current_value"), 0.5) + if current_value is None: + continue + current_value = max(0.0, min(1.0, current_value)) + + await conn.execute( + """ + INSERT INTO intel_qd_scores ( + qd_id, person_id, score_type, current_value, + reasoning, computed_at + ) VALUES ( + $1::uuid, $2::uuid, $3, $4, $5, NOW() + ) + ON CONFLICT (person_id, score_type) DO UPDATE + SET current_value = EXCLUDED.current_value, + computed_at = NOW() + """, + str(uuid.uuid4()), + db_person_id, + score_type, + current_value, + row.get("reasoning") or None, + ) + seeded_qd += 1 + + logger.info(" → %d QD scores seeded", seeded_qd) + + # ── Phase 7: intel_reminders ───────────────────────────────────────────── + logger.info("[7/9] Seeding intel_reminders…") + rem_rows = read_csv("intel_reminders.csv") + seeded_rem = 0 + + if not dry_run: + async with pool.acquire() as conn: + for row in rem_rows: + src_person_id = row.get("person_id", "") + db_person_id = person_id_map.get(src_person_id) + if not db_person_id: + continue + title = row.get("title", "").strip() + if not title: + continue + + db_lead_id = lead_id_map.get(row.get("lead_id", "")) + + await conn.execute( + """ + INSERT INTO intel_reminders ( + reminder_id, person_id, lead_id, reminder_type, title, notes, + due_at, status, priority, created_by_type, created_at + ) VALUES ( + $1::uuid, $2::uuid, $3::uuid, $4, $5, $6, + $7, $8, $9, 'system', NOW() + ) + ON CONFLICT DO NOTHING + """, + str(uuid.uuid4()), + db_person_id, + db_lead_id, + row.get("reminder_type", "follow_up"), + title, + row.get("notes") or None, + safe_dt(row.get("due_at")), + row.get("status", "pending"), + row.get("priority", "normal"), + ) + seeded_rem += 1 + + logger.info(" → %d reminders seeded", seeded_rem) + + # ── Phase 8: crm_stage_history ─────────────────────────────────────────── + logger.info("[8/9] Seeding crm_stage_history…") + hist_rows = read_csv("crm_stage_history.csv") + seeded_hist = 0 + + if not dry_run: + async with pool.acquire() as conn: + for row in hist_rows: + src_lead_id = row.get("lead_id", "") + db_lead_id = lead_id_map.get(src_lead_id) + if not db_lead_id: + continue + + await conn.execute( + """ + INSERT INTO crm_stage_history ( + history_id, lead_id, from_status, to_status, notes, happened_at + ) VALUES ($1::uuid, $2::uuid, $3, $4, $5, $6) + ON CONFLICT DO NOTHING + """, + str(uuid.uuid4()), + db_lead_id, + row.get("from_status") or None, + row.get("to_status", "new"), + row.get("notes") or None, + safe_dt(row.get("happened_at")) or datetime.now(timezone.utc), + ) + seeded_hist += 1 + + logger.info(" → %d stage history records seeded", seeded_hist) + + # ── Phase 9: Summary ───────────────────────────────────────────────────── + logger.info("[9/9] Seeding complete.") + logger.info( + "Summary: people=%d, leads=%d, interactions=%d, qd_scores=%d, reminders=%d, stage_history=%d", + len(person_id_map), + len(lead_id_map), + len(interaction_id_map), + seeded_qd, + seeded_rem, + seeded_hist, + ) + if dry_run: + logger.info("DRY RUN — no data was written to the database.") + + await close_pool() + + +def main() -> None: + parser = argparse.ArgumentParser(description="Seed canonical CRM tables from synthetic data CSVs") + parser.add_argument("--dry-run", action="store_true", help="Parse and validate without writing to DB") + parser.add_argument("--limit", type=int, default=None, help="Limit number of people to seed (for testing)") + args = parser.parse_args() + + asyncio.run(seed(dry_run=args.dry_run, limit=args.limit)) + + +if __name__ == "__main__": + main() diff --git a/backend/services/client_graph/__init__.py b/backend/services/client_graph/__init__.py new file mode 100644 index 00000000..38277e9d --- /dev/null +++ b/backend/services/client_graph/__init__.py @@ -0,0 +1,3 @@ +""" +backend/services/client_graph/__init__.py +""" diff --git a/backend/services/client_graph/aggregation_service.py b/backend/services/client_graph/aggregation_service.py new file mode 100644 index 00000000..352c3ddc --- /dev/null +++ b/backend/services/client_graph/aggregation_service.py @@ -0,0 +1,369 @@ +""" +backend/services/client_graph/aggregation_service.py +Client 360 Aggregation Service + +Produces Client360Snapshot read models by joining across +crm_people, crm_leads, crm_opportunities, intel_interactions, +intel_reminders, intel_qd_scores, crm_property_interests. + +This is a derived read model — never the sole source of truth. +As specified in Doc 07 (Client360Snapshot contract) and Doc 08 (Adapter Spec). +""" +from __future__ import annotations + +import logging +from typing import Any + +logger = logging.getLogger("velocity.client_graph.aggregation") + + +def _serialize_person(row: Any) -> dict[str, Any]: + return { + "person_id": str(row["person_id"]), + "full_name": row["full_name"], + "primary_email": row["primary_email"], + "primary_phone": row["primary_phone"], + "buyer_type": row["buyer_type"], + "persona_labels": row["persona_labels"] or [], + "source_confidence": float(row["source_confidence"] or 0.0), + "created_at": row["created_at"].isoformat() if row["created_at"] else None, + } + + +def _serialize_lead(row: Any) -> dict[str, Any]: + return { + "lead_id": str(row["lead_id"]), + "status": row["status"], + "budget_band": row["budget_band"], + "urgency": row["urgency"], + "financing_posture": row["financing_posture"], + "timeline_to_decision": row["timeline_to_decision"], + "objections": row["objections"] or [], + "motivations": row["motivations"] or [], + "created_at": row["created_at"].isoformat() if row["created_at"] else None, + } + + +def _serialize_opportunity(row: Any) -> dict[str, Any]: + return { + "opportunity_id": str(row["opportunity_id"]), + "stage": row["stage"], + "value": float(row["value"]) if row["value"] else None, + "probability": row["probability"], + "expected_close_date": row["expected_close_date"].isoformat() if row["expected_close_date"] else None, + "next_action": row["next_action"], + "project_id": str(row["project_id"]) if row["project_id"] else None, + "unit_id": str(row["unit_id"]) if row["unit_id"] else None, + } + + +def _serialize_interaction(row: Any) -> dict[str, Any]: + return { + "interaction_id": str(row["interaction_id"]), + "channel": row["channel"], + "interaction_type": row["interaction_type"], + "happened_at": row["happened_at"].isoformat() if row["happened_at"] else None, + "summary": row["summary"], + } + + +def _serialize_reminder(row: Any) -> dict[str, Any]: + return { + "reminder_id": str(row["reminder_id"]), + "reminder_type": row["reminder_type"], + "title": row["title"], + "due_at": row["due_at"].isoformat() if row["due_at"] else None, + "status": row["status"], + "priority": row["priority"], + } + + +def _serialize_qd_score(row: Any) -> dict[str, Any]: + return { + "score_type": row["score_type"], + "current_value": float(row["current_value"]), + "computed_at": row["computed_at"].isoformat() if row["computed_at"] else None, + "reasoning": row["reasoning"], + } + + +def _serialize_property_interest(row: Any) -> dict[str, Any]: + return { + "interest_id": str(row["interest_id"]), + "project_name": row["project_name"], + "unit_preference": row["unit_preference"], + "configuration": row["configuration"], + "budget_min": float(row["budget_min"]) if row["budget_min"] else None, + "budget_max": float(row["budget_max"]) if row["budget_max"] else None, + "priority": row["priority"], + } + + +async def get_client_360(conn: Any, person_id: str) -> dict[str, Any] | None: + """ + Aggregate a full Client360Snapshot for a given person_id. + This is a read model — derived from canonical tables, never primary truth. + """ + # 1. Core identity + person_row = await conn.fetchrow( + """ + SELECT person_id, full_name, primary_email, primary_phone, + buyer_type, persona_labels, source_confidence, created_at + FROM crm_people + WHERE person_id = $1::uuid + """, + person_id, + ) + if not person_row: + return None + + identity = _serialize_person(person_row) + + # 2. Account links + account_rows = await conn.fetch( + """ + SELECT ca.account_id, ca.account_name, ca.account_type, ca.industry + FROM crm_accounts ca + INNER JOIN crm_leads cl ON cl.account_id = ca.account_id + WHERE cl.person_id = $1::uuid + LIMIT 5 + """, + person_id, + ) + account_links = [ + { + "account_id": str(r["account_id"]), + "account_name": r["account_name"], + "account_type": r["account_type"], + "industry": r["industry"], + } + for r in account_rows + ] + + # 3. Active lead + lead_row = await conn.fetchrow( + """ + SELECT lead_id, status, budget_band, urgency, financing_posture, + timeline_to_decision, objections, motivations, created_at + FROM crm_leads + WHERE person_id = $1::uuid + ORDER BY created_at DESC + LIMIT 1 + """, + person_id, + ) + lead = _serialize_lead(lead_row) if lead_row else None + + # 4. Active opportunities (top 5) + opp_rows = await conn.fetch( + """ + SELECT co.opportunity_id, co.stage, co.value, co.probability, + co.expected_close_date, co.next_action, co.project_id, co.unit_id + FROM crm_opportunities co + INNER JOIN crm_leads cl ON cl.lead_id = co.lead_id + WHERE cl.person_id = $1::uuid + ORDER BY co.updated_at DESC + LIMIT 5 + """, + person_id, + ) + active_opportunities = [_serialize_opportunity(r) for r in opp_rows] + + # 5. Recent interactions (last 10) + interaction_rows = await conn.fetch( + """ + SELECT interaction_id, channel, interaction_type, happened_at, summary + FROM intel_interactions + WHERE person_id = $1::uuid + ORDER BY happened_at DESC + LIMIT 10 + """, + person_id, + ) + recent_interactions = [_serialize_interaction(r) for r in interaction_rows] + + # 6. Property interests + interest_rows = await conn.fetch( + """ + SELECT interest_id, project_name, unit_preference, configuration, + budget_min, budget_max, priority + FROM crm_property_interests + WHERE person_id = $1::uuid + ORDER BY priority ASC, interest_id ASC + LIMIT 10 + """, + person_id, + ) + property_interests = [_serialize_property_interest(r) for r in interest_rows] + + # 7. Pending tasks / reminders + task_rows = await conn.fetch( + """ + SELECT reminder_id, reminder_type, title, due_at, status, priority + FROM intel_reminders + WHERE person_id = $1::uuid + AND status IN ('pending', 'snoozed') + ORDER BY due_at ASC NULLS LAST + LIMIT 10 + """, + person_id, + ) + tasks = [_serialize_reminder(r) for r in task_rows] + + # 8. QD overview (all score types) + qd_rows = await conn.fetch( + """ + SELECT score_type, current_value, computed_at, reasoning + FROM intel_qd_scores + WHERE person_id = $1::uuid + """, + person_id, + ) + qd_overview = {r["score_type"]: _serialize_qd_score(r) for r in qd_rows} + + # 9. Risk flags — heuristic derivation + risk_flags: list[str] = [] + if lead and lead.get("urgency") in ("high", "critical") and not active_opportunities: + risk_flags.append("high_urgency_without_active_opportunity") + if not recent_interactions: + risk_flags.append("no_recent_interactions") + if qd_overview.get("intent_score", {}).get("current_value", 1.0) < 0.3: + risk_flags.append("low_intent_score") + if not property_interests: + risk_flags.append("no_property_interests_recorded") + + # 10. Recommended next actions — simple heuristic + recommended_next_actions: list[str] = [] + if tasks: + overdue = [t for t in tasks if t.get("status") == "pending"] + if overdue: + recommended_next_actions.append(f"Complete pending task: {overdue[0]['title']}") + if lead and lead.get("urgency") in ("high", "critical"): + recommended_next_actions.append("High-urgency client — prioritize callback within 24h") + if not recent_interactions and lead: + recommended_next_actions.append("No recent interactions — schedule follow-up") + + return { + "client_ref": person_id, + "snapshot_type": "client_360", + "identity": identity, + "account_links": account_links, + "current_lead": lead, + "active_opportunities": active_opportunities, + "recent_interactions": recent_interactions, + "property_interests": property_interests, + "tasks": tasks, + "qd_overview": qd_overview, + "risk_flags": risk_flags, + "recommended_next_actions": recommended_next_actions, + "note": "Derived read model. Not primary truth. Refresh from canonical tables.", + } + + +async def get_contact_list( + conn: Any, + search: str | None = None, + buyer_type: str | None = None, + status: str | None = None, + limit: int = 50, + offset: int = 0, +) -> dict[str, Any]: + """ + Paginated contact list with lead status and QD summary. + Implements the 'summary query' pattern from Doc 09. + """ + clauses: list[str] = ["1=1"] + params: list[Any] = [] + + if search: + params.append(f"%{search}%") + clauses.append( + f"(p.full_name ILIKE ${len(params)} OR p.primary_email ILIKE ${len(params)} OR p.primary_phone ILIKE ${len(params)})" + ) + if buyer_type: + params.append(buyer_type) + clauses.append(f"p.buyer_type = ${len(params)}") + if status: + params.append(status) + clauses.append(f"cl.status = ${len(params)}::crm_lead_status") + + where = "WHERE " + " AND ".join(clauses) + params_for_count = params.copy() + + params.append(limit) + params.append(offset) + + query = f""" + SELECT + p.person_id, + p.full_name, + p.primary_email, + p.primary_phone, + p.buyer_type, + p.created_at, + cl.lead_id, + cl.status AS lead_status, + cl.budget_band, + cl.urgency, + COALESCE(qs.intent_value, 0.0) AS intent_score, + COALESCE(qs.urgency_value, 0.0) AS urgency_score, + (SELECT COUNT(*) FROM intel_interactions ii WHERE ii.person_id = p.person_id) AS interaction_count, + (SELECT MAX(happened_at) FROM intel_interactions ii WHERE ii.person_id = p.person_id) AS last_interaction_at, + (SELECT COUNT(*) FROM intel_reminders ir WHERE ir.person_id = p.person_id AND ir.status = 'pending') AS pending_tasks + FROM crm_people p + LEFT JOIN LATERAL ( + SELECT lead_id, status, budget_band, urgency + FROM crm_leads + WHERE person_id = p.person_id + ORDER BY created_at DESC + LIMIT 1 + ) cl ON TRUE + LEFT JOIN LATERAL ( + SELECT + MAX(CASE WHEN score_type = 'intent_score' THEN current_value END) AS intent_value, + MAX(CASE WHEN score_type = 'urgency_score' THEN current_value END) AS urgency_value + FROM intel_qd_scores + WHERE person_id = p.person_id + ) qs ON TRUE + {where} + ORDER BY last_interaction_at DESC NULLS LAST, p.created_at DESC + LIMIT ${len(params) - 1} OFFSET ${len(params)} + """ + + count_query = f""" + SELECT COUNT(*) + FROM crm_people p + LEFT JOIN crm_leads cl ON cl.person_id = p.person_id + {where} + """ + + rows = await conn.fetch(query, *params) + total_row = await conn.fetchrow(count_query, *params_for_count) + total = int(total_row[0]) if total_row else 0 + + contacts = [] + for r in rows: + contacts.append({ + "person_id": str(r["person_id"]), + "full_name": r["full_name"], + "primary_email": r["primary_email"], + "primary_phone": r["primary_phone"], + "buyer_type": r["buyer_type"], + "lead_id": str(r["lead_id"]) if r["lead_id"] else None, + "lead_status": r["lead_status"], + "budget_band": r["budget_band"], + "urgency": r["urgency"], + "intent_score": float(r["intent_score"]), + "urgency_score": float(r["urgency_score"]), + "interaction_count": int(r["interaction_count"]), + "last_interaction_at": r["last_interaction_at"].isoformat() if r["last_interaction_at"] else None, + "pending_tasks": int(r["pending_tasks"]), + "created_at": r["created_at"].isoformat() if r["created_at"] else None, + }) + + return { + "contacts": contacts, + "total": total, + "limit": limit, + "offset": offset, + } diff --git a/backend/services/imports/__init__.py b/backend/services/imports/__init__.py new file mode 100644 index 00000000..d8bab2df --- /dev/null +++ b/backend/services/imports/__init__.py @@ -0,0 +1,3 @@ +""" +backend/services/imports/__init__.py +""" diff --git a/backend/services/imports/ingest_service.py b/backend/services/imports/ingest_service.py new file mode 100644 index 00000000..cdf067ec --- /dev/null +++ b/backend/services/imports/ingest_service.py @@ -0,0 +1,282 @@ +""" +backend/services/imports/ingest_service.py +CRM Import Ingestion Service + +Implements the RawImportBatch → ImportMappingManifest → NormalizedEntityProposal pipeline +as specified in Doc 08 (Adapter Spec) and Doc 07 (Contracts and Schema Blueprint). + +Flow: + 1. receive CSV upload, store raw batch record + 2. parse headers and infer column mapping + 3. validate row structure, detect unresolved columns + 4. create NormalizedEntityProposal records for review + 5. queue for human approval before canonical commit +""" +from __future__ import annotations + +import csv +import io +import json +import logging +import uuid +from datetime import datetime, timezone +from typing import Any + +logger = logging.getLogger("velocity.imports.ingest") + +# ── Column mapping heuristics ───────────────────────────────────────────────── +# Maps common source column names → canonical crm_people / crm_leads fields. + +CANONICAL_COLUMN_MAP: dict[str, str] = { + # Identity + "name": "full_name", + "full name": "full_name", + "client name": "full_name", + "contact name": "full_name", + "first name": "full_name", + "customer name": "full_name", + # Email + "email": "primary_email", + "email address": "primary_email", + "e-mail": "primary_email", + # Phone + "phone": "primary_phone", + "mobile": "primary_phone", + "contact number": "primary_phone", + "mobile number": "primary_phone", + "phone number": "primary_phone", + # Budget + "budget": "budget_band", + "budget range": "budget_band", + "investment budget": "budget_band", + # Project interest + "project": "project_name", + "project name": "project_name", + "interested in": "project_name", + "property interest": "project_name", + # Source + "source": "source_system", + "lead source": "source_system", + "channel": "source_system", + # Status / Stage + "status": "status", + "lead status": "status", + "stage": "status", + "funnel stage": "status", + # Notes + "notes": "notes", + "remarks": "notes", + "comment": "notes", + "comments": "notes", + # Buyer type + "type": "buyer_type", + "client type": "buyer_type", + "category": "buyer_type", +} + +REQUIRED_CANONICAL_FIELDS = {"full_name"} +HIGH_RISK_FIELDS = {"primary_email", "primary_phone"} + + +def _normalize_header(h: str) -> str: + return h.strip().lower().replace("_", " ") + + +def infer_column_mapping(headers: list[str]) -> dict[str, Any]: + """ + Produce an ImportMappingManifest-compatible mapping dict. + Returns: { + mapped: {source_col → canonical_field}, + unmapped: [source_col, ...], + confidence: 0.0-1.0 + } + """ + mapped: dict[str, str] = {} + unmapped: list[str] = [] + + for h in headers: + normalized = _normalize_header(h) + canonical = CANONICAL_COLUMN_MAP.get(normalized) + if canonical: + mapped[h] = canonical + else: + unmapped.append(h) + + mapped_count = len(mapped) + total = len(headers) + confidence = mapped_count / total if total > 0 else 0.0 + + return { + "mapped": mapped, + "unmapped": unmapped, + "mapped_count": mapped_count, + "unmapped_count": len(unmapped), + "confidence": round(confidence, 3), + } + + +def parse_csv_content(content: str) -> dict[str, Any]: + """ + Parse CSV content, detect headers, and extract rows. + Returns: {headers, rows, row_count, parse_errors} + """ + reader = csv.DictReader(io.StringIO(content)) + headers = reader.fieldnames or [] + rows: list[dict[str, Any]] = [] + parse_errors: list[str] = [] + + for i, row in enumerate(reader): + try: + rows.append(dict(row)) + except Exception as e: + parse_errors.append(f"Row {i + 2}: {str(e)}") + + return { + "headers": list(headers), + "rows": rows, + "row_count": len(rows), + "parse_errors": parse_errors, + } + + +def build_normalized_proposals( + rows: list[dict[str, Any]], + mapping: dict[str, str], + batch_id: str, + source_system: str = "csv_upload", +) -> list[dict[str, Any]]: + """ + Convert raw CSV rows to NormalizedEntityProposal payloads. + One proposal per row — each must be approved before canonical commit. + """ + proposals: list[dict[str, Any]] = [] + now = datetime.now(timezone.utc).isoformat() + + for i, row in enumerate(rows): + canonical: dict[str, Any] = {} + unresolved: list[str] = [] + confidence = 1.0 + + for src_col, canonical_field in mapping.items(): + val = row.get(src_col, "").strip() + if val: + canonical[canonical_field] = val + else: + unresolved.append(src_col) + + # Validate required fields + review_required = False + missing_required = [f for f in REQUIRED_CANONICAL_FIELDS if not canonical.get(f)] + if missing_required: + review_required = True + confidence = max(0.0, confidence - 0.4) + + # Flag high-risk fields (email/phone) if empty + missing_high_risk = [f for f in HIGH_RISK_FIELDS if not canonical.get(f)] + if missing_high_risk: + confidence = max(0.0, confidence - 0.1 * len(missing_high_risk)) + + proposal: dict[str, Any] = { + "proposal_id": str(uuid.uuid4()), + "batch_id": batch_id, + "row_number": i + 2, + "entity_type": "crm_person_with_lead", + "canonical_payload": canonical, + "raw_row": row, + "unresolved_fields": unresolved, + "missing_required": missing_required, + "confidence": round(confidence, 3), + "review_required": review_required, + "status": "proposed", + "created_at": now, + "source_system": source_system, + } + proposals.append(proposal) + + return proposals + + +def create_import_batch_record( + filename: str, + row_count: int, + mapping_manifest: dict[str, Any], + source_system: str = "csv_upload", + uploaded_by_id: str | None = None, +) -> dict[str, Any]: + """ + Build the workflow_import_batches record payload. + """ + now = datetime.now(timezone.utc).isoformat() + return { + "batch_id": str(uuid.uuid4()), + "source_system": source_system, + "uploaded_filename": filename, + "mime_type": "text/csv", + "row_count": row_count, + "mapped_count": mapping_manifest.get("mapped_count", 0), + "unresolved_count": mapping_manifest.get("unmapped_count", 0), + "uploaded_by": uploaded_by_id, + "lifecycle": "parsed", + "mapping_manifest": mapping_manifest, + "created_at": now, + "updated_at": now, + } + + +async def persist_import_batch(conn: Any, batch: dict[str, Any]) -> str: + """ + Insert a workflow_import_batches row and return batch_id. + """ + await conn.execute( + """ + INSERT INTO workflow_import_batches ( + batch_id, source_system, uploaded_filename, mime_type, row_count, + mapped_count, unresolved_count, uploaded_by, lifecycle, mapping_manifest, + created_at, updated_at + ) VALUES ( + $1::uuid, $2, $3, $4, $5, $6, $7, + $8::uuid, $9::import_lifecycle, $10::jsonb, NOW(), NOW() + ) + """, + batch["batch_id"], + batch["source_system"], + batch.get("uploaded_filename", "unknown.csv"), + batch.get("mime_type", "text/csv"), + batch.get("row_count", 0), + batch.get("mapped_count", 0), + batch.get("unresolved_count", 0), + batch.get("uploaded_by"), + batch.get("lifecycle", "parsed"), + json.dumps(batch.get("mapping_manifest", {})), + ) + return batch["batch_id"] + + +async def persist_proposals_as_workflow_actions( + conn: Any, proposals: list[dict[str, Any]] +) -> int: + """ + Insert proposals into workflow_actions table for human review. + Returns inserted count. + """ + inserted = 0 + for p in proposals: + await conn.execute( + """ + INSERT INTO workflow_actions ( + action_id, action_type, target_domain, proposal_payload, + reasoning_summary, confidence, status, approval_required, + created_by_agent, created_at, updated_at + ) VALUES ( + $1::uuid, 'import_proposal', 'crm', $2::jsonb, + $3, $4, 'pending'::wf_status, $5, 'ingest_service', NOW(), NOW() + ) + """, + p["proposal_id"], + json.dumps(p), + f"Import row {p['row_number']}: {p['canonical_payload'].get('full_name', 'unknown')}", + p["confidence"], + p["review_required"], + ) + inserted += 1 + return inserted diff --git a/db assets/synthetic_crm_v1/README.md b/db assets/synthetic_crm_v1/README.md new file mode 100644 index 00000000..9f88460b --- /dev/null +++ b/db assets/synthetic_crm_v1/README.md @@ -0,0 +1,322 @@ +# Project Velocity - Synthetic Client Graph Dataset + +**Generated:** 2026-04-18 +**Dataset Version:** 1.0.0 +**Target:** 250 full synthetic client graphs +**Owner:** Sagnik +**Alignment:** Founder CRM and Platform Delivery Pack (Doc 16) + +--- + +## Overview + +This dataset contains 250 fully synthetic client graphs aligned to the Project Velocity canonical domain model. It is designed for: + +- CRM module validation and testing +- Import pipeline replay testing +- Client 360 aggregation validation +- Oracle intelligence and writeback testing +- QD score and timeseries validation +- Communication capture and transcript processing +- Workflow and approval governance testing + +The data simulates premium real-estate sales behavior in the Kolkata market across 14 projects. + +--- + +## Geography and Inventory + +**Market:** Kolkata and surrounding micro-markets +**Projects:** 14 premium residential projects + +| Project ID | Project Name | Developer | Micro-Market | +|------------|--------------|-----------|--------------| +| PRJ-001 | Eden Devprayag | Eden Group | Rajarhat | +| PRJ-002 | Sugam Prakriti | Sugam Homes | Barasat | +| PRJ-003 | Atri Aqua | Atri Developers | New Town | +| PRJ-004 | Atri Surya Toron | Atri Developers | Rajarhat | +| PRJ-005 | Siddha Suburbia Bungalow | Siddha Group | Madanpur | +| PRJ-006 | Merlin Avana | Merlin Group | Tangra | +| PRJ-007 | DTC Good Earth | DTC Projects | New Town | +| PRJ-008 | Siddha Serena | Siddha Group | New Town | +| PRJ-009 | Siddha Sky Waterfront | Siddha Group | Beliaghata | +| PRJ-010 | Godrej Blue | Godrej Properties | New Town | +| PRJ-011 | DTC Sojon | DTC Projects | Rajarhat | +| PRJ-012 | Shriram Grand City | Shriram Properties | Howrah | +| PRJ-013 | Godrej Elevate | Godrej Properties | Dum Dum | +| PRJ-014 | Ambuja Utpaala | Ambuja Neotia | Tollygunge | + +--- + +## Dataset Composition + +### Primary Entities + +| Entity | Count | Description | +|--------|-------|-------------| +| Primary Clients (People) | 250 | Main decision-makers and buyers | +| Co-buyers/Family | 91 | Secondary contacts linked to households | +| Accounts (Organizations) | 153 | Employers, businesses, referral partners | +| Households | 118 | Family decision units | +| Relationships | 91 | Spouse, parent, sibling, business partner links | +| Leads | 250 | Funnel-stage qualification records | +| Opportunities | 400 | Deal pipeline objects (1-3 per client) | +| Property Interests | 400 | Project/unit preference records | +| Stage History | 1,373 | Lead stage transition audit trail | + +### Interaction Graph + +| Artifact | Count | Description | +|----------|-------|-------------| +| Interactions | 1,897 | Umbrella communication events | +| WhatsApp Messages | 3,367 | Text messages with realistic dialogue | +| WhatsApp Threads | 606 | Conversation thread summaries | +| Phone Calls | 478 | Call records with duration and direction | +| Transcripts | 231 | Speaker-segmented call transcripts | +| Emails | 149 | Business correspondence with subjects and bodies | +| Site Visits | 305 | Physical site visit records with notes | +| Reminders/Tasks | 759 | Follow-up items and action reminders | + +### Intelligence & Enrichment + +| Artifact | Count | Description | +|----------|-------|-------------| +| QD Scores | 250 | Latest qualification/disposition scores | +| QD Timeseries | 1,953 | Historical score propagation (4-12 pts/client) | +| Vehicle Events | 80 | Number-plate detection events | +| Perception Events | 60 | Behavioral/dwell-time intelligence | +| CCTV Links | 120 | Video clip references linked to visits | + +### Workflow & Governance + +| Artifact | Count | Description | +|----------|-------|-------------| +| Workflow Actions | 100 | Import reviews, merge proposals, writebacks | +| Approvals | 49 | Human review decisions | +| Writebacks | 28 | Approved canonical mutations | + +### Inventory + +| Artifact | Count | Description | +|----------|-------|-------------| +| Projects | 14 | Master project records | +| Units | 209 | Individual unit inventory (8-20 per project) | + +--- + +## File Structure + +``` +synthetic_client_graphs/ +├── csv/ +│ ├── inventory_projects.csv +│ ├── inventory_units.csv +│ ├── crm_people.csv +│ ├── crm_accounts.csv +│ ├── crm_households.csv +│ ├── crm_relationships.csv +│ ├── crm_leads.csv +│ ├── crm_opportunities.csv +│ ├── crm_property_interests.csv +│ ├── crm_stage_history.csv +│ ├── intel_interactions.csv +│ ├── intel_messages.csv +│ ├── intel_calls.csv +│ ├── intel_transcripts.csv +│ ├── intel_emails.csv +│ ├── intel_whatsapp_threads.csv +│ ├── intel_visits.csv +│ ├── intel_reminders.csv +│ ├── intel_qd_scores.csv +│ ├── intel_qd_timeseries.csv +│ ├── intel_vehicle_events.csv +│ ├── intel_perception_events.csv +│ ├── intel_cctv_links.csv +│ ├── workflow_actions.csv +│ ├── workflow_approvals.csv +│ └── workflow_writebacks.csv +├── json/ +│ ├── client_360_snapshots_batch_1.json (Clients 1-50) +│ ├── client_360_snapshots_batch_2.json (Clients 51-100) +│ ├── client_360_snapshots_batch_3.json (Clients 101-150) +│ ├── client_360_snapshots_batch_4.json (Clients 151-200) +│ ├── client_360_snapshots_batch_5.json (Clients 201-250) +│ ├── import_mapping_manifest_example.json +│ ├── relationship_graph_map.json +│ └── transcript_sidecars.json +└── README.md +``` + +--- + +## Buyer Persona Distribution + +The 250 primary clients are distributed across realistic premium real-estate buyer personas: + +| Persona | Percentage | Count | Characteristics | +|---------|-----------|-------|-----------------| +| High-Intent Buyer | 20% | ~50 | Quick decision cycle, clear requirements, responsive | +| Slow-Burn Investor | 18% | ~45 | Long horizon, price-sensitive, comparison-heavy | +| NRI Buyer | 12% | ~30 | Remote decision-making, video calls, family proxies | +| Family Decision Unit | 20% | ~50 | Multiple stakeholders, consensus-driven, Vastu-conscious | +| Price-Sensitive Aspirational | 15% | ~37 | Stretch budget, EMI-focused, festival-offer hunters | +| Broker/Referral Chain | 8% | ~20 | Multiple client representations, commission-focused | +| Repeat Visitor | 7% | ~18 | High engagement, multiple visits, decision paralysis | + +--- + +## Canonical Domain Alignment + +This dataset maps to the planned Velocity canonical domains: + +### `crm_*` Domain +- `crm_people`: Contact identity and demographics +- `crm_accounts`: Organization and employer records +- `crm_households`: Family and co-buyer structures +- `crm_relationships`: Person-to-person linkages +- `crm_leads`: Funnel stage and qualification +- `crm_opportunities`: Deal pipeline and valuation +- `crm_property_interests`: Project/unit preferences +- `crm_stage_history`: Audit trail of stage transitions + +### `intel_*` Domain +- `intel_interactions`: Unified communication events +- `intel_messages`: Text-level message records +- `intel_calls`: Call metadata and duration +- `intel_transcripts`: Speaker-segmented conversation text +- `intel_emails`: Email correspondence +- `intel_whatsapp_threads`: Thread-level summaries +- `intel_visits`: Site visit records and notes +- `intel_reminders`: Task and follow-up tracking +- `intel_qd_scores`: Qualification/disposition scores +- `intel_qd_timeseries`: Temporal score evolution +- `intel_vehicle_events`: Parking/entry detection +- `intel_perception_events`: Behavioral intelligence +- `intel_cctv_links`: Video evidence references + +### `inventory_*` Domain +- `inventory_projects`: Master project catalog +- `inventory_units`: Unit-level availability and pricing + +### `workflow_*` Domain +- `workflow_actions`: Proposed AI/human actions +- `workflow_approvals`: Review decisions +- `workflow_writebacks`: Committed mutations + +--- + +## Quality Assurance + +### Referential Integrity +All foreign key relationships have been validated: +- ✅ All `lead.person_id` values exist in `crm_people` +- ✅ All `opportunity.lead_id` values exist in `crm_leads` +- ✅ All `interaction.person_id` values exist in `crm_people` +- ✅ All `visit.person_id` values exist in `crm_people` +- ✅ All `qd_score.person_id` values exist in `crm_people` +- ✅ No orphaned stage history records +- ✅ All `opportunity.project_id` values exist in `inventory_projects` +- ✅ All `property_interest.project_id` values exist in `inventory_projects` + +### Temporal Consistency +- ✅ Lead creation dates precede interaction dates +- ✅ Stage history transitions are monotonic in time +- ✅ QD timeseries points are chronologically ordered +- ✅ Visit dates align with lead stage progression +- ✅ Reminder due dates follow interaction dates + +### Realism Rules Applied +- **Names:** Realistic Indian names (Bengali, Hindi, mixed demographics) +- **Organizations:** Major Indian IT, banking, manufacturing, and consulting firms +- **Communication:** Premium property sales tone, not generic retail +- **Stage Transitions:** Narratively coherent (enquiry → visit → negotiation → booking) +- **Sales Cadence:** Realistic follow-up intervals (3-15 days between touches) +- **Dialogue:** Context-aware transcripts referencing specific projects, prices, and objections +- **Budgets:** Aligned to Kolkata premium market (1.5 Cr - 25 Cr range) + +--- + +## Usage Instructions + +### CSV-First Import Testing +1. Start with `crm_people.csv` as the identity anchor +2. Join `crm_leads.csv` on `person_id` +3. Join `crm_opportunities.csv` on `lead_id` +4. Join `inventory_projects.csv` and `inventory_units.csv` on project/unit IDs +5. Map `intel_interactions.csv` on `person_id` for communication history +6. Aggregate `intel_qd_scores.csv` and `intel_qd_timeseries.csv` for intelligence + +### Client 360 Validation +Load `json/client_360_snapshots_batch_*.json` to validate: +- Aggregation accuracy +- Cross-domain joining +- Derived field computation +- Missing data handling + +### Oracle Writeback Testing +Use `workflow_actions.csv` and `workflow_writebacks.csv` to test: +- Proposal generation +- Approval flow simulation +- Canonical mutation application +- Audit trail completeness + +### Transcript Processing +Load `json/transcript_sidecars.json` for: +- Speaker diarization validation +- Conversation context extraction +- Sentiment and intent inference testing + +--- + +## Evidence Placeholders + +The dataset includes metadata placeholders for: +- CCTV clip references (`clips/VIS_{visit_id}_{random}.mp4`) +- Call recording references (`rec/CAL_{call_id}.mp3`) +- Transcript references (`trx/CAL_{call_id}.json`) +- Camera IDs and gate references + +These are structured metadata only. Actual media payloads are not included. + +--- + +## Synthetic Data Limitations + +1. **Names and addresses** are fictional but culturally realistic +2. **Phone numbers** follow Indian format but are not real +3. **Email addresses** are synthetic and non-deliverable +4. **Prices** are representative of Kolkata premium market but approximate +5. **Communication text** is template-generated but contextually coherent +6. **Transcripts** are structured dialogue, not actual ASR output + +--- + +## Acceptance Criteria Verification + +| Criterion | Status | +|-----------|--------| +| 250 complete synthetic client graphs | ✅ | +| All 14 project names represented | ✅ | +| Spans CRM, interaction, opportunity, reminder, transcript, enrichment layers | ✅ | +| Files structured for CSV-first import testing | ✅ | +| Human reviewer can inspect a graph and believe it is coherent | ✅ (sample review recommended) | +| Referential integrity across all IDs | ✅ | +| No impossible date ordering | ✅ | +| No orphaned opportunities or interactions | ✅ | +| Every QD artifact points back to plausible evidence | ✅ | + +--- + +## Next Steps + +1. **Import Replay:** Load CSVs into the Velocity import pipeline and validate mapping proposals +2. **Client 360 Render:** Use JSON snapshots to test frontend dossier rendering +3. **QD Validation:** Verify score computation logic against interaction density +4. **Oracle Testing:** Use workflow items to test writeback proposal generation +5. **Synthetic Expansion:** Add more projects, cities, or persona types as needed + +--- + +**Generated for:** Project Velocity Founder CRM and Platform Planning +**Canonical Source:** Doc 16 - Coding Agent Swarm Brief: Synthetic Client Graph Generation +**Reviewers:** Sayan, Sourik diff --git a/db assets/synthetic_crm_v1/csv/crm_accounts.csv b/db assets/synthetic_crm_v1/csv/crm_accounts.csv new file mode 100644 index 00000000..a8c0a354 --- /dev/null +++ b/db assets/synthetic_crm_v1/csv/crm_accounts.csv @@ -0,0 +1,154 @@ +account_id,account_name,parent_account_id,account_type,industry,location_ref,metadata_json +ACC-0003,KPMG,,individual_business,Banking,Bangalore,"{""employee_count"": 500, ""tier"": ""enterprise""}" +ACC-0004,Deloitte India,,developer,Education,Kolkata,"{""employee_count"": 1000, ""tier"": ""enterprise""}" +ACC-0006,Deloitte India,,developer,Education,Mumbai,"{""employee_count"": 50, ""tier"": ""sme""}" +ACC-0008,HCL Technologies,,referral_partner,IT,Hyderabad,"{""employee_count"": 1000, ""tier"": ""enterprise""}" +ACC-0010,Deloitte India,,individual_business,Consulting,Bangalore,"{""employee_count"": 5000, ""tier"": ""sme""}" +ACC-0011,JSW Steel,,developer,Healthcare,Hyderabad,"{""employee_count"": 200, ""tier"": ""mid_market""}" +ACC-0012,Wipro,,referral_partner,Real Estate,Singapore,"{""employee_count"": 5000, ""tier"": ""sme""}" +ACC-0013,Unacademy,,referral_partner,IT,Mumbai,"{""employee_count"": 50, ""tier"": ""sme""}" +ACC-0016,HCL Technologies,,developer,Consulting,Bangalore,"{""employee_count"": 50, ""tier"": ""sme""}" +ACC-0017,Deloitte India,,corporate,IT,Delhi,"{""employee_count"": 1000, ""tier"": ""enterprise""}" +ACC-0018,Accenture India,,individual_business,Healthcare,Hyderabad,"{""employee_count"": 5000, ""tier"": ""enterprise""}" +ACC-0019,IBM India,,developer,Healthcare,Dubai,"{""employee_count"": 50, ""tier"": ""mid_market""}" +ACC-0020,Emami,,referral_partner,IT,Bangalore,"{""employee_count"": 5000, ""tier"": ""enterprise""}" +ACC-0021,Accenture India,,individual_business,Consulting,Mumbai,"{""employee_count"": 5000, ""tier"": ""mid_market""}" +ACC-0022,Accenture India,,corporate,Banking,Singapore,"{""employee_count"": 500, ""tier"": ""enterprise""}" +ACC-0023,Tech Mahindra,,developer,Consulting,Hyderabad,"{""employee_count"": 1000, ""tier"": ""enterprise""}" +ACC-0024,ICICI Bank,,developer,Education,Dubai,"{""employee_count"": 1000, ""tier"": ""sme""}" +ACC-0025,Ola,,referral_partner,Healthcare,Bangalore,"{""employee_count"": 50, ""tier"": ""mid_market""}" +ACC-0026,Swiggy,,developer,Consulting,Dubai,"{""employee_count"": 500, ""tier"": ""enterprise""}" +ACC-0027,SRF Limited,,individual_business,IT,Singapore,"{""employee_count"": 1000, ""tier"": ""enterprise""}" +ACC-0032,BYJU'S,,developer,Consulting,Bangalore,"{""employee_count"": 1000, ""tier"": ""mid_market""}" +ACC-0033,Cognizant,,corporate,Real Estate,Singapore,"{""employee_count"": 50, ""tier"": ""enterprise""}" +ACC-0034,Deloitte India,,corporate,Real Estate,Dubai,"{""employee_count"": 50, ""tier"": ""mid_market""}" +ACC-0035,Unacademy,,individual_business,Healthcare,Bangalore,"{""employee_count"": 500, ""tier"": ""sme""}" +ACC-0038,IBM India,,corporate,IT,Dubai,"{""employee_count"": 500, ""tier"": ""enterprise""}" +ACC-0041,Axis Bank,,individual_business,Healthcare,Singapore,"{""employee_count"": 500, ""tier"": ""enterprise""}" +ACC-0042,Capgemini,,corporate,IT,Singapore,"{""employee_count"": 5000, ""tier"": ""sme""}" +ACC-0044,Exide Industries,,corporate,IT,Bangalore,"{""employee_count"": 200, ""tier"": ""sme""}" +ACC-0045,HCL Technologies,,developer,Education,Delhi,"{""employee_count"": 1000, ""tier"": ""sme""}" +ACC-0050,Britannia Industries,,referral_partner,Manufacturing,Hyderabad,"{""employee_count"": 5000, ""tier"": ""enterprise""}" +ACC-0052,Bengal Chemicals,,developer,Healthcare,Dubai,"{""employee_count"": 5000, ""tier"": ""mid_market""}" +ACC-0053,Exide Industries,,corporate,Banking,Kolkata,"{""employee_count"": 500, ""tier"": ""mid_market""}" +ACC-0054,Flipkart,,corporate,Education,Dubai,"{""employee_count"": 200, ""tier"": ""enterprise""}" +ACC-0055,Infosys Ltd,,developer,Real Estate,Delhi,"{""employee_count"": 50, ""tier"": ""sme""}" +ACC-0056,Capgemini,,corporate,Banking,Dubai,"{""employee_count"": 1000, ""tier"": ""enterprise""}" +ACC-0057,Bengal Chemicals,,developer,IT,Delhi,"{""employee_count"": 200, ""tier"": ""sme""}" +ACC-0059,Swiggy,,referral_partner,IT,Bangalore,"{""employee_count"": 5000, ""tier"": ""mid_market""}" +ACC-0060,Larsen & Toubro,,developer,Healthcare,Dubai,"{""employee_count"": 200, ""tier"": ""sme""}" +ACC-0063,Swiggy,,developer,Manufacturing,Bangalore,"{""employee_count"": 50, ""tier"": ""enterprise""}" +ACC-0064,ITC Limited,,developer,Consulting,Bangalore,"{""employee_count"": 50, ""tier"": ""sme""}" +ACC-0066,IBM India,,corporate,IT,Dubai,"{""employee_count"": 500, ""tier"": ""mid_market""}" +ACC-0067,Accenture India,,individual_business,IT,Mumbai,"{""employee_count"": 50, ""tier"": ""enterprise""}" +ACC-0068,Reliance Industries,,referral_partner,Healthcare,Mumbai,"{""employee_count"": 500, ""tier"": ""enterprise""}" +ACC-0069,ITC Limited,,developer,Education,Delhi,"{""employee_count"": 500, ""tier"": ""mid_market""}" +ACC-0073,Swiggy,,developer,Manufacturing,Bangalore,"{""employee_count"": 5000, ""tier"": ""enterprise""}" +ACC-0075,Britannia Industries,,corporate,Banking,Hyderabad,"{""employee_count"": 1000, ""tier"": ""enterprise""}" +ACC-0076,Wipro,,developer,Real Estate,Delhi,"{""employee_count"": 500, ""tier"": ""sme""}" +ACC-0077,EY India,,corporate,Banking,Dubai,"{""employee_count"": 50, ""tier"": ""mid_market""}" +ACC-0079,Larsen & Toubro,,referral_partner,Healthcare,Singapore,"{""employee_count"": 1000, ""tier"": ""enterprise""}" +ACC-0083,Microsoft India,,referral_partner,Consulting,Hyderabad,"{""employee_count"": 5000, ""tier"": ""sme""}" +ACC-0084,Tech Mahindra,,developer,Manufacturing,Singapore,"{""employee_count"": 5000, ""tier"": ""sme""}" +ACC-0085,Ola,,corporate,IT,Bangalore,"{""employee_count"": 500, ""tier"": ""mid_market""}" +ACC-0088,HCL Technologies,,referral_partner,Manufacturing,Delhi,"{""employee_count"": 5000, ""tier"": ""sme""}" +ACC-0089,Deloitte India,,corporate,Banking,Bangalore,"{""employee_count"": 1000, ""tier"": ""sme""}" +ACC-0094,Cognizant,,individual_business,Manufacturing,Hyderabad,"{""employee_count"": 1000, ""tier"": ""mid_market""}" +ACC-0095,SRF Limited,,individual_business,Education,Hyderabad,"{""employee_count"": 1000, ""tier"": ""mid_market""}" +ACC-0097,EY India,,developer,Education,Singapore,"{""employee_count"": 500, ""tier"": ""sme""}" +ACC-0098,PwC India,,developer,Manufacturing,Hyderabad,"{""employee_count"": 50, ""tier"": ""mid_market""}" +ACC-0099,BYJU'S,,corporate,Education,Bangalore,"{""employee_count"": 500, ""tier"": ""sme""}" +ACC-0100,KPMG,,developer,Healthcare,Kolkata,"{""employee_count"": 50, ""tier"": ""mid_market""}" +ACC-0101,Tech Mahindra,,corporate,Consulting,Bangalore,"{""employee_count"": 1000, ""tier"": ""sme""}" +ACC-0102,Cognizant,,corporate,Manufacturing,Mumbai,"{""employee_count"": 500, ""tier"": ""sme""}" +ACC-0103,ITC Limited,,referral_partner,Manufacturing,Hyderabad,"{""employee_count"": 200, ""tier"": ""enterprise""}" +ACC-0105,EY India,,developer,Banking,Bangalore,"{""employee_count"": 50, ""tier"": ""mid_market""}" +ACC-0106,Microsoft India,,developer,Consulting,Singapore,"{""employee_count"": 5000, ""tier"": ""enterprise""}" +ACC-0108,Amazon India,,individual_business,Healthcare,Singapore,"{""employee_count"": 5000, ""tier"": ""mid_market""}" +ACC-0109,Accenture India,,individual_business,Banking,Bangalore,"{""employee_count"": 500, ""tier"": ""enterprise""}" +ACC-0110,ITC Limited,,developer,Education,Kolkata,"{""employee_count"": 5000, ""tier"": ""sme""}" +ACC-0113,Amazon India,,corporate,Healthcare,Kolkata,"{""employee_count"": 200, ""tier"": ""mid_market""}" +ACC-0114,Emami,,developer,Education,Dubai,"{""employee_count"": 5000, ""tier"": ""mid_market""}" +ACC-0115,Bengal Chemicals,,referral_partner,Consulting,Bangalore,"{""employee_count"": 1000, ""tier"": ""mid_market""}" +ACC-0118,Flipkart,,corporate,Education,Kolkata,"{""employee_count"": 5000, ""tier"": ""mid_market""}" +ACC-0122,JSW Steel,,referral_partner,Manufacturing,Hyderabad,"{""employee_count"": 1000, ""tier"": ""sme""}" +ACC-0125,Ola,,corporate,Manufacturing,Kolkata,"{""employee_count"": 500, ""tier"": ""enterprise""}" +ACC-0129,ICICI Bank,,individual_business,Consulting,Dubai,"{""employee_count"": 1000, ""tier"": ""mid_market""}" +ACC-0131,Exide Industries,,individual_business,Consulting,Dubai,"{""employee_count"": 50, ""tier"": ""enterprise""}" +ACC-0132,State Bank of India,,referral_partner,Healthcare,Dubai,"{""employee_count"": 5000, ""tier"": ""sme""}" +ACC-0133,Tech Mahindra,,referral_partner,Consulting,Hyderabad,"{""employee_count"": 200, ""tier"": ""mid_market""}" +ACC-0134,Cognizant,,developer,Consulting,Bangalore,"{""employee_count"": 200, ""tier"": ""mid_market""}" +ACC-0135,BYJU'S,,individual_business,Healthcare,Singapore,"{""employee_count"": 500, ""tier"": ""enterprise""}" +ACC-0136,HDFC Bank,,individual_business,IT,Delhi,"{""employee_count"": 1000, ""tier"": ""enterprise""}" +ACC-0137,PwC India,,corporate,Real Estate,Kolkata,"{""employee_count"": 5000, ""tier"": ""enterprise""}" +ACC-0139,Amazon India,,referral_partner,Manufacturing,Kolkata,"{""employee_count"": 5000, ""tier"": ""mid_market""}" +ACC-0141,Tech Mahindra,,individual_business,Real Estate,Bangalore,"{""employee_count"": 50, ""tier"": ""mid_market""}" +ACC-0144,Swiggy,,individual_business,Education,Dubai,"{""employee_count"": 5000, ""tier"": ""sme""}" +ACC-0148,Larsen & Toubro,,individual_business,IT,Delhi,"{""employee_count"": 50, ""tier"": ""mid_market""}" +ACC-0149,State Bank of India,,developer,Real Estate,Hyderabad,"{""employee_count"": 200, ""tier"": ""sme""}" +ACC-0153,SRF Limited,,referral_partner,IT,Delhi,"{""employee_count"": 5000, ""tier"": ""enterprise""}" +ACC-0154,Flipkart,,referral_partner,Banking,Singapore,"{""employee_count"": 500, ""tier"": ""enterprise""}" +ACC-0155,Accenture India,,referral_partner,Manufacturing,Singapore,"{""employee_count"": 500, ""tier"": ""mid_market""}" +ACC-0156,ITC Limited,,developer,Manufacturing,Mumbai,"{""employee_count"": 1000, ""tier"": ""enterprise""}" +ACC-0158,Swiggy,,developer,Consulting,Kolkata,"{""employee_count"": 200, ""tier"": ""sme""}" +ACC-0159,Wipro,,corporate,Healthcare,Dubai,"{""employee_count"": 500, ""tier"": ""enterprise""}" +ACC-0161,Tech Mahindra,,individual_business,IT,Dubai,"{""employee_count"": 500, ""tier"": ""enterprise""}" +ACC-0162,TCS,,developer,IT,Singapore,"{""employee_count"": 200, ""tier"": ""sme""}" +ACC-0163,Emami,,developer,Consulting,Kolkata,"{""employee_count"": 50, ""tier"": ""mid_market""}" +ACC-0164,SRF Limited,,developer,Healthcare,Kolkata,"{""employee_count"": 200, ""tier"": ""sme""}" +ACC-0165,Unacademy,,developer,Banking,Dubai,"{""employee_count"": 5000, ""tier"": ""sme""}" +ACC-0166,PwC India,,developer,Banking,Kolkata,"{""employee_count"": 5000, ""tier"": ""sme""}" +ACC-0168,ITC Limited,,corporate,Consulting,Singapore,"{""employee_count"": 1000, ""tier"": ""sme""}" +ACC-0170,Accenture India,,corporate,Healthcare,Singapore,"{""employee_count"": 500, ""tier"": ""enterprise""}" +ACC-0174,Adani Group,,developer,Education,Bangalore,"{""employee_count"": 200, ""tier"": ""sme""}" +ACC-0175,Amazon India,,developer,Consulting,Dubai,"{""employee_count"": 1000, ""tier"": ""sme""}" +ACC-0177,SRF Limited,,referral_partner,Banking,Singapore,"{""employee_count"": 5000, ""tier"": ""sme""}" +ACC-0179,PwC India,,referral_partner,Banking,Hyderabad,"{""employee_count"": 5000, ""tier"": ""enterprise""}" +ACC-0180,Emami,,developer,IT,Kolkata,"{""employee_count"": 5000, ""tier"": ""sme""}" +ACC-0181,Accenture India,,referral_partner,Education,Delhi,"{""employee_count"": 50, ""tier"": ""mid_market""}" +ACC-0182,Reliance Industries,,referral_partner,Healthcare,Hyderabad,"{""employee_count"": 500, ""tier"": ""mid_market""}" +ACC-0184,Deloitte India,,individual_business,Banking,Dubai,"{""employee_count"": 500, ""tier"": ""sme""}" +ACC-0185,KPMG,,corporate,Manufacturing,Kolkata,"{""employee_count"": 5000, ""tier"": ""sme""}" +ACC-0186,State Bank of India,,individual_business,Manufacturing,Kolkata,"{""employee_count"": 1000, ""tier"": ""sme""}" +ACC-0187,Microsoft India,,developer,Real Estate,Bangalore,"{""employee_count"": 500, ""tier"": ""enterprise""}" +ACC-0188,Reliance Industries,,developer,Real Estate,Bangalore,"{""employee_count"": 1000, ""tier"": ""sme""}" +ACC-0189,Emami,,developer,Real Estate,Bangalore,"{""employee_count"": 50, ""tier"": ""mid_market""}" +ACC-0191,Wipro,,developer,Banking,Dubai,"{""employee_count"": 500, ""tier"": ""mid_market""}" +ACC-0192,Reliance Industries,,corporate,Healthcare,Mumbai,"{""employee_count"": 200, ""tier"": ""enterprise""}" +ACC-0193,Emami,,individual_business,Education,Delhi,"{""employee_count"": 1000, ""tier"": ""mid_market""}" +ACC-0195,ICICI Bank,,referral_partner,Real Estate,Delhi,"{""employee_count"": 5000, ""tier"": ""sme""}" +ACC-0196,ITC Limited,,corporate,Consulting,Kolkata,"{""employee_count"": 1000, ""tier"": ""enterprise""}" +ACC-0199,Unacademy,,referral_partner,IT,Bangalore,"{""employee_count"": 200, ""tier"": ""sme""}" +ACC-0200,Emami,,referral_partner,IT,Hyderabad,"{""employee_count"": 1000, ""tier"": ""enterprise""}" +ACC-0201,Amazon India,,corporate,Manufacturing,Singapore,"{""employee_count"": 500, ""tier"": ""enterprise""}" +ACC-0202,Accenture India,,corporate,Consulting,Singapore,"{""employee_count"": 500, ""tier"": ""enterprise""}" +ACC-0203,Infosys Ltd,,referral_partner,Banking,Kolkata,"{""employee_count"": 1000, ""tier"": ""enterprise""}" +ACC-0204,HDFC Bank,,corporate,Real Estate,Singapore,"{""employee_count"": 1000, ""tier"": ""sme""}" +ACC-0205,SRF Limited,,individual_business,Manufacturing,Delhi,"{""employee_count"": 50, ""tier"": ""sme""}" +ACC-0206,Unacademy,,referral_partner,Education,Kolkata,"{""employee_count"": 5000, ""tier"": ""sme""}" +ACC-0207,KPMG,,corporate,Healthcare,Kolkata,"{""employee_count"": 50, ""tier"": ""enterprise""}" +ACC-0208,Swiggy,,referral_partner,Healthcare,Bangalore,"{""employee_count"": 200, ""tier"": ""mid_market""}" +ACC-0211,Unacademy,,referral_partner,Healthcare,Dubai,"{""employee_count"": 500, ""tier"": ""mid_market""}" +ACC-0212,Adani Group,,referral_partner,Real Estate,Dubai,"{""employee_count"": 50, ""tier"": ""mid_market""}" +ACC-0213,HDFC Bank,,referral_partner,Consulting,Dubai,"{""employee_count"": 5000, ""tier"": ""mid_market""}" +ACC-0214,Cognizant,,corporate,Banking,Kolkata,"{""employee_count"": 500, ""tier"": ""sme""}" +ACC-0216,Ola,,individual_business,IT,Singapore,"{""employee_count"": 50, ""tier"": ""enterprise""}" +ACC-0218,Ola,,developer,Manufacturing,Mumbai,"{""employee_count"": 500, ""tier"": ""sme""}" +ACC-0219,HDFC Bank,,individual_business,Manufacturing,Singapore,"{""employee_count"": 50, ""tier"": ""mid_market""}" +ACC-0221,Capgemini,,individual_business,Healthcare,Singapore,"{""employee_count"": 200, ""tier"": ""enterprise""}" +ACC-0222,ITC Limited,,individual_business,Real Estate,Bangalore,"{""employee_count"": 5000, ""tier"": ""sme""}" +ACC-0223,IBM India,,developer,Manufacturing,Dubai,"{""employee_count"": 1000, ""tier"": ""mid_market""}" +ACC-0226,HDFC Bank,,referral_partner,IT,Kolkata,"{""employee_count"": 1000, ""tier"": ""enterprise""}" +ACC-0228,Tech Mahindra,,developer,IT,Dubai,"{""employee_count"": 1000, ""tier"": ""sme""}" +ACC-0229,Adani Group,,referral_partner,Banking,Hyderabad,"{""employee_count"": 50, ""tier"": ""mid_market""}" +ACC-0231,Flipkart,,referral_partner,Real Estate,Hyderabad,"{""employee_count"": 5000, ""tier"": ""enterprise""}" +ACC-0235,Larsen & Toubro,,referral_partner,Consulting,Bangalore,"{""employee_count"": 5000, ""tier"": ""enterprise""}" +ACC-0236,ITC Limited,,developer,Consulting,Delhi,"{""employee_count"": 50, ""tier"": ""enterprise""}" +ACC-0237,HDFC Bank,,corporate,Manufacturing,Mumbai,"{""employee_count"": 1000, ""tier"": ""mid_market""}" +ACC-0238,Bengal Chemicals,,individual_business,IT,Dubai,"{""employee_count"": 500, ""tier"": ""sme""}" +ACC-0239,Cognizant,,corporate,Education,Kolkata,"{""employee_count"": 500, ""tier"": ""enterprise""}" +ACC-0242,Flipkart,,referral_partner,Consulting,Delhi,"{""employee_count"": 200, ""tier"": ""enterprise""}" +ACC-0244,HDFC Bank,,developer,Education,Hyderabad,"{""employee_count"": 200, ""tier"": ""sme""}" +ACC-0245,SRF Limited,,corporate,Consulting,Singapore,"{""employee_count"": 1000, ""tier"": ""mid_market""}" +ACC-0248,Swiggy,,developer,IT,Mumbai,"{""employee_count"": 5000, ""tier"": ""mid_market""}" +ACC-0249,Capgemini,,referral_partner,Education,Mumbai,"{""employee_count"": 500, ""tier"": ""sme""}" diff --git a/db assets/synthetic_crm_v1/csv/crm_households.csv b/db assets/synthetic_crm_v1/csv/crm_households.csv new file mode 100644 index 00000000..3f8a6f6d --- /dev/null +++ b/db assets/synthetic_crm_v1/csv/crm_households.csv @@ -0,0 +1,119 @@ +household_id,household_name,primary_contact_id,size,combined_budget_band,decision_maker_id,metadata_json +HH-0002,Sen Family,PER-0002,5,4-6 Cr,PER-0002,"{""decision_style"": ""democratic""}" +HH-0003,Roy Family,PER-0003,5,2.5-4 Cr,PER-0003,"{""decision_style"": ""hierarchical""}" +HH-0008,Saha Family,PER-0008,2,10-15 Cr,PER-0008,"{""decision_style"": ""consensus""}" +HH-0011,Das Family,PER-0011,4,1.5-2.5 Cr,PER-0011,"{""decision_style"": ""hierarchical""}" +HH-0013,Gupta Family,PER-0013,4,15-25 Cr,PER-0013,"{""decision_style"": ""consensus""}" +HH-0015,Reddy Family,PER-0015,5,15-25 Cr,PER-0015,"{""decision_style"": ""hierarchical""}" +HH-0017,Chatterjee Family,PER-0017,3,10-15 Cr,PER-0017,"{""decision_style"": ""democratic""}" +HH-0022,Pillai Family,PER-0022,3,4-6 Cr,PER-0022,"{""decision_style"": ""hierarchical""}" +HH-0023,Roy Family,PER-0023,2,4-6 Cr,PER-0023,"{""decision_style"": ""hierarchical""}" +HH-0025,Sen Family,PER-0025,3,2.5-4 Cr,PER-0025,"{""decision_style"": ""hierarchical""}" +HH-0028,Saha Family,PER-0028,4,15-25 Cr,PER-0028,"{""decision_style"": ""consensus""}" +HH-0029,Reddy Family,PER-0029,2,6-10 Cr,PER-0029,"{""decision_style"": ""consensus""}" +HH-0030,Sen Family,PER-0030,4,2.5-4 Cr,PER-0030,"{""decision_style"": ""consensus""}" +HH-0032,Sharma Family,PER-0032,2,1.5-2.5 Cr,PER-0032,"{""decision_style"": ""democratic""}" +HH-0034,Agarwal Family,PER-0034,3,6-10 Cr,PER-0034,"{""decision_style"": ""hierarchical""}" +HH-0035,Ghosh Family,PER-0035,3,6-10 Cr,PER-0035,"{""decision_style"": ""hierarchical""}" +HH-0037,Banerjee Family,PER-0037,3,15-25 Cr,PER-0037,"{""decision_style"": ""democratic""}" +HH-0038,Verma Family,PER-0038,5,2.5-4 Cr,PER-0038,"{""decision_style"": ""democratic""}" +HH-0040,Nair Family,PER-0040,2,15-25 Cr,PER-0040,"{""decision_style"": ""consensus""}" +HH-0041,Pillai Family,PER-0041,2,2.5-4 Cr,PER-0041,"{""decision_style"": ""democratic""}" +HH-0042,Pillai Family,PER-0042,5,10-15 Cr,PER-0042,"{""decision_style"": ""consensus""}" +HH-0043,Bose Family,PER-0043,4,6-10 Cr,PER-0043,"{""decision_style"": ""consensus""}" +HH-0047,Gupta Family,PER-0047,5,10-15 Cr,PER-0047,"{""decision_style"": ""hierarchical""}" +HH-0051,Chatterjee Family,PER-0051,4,6-10 Cr,PER-0051,"{""decision_style"": ""democratic""}" +HH-0053,Saha Family,PER-0053,5,15-25 Cr,PER-0053,"{""decision_style"": ""consensus""}" +HH-0054,Ghosh Family,PER-0054,5,4-6 Cr,PER-0054,"{""decision_style"": ""consensus""}" +HH-0058,Banerjee Family,PER-0058,3,1.5-2.5 Cr,PER-0058,"{""decision_style"": ""consensus""}" +HH-0059,Singh Family,PER-0059,3,2.5-4 Cr,PER-0059,"{""decision_style"": ""hierarchical""}" +HH-0062,Patel Family,PER-0062,5,15-25 Cr,PER-0062,"{""decision_style"": ""democratic""}" +HH-0070,Bose Family,PER-0070,4,6-10 Cr,PER-0070,"{""decision_style"": ""democratic""}" +HH-0071,Singh Family,PER-0071,5,10-15 Cr,PER-0071,"{""decision_style"": ""consensus""}" +HH-0072,Gupta Family,PER-0072,2,4-6 Cr,PER-0072,"{""decision_style"": ""hierarchical""}" +HH-0079,Reddy Family,PER-0079,2,10-15 Cr,PER-0079,"{""decision_style"": ""consensus""}" +HH-0080,Patel Family,PER-0080,5,2.5-4 Cr,PER-0080,"{""decision_style"": ""democratic""}" +HH-0084,Reddy Family,PER-0084,5,4-6 Cr,PER-0084,"{""decision_style"": ""democratic""}" +HH-0085,Das Family,PER-0085,5,15-25 Cr,PER-0085,"{""decision_style"": ""democratic""}" +HH-0087,Pillai Family,PER-0087,5,4-6 Cr,PER-0087,"{""decision_style"": ""consensus""}" +HH-0090,Saha Family,PER-0090,5,6-10 Cr,PER-0090,"{""decision_style"": ""consensus""}" +HH-0091,Pillai Family,PER-0091,4,4-6 Cr,PER-0091,"{""decision_style"": ""consensus""}" +HH-0093,Banerjee Family,PER-0093,4,2.5-4 Cr,PER-0093,"{""decision_style"": ""consensus""}" +HH-0094,Sharma Family,PER-0094,4,15-25 Cr,PER-0094,"{""decision_style"": ""consensus""}" +HH-0095,Das Family,PER-0095,5,6-10 Cr,PER-0095,"{""decision_style"": ""democratic""}" +HH-0096,Gupta Family,PER-0096,3,6-10 Cr,PER-0096,"{""decision_style"": ""consensus""}" +HH-0097,Das Family,PER-0097,4,6-10 Cr,PER-0097,"{""decision_style"": ""hierarchical""}" +HH-0098,Bose Family,PER-0098,2,6-10 Cr,PER-0098,"{""decision_style"": ""democratic""}" +HH-0099,Das Family,PER-0099,5,1.5-2.5 Cr,PER-0099,"{""decision_style"": ""consensus""}" +HH-0100,Saha Family,PER-0100,3,15-25 Cr,PER-0100,"{""decision_style"": ""hierarchical""}" +HH-0102,Ghosh Family,PER-0102,2,1.5-2.5 Cr,PER-0102,"{""decision_style"": ""hierarchical""}" +HH-0103,Agarwal Family,PER-0103,5,4-6 Cr,PER-0103,"{""decision_style"": ""democratic""}" +HH-0104,Chatterjee Family,PER-0104,2,10-15 Cr,PER-0104,"{""decision_style"": ""democratic""}" +HH-0107,Sharma Family,PER-0107,5,15-25 Cr,PER-0107,"{""decision_style"": ""consensus""}" +HH-0108,Saha Family,PER-0108,2,4-6 Cr,PER-0108,"{""decision_style"": ""consensus""}" +HH-0109,Banerjee Family,PER-0109,3,1.5-2.5 Cr,PER-0109,"{""decision_style"": ""consensus""}" +HH-0111,Sen Family,PER-0111,5,2.5-4 Cr,PER-0111,"{""decision_style"": ""democratic""}" +HH-0115,Pillai Family,PER-0115,5,4-6 Cr,PER-0115,"{""decision_style"": ""hierarchical""}" +HH-0117,Jain Family,PER-0117,3,10-15 Cr,PER-0117,"{""decision_style"": ""hierarchical""}" +HH-0119,Roy Family,PER-0119,4,6-10 Cr,PER-0119,"{""decision_style"": ""consensus""}" +HH-0122,Nair Family,PER-0122,5,1.5-2.5 Cr,PER-0122,"{""decision_style"": ""hierarchical""}" +HH-0123,Mukherjee Family,PER-0123,4,10-15 Cr,PER-0123,"{""decision_style"": ""democratic""}" +HH-0126,Singh Family,PER-0126,4,15-25 Cr,PER-0126,"{""decision_style"": ""hierarchical""}" +HH-0127,Das Family,PER-0127,4,6-10 Cr,PER-0127,"{""decision_style"": ""democratic""}" +HH-0130,Saha Family,PER-0130,5,4-6 Cr,PER-0130,"{""decision_style"": ""consensus""}" +HH-0132,Chatterjee Family,PER-0132,3,4-6 Cr,PER-0132,"{""decision_style"": ""hierarchical""}" +HH-0135,Sen Family,PER-0135,5,15-25 Cr,PER-0135,"{""decision_style"": ""hierarchical""}" +HH-0136,Singh Family,PER-0136,3,2.5-4 Cr,PER-0136,"{""decision_style"": ""hierarchical""}" +HH-0138,Nair Family,PER-0138,3,15-25 Cr,PER-0138,"{""decision_style"": ""hierarchical""}" +HH-0141,Nair Family,PER-0141,2,2.5-4 Cr,PER-0141,"{""decision_style"": ""consensus""}" +HH-0143,Gupta Family,PER-0143,3,6-10 Cr,PER-0143,"{""decision_style"": ""democratic""}" +HH-0144,Ghosh Family,PER-0144,2,15-25 Cr,PER-0144,"{""decision_style"": ""hierarchical""}" +HH-0145,Jain Family,PER-0145,2,10-15 Cr,PER-0145,"{""decision_style"": ""hierarchical""}" +HH-0150,Gupta Family,PER-0150,2,1.5-2.5 Cr,PER-0150,"{""decision_style"": ""democratic""}" +HH-0151,Nair Family,PER-0151,5,1.5-2.5 Cr,PER-0151,"{""decision_style"": ""democratic""}" +HH-0152,Patel Family,PER-0152,5,4-6 Cr,PER-0152,"{""decision_style"": ""democratic""}" +HH-0154,Banerjee Family,PER-0154,2,15-25 Cr,PER-0154,"{""decision_style"": ""hierarchical""}" +HH-0155,Pillai Family,PER-0155,4,6-10 Cr,PER-0155,"{""decision_style"": ""democratic""}" +HH-0156,Agarwal Family,PER-0156,2,4-6 Cr,PER-0156,"{""decision_style"": ""hierarchical""}" +HH-0160,Reddy Family,PER-0160,5,15-25 Cr,PER-0160,"{""decision_style"": ""consensus""}" +HH-0163,Banerjee Family,PER-0163,5,6-10 Cr,PER-0163,"{""decision_style"": ""consensus""}" +HH-0164,Kumar Family,PER-0164,4,6-10 Cr,PER-0164,"{""decision_style"": ""democratic""}" +HH-0165,Mukherjee Family,PER-0165,4,6-10 Cr,PER-0165,"{""decision_style"": ""hierarchical""}" +HH-0168,Mukherjee Family,PER-0168,5,10-15 Cr,PER-0168,"{""decision_style"": ""consensus""}" +HH-0169,Das Family,PER-0169,3,6-10 Cr,PER-0169,"{""decision_style"": ""democratic""}" +HH-0184,Pillai Family,PER-0184,5,10-15 Cr,PER-0184,"{""decision_style"": ""hierarchical""}" +HH-0185,Saha Family,PER-0185,3,2.5-4 Cr,PER-0185,"{""decision_style"": ""consensus""}" +HH-0186,Banerjee Family,PER-0186,4,2.5-4 Cr,PER-0186,"{""decision_style"": ""democratic""}" +HH-0188,Pillai Family,PER-0188,2,6-10 Cr,PER-0188,"{""decision_style"": ""consensus""}" +HH-0190,Jain Family,PER-0190,4,2.5-4 Cr,PER-0190,"{""decision_style"": ""hierarchical""}" +HH-0191,Jain Family,PER-0191,2,6-10 Cr,PER-0191,"{""decision_style"": ""consensus""}" +HH-0193,Reddy Family,PER-0193,3,2.5-4 Cr,PER-0193,"{""decision_style"": ""hierarchical""}" +HH-0195,Banerjee Family,PER-0195,4,10-15 Cr,PER-0195,"{""decision_style"": ""hierarchical""}" +HH-0196,Bose Family,PER-0196,3,10-15 Cr,PER-0196,"{""decision_style"": ""hierarchical""}" +HH-0198,Agarwal Family,PER-0198,5,4-6 Cr,PER-0198,"{""decision_style"": ""democratic""}" +HH-0199,Sharma Family,PER-0199,5,2.5-4 Cr,PER-0199,"{""decision_style"": ""consensus""}" +HH-0203,Das Family,PER-0203,5,6-10 Cr,PER-0203,"{""decision_style"": ""hierarchical""}" +HH-0204,Bose Family,PER-0204,2,2.5-4 Cr,PER-0204,"{""decision_style"": ""consensus""}" +HH-0205,Saha Family,PER-0205,3,15-25 Cr,PER-0205,"{""decision_style"": ""consensus""}" +HH-0207,Reddy Family,PER-0207,4,10-15 Cr,PER-0207,"{""decision_style"": ""democratic""}" +HH-0208,Jain Family,PER-0208,5,4-6 Cr,PER-0208,"{""decision_style"": ""hierarchical""}" +HH-0210,Jain Family,PER-0210,3,4-6 Cr,PER-0210,"{""decision_style"": ""democratic""}" +HH-0211,Sharma Family,PER-0211,5,2.5-4 Cr,PER-0211,"{""decision_style"": ""democratic""}" +HH-0215,Verma Family,PER-0215,4,6-10 Cr,PER-0215,"{""decision_style"": ""democratic""}" +HH-0217,Pillai Family,PER-0217,3,15-25 Cr,PER-0217,"{""decision_style"": ""hierarchical""}" +HH-0219,Chatterjee Family,PER-0219,4,10-15 Cr,PER-0219,"{""decision_style"": ""hierarchical""}" +HH-0222,Singh Family,PER-0222,4,15-25 Cr,PER-0222,"{""decision_style"": ""democratic""}" +HH-0224,Roy Family,PER-0224,2,1.5-2.5 Cr,PER-0224,"{""decision_style"": ""hierarchical""}" +HH-0225,Das Family,PER-0225,5,10-15 Cr,PER-0225,"{""decision_style"": ""hierarchical""}" +HH-0228,Das Family,PER-0228,3,10-15 Cr,PER-0228,"{""decision_style"": ""consensus""}" +HH-0229,Roy Family,PER-0229,3,4-6 Cr,PER-0229,"{""decision_style"": ""consensus""}" +HH-0232,Agarwal Family,PER-0232,4,15-25 Cr,PER-0232,"{""decision_style"": ""hierarchical""}" +HH-0234,Saha Family,PER-0234,3,10-15 Cr,PER-0234,"{""decision_style"": ""democratic""}" +HH-0236,Nair Family,PER-0236,5,10-15 Cr,PER-0236,"{""decision_style"": ""democratic""}" +HH-0238,Das Family,PER-0238,4,2.5-4 Cr,PER-0238,"{""decision_style"": ""democratic""}" +HH-0242,Banerjee Family,PER-0242,3,1.5-2.5 Cr,PER-0242,"{""decision_style"": ""hierarchical""}" +HH-0243,Sen Family,PER-0243,3,10-15 Cr,PER-0243,"{""decision_style"": ""consensus""}" +HH-0244,Verma Family,PER-0244,4,6-10 Cr,PER-0244,"{""decision_style"": ""consensus""}" +HH-0246,Sen Family,PER-0246,4,15-25 Cr,PER-0246,"{""decision_style"": ""democratic""}" +HH-0249,Mukherjee Family,PER-0249,5,6-10 Cr,PER-0249,"{""decision_style"": ""hierarchical""}" +HH-0250,Ghosh Family,PER-0250,4,1.5-2.5 Cr,PER-0250,"{""decision_style"": ""consensus""}" diff --git a/db assets/synthetic_crm_v1/csv/crm_leads.csv b/db assets/synthetic_crm_v1/csv/crm_leads.csv new file mode 100644 index 00000000..804b06b5 --- /dev/null +++ b/db assets/synthetic_crm_v1/csv/crm_leads.csv @@ -0,0 +1,251 @@ +lead_id,person_id,account_id,source_system,status,stage,budget_band,urgency,assigned_user_id,created_at +LED-0001,PER-0001,,website,dropped,closed_won,2.5-4 Cr,investment,user_002,2025-09-18T00:00:00 +LED-0002,PER-0002,,website,active,site_visit_done,15-25 Cr,investment,user_002,2024-11-24T00:00:00 +LED-0003,PER-0003,ACC-0003,website,active,site_visit_done,15-25 Cr,6_months,user_002,2024-12-03T00:00:00 +LED-0004,PER-0004,ACC-0004,website,converted,nurturing,6-10 Cr,6_months,user_001,2025-04-12T00:00:00 +LED-0005,PER-0005,,housing,active,closed_lost,15-25 Cr,investment,user_003,2024-05-23T00:00:00 +LED-0006,PER-0006,ACC-0006,housing,inactive,new,15-25 Cr,investment,user_005,2024-07-14T00:00:00 +LED-0007,PER-0007,,walk_in,inactive,negotiation,1.5-2.5 Cr,investment,user_002,2024-07-27T00:00:00 +LED-0008,PER-0008,ACC-0008,magicbricks,active,site_visit_scheduled,15-25 Cr,immediate,user_001,2025-08-01T00:00:00 +LED-0009,PER-0009,,referral,converted,qualified,15-25 Cr,6_months,user_001,2026-02-12T00:00:00 +LED-0010,PER-0010,ACC-0010,referral,active,new,10-15 Cr,immediate,user_005,2024-04-15T00:00:00 +LED-0011,PER-0011,ACC-0011,99acres,inactive,negotiation,4-6 Cr,6_months,user_004,2025-05-05T00:00:00 +LED-0012,PER-0012,ACC-0012,magicbricks,dropped,contacted,15-25 Cr,6_months,user_002,2024-03-28T00:00:00 +LED-0013,PER-0013,ACC-0013,99acres,dropped,qualified,15-25 Cr,12_months,user_004,2025-02-18T00:00:00 +LED-0014,PER-0014,,referral,dropped,site_visit_done,2.5-4 Cr,6_months,user_001,2025-12-23T00:00:00 +LED-0015,PER-0015,,facebook,converted,nurturing,10-15 Cr,immediate,user_005,2025-04-13T00:00:00 +LED-0016,PER-0016,ACC-0016,housing,dropped,booking_pending,4-6 Cr,12_months,user_004,2024-04-05T00:00:00 +LED-0017,PER-0017,ACC-0017,referral,active,contacted,4-6 Cr,6_months,user_002,2026-01-18T00:00:00 +LED-0018,PER-0018,ACC-0018,magicbricks,inactive,new,6-10 Cr,immediate,user_002,2024-10-29T00:00:00 +LED-0019,PER-0019,ACC-0019,website,active,site_visit_scheduled,1.5-2.5 Cr,12_months,user_001,2026-01-17T00:00:00 +LED-0020,PER-0020,ACC-0020,referral,active,contacted,15-25 Cr,investment,user_001,2024-09-18T00:00:00 +LED-0021,PER-0021,ACC-0021,magicbricks,active,closed_lost,1.5-2.5 Cr,12_months,user_001,2024-07-19T00:00:00 +LED-0022,PER-0022,ACC-0022,website,active,contacted,2.5-4 Cr,3_months,user_002,2024-05-23T00:00:00 +LED-0023,PER-0023,ACC-0023,walk_in,inactive,nurturing,4-6 Cr,3_months,user_001,2024-12-18T00:00:00 +LED-0024,PER-0024,ACC-0024,walk_in,active,closed_lost,15-25 Cr,investment,user_002,2025-12-25T00:00:00 +LED-0025,PER-0025,ACC-0025,referral,active,contacted,10-15 Cr,investment,user_004,2024-06-13T00:00:00 +LED-0026,PER-0026,ACC-0026,walk_in,inactive,qualified,4-6 Cr,3_months,user_004,2025-01-31T00:00:00 +LED-0027,PER-0027,ACC-0027,magicbricks,active,site_visit_scheduled,1.5-2.5 Cr,12_months,user_001,2024-06-20T00:00:00 +LED-0028,PER-0028,,housing,dropped,qualified,6-10 Cr,6_months,user_003,2024-08-21T00:00:00 +LED-0029,PER-0029,,99acres,converted,qualified,1.5-2.5 Cr,3_months,user_003,2025-04-30T00:00:00 +LED-0030,PER-0030,,google_ads,inactive,site_visit_done,6-10 Cr,immediate,user_005,2024-10-29T00:00:00 +LED-0031,PER-0031,,facebook,active,contacted,10-15 Cr,immediate,user_004,2025-09-27T00:00:00 +LED-0032,PER-0032,ACC-0032,housing,active,negotiation,1.5-2.5 Cr,12_months,user_005,2024-08-19T00:00:00 +LED-0033,PER-0033,ACC-0033,google_ads,active,closed_won,10-15 Cr,6_months,user_004,2025-03-02T00:00:00 +LED-0034,PER-0034,ACC-0034,website,active,new,15-25 Cr,3_months,user_003,2024-04-07T00:00:00 +LED-0035,PER-0035,ACC-0035,referral,inactive,negotiation,15-25 Cr,3_months,user_004,2025-11-16T00:00:00 +LED-0036,PER-0036,,magicbricks,dropped,site_visit_done,15-25 Cr,12_months,user_003,2025-09-25T00:00:00 +LED-0037,PER-0037,,walk_in,active,booking_pending,6-10 Cr,3_months,user_002,2024-10-07T00:00:00 +LED-0038,PER-0038,ACC-0038,magicbricks,dropped,negotiation,2.5-4 Cr,6_months,user_004,2025-10-25T00:00:00 +LED-0039,PER-0039,,referral,dropped,new,4-6 Cr,12_months,user_002,2025-07-28T00:00:00 +LED-0040,PER-0040,,walk_in,active,closed_won,1.5-2.5 Cr,immediate,user_001,2024-01-25T00:00:00 +LED-0041,PER-0041,ACC-0041,facebook,dropped,closed_lost,10-15 Cr,immediate,user_003,2024-02-25T00:00:00 +LED-0042,PER-0042,ACC-0042,facebook,dropped,site_visit_done,2.5-4 Cr,6_months,user_004,2025-07-18T00:00:00 +LED-0043,PER-0043,,housing,active,closed_lost,2.5-4 Cr,3_months,user_002,2024-03-19T00:00:00 +LED-0044,PER-0044,ACC-0044,google_ads,active,booking_pending,1.5-2.5 Cr,investment,user_004,2024-01-02T00:00:00 +LED-0045,PER-0045,ACC-0045,walk_in,converted,qualified,10-15 Cr,12_months,user_003,2025-05-09T00:00:00 +LED-0046,PER-0046,,housing,dropped,nurturing,10-15 Cr,immediate,user_002,2025-02-14T00:00:00 +LED-0047,PER-0047,,facebook,dropped,negotiation,6-10 Cr,investment,user_001,2026-02-14T00:00:00 +LED-0048,PER-0048,,referral,active,qualified,1.5-2.5 Cr,12_months,user_005,2024-12-30T00:00:00 +LED-0049,PER-0049,,walk_in,converted,negotiation,4-6 Cr,3_months,user_005,2024-04-13T00:00:00 +LED-0050,PER-0050,ACC-0050,website,active,qualified,4-6 Cr,12_months,user_001,2025-12-08T00:00:00 +LED-0051,PER-0051,,housing,inactive,booking_pending,4-6 Cr,investment,user_005,2025-09-11T00:00:00 +LED-0052,PER-0052,ACC-0052,magicbricks,active,closed_lost,6-10 Cr,6_months,user_003,2025-05-08T00:00:00 +LED-0053,PER-0053,ACC-0053,walk_in,active,new,2.5-4 Cr,immediate,user_003,2025-12-14T00:00:00 +LED-0054,PER-0054,ACC-0054,99acres,active,nurturing,1.5-2.5 Cr,3_months,user_002,2025-12-05T00:00:00 +LED-0055,PER-0055,ACC-0055,walk_in,dropped,site_visit_scheduled,1.5-2.5 Cr,investment,user_004,2025-09-27T00:00:00 +LED-0056,PER-0056,ACC-0056,walk_in,converted,new,15-25 Cr,12_months,user_003,2025-10-16T00:00:00 +LED-0057,PER-0057,ACC-0057,facebook,active,qualified,4-6 Cr,investment,user_003,2024-12-11T00:00:00 +LED-0058,PER-0058,,google_ads,converted,nurturing,2.5-4 Cr,immediate,user_003,2024-04-04T00:00:00 +LED-0059,PER-0059,ACC-0059,referral,active,negotiation,15-25 Cr,12_months,user_004,2025-03-16T00:00:00 +LED-0060,PER-0060,ACC-0060,website,active,booking_pending,2.5-4 Cr,immediate,user_003,2024-01-19T00:00:00 +LED-0061,PER-0061,,housing,active,closed_lost,2.5-4 Cr,6_months,user_004,2024-01-31T00:00:00 +LED-0062,PER-0062,,magicbricks,dropped,booking_pending,15-25 Cr,3_months,user_002,2024-10-03T00:00:00 +LED-0063,PER-0063,ACC-0063,facebook,active,site_visit_scheduled,4-6 Cr,6_months,user_002,2025-12-30T00:00:00 +LED-0064,PER-0064,ACC-0064,housing,converted,closed_lost,15-25 Cr,investment,user_002,2024-09-07T00:00:00 +LED-0065,PER-0065,,google_ads,converted,site_visit_done,4-6 Cr,6_months,user_005,2025-12-24T00:00:00 +LED-0066,PER-0066,ACC-0066,website,active,nurturing,2.5-4 Cr,6_months,user_003,2025-08-05T00:00:00 +LED-0067,PER-0067,ACC-0067,website,inactive,closed_lost,10-15 Cr,3_months,user_002,2025-03-30T00:00:00 +LED-0068,PER-0068,ACC-0068,magicbricks,active,nurturing,1.5-2.5 Cr,6_months,user_005,2024-10-17T00:00:00 +LED-0069,PER-0069,ACC-0069,referral,inactive,closed_lost,15-25 Cr,immediate,user_003,2024-05-10T00:00:00 +LED-0070,PER-0070,,website,converted,contacted,10-15 Cr,12_months,user_002,2024-12-18T00:00:00 +LED-0071,PER-0071,,housing,inactive,site_visit_scheduled,10-15 Cr,investment,user_003,2026-01-18T00:00:00 +LED-0072,PER-0072,,99acres,converted,contacted,15-25 Cr,3_months,user_004,2026-01-29T00:00:00 +LED-0073,PER-0073,ACC-0073,facebook,active,booking_pending,2.5-4 Cr,investment,user_004,2025-12-23T00:00:00 +LED-0074,PER-0074,,99acres,inactive,contacted,15-25 Cr,investment,user_002,2024-05-02T00:00:00 +LED-0075,PER-0075,ACC-0075,housing,active,closed_won,1.5-2.5 Cr,immediate,user_001,2024-04-18T00:00:00 +LED-0076,PER-0076,ACC-0076,facebook,active,negotiation,15-25 Cr,12_months,user_002,2024-04-19T00:00:00 +LED-0077,PER-0077,ACC-0077,99acres,converted,closed_won,1.5-2.5 Cr,immediate,user_001,2024-04-09T00:00:00 +LED-0078,PER-0078,,facebook,dropped,booking_pending,2.5-4 Cr,3_months,user_002,2024-10-17T00:00:00 +LED-0079,PER-0079,ACC-0079,walk_in,active,site_visit_scheduled,1.5-2.5 Cr,6_months,user_002,2025-03-05T00:00:00 +LED-0080,PER-0080,,website,inactive,qualified,1.5-2.5 Cr,immediate,user_004,2025-08-28T00:00:00 +LED-0081,PER-0081,,google_ads,active,site_visit_done,15-25 Cr,investment,user_005,2024-02-03T00:00:00 +LED-0082,PER-0082,,facebook,converted,site_visit_done,4-6 Cr,immediate,user_002,2025-06-29T00:00:00 +LED-0083,PER-0083,ACC-0083,99acres,active,nurturing,2.5-4 Cr,6_months,user_002,2024-11-07T00:00:00 +LED-0084,PER-0084,ACC-0084,referral,active,negotiation,1.5-2.5 Cr,investment,user_002,2025-04-01T00:00:00 +LED-0085,PER-0085,ACC-0085,99acres,inactive,site_visit_scheduled,4-6 Cr,investment,user_004,2024-05-20T00:00:00 +LED-0086,PER-0086,,website,active,negotiation,2.5-4 Cr,investment,user_001,2024-05-02T00:00:00 +LED-0087,PER-0087,,website,inactive,qualified,4-6 Cr,6_months,user_003,2024-04-29T00:00:00 +LED-0088,PER-0088,ACC-0088,referral,active,nurturing,10-15 Cr,immediate,user_005,2025-06-01T00:00:00 +LED-0089,PER-0089,ACC-0089,referral,active,qualified,2.5-4 Cr,6_months,user_002,2024-04-14T00:00:00 +LED-0090,PER-0090,,google_ads,inactive,contacted,4-6 Cr,12_months,user_004,2025-03-16T00:00:00 +LED-0091,PER-0091,,google_ads,active,negotiation,1.5-2.5 Cr,3_months,user_002,2024-12-19T00:00:00 +LED-0092,PER-0092,,referral,converted,nurturing,4-6 Cr,6_months,user_001,2024-04-04T00:00:00 +LED-0093,PER-0093,,housing,active,nurturing,6-10 Cr,6_months,user_001,2024-11-17T00:00:00 +LED-0094,PER-0094,ACC-0094,99acres,inactive,site_visit_scheduled,15-25 Cr,6_months,user_004,2024-10-31T00:00:00 +LED-0095,PER-0095,ACC-0095,website,active,site_visit_scheduled,10-15 Cr,investment,user_002,2025-08-07T00:00:00 +LED-0096,PER-0096,,google_ads,dropped,negotiation,2.5-4 Cr,12_months,user_004,2024-05-16T00:00:00 +LED-0097,PER-0097,ACC-0097,housing,converted,nurturing,4-6 Cr,12_months,user_002,2024-09-26T00:00:00 +LED-0098,PER-0098,ACC-0098,housing,active,new,1.5-2.5 Cr,immediate,user_005,2024-08-04T00:00:00 +LED-0099,PER-0099,ACC-0099,housing,active,closed_won,2.5-4 Cr,6_months,user_002,2024-03-22T00:00:00 +LED-0100,PER-0100,ACC-0100,website,active,qualified,1.5-2.5 Cr,immediate,user_002,2024-05-08T00:00:00 +LED-0101,PER-0101,ACC-0101,magicbricks,dropped,closed_won,1.5-2.5 Cr,investment,user_001,2025-09-18T00:00:00 +LED-0102,PER-0102,ACC-0102,99acres,dropped,site_visit_done,10-15 Cr,investment,user_001,2025-07-24T00:00:00 +LED-0103,PER-0103,ACC-0103,99acres,active,closed_won,15-25 Cr,investment,user_001,2024-01-31T00:00:00 +LED-0104,PER-0104,,referral,dropped,booking_pending,1.5-2.5 Cr,6_months,user_003,2026-01-13T00:00:00 +LED-0105,PER-0105,ACC-0105,google_ads,active,nurturing,10-15 Cr,12_months,user_004,2025-02-16T00:00:00 +LED-0106,PER-0106,ACC-0106,facebook,dropped,closed_won,6-10 Cr,3_months,user_003,2025-05-31T00:00:00 +LED-0107,PER-0107,,referral,active,booking_pending,2.5-4 Cr,3_months,user_005,2024-09-21T00:00:00 +LED-0108,PER-0108,ACC-0108,facebook,active,site_visit_done,2.5-4 Cr,6_months,user_003,2025-10-12T00:00:00 +LED-0109,PER-0109,ACC-0109,referral,active,booking_pending,10-15 Cr,investment,user_004,2025-10-15T00:00:00 +LED-0110,PER-0110,ACC-0110,referral,inactive,site_visit_scheduled,2.5-4 Cr,6_months,user_001,2024-09-13T00:00:00 +LED-0111,PER-0111,,facebook,inactive,new,6-10 Cr,12_months,user_005,2025-09-30T00:00:00 +LED-0112,PER-0112,,website,active,qualified,10-15 Cr,investment,user_001,2025-11-04T00:00:00 +LED-0113,PER-0113,ACC-0113,walk_in,active,nurturing,1.5-2.5 Cr,3_months,user_002,2025-10-08T00:00:00 +LED-0114,PER-0114,ACC-0114,walk_in,dropped,qualified,4-6 Cr,investment,user_004,2025-04-20T00:00:00 +LED-0115,PER-0115,ACC-0115,referral,active,closed_lost,2.5-4 Cr,immediate,user_001,2024-10-28T00:00:00 +LED-0116,PER-0116,,google_ads,inactive,negotiation,2.5-4 Cr,12_months,user_001,2024-06-06T00:00:00 +LED-0117,PER-0117,,housing,converted,nurturing,2.5-4 Cr,investment,user_004,2024-06-11T00:00:00 +LED-0118,PER-0118,ACC-0118,magicbricks,converted,site_visit_done,1.5-2.5 Cr,12_months,user_001,2024-06-17T00:00:00 +LED-0119,PER-0119,,magicbricks,dropped,negotiation,15-25 Cr,immediate,user_002,2024-01-15T00:00:00 +LED-0120,PER-0120,,99acres,active,closed_lost,1.5-2.5 Cr,investment,user_003,2024-04-14T00:00:00 +LED-0121,PER-0121,,website,active,site_visit_done,15-25 Cr,6_months,user_003,2025-02-28T00:00:00 +LED-0122,PER-0122,ACC-0122,google_ads,active,booking_pending,4-6 Cr,investment,user_005,2024-01-21T00:00:00 +LED-0123,PER-0123,,99acres,active,new,10-15 Cr,12_months,user_002,2025-10-08T00:00:00 +LED-0124,PER-0124,,referral,dropped,contacted,6-10 Cr,investment,user_004,2024-01-02T00:00:00 +LED-0125,PER-0125,ACC-0125,referral,active,closed_won,1.5-2.5 Cr,6_months,user_001,2025-05-04T00:00:00 +LED-0126,PER-0126,,99acres,converted,site_visit_scheduled,10-15 Cr,investment,user_001,2025-09-13T00:00:00 +LED-0127,PER-0127,,google_ads,active,booking_pending,2.5-4 Cr,6_months,user_001,2026-01-12T00:00:00 +LED-0128,PER-0128,,walk_in,active,new,10-15 Cr,immediate,user_003,2025-12-20T00:00:00 +LED-0129,PER-0129,ACC-0129,magicbricks,dropped,site_visit_scheduled,15-25 Cr,immediate,user_003,2024-08-02T00:00:00 +LED-0130,PER-0130,,google_ads,inactive,qualified,15-25 Cr,12_months,user_003,2025-08-30T00:00:00 +LED-0131,PER-0131,ACC-0131,facebook,active,site_visit_done,10-15 Cr,12_months,user_003,2025-06-15T00:00:00 +LED-0132,PER-0132,ACC-0132,housing,active,negotiation,2.5-4 Cr,6_months,user_001,2025-01-06T00:00:00 +LED-0133,PER-0133,ACC-0133,google_ads,active,site_visit_done,1.5-2.5 Cr,immediate,user_001,2024-03-30T00:00:00 +LED-0134,PER-0134,ACC-0134,referral,active,site_visit_scheduled,4-6 Cr,12_months,user_003,2024-12-12T00:00:00 +LED-0135,PER-0135,ACC-0135,walk_in,active,booking_pending,2.5-4 Cr,3_months,user_004,2025-02-08T00:00:00 +LED-0136,PER-0136,ACC-0136,google_ads,dropped,new,1.5-2.5 Cr,6_months,user_001,2025-05-05T00:00:00 +LED-0137,PER-0137,ACC-0137,walk_in,active,negotiation,15-25 Cr,6_months,user_002,2026-01-29T00:00:00 +LED-0138,PER-0138,,website,active,qualified,10-15 Cr,3_months,user_005,2024-07-30T00:00:00 +LED-0139,PER-0139,ACC-0139,housing,active,nurturing,1.5-2.5 Cr,immediate,user_003,2025-02-22T00:00:00 +LED-0140,PER-0140,,99acres,dropped,closed_lost,1.5-2.5 Cr,investment,user_001,2024-04-12T00:00:00 +LED-0141,PER-0141,ACC-0141,referral,converted,negotiation,4-6 Cr,immediate,user_003,2024-10-15T00:00:00 +LED-0142,PER-0142,,facebook,dropped,booking_pending,6-10 Cr,investment,user_003,2025-05-21T00:00:00 +LED-0143,PER-0143,,walk_in,active,qualified,1.5-2.5 Cr,3_months,user_001,2024-01-31T00:00:00 +LED-0144,PER-0144,ACC-0144,walk_in,converted,contacted,4-6 Cr,immediate,user_002,2024-04-16T00:00:00 +LED-0145,PER-0145,,99acres,converted,qualified,10-15 Cr,investment,user_005,2024-08-08T00:00:00 +LED-0146,PER-0146,,facebook,active,contacted,4-6 Cr,6_months,user_004,2024-05-23T00:00:00 +LED-0147,PER-0147,,referral,inactive,qualified,6-10 Cr,3_months,user_004,2024-03-28T00:00:00 +LED-0148,PER-0148,ACC-0148,google_ads,converted,closed_won,2.5-4 Cr,6_months,user_002,2024-11-01T00:00:00 +LED-0149,PER-0149,ACC-0149,magicbricks,dropped,site_visit_scheduled,10-15 Cr,immediate,user_003,2024-12-22T00:00:00 +LED-0150,PER-0150,,google_ads,active,site_visit_done,2.5-4 Cr,12_months,user_005,2025-11-14T00:00:00 +LED-0151,PER-0151,,google_ads,dropped,contacted,4-6 Cr,investment,user_002,2025-05-31T00:00:00 +LED-0152,PER-0152,,housing,active,qualified,2.5-4 Cr,immediate,user_001,2024-04-19T00:00:00 +LED-0153,PER-0153,ACC-0153,99acres,active,closed_lost,4-6 Cr,immediate,user_002,2025-06-14T00:00:00 +LED-0154,PER-0154,ACC-0154,referral,converted,site_visit_done,15-25 Cr,12_months,user_004,2025-07-28T00:00:00 +LED-0155,PER-0155,ACC-0155,referral,active,qualified,15-25 Cr,12_months,user_002,2024-01-11T00:00:00 +LED-0156,PER-0156,ACC-0156,magicbricks,dropped,closed_lost,15-25 Cr,3_months,user_001,2024-12-27T00:00:00 +LED-0157,PER-0157,,referral,active,contacted,6-10 Cr,3_months,user_002,2024-09-28T00:00:00 +LED-0158,PER-0158,ACC-0158,facebook,active,site_visit_done,2.5-4 Cr,3_months,user_003,2025-12-09T00:00:00 +LED-0159,PER-0159,ACC-0159,referral,active,qualified,4-6 Cr,6_months,user_004,2024-06-20T00:00:00 +LED-0160,PER-0160,,facebook,converted,closed_lost,2.5-4 Cr,6_months,user_003,2025-10-03T00:00:00 +LED-0161,PER-0161,ACC-0161,referral,active,booking_pending,2.5-4 Cr,immediate,user_004,2024-07-20T00:00:00 +LED-0162,PER-0162,ACC-0162,walk_in,active,nurturing,10-15 Cr,investment,user_005,2024-09-05T00:00:00 +LED-0163,PER-0163,ACC-0163,facebook,dropped,site_visit_done,10-15 Cr,immediate,user_004,2025-07-13T00:00:00 +LED-0164,PER-0164,ACC-0164,housing,inactive,site_visit_done,1.5-2.5 Cr,12_months,user_004,2024-05-23T00:00:00 +LED-0165,PER-0165,ACC-0165,magicbricks,active,contacted,2.5-4 Cr,immediate,user_003,2025-10-06T00:00:00 +LED-0166,PER-0166,ACC-0166,housing,inactive,site_visit_done,15-25 Cr,6_months,user_001,2024-08-17T00:00:00 +LED-0167,PER-0167,,walk_in,active,new,6-10 Cr,investment,user_005,2025-09-16T00:00:00 +LED-0168,PER-0168,ACC-0168,magicbricks,inactive,new,15-25 Cr,investment,user_005,2025-08-25T00:00:00 +LED-0169,PER-0169,,facebook,dropped,site_visit_scheduled,4-6 Cr,6_months,user_005,2024-12-31T00:00:00 +LED-0170,PER-0170,ACC-0170,housing,converted,negotiation,2.5-4 Cr,immediate,user_003,2026-02-11T00:00:00 +LED-0171,PER-0171,,housing,converted,contacted,15-25 Cr,6_months,user_003,2024-01-13T00:00:00 +LED-0172,PER-0172,,magicbricks,active,closed_lost,15-25 Cr,6_months,user_003,2024-02-12T00:00:00 +LED-0173,PER-0173,,website,dropped,booking_pending,15-25 Cr,3_months,user_004,2024-08-08T00:00:00 +LED-0174,PER-0174,ACC-0174,magicbricks,inactive,closed_lost,15-25 Cr,investment,user_002,2024-05-08T00:00:00 +LED-0175,PER-0175,ACC-0175,99acres,dropped,closed_won,2.5-4 Cr,investment,user_005,2024-10-23T00:00:00 +LED-0176,PER-0176,,99acres,active,site_visit_done,2.5-4 Cr,investment,user_005,2025-11-13T00:00:00 +LED-0177,PER-0177,ACC-0177,website,active,new,2.5-4 Cr,investment,user_004,2025-10-03T00:00:00 +LED-0178,PER-0178,,walk_in,converted,booking_pending,6-10 Cr,6_months,user_001,2025-05-16T00:00:00 +LED-0179,PER-0179,ACC-0179,referral,dropped,booking_pending,4-6 Cr,6_months,user_005,2024-01-22T00:00:00 +LED-0180,PER-0180,ACC-0180,google_ads,active,nurturing,10-15 Cr,6_months,user_003,2024-04-07T00:00:00 +LED-0181,PER-0181,ACC-0181,website,active,booking_pending,15-25 Cr,3_months,user_005,2025-09-05T00:00:00 +LED-0182,PER-0182,ACC-0182,99acres,converted,qualified,15-25 Cr,12_months,user_001,2024-12-04T00:00:00 +LED-0183,PER-0183,,magicbricks,active,closed_lost,10-15 Cr,3_months,user_001,2025-07-28T00:00:00 +LED-0184,PER-0184,ACC-0184,google_ads,active,negotiation,10-15 Cr,investment,user_002,2025-11-17T00:00:00 +LED-0185,PER-0185,ACC-0185,website,active,nurturing,15-25 Cr,6_months,user_002,2025-11-01T00:00:00 +LED-0186,PER-0186,ACC-0186,walk_in,active,nurturing,15-25 Cr,investment,user_004,2024-12-29T00:00:00 +LED-0187,PER-0187,ACC-0187,referral,inactive,closed_lost,6-10 Cr,6_months,user_005,2024-08-27T00:00:00 +LED-0188,PER-0188,ACC-0188,website,active,closed_won,10-15 Cr,3_months,user_002,2024-12-21T00:00:00 +LED-0189,PER-0189,ACC-0189,google_ads,active,booking_pending,4-6 Cr,12_months,user_003,2025-11-17T00:00:00 +LED-0190,PER-0190,,magicbricks,active,booking_pending,1.5-2.5 Cr,investment,user_001,2025-06-28T00:00:00 +LED-0191,PER-0191,ACC-0191,magicbricks,active,negotiation,10-15 Cr,6_months,user_005,2024-01-19T00:00:00 +LED-0192,PER-0192,ACC-0192,google_ads,active,booking_pending,2.5-4 Cr,12_months,user_005,2026-01-22T00:00:00 +LED-0193,PER-0193,ACC-0193,99acres,active,negotiation,1.5-2.5 Cr,immediate,user_002,2024-07-23T00:00:00 +LED-0194,PER-0194,,walk_in,active,site_visit_done,15-25 Cr,12_months,user_003,2024-09-07T00:00:00 +LED-0195,PER-0195,ACC-0195,housing,active,site_visit_scheduled,2.5-4 Cr,3_months,user_003,2024-12-16T00:00:00 +LED-0196,PER-0196,ACC-0196,google_ads,converted,site_visit_done,4-6 Cr,12_months,user_002,2024-01-01T00:00:00 +LED-0197,PER-0197,,housing,active,site_visit_done,10-15 Cr,12_months,user_001,2024-08-06T00:00:00 +LED-0198,PER-0198,,website,dropped,site_visit_done,2.5-4 Cr,3_months,user_003,2025-04-12T00:00:00 +LED-0199,PER-0199,ACC-0199,99acres,active,new,15-25 Cr,6_months,user_003,2025-12-07T00:00:00 +LED-0200,PER-0200,ACC-0200,facebook,active,closed_lost,10-15 Cr,6_months,user_001,2024-11-30T00:00:00 +LED-0201,PER-0201,ACC-0201,99acres,inactive,site_visit_done,4-6 Cr,3_months,user_002,2024-07-25T00:00:00 +LED-0202,PER-0202,ACC-0202,facebook,active,booking_pending,4-6 Cr,6_months,user_001,2024-03-27T00:00:00 +LED-0203,PER-0203,ACC-0203,99acres,converted,closed_won,15-25 Cr,immediate,user_003,2025-07-03T00:00:00 +LED-0204,PER-0204,ACC-0204,google_ads,inactive,nurturing,2.5-4 Cr,12_months,user_005,2024-07-11T00:00:00 +LED-0205,PER-0205,ACC-0205,walk_in,active,closed_won,15-25 Cr,6_months,user_001,2025-05-02T00:00:00 +LED-0206,PER-0206,ACC-0206,walk_in,active,contacted,1.5-2.5 Cr,12_months,user_003,2024-06-06T00:00:00 +LED-0207,PER-0207,ACC-0207,google_ads,dropped,booking_pending,15-25 Cr,immediate,user_003,2025-09-10T00:00:00 +LED-0208,PER-0208,ACC-0208,99acres,active,qualified,1.5-2.5 Cr,immediate,user_002,2025-01-05T00:00:00 +LED-0209,PER-0209,,99acres,dropped,site_visit_scheduled,4-6 Cr,immediate,user_004,2024-02-11T00:00:00 +LED-0210,PER-0210,,walk_in,dropped,site_visit_scheduled,15-25 Cr,investment,user_002,2025-09-10T00:00:00 +LED-0211,PER-0211,ACC-0211,website,converted,negotiation,1.5-2.5 Cr,6_months,user_005,2025-08-23T00:00:00 +LED-0212,PER-0212,ACC-0212,housing,active,closed_lost,10-15 Cr,immediate,user_005,2024-04-06T00:00:00 +LED-0213,PER-0213,ACC-0213,referral,active,closed_lost,2.5-4 Cr,6_months,user_002,2024-04-29T00:00:00 +LED-0214,PER-0214,ACC-0214,99acres,dropped,closed_lost,4-6 Cr,immediate,user_005,2025-08-07T00:00:00 +LED-0215,PER-0215,,website,dropped,site_visit_done,15-25 Cr,12_months,user_001,2025-05-14T00:00:00 +LED-0216,PER-0216,ACC-0216,99acres,inactive,closed_won,10-15 Cr,immediate,user_005,2025-01-14T00:00:00 +LED-0217,PER-0217,,referral,active,new,15-25 Cr,12_months,user_005,2024-08-17T00:00:00 +LED-0218,PER-0218,ACC-0218,magicbricks,active,closed_lost,2.5-4 Cr,3_months,user_005,2026-01-10T00:00:00 +LED-0219,PER-0219,ACC-0219,google_ads,active,nurturing,10-15 Cr,investment,user_004,2025-06-29T00:00:00 +LED-0220,PER-0220,,housing,converted,site_visit_scheduled,1.5-2.5 Cr,12_months,user_003,2024-09-15T00:00:00 +LED-0221,PER-0221,ACC-0221,walk_in,converted,new,1.5-2.5 Cr,3_months,user_005,2024-01-10T00:00:00 +LED-0222,PER-0222,ACC-0222,referral,active,contacted,2.5-4 Cr,6_months,user_002,2025-12-17T00:00:00 +LED-0223,PER-0223,ACC-0223,magicbricks,active,negotiation,10-15 Cr,3_months,user_001,2025-05-15T00:00:00 +LED-0224,PER-0224,,99acres,active,site_visit_done,10-15 Cr,12_months,user_002,2025-09-14T00:00:00 +LED-0225,PER-0225,,referral,inactive,closed_lost,2.5-4 Cr,investment,user_003,2024-11-16T00:00:00 +LED-0226,PER-0226,ACC-0226,google_ads,converted,closed_won,2.5-4 Cr,investment,user_004,2024-05-31T00:00:00 +LED-0227,PER-0227,,google_ads,dropped,new,6-10 Cr,3_months,user_005,2025-07-12T00:00:00 +LED-0228,PER-0228,ACC-0228,99acres,converted,site_visit_scheduled,1.5-2.5 Cr,investment,user_003,2025-02-10T00:00:00 +LED-0229,PER-0229,ACC-0229,referral,converted,site_visit_scheduled,1.5-2.5 Cr,immediate,user_001,2025-11-14T00:00:00 +LED-0230,PER-0230,,website,active,qualified,1.5-2.5 Cr,3_months,user_004,2025-05-02T00:00:00 +LED-0231,PER-0231,ACC-0231,google_ads,active,negotiation,10-15 Cr,12_months,user_003,2025-10-16T00:00:00 +LED-0232,PER-0232,,referral,dropped,qualified,4-6 Cr,3_months,user_004,2025-05-22T00:00:00 +LED-0233,PER-0233,,facebook,active,new,6-10 Cr,6_months,user_003,2025-08-30T00:00:00 +LED-0234,PER-0234,,referral,converted,closed_won,2.5-4 Cr,12_months,user_003,2025-06-02T00:00:00 +LED-0235,PER-0235,ACC-0235,website,active,contacted,1.5-2.5 Cr,investment,user_002,2024-05-20T00:00:00 +LED-0236,PER-0236,ACC-0236,magicbricks,dropped,qualified,6-10 Cr,6_months,user_002,2025-08-02T00:00:00 +LED-0237,PER-0237,ACC-0237,walk_in,active,site_visit_done,6-10 Cr,investment,user_004,2024-12-15T00:00:00 +LED-0238,PER-0238,ACC-0238,google_ads,inactive,site_visit_scheduled,15-25 Cr,6_months,user_005,2025-01-18T00:00:00 +LED-0239,PER-0239,ACC-0239,referral,dropped,qualified,15-25 Cr,12_months,user_002,2024-10-01T00:00:00 +LED-0240,PER-0240,,website,active,contacted,15-25 Cr,6_months,user_004,2024-10-13T00:00:00 +LED-0241,PER-0241,,google_ads,active,contacted,6-10 Cr,3_months,user_002,2025-12-21T00:00:00 +LED-0242,PER-0242,ACC-0242,housing,active,qualified,6-10 Cr,6_months,user_002,2025-04-08T00:00:00 +LED-0243,PER-0243,,99acres,active,closed_won,2.5-4 Cr,investment,user_003,2024-02-19T00:00:00 +LED-0244,PER-0244,ACC-0244,google_ads,active,qualified,2.5-4 Cr,3_months,user_001,2025-04-19T00:00:00 +LED-0245,PER-0245,ACC-0245,referral,active,closed_lost,6-10 Cr,6_months,user_004,2024-02-07T00:00:00 +LED-0246,PER-0246,,housing,active,closed_won,10-15 Cr,6_months,user_004,2025-03-20T00:00:00 +LED-0247,PER-0247,,google_ads,active,booking_pending,4-6 Cr,3_months,user_005,2024-08-07T00:00:00 +LED-0248,PER-0248,ACC-0248,housing,active,contacted,1.5-2.5 Cr,12_months,user_005,2025-06-22T00:00:00 +LED-0249,PER-0249,ACC-0249,referral,active,negotiation,1.5-2.5 Cr,6_months,user_004,2024-07-15T00:00:00 +LED-0250,PER-0250,,facebook,dropped,new,10-15 Cr,investment,user_003,2025-03-21T00:00:00 diff --git a/db assets/synthetic_crm_v1/csv/crm_opportunities.csv b/db assets/synthetic_crm_v1/csv/crm_opportunities.csv new file mode 100644 index 00000000..7d35a675 --- /dev/null +++ b/db assets/synthetic_crm_v1/csv/crm_opportunities.csv @@ -0,0 +1,401 @@ +opportunity_id,lead_id,project_id,unit_id,stage,value,probability,expected_close_date,next_action +OPP-1-1,LED-0001,PRJ-004,PRJ-004-U019,closed_lost,22.28,0.37,2026-08-15T00:00:00,document_collection +OPP-1-2,LED-0001,PRJ-011,PRJ-011-U010,closed_won,6.18,0.86,2026-08-27T00:00:00,price_negotiation +OPP-1-3,LED-0001,PRJ-012,PRJ-012-U001,verbal_commitment,20.23,0.89,2026-07-22T00:00:00,follow_up_call +OPP-2-1,LED-0002,PRJ-002,PRJ-002-U019,verbal_commitment,10.46,0.34,2026-10-04T00:00:00,document_collection +OPP-2-2,LED-0002,PRJ-004,PRJ-004-U020,discovery,18.88,0.38,2026-09-12T00:00:00,follow_up_call +OPP-3-1,LED-0003,PRJ-004,PRJ-004-U004,site_visit,22.05,0.51,2026-09-11T00:00:00,follow_up_call +OPP-3-2,LED-0003,PRJ-013,PRJ-013-U015,proposal,26.57,0.75,2026-06-07T00:00:00,document_collection +OPP-4-1,LED-0004,PRJ-014,PRJ-014-U006,site_visit,58.43,0.66,2026-08-15T00:00:00,schedule_site_visit +OPP-4-2,LED-0004,PRJ-004,PRJ-004-U020,prospecting,18.88,0.74,2026-08-02T00:00:00,family_meeting +OPP-4-3,LED-0004,PRJ-008,PRJ-008-U007,site_visit,24.0,0.33,2026-06-15T00:00:00,schedule_site_visit +OPP-5-1,LED-0005,PRJ-012,PRJ-012-U004,closed_won,10.9,0.23,2026-08-22T00:00:00,send_proposal +OPP-6-1,LED-0006,PRJ-012,PRJ-012-U007,proposal,2.7,0.51,2026-08-11T00:00:00,price_negotiation +OPP-6-2,LED-0006,PRJ-002,PRJ-002-U015,closed_lost,4.45,0.88,2026-07-09T00:00:00,family_meeting +OPP-7-1,LED-0007,PRJ-011,PRJ-011-U007,negotiation,32.9,0.75,2026-09-20T00:00:00,follow_up_call +OPP-7-2,LED-0007,PRJ-013,PRJ-013-U007,site_visit,38.85,0.22,2026-10-04T00:00:00,family_meeting +OPP-7-3,LED-0007,PRJ-014,PRJ-014-U001,prospecting,73.38,0.45,2026-07-16T00:00:00,schedule_site_visit +OPP-8-1,LED-0008,PRJ-011,PRJ-011-U007,discovery,32.9,0.86,2026-05-28T00:00:00,send_proposal +OPP-8-2,LED-0008,PRJ-002,PRJ-002-U014,negotiation,7.77,0.86,2026-10-09T00:00:00,follow_up_call +OPP-9-1,LED-0009,PRJ-013,PRJ-013-U007,prospecting,38.85,0.64,2026-09-10T00:00:00,family_meeting +OPP-9-2,LED-0009,PRJ-003,PRJ-003-U010,discovery,15.57,0.76,2026-08-01T00:00:00,send_proposal +OPP-10-1,LED-0010,PRJ-005,PRJ-005-U009,closed_won,2.39,0.76,2026-10-08T00:00:00,send_proposal +OPP-11-1,LED-0011,PRJ-008,PRJ-008-U018,negotiation,51.49,0.81,2026-06-04T00:00:00,family_meeting +OPP-12-1,LED-0012,PRJ-002,PRJ-002-U001,discovery,2.96,0.32,2026-09-25T00:00:00,follow_up_call +OPP-12-2,LED-0012,PRJ-008,PRJ-008-U018,site_visit,51.49,0.39,2026-05-24T00:00:00,family_meeting +OPP-13-1,LED-0013,PRJ-004,PRJ-004-U008,discovery,31.98,0.59,2026-10-02T00:00:00,send_proposal +OPP-14-1,LED-0014,PRJ-008,PRJ-008-U014,site_visit,5.24,0.57,2026-09-20T00:00:00,price_negotiation +OPP-15-1,LED-0015,PRJ-003,PRJ-003-U003,proposal,20.76,0.79,2026-06-02T00:00:00,document_collection +OPP-15-2,LED-0015,PRJ-012,PRJ-012-U004,negotiation,10.9,0.59,2026-09-26T00:00:00,follow_up_call +OPP-16-1,LED-0016,PRJ-003,PRJ-003-U011,verbal_commitment,3.86,0.86,2026-05-30T00:00:00,schedule_site_visit +OPP-16-2,LED-0016,PRJ-014,PRJ-014-U002,closed_lost,24.47,0.49,2026-09-04T00:00:00,send_proposal +OPP-17-1,LED-0017,PRJ-010,PRJ-010-U004,site_visit,4.99,0.47,2026-07-11T00:00:00,follow_up_call +OPP-17-2,LED-0017,PRJ-002,PRJ-002-U019,discovery,10.46,0.22,2026-06-18T00:00:00,document_collection +OPP-18-1,LED-0018,PRJ-001,PRJ-001-U010,verbal_commitment,38.51,0.21,2026-10-10T00:00:00,family_meeting +OPP-18-2,LED-0018,PRJ-001,PRJ-001-U002,prospecting,32.98,0.32,2026-05-28T00:00:00,schedule_site_visit +OPP-19-1,LED-0019,PRJ-003,PRJ-003-U011,verbal_commitment,3.86,0.54,2026-07-23T00:00:00,send_proposal +OPP-20-1,LED-0020,PRJ-003,PRJ-003-U003,prospecting,20.76,0.57,2026-09-02T00:00:00,send_proposal +OPP-20-2,LED-0020,PRJ-006,PRJ-006-U003,discovery,14.7,0.59,2026-06-17T00:00:00,document_collection +OPP-21-1,LED-0021,PRJ-002,PRJ-002-U013,discovery,2.34,0.53,2026-08-26T00:00:00,schedule_site_visit +OPP-21-2,LED-0021,PRJ-005,PRJ-005-U008,verbal_commitment,3.88,0.89,2026-08-26T00:00:00,follow_up_call +OPP-21-3,LED-0021,PRJ-004,PRJ-004-U001,proposal,6.2,0.22,2026-10-14T00:00:00,schedule_site_visit +OPP-22-1,LED-0022,PRJ-005,PRJ-005-U005,prospecting,19.27,0.95,2026-07-07T00:00:00,follow_up_call +OPP-22-2,LED-0022,PRJ-002,PRJ-002-U001,closed_lost,2.96,0.14,2026-10-11T00:00:00,family_meeting +OPP-23-1,LED-0023,PRJ-006,PRJ-006-U001,verbal_commitment,5.95,0.91,2026-10-09T00:00:00,send_proposal +OPP-23-2,LED-0023,PRJ-008,PRJ-008-U001,discovery,3.81,0.15,2026-07-13T00:00:00,schedule_site_visit +OPP-23-3,LED-0023,PRJ-004,PRJ-004-U020,site_visit,18.88,0.39,2026-07-02T00:00:00,price_negotiation +OPP-24-1,LED-0024,PRJ-006,PRJ-006-U002,discovery,24.02,0.8,2026-08-11T00:00:00,family_meeting +OPP-25-1,LED-0025,PRJ-003,PRJ-003-U001,discovery,69.0,0.38,2026-07-05T00:00:00,family_meeting +OPP-25-2,LED-0025,PRJ-002,PRJ-002-U001,closed_won,2.96,0.59,2026-09-20T00:00:00,send_proposal +OPP-26-1,LED-0026,PRJ-013,PRJ-013-U015,discovery,26.57,0.17,2026-08-14T00:00:00,document_collection +OPP-27-1,LED-0027,PRJ-009,PRJ-009-U012,verbal_commitment,52.97,0.83,2026-09-28T00:00:00,family_meeting +OPP-27-2,LED-0027,PRJ-003,PRJ-003-U003,discovery,20.76,0.89,2026-10-09T00:00:00,schedule_site_visit +OPP-28-1,LED-0028,PRJ-008,PRJ-008-U018,verbal_commitment,51.49,0.8,2026-09-26T00:00:00,send_proposal +OPP-28-2,LED-0028,PRJ-013,PRJ-013-U013,prospecting,11.61,0.25,2026-07-08T00:00:00,schedule_site_visit +OPP-28-3,LED-0028,PRJ-006,PRJ-006-U002,negotiation,24.02,0.41,2026-09-13T00:00:00,document_collection +OPP-29-1,LED-0029,PRJ-004,PRJ-004-U010,negotiation,2.02,0.68,2026-08-27T00:00:00,document_collection +OPP-30-1,LED-0030,PRJ-002,PRJ-002-U011,site_visit,3.87,0.73,2026-10-08T00:00:00,send_proposal +OPP-31-1,LED-0031,PRJ-006,PRJ-006-U005,closed_lost,37.11,0.22,2026-07-03T00:00:00,schedule_site_visit +OPP-32-1,LED-0032,PRJ-013,PRJ-013-U005,site_visit,10.37,0.91,2026-08-29T00:00:00,schedule_site_visit +OPP-33-1,LED-0033,PRJ-010,PRJ-010-U009,negotiation,9.32,0.81,2026-07-08T00:00:00,price_negotiation +OPP-34-1,LED-0034,PRJ-012,PRJ-012-U001,verbal_commitment,20.23,0.79,2026-07-03T00:00:00,schedule_site_visit +OPP-35-1,LED-0035,PRJ-009,PRJ-009-U009,closed_won,5.32,0.44,2026-07-17T00:00:00,schedule_site_visit +OPP-36-1,LED-0036,PRJ-004,PRJ-004-U001,verbal_commitment,6.2,0.4,2026-07-31T00:00:00,document_collection +OPP-36-2,LED-0036,PRJ-008,PRJ-008-U003,closed_won,8.37,0.19,2026-07-07T00:00:00,send_proposal +OPP-36-3,LED-0036,PRJ-014,PRJ-014-U002,verbal_commitment,24.47,0.19,2026-09-01T00:00:00,schedule_site_visit +OPP-37-1,LED-0037,PRJ-003,PRJ-003-U008,discovery,5.39,0.75,2026-10-08T00:00:00,family_meeting +OPP-37-2,LED-0037,PRJ-009,PRJ-009-U004,prospecting,3.15,0.42,2026-05-31T00:00:00,follow_up_call +OPP-37-3,LED-0037,PRJ-005,PRJ-005-U008,site_visit,3.88,0.81,2026-08-01T00:00:00,send_proposal +OPP-38-1,LED-0038,PRJ-012,PRJ-012-U001,prospecting,20.23,0.23,2026-08-08T00:00:00,document_collection +OPP-38-2,LED-0038,PRJ-009,PRJ-009-U011,discovery,2.2,0.77,2026-08-07T00:00:00,document_collection +OPP-39-1,LED-0039,PRJ-001,PRJ-001-U010,closed_won,38.51,0.88,2026-06-16T00:00:00,family_meeting +OPP-40-1,LED-0040,PRJ-014,PRJ-014-U001,verbal_commitment,73.38,0.89,2026-06-14T00:00:00,price_negotiation +OPP-40-2,LED-0040,PRJ-007,PRJ-007-U012,prospecting,13.22,0.5,2026-10-01T00:00:00,send_proposal +OPP-40-3,LED-0040,PRJ-003,PRJ-003-U005,verbal_commitment,23.58,0.91,2026-05-20T00:00:00,document_collection +OPP-41-1,LED-0041,PRJ-003,PRJ-003-U008,verbal_commitment,5.39,0.91,2026-06-30T00:00:00,schedule_site_visit +OPP-41-2,LED-0041,PRJ-012,PRJ-012-U007,closed_won,2.7,0.34,2026-08-18T00:00:00,send_proposal +OPP-42-1,LED-0042,PRJ-003,PRJ-003-U003,closed_lost,20.76,0.24,2026-10-09T00:00:00,document_collection +OPP-42-2,LED-0042,PRJ-004,PRJ-004-U020,closed_lost,18.88,0.3,2026-07-24T00:00:00,price_negotiation +OPP-42-3,LED-0042,PRJ-013,PRJ-013-U007,closed_won,38.85,0.5,2026-09-11T00:00:00,schedule_site_visit +OPP-43-1,LED-0043,PRJ-009,PRJ-009-U003,site_visit,6.82,0.15,2026-07-23T00:00:00,send_proposal +OPP-43-2,LED-0043,PRJ-004,PRJ-004-U010,closed_lost,2.02,0.84,2026-06-30T00:00:00,send_proposal +OPP-43-3,LED-0043,PRJ-011,PRJ-011-U010,negotiation,6.18,0.24,2026-08-13T00:00:00,family_meeting +OPP-44-1,LED-0044,PRJ-012,PRJ-012-U007,prospecting,2.7,0.59,2026-06-17T00:00:00,document_collection +OPP-45-1,LED-0045,PRJ-008,PRJ-008-U018,site_visit,51.49,0.19,2026-09-25T00:00:00,family_meeting +OPP-46-1,LED-0046,PRJ-004,PRJ-004-U017,prospecting,5.05,0.73,2026-06-04T00:00:00,schedule_site_visit +OPP-46-2,LED-0046,PRJ-004,PRJ-004-U017,proposal,5.05,0.49,2026-08-29T00:00:00,document_collection +OPP-47-1,LED-0047,PRJ-004,PRJ-004-U008,discovery,31.98,0.44,2026-08-13T00:00:00,schedule_site_visit +OPP-48-1,LED-0048,PRJ-008,PRJ-008-U003,negotiation,8.37,0.44,2026-10-12T00:00:00,send_proposal +OPP-49-1,LED-0049,PRJ-010,PRJ-010-U009,proposal,9.32,0.79,2026-07-26T00:00:00,send_proposal +OPP-50-1,LED-0050,PRJ-007,PRJ-007-U001,verbal_commitment,6.59,0.84,2026-07-07T00:00:00,document_collection +OPP-51-1,LED-0051,PRJ-009,PRJ-009-U004,discovery,3.15,0.32,2026-06-26T00:00:00,schedule_site_visit +OPP-51-2,LED-0051,PRJ-012,PRJ-012-U004,closed_lost,10.9,0.63,2026-06-20T00:00:00,document_collection +OPP-52-1,LED-0052,PRJ-007,PRJ-007-U012,proposal,13.22,0.24,2026-08-25T00:00:00,family_meeting +OPP-52-2,LED-0052,PRJ-011,PRJ-011-U004,negotiation,50.68,0.34,2026-10-01T00:00:00,price_negotiation +OPP-53-1,LED-0053,PRJ-008,PRJ-008-U003,proposal,8.37,0.86,2026-07-21T00:00:00,family_meeting +OPP-53-2,LED-0053,PRJ-013,PRJ-013-U012,proposal,4.05,0.73,2026-05-26T00:00:00,send_proposal +OPP-54-1,LED-0054,PRJ-008,PRJ-008-U014,closed_lost,5.24,0.58,2026-10-03T00:00:00,follow_up_call +OPP-55-1,LED-0055,PRJ-009,PRJ-009-U004,prospecting,3.15,0.81,2026-06-20T00:00:00,send_proposal +OPP-56-1,LED-0056,PRJ-009,PRJ-009-U003,discovery,6.82,0.81,2026-06-06T00:00:00,send_proposal +OPP-57-1,LED-0057,PRJ-007,PRJ-007-U014,negotiation,6.92,0.41,2026-09-10T00:00:00,family_meeting +OPP-58-1,LED-0058,PRJ-009,PRJ-009-U008,verbal_commitment,14.61,0.53,2026-07-13T00:00:00,send_proposal +OPP-59-1,LED-0059,PRJ-004,PRJ-004-U019,verbal_commitment,22.28,0.23,2026-06-08T00:00:00,schedule_site_visit +OPP-60-1,LED-0060,PRJ-012,PRJ-012-U001,verbal_commitment,20.23,0.51,2026-10-01T00:00:00,schedule_site_visit +OPP-60-2,LED-0060,PRJ-012,PRJ-012-U001,prospecting,20.23,0.31,2026-09-30T00:00:00,price_negotiation +OPP-61-1,LED-0061,PRJ-013,PRJ-013-U005,site_visit,10.37,0.36,2026-09-29T00:00:00,send_proposal +OPP-61-2,LED-0061,PRJ-002,PRJ-002-U012,discovery,13.96,0.26,2026-06-24T00:00:00,follow_up_call +OPP-61-3,LED-0061,PRJ-005,PRJ-005-U009,negotiation,2.39,0.23,2026-07-05T00:00:00,schedule_site_visit +OPP-62-1,LED-0062,PRJ-009,PRJ-009-U003,discovery,6.82,0.48,2026-05-28T00:00:00,send_proposal +OPP-62-2,LED-0062,PRJ-013,PRJ-013-U015,prospecting,26.57,0.26,2026-09-07T00:00:00,family_meeting +OPP-63-1,LED-0063,PRJ-010,PRJ-010-U009,closed_won,9.32,0.57,2026-05-29T00:00:00,send_proposal +OPP-63-2,LED-0063,PRJ-003,PRJ-003-U001,closed_won,69.0,0.36,2026-09-09T00:00:00,price_negotiation +OPP-64-1,LED-0064,PRJ-012,PRJ-012-U007,verbal_commitment,2.7,0.89,2026-06-10T00:00:00,price_negotiation +OPP-64-2,LED-0064,PRJ-013,PRJ-013-U008,discovery,35.4,0.35,2026-06-21T00:00:00,schedule_site_visit +OPP-65-1,LED-0065,PRJ-012,PRJ-012-U004,proposal,10.9,0.1,2026-05-24T00:00:00,family_meeting +OPP-66-1,LED-0066,PRJ-003,PRJ-003-U005,prospecting,23.58,0.39,2026-08-22T00:00:00,follow_up_call +OPP-67-1,LED-0067,PRJ-009,PRJ-009-U010,prospecting,14.67,0.59,2026-08-05T00:00:00,follow_up_call +OPP-68-1,LED-0068,PRJ-002,PRJ-002-U017,closed_lost,1.95,0.18,2026-08-05T00:00:00,follow_up_call +OPP-69-1,LED-0069,PRJ-004,PRJ-004-U004,discovery,22.05,0.73,2026-10-11T00:00:00,family_meeting +OPP-69-2,LED-0069,PRJ-002,PRJ-002-U017,closed_lost,1.95,0.25,2026-08-29T00:00:00,schedule_site_visit +OPP-69-3,LED-0069,PRJ-011,PRJ-011-U014,prospecting,10.7,0.18,2026-06-22T00:00:00,document_collection +OPP-70-1,LED-0070,PRJ-009,PRJ-009-U011,discovery,2.2,0.83,2026-05-25T00:00:00,send_proposal +OPP-70-2,LED-0070,PRJ-007,PRJ-007-U012,closed_won,13.22,0.47,2026-07-11T00:00:00,follow_up_call +OPP-70-3,LED-0070,PRJ-009,PRJ-009-U012,verbal_commitment,52.97,0.81,2026-06-26T00:00:00,price_negotiation +OPP-71-1,LED-0071,PRJ-009,PRJ-009-U010,closed_lost,14.67,0.54,2026-09-28T00:00:00,document_collection +OPP-71-2,LED-0071,PRJ-012,PRJ-012-U007,discovery,2.7,0.68,2026-10-03T00:00:00,document_collection +OPP-71-3,LED-0071,PRJ-013,PRJ-013-U001,closed_lost,47.88,0.49,2026-09-15T00:00:00,document_collection +OPP-72-1,LED-0072,PRJ-013,PRJ-013-U013,prospecting,11.61,0.39,2026-06-08T00:00:00,send_proposal +OPP-73-1,LED-0073,PRJ-013,PRJ-013-U015,proposal,26.57,0.72,2026-10-15T00:00:00,send_proposal +OPP-73-2,LED-0073,PRJ-001,PRJ-001-U001,discovery,19.84,0.11,2026-06-12T00:00:00,document_collection +OPP-74-1,LED-0074,PRJ-011,PRJ-011-U009,negotiation,3.92,0.75,2026-08-08T00:00:00,price_negotiation +OPP-75-1,LED-0075,PRJ-009,PRJ-009-U009,prospecting,5.32,0.43,2026-09-18T00:00:00,schedule_site_visit +OPP-76-1,LED-0076,PRJ-006,PRJ-006-U001,verbal_commitment,5.95,0.77,2026-05-28T00:00:00,family_meeting +OPP-77-1,LED-0077,PRJ-005,PRJ-005-U006,closed_won,10.06,0.24,2026-08-20T00:00:00,document_collection +OPP-78-1,LED-0078,PRJ-004,PRJ-004-U001,discovery,6.2,0.63,2026-10-03T00:00:00,document_collection +OPP-79-1,LED-0079,PRJ-003,PRJ-003-U004,closed_lost,17.22,0.25,2026-08-21T00:00:00,send_proposal +OPP-79-2,LED-0079,PRJ-004,PRJ-004-U008,site_visit,31.98,0.13,2026-10-10T00:00:00,schedule_site_visit +OPP-80-1,LED-0080,PRJ-004,PRJ-004-U001,prospecting,6.2,0.69,2026-08-30T00:00:00,send_proposal +OPP-80-2,LED-0080,PRJ-011,PRJ-011-U003,prospecting,23.35,0.51,2026-08-04T00:00:00,send_proposal +OPP-81-1,LED-0081,PRJ-010,PRJ-010-U004,verbal_commitment,4.99,0.41,2026-10-08T00:00:00,follow_up_call +OPP-81-2,LED-0081,PRJ-004,PRJ-004-U017,discovery,5.05,0.65,2026-10-13T00:00:00,follow_up_call +OPP-82-1,LED-0082,PRJ-009,PRJ-009-U003,negotiation,6.82,0.45,2026-10-03T00:00:00,send_proposal +OPP-83-1,LED-0083,PRJ-004,PRJ-004-U017,prospecting,5.05,0.67,2026-08-14T00:00:00,send_proposal +OPP-84-1,LED-0084,PRJ-001,PRJ-001-U010,closed_won,38.51,0.23,2026-09-04T00:00:00,price_negotiation +OPP-84-2,LED-0084,PRJ-006,PRJ-006-U003,negotiation,14.7,0.93,2026-10-08T00:00:00,schedule_site_visit +OPP-85-1,LED-0085,PRJ-005,PRJ-005-U009,discovery,2.39,0.66,2026-07-30T00:00:00,family_meeting +OPP-86-1,LED-0086,PRJ-009,PRJ-009-U009,site_visit,5.32,0.75,2026-06-29T00:00:00,document_collection +OPP-87-1,LED-0087,PRJ-014,PRJ-014-U001,proposal,73.38,0.21,2026-06-23T00:00:00,follow_up_call +OPP-87-2,LED-0087,PRJ-003,PRJ-003-U002,closed_won,27.76,0.69,2026-06-15T00:00:00,schedule_site_visit +OPP-87-3,LED-0087,PRJ-004,PRJ-004-U001,prospecting,6.2,0.77,2026-09-26T00:00:00,document_collection +OPP-88-1,LED-0088,PRJ-003,PRJ-003-U011,verbal_commitment,3.86,0.7,2026-10-07T00:00:00,follow_up_call +OPP-88-2,LED-0088,PRJ-002,PRJ-002-U010,negotiation,3.75,0.49,2026-08-05T00:00:00,follow_up_call +OPP-89-1,LED-0089,PRJ-010,PRJ-010-U010,closed_won,10.62,0.4,2026-08-29T00:00:00,family_meeting +OPP-89-2,LED-0089,PRJ-002,PRJ-002-U005,closed_lost,14.03,0.52,2026-06-21T00:00:00,schedule_site_visit +OPP-90-1,LED-0090,PRJ-012,PRJ-012-U001,closed_lost,20.23,0.47,2026-08-05T00:00:00,follow_up_call +OPP-91-1,LED-0091,PRJ-005,PRJ-005-U005,closed_lost,19.27,0.6,2026-08-07T00:00:00,family_meeting +OPP-91-2,LED-0091,PRJ-002,PRJ-002-U015,proposal,4.45,0.39,2026-09-23T00:00:00,follow_up_call +OPP-92-1,LED-0092,PRJ-014,PRJ-014-U005,negotiation,4.25,0.9,2026-10-01T00:00:00,document_collection +OPP-92-2,LED-0092,PRJ-008,PRJ-008-U003,proposal,8.37,0.23,2026-08-02T00:00:00,family_meeting +OPP-92-3,LED-0092,PRJ-004,PRJ-004-U020,closed_won,18.88,0.33,2026-07-30T00:00:00,follow_up_call +OPP-93-1,LED-0093,PRJ-004,PRJ-004-U008,closed_lost,31.98,0.45,2026-10-15T00:00:00,schedule_site_visit +OPP-94-1,LED-0094,PRJ-012,PRJ-012-U004,discovery,10.9,0.4,2026-10-05T00:00:00,follow_up_call +OPP-95-1,LED-0095,PRJ-006,PRJ-006-U002,discovery,24.02,0.11,2026-09-29T00:00:00,family_meeting +OPP-96-1,LED-0096,PRJ-009,PRJ-009-U012,negotiation,52.97,0.93,2026-08-20T00:00:00,send_proposal +OPP-97-1,LED-0097,PRJ-002,PRJ-002-U008,discovery,71.33,0.27,2026-07-29T00:00:00,send_proposal +OPP-98-1,LED-0098,PRJ-005,PRJ-005-U006,proposal,10.06,0.92,2026-08-28T00:00:00,schedule_site_visit +OPP-98-2,LED-0098,PRJ-013,PRJ-013-U008,negotiation,35.4,0.65,2026-06-26T00:00:00,schedule_site_visit +OPP-99-1,LED-0099,PRJ-012,PRJ-012-U007,closed_lost,2.7,0.25,2026-07-03T00:00:00,family_meeting +OPP-100-1,LED-0100,PRJ-004,PRJ-004-U001,negotiation,6.2,0.75,2026-06-24T00:00:00,family_meeting +OPP-100-2,LED-0100,PRJ-003,PRJ-003-U011,closed_lost,3.86,0.5,2026-09-10T00:00:00,document_collection +OPP-101-1,LED-0101,PRJ-004,PRJ-004-U017,proposal,5.05,0.6,2026-08-12T00:00:00,document_collection +OPP-101-2,LED-0101,PRJ-012,PRJ-012-U004,closed_won,10.9,0.81,2026-08-18T00:00:00,family_meeting +OPP-102-1,LED-0102,PRJ-011,PRJ-011-U003,proposal,23.35,0.87,2026-06-27T00:00:00,follow_up_call +OPP-103-1,LED-0103,PRJ-014,PRJ-014-U003,site_visit,25.55,0.7,2026-09-09T00:00:00,follow_up_call +OPP-104-1,LED-0104,PRJ-006,PRJ-006-U003,negotiation,14.7,0.67,2026-10-11T00:00:00,follow_up_call +OPP-105-1,LED-0105,PRJ-005,PRJ-005-U005,site_visit,19.27,0.2,2026-08-04T00:00:00,price_negotiation +OPP-105-2,LED-0105,PRJ-013,PRJ-013-U004,site_visit,20.12,0.77,2026-09-02T00:00:00,schedule_site_visit +OPP-106-1,LED-0106,PRJ-002,PRJ-002-U014,discovery,7.77,0.26,2026-10-03T00:00:00,document_collection +OPP-106-2,LED-0106,PRJ-001,PRJ-001-U002,site_visit,32.98,0.92,2026-07-27T00:00:00,send_proposal +OPP-106-3,LED-0106,PRJ-010,PRJ-010-U010,closed_won,10.62,0.6,2026-09-20T00:00:00,schedule_site_visit +OPP-107-1,LED-0107,PRJ-010,PRJ-010-U013,discovery,19.77,0.31,2026-10-07T00:00:00,follow_up_call +OPP-107-2,LED-0107,PRJ-002,PRJ-002-U017,proposal,1.95,0.77,2026-06-23T00:00:00,price_negotiation +OPP-108-1,LED-0108,PRJ-012,PRJ-012-U007,closed_lost,2.7,0.75,2026-10-02T00:00:00,schedule_site_visit +OPP-108-2,LED-0108,PRJ-002,PRJ-002-U008,closed_won,71.33,0.8,2026-08-17T00:00:00,family_meeting +OPP-109-1,LED-0109,PRJ-001,PRJ-001-U016,negotiation,15.69,0.68,2026-09-11T00:00:00,schedule_site_visit +OPP-109-2,LED-0109,PRJ-014,PRJ-014-U005,negotiation,4.25,0.2,2026-09-27T00:00:00,family_meeting +OPP-109-3,LED-0109,PRJ-004,PRJ-004-U001,negotiation,6.2,0.88,2026-10-01T00:00:00,family_meeting +OPP-110-1,LED-0110,PRJ-001,PRJ-001-U001,closed_won,19.84,0.37,2026-06-03T00:00:00,send_proposal +OPP-111-1,LED-0111,PRJ-011,PRJ-011-U003,closed_lost,23.35,0.54,2026-10-15T00:00:00,send_proposal +OPP-111-2,LED-0111,PRJ-012,PRJ-012-U001,proposal,20.23,0.87,2026-06-19T00:00:00,follow_up_call +OPP-111-3,LED-0111,PRJ-012,PRJ-012-U007,closed_lost,2.7,0.26,2026-06-22T00:00:00,schedule_site_visit +OPP-112-1,LED-0112,PRJ-012,PRJ-012-U007,closed_lost,2.7,0.61,2026-08-10T00:00:00,document_collection +OPP-112-2,LED-0112,PRJ-003,PRJ-003-U002,closed_lost,27.76,0.84,2026-05-28T00:00:00,family_meeting +OPP-113-1,LED-0113,PRJ-007,PRJ-007-U017,discovery,7.14,0.2,2026-06-20T00:00:00,send_proposal +OPP-113-2,LED-0113,PRJ-010,PRJ-010-U011,proposal,12.73,0.88,2026-10-15T00:00:00,send_proposal +OPP-114-1,LED-0114,PRJ-004,PRJ-004-U004,proposal,22.05,0.48,2026-07-17T00:00:00,family_meeting +OPP-115-1,LED-0115,PRJ-009,PRJ-009-U008,closed_won,14.61,0.29,2026-07-10T00:00:00,family_meeting +OPP-115-2,LED-0115,PRJ-013,PRJ-013-U002,verbal_commitment,43.71,0.82,2026-09-04T00:00:00,follow_up_call +OPP-115-3,LED-0115,PRJ-014,PRJ-014-U006,prospecting,58.43,0.42,2026-10-12T00:00:00,send_proposal +OPP-116-1,LED-0116,PRJ-003,PRJ-003-U004,discovery,17.22,0.87,2026-08-24T00:00:00,price_negotiation +OPP-117-1,LED-0117,PRJ-003,PRJ-003-U010,closed_lost,15.57,0.43,2026-07-03T00:00:00,follow_up_call +OPP-118-1,LED-0118,PRJ-008,PRJ-008-U009,closed_lost,13.33,0.16,2026-10-05T00:00:00,follow_up_call +OPP-118-2,LED-0118,PRJ-014,PRJ-014-U003,site_visit,25.55,0.25,2026-05-22T00:00:00,document_collection +OPP-118-3,LED-0118,PRJ-009,PRJ-009-U012,site_visit,52.97,0.17,2026-05-20T00:00:00,follow_up_call +OPP-119-1,LED-0119,PRJ-004,PRJ-004-U004,discovery,22.05,0.4,2026-07-01T00:00:00,schedule_site_visit +OPP-120-1,LED-0120,PRJ-004,PRJ-004-U019,closed_won,22.28,0.74,2026-06-07T00:00:00,schedule_site_visit +OPP-121-1,LED-0121,PRJ-002,PRJ-002-U017,closed_lost,1.95,0.16,2026-07-06T00:00:00,schedule_site_visit +OPP-122-1,LED-0122,PRJ-001,PRJ-001-U001,verbal_commitment,19.84,0.52,2026-09-01T00:00:00,family_meeting +OPP-123-1,LED-0123,PRJ-011,PRJ-011-U004,prospecting,50.68,0.2,2026-06-10T00:00:00,follow_up_call +OPP-123-2,LED-0123,PRJ-004,PRJ-004-U010,site_visit,2.02,0.81,2026-07-21T00:00:00,follow_up_call +OPP-124-1,LED-0124,PRJ-003,PRJ-003-U003,proposal,20.76,0.51,2026-09-23T00:00:00,schedule_site_visit +OPP-125-1,LED-0125,PRJ-007,PRJ-007-U014,prospecting,6.92,0.93,2026-08-10T00:00:00,schedule_site_visit +OPP-125-2,LED-0125,PRJ-014,PRJ-014-U002,prospecting,24.47,0.61,2026-09-30T00:00:00,price_negotiation +OPP-126-1,LED-0126,PRJ-004,PRJ-004-U004,discovery,22.05,0.19,2026-05-25T00:00:00,send_proposal +OPP-127-1,LED-0127,PRJ-014,PRJ-014-U005,closed_won,4.25,0.37,2026-08-19T00:00:00,follow_up_call +OPP-128-1,LED-0128,PRJ-014,PRJ-014-U002,closed_lost,24.47,0.35,2026-08-22T00:00:00,schedule_site_visit +OPP-128-2,LED-0128,PRJ-013,PRJ-013-U005,prospecting,10.37,0.88,2026-07-02T00:00:00,family_meeting +OPP-128-3,LED-0128,PRJ-009,PRJ-009-U012,verbal_commitment,52.97,0.46,2026-09-16T00:00:00,price_negotiation +OPP-129-1,LED-0129,PRJ-001,PRJ-001-U002,verbal_commitment,32.98,0.6,2026-06-25T00:00:00,follow_up_call +OPP-130-1,LED-0130,PRJ-014,PRJ-014-U001,closed_won,73.38,0.57,2026-10-02T00:00:00,document_collection +OPP-130-2,LED-0130,PRJ-011,PRJ-011-U003,site_visit,23.35,0.83,2026-07-03T00:00:00,schedule_site_visit +OPP-131-1,LED-0131,PRJ-003,PRJ-003-U004,verbal_commitment,17.22,0.34,2026-09-03T00:00:00,schedule_site_visit +OPP-132-1,LED-0132,PRJ-005,PRJ-005-U011,discovery,2.23,0.86,2026-06-30T00:00:00,price_negotiation +OPP-132-2,LED-0132,PRJ-011,PRJ-011-U010,closed_won,6.18,0.51,2026-06-19T00:00:00,price_negotiation +OPP-133-1,LED-0133,PRJ-008,PRJ-008-U009,discovery,13.33,0.44,2026-07-05T00:00:00,follow_up_call +OPP-134-1,LED-0134,PRJ-014,PRJ-014-U005,prospecting,4.25,0.4,2026-09-12T00:00:00,price_negotiation +OPP-134-2,LED-0134,PRJ-006,PRJ-006-U002,closed_won,24.02,0.4,2026-06-12T00:00:00,family_meeting +OPP-135-1,LED-0135,PRJ-001,PRJ-001-U008,prospecting,6.25,0.68,2026-08-13T00:00:00,family_meeting +OPP-135-2,LED-0135,PRJ-005,PRJ-005-U009,discovery,2.39,0.75,2026-07-20T00:00:00,document_collection +OPP-136-1,LED-0136,PRJ-012,PRJ-012-U004,proposal,10.9,0.37,2026-05-30T00:00:00,send_proposal +OPP-137-1,LED-0137,PRJ-010,PRJ-010-U010,negotiation,10.62,0.72,2026-07-08T00:00:00,document_collection +OPP-137-2,LED-0137,PRJ-007,PRJ-007-U014,negotiation,6.92,0.86,2026-10-08T00:00:00,price_negotiation +OPP-138-1,LED-0138,PRJ-014,PRJ-014-U002,negotiation,24.47,0.7,2026-10-06T00:00:00,schedule_site_visit +OPP-139-1,LED-0139,PRJ-008,PRJ-008-U001,closed_lost,3.81,0.25,2026-07-04T00:00:00,send_proposal +OPP-140-1,LED-0140,PRJ-005,PRJ-005-U008,closed_lost,3.88,0.23,2026-06-01T00:00:00,document_collection +OPP-141-1,LED-0141,PRJ-008,PRJ-008-U014,verbal_commitment,5.24,0.89,2026-06-06T00:00:00,schedule_site_visit +OPP-142-1,LED-0142,PRJ-004,PRJ-004-U008,prospecting,31.98,0.27,2026-05-22T00:00:00,price_negotiation +OPP-143-1,LED-0143,PRJ-012,PRJ-012-U004,closed_lost,10.9,0.45,2026-08-12T00:00:00,family_meeting +OPP-143-2,LED-0143,PRJ-001,PRJ-001-U001,site_visit,19.84,0.53,2026-05-20T00:00:00,family_meeting +OPP-144-1,LED-0144,PRJ-001,PRJ-001-U009,proposal,12.54,0.57,2026-05-26T00:00:00,send_proposal +OPP-144-2,LED-0144,PRJ-013,PRJ-013-U012,prospecting,4.05,0.14,2026-06-10T00:00:00,price_negotiation +OPP-145-1,LED-0145,PRJ-001,PRJ-001-U013,proposal,14.28,0.28,2026-06-06T00:00:00,send_proposal +OPP-145-2,LED-0145,PRJ-013,PRJ-013-U006,discovery,51.53,0.52,2026-09-11T00:00:00,price_negotiation +OPP-146-1,LED-0146,PRJ-014,PRJ-014-U006,verbal_commitment,58.43,0.42,2026-08-31T00:00:00,document_collection +OPP-146-2,LED-0146,PRJ-011,PRJ-011-U003,proposal,23.35,0.69,2026-10-08T00:00:00,schedule_site_visit +OPP-147-1,LED-0147,PRJ-008,PRJ-008-U001,site_visit,3.81,0.91,2026-06-24T00:00:00,follow_up_call +OPP-148-1,LED-0148,PRJ-012,PRJ-012-U007,site_visit,2.7,0.38,2026-08-07T00:00:00,schedule_site_visit +OPP-149-1,LED-0149,PRJ-006,PRJ-006-U005,verbal_commitment,37.11,0.2,2026-07-02T00:00:00,family_meeting +OPP-150-1,LED-0150,PRJ-005,PRJ-005-U008,negotiation,3.88,0.81,2026-09-01T00:00:00,follow_up_call +OPP-151-1,LED-0151,PRJ-011,PRJ-011-U010,site_visit,6.18,0.12,2026-10-04T00:00:00,schedule_site_visit +OPP-152-1,LED-0152,PRJ-008,PRJ-008-U014,discovery,5.24,0.28,2026-09-02T00:00:00,family_meeting +OPP-153-1,LED-0153,PRJ-014,PRJ-014-U003,closed_won,25.55,0.19,2026-10-15T00:00:00,price_negotiation +OPP-153-2,LED-0153,PRJ-008,PRJ-008-U009,negotiation,13.33,0.79,2026-06-14T00:00:00,document_collection +OPP-153-3,LED-0153,PRJ-006,PRJ-006-U003,discovery,14.7,0.48,2026-05-26T00:00:00,document_collection +OPP-154-1,LED-0154,PRJ-010,PRJ-010-U011,proposal,12.73,0.59,2026-07-29T00:00:00,schedule_site_visit +OPP-155-1,LED-0155,PRJ-002,PRJ-002-U001,negotiation,2.96,0.16,2026-08-10T00:00:00,follow_up_call +OPP-156-1,LED-0156,PRJ-007,PRJ-007-U012,proposal,13.22,0.76,2026-07-05T00:00:00,schedule_site_visit +OPP-157-1,LED-0157,PRJ-005,PRJ-005-U008,discovery,3.88,0.14,2026-08-23T00:00:00,follow_up_call +OPP-157-2,LED-0157,PRJ-007,PRJ-007-U003,negotiation,18.26,0.55,2026-09-21T00:00:00,document_collection +OPP-158-1,LED-0158,PRJ-003,PRJ-003-U008,discovery,5.39,0.24,2026-08-11T00:00:00,family_meeting +OPP-159-1,LED-0159,PRJ-005,PRJ-005-U008,closed_lost,3.88,0.2,2026-09-27T00:00:00,follow_up_call +OPP-160-1,LED-0160,PRJ-010,PRJ-010-U012,site_visit,19.52,0.36,2026-07-30T00:00:00,schedule_site_visit +OPP-161-1,LED-0161,PRJ-007,PRJ-007-U014,proposal,6.92,0.36,2026-06-08T00:00:00,price_negotiation +OPP-162-1,LED-0162,PRJ-009,PRJ-009-U008,closed_lost,14.61,0.22,2026-06-26T00:00:00,price_negotiation +OPP-163-1,LED-0163,PRJ-006,PRJ-006-U003,closed_won,14.7,0.43,2026-06-14T00:00:00,family_meeting +OPP-163-2,LED-0163,PRJ-005,PRJ-005-U009,discovery,2.39,0.58,2026-05-20T00:00:00,document_collection +OPP-164-1,LED-0164,PRJ-014,PRJ-014-U005,discovery,4.25,0.14,2026-06-27T00:00:00,send_proposal +OPP-164-2,LED-0164,PRJ-008,PRJ-008-U007,proposal,24.0,0.93,2026-07-17T00:00:00,schedule_site_visit +OPP-165-1,LED-0165,PRJ-011,PRJ-011-U014,closed_lost,10.7,0.26,2026-07-10T00:00:00,document_collection +OPP-166-1,LED-0166,PRJ-010,PRJ-010-U011,negotiation,12.73,0.66,2026-05-26T00:00:00,price_negotiation +OPP-167-1,LED-0167,PRJ-005,PRJ-005-U005,discovery,19.27,0.13,2026-09-24T00:00:00,send_proposal +OPP-168-1,LED-0168,PRJ-014,PRJ-014-U001,discovery,73.38,0.15,2026-09-07T00:00:00,send_proposal +OPP-169-1,LED-0169,PRJ-010,PRJ-010-U011,negotiation,12.73,0.17,2026-06-22T00:00:00,document_collection +OPP-169-2,LED-0169,PRJ-006,PRJ-006-U002,prospecting,24.02,0.93,2026-09-07T00:00:00,follow_up_call +OPP-169-3,LED-0169,PRJ-014,PRJ-014-U001,negotiation,73.38,0.34,2026-08-24T00:00:00,price_negotiation +OPP-170-1,LED-0170,PRJ-003,PRJ-003-U010,closed_lost,15.57,0.73,2026-07-17T00:00:00,send_proposal +OPP-171-1,LED-0171,PRJ-001,PRJ-001-U010,closed_lost,38.51,0.64,2026-10-07T00:00:00,send_proposal +OPP-171-2,LED-0171,PRJ-010,PRJ-010-U012,verbal_commitment,19.52,0.91,2026-09-07T00:00:00,send_proposal +OPP-172-1,LED-0172,PRJ-006,PRJ-006-U003,verbal_commitment,14.7,0.93,2026-08-21T00:00:00,family_meeting +OPP-173-1,LED-0173,PRJ-005,PRJ-005-U006,negotiation,10.06,0.87,2026-08-10T00:00:00,send_proposal +OPP-174-1,LED-0174,PRJ-014,PRJ-014-U005,prospecting,4.25,0.69,2026-06-05T00:00:00,send_proposal +OPP-175-1,LED-0175,PRJ-010,PRJ-010-U012,closed_won,19.52,0.34,2026-08-24T00:00:00,price_negotiation +OPP-175-2,LED-0175,PRJ-012,PRJ-012-U001,closed_won,20.23,0.54,2026-10-12T00:00:00,document_collection +OPP-176-1,LED-0176,PRJ-012,PRJ-012-U004,site_visit,10.9,0.81,2026-08-01T00:00:00,schedule_site_visit +OPP-176-2,LED-0176,PRJ-005,PRJ-005-U005,site_visit,19.27,0.94,2026-06-16T00:00:00,price_negotiation +OPP-177-1,LED-0177,PRJ-003,PRJ-003-U011,site_visit,3.86,0.72,2026-07-29T00:00:00,send_proposal +OPP-177-2,LED-0177,PRJ-007,PRJ-007-U001,closed_lost,6.59,0.57,2026-07-10T00:00:00,follow_up_call +OPP-178-1,LED-0178,PRJ-007,PRJ-007-U017,proposal,7.14,0.12,2026-07-25T00:00:00,document_collection +OPP-178-2,LED-0178,PRJ-013,PRJ-013-U007,negotiation,38.85,0.67,2026-08-31T00:00:00,family_meeting +OPP-179-1,LED-0179,PRJ-014,PRJ-014-U001,discovery,73.38,0.53,2026-09-19T00:00:00,schedule_site_visit +OPP-180-1,LED-0180,PRJ-012,PRJ-012-U001,closed_lost,20.23,0.29,2026-05-24T00:00:00,family_meeting +OPP-180-2,LED-0180,PRJ-010,PRJ-010-U004,negotiation,4.99,0.38,2026-06-08T00:00:00,schedule_site_visit +OPP-181-1,LED-0181,PRJ-012,PRJ-012-U001,site_visit,20.23,0.27,2026-06-16T00:00:00,schedule_site_visit +OPP-181-2,LED-0181,PRJ-013,PRJ-013-U013,closed_lost,11.61,0.22,2026-10-05T00:00:00,family_meeting +OPP-182-1,LED-0182,PRJ-004,PRJ-004-U019,discovery,22.28,0.56,2026-08-10T00:00:00,schedule_site_visit +OPP-183-1,LED-0183,PRJ-003,PRJ-003-U011,prospecting,3.86,0.37,2026-05-31T00:00:00,send_proposal +OPP-184-1,LED-0184,PRJ-010,PRJ-010-U010,prospecting,10.62,0.65,2026-09-17T00:00:00,family_meeting +OPP-185-1,LED-0185,PRJ-006,PRJ-006-U005,discovery,37.11,0.58,2026-09-13T00:00:00,schedule_site_visit +OPP-186-1,LED-0186,PRJ-011,PRJ-011-U004,closed_lost,50.68,0.22,2026-10-15T00:00:00,price_negotiation +OPP-186-2,LED-0186,PRJ-012,PRJ-012-U001,verbal_commitment,20.23,0.84,2026-05-20T00:00:00,send_proposal +OPP-186-3,LED-0186,PRJ-011,PRJ-011-U003,site_visit,23.35,0.88,2026-08-04T00:00:00,send_proposal +OPP-187-1,LED-0187,PRJ-011,PRJ-011-U004,proposal,50.68,0.85,2026-08-03T00:00:00,price_negotiation +OPP-188-1,LED-0188,PRJ-005,PRJ-005-U008,closed_won,3.88,0.67,2026-09-18T00:00:00,schedule_site_visit +OPP-189-1,LED-0189,PRJ-012,PRJ-012-U007,negotiation,2.7,0.27,2026-09-11T00:00:00,family_meeting +OPP-190-1,LED-0190,PRJ-012,PRJ-012-U007,discovery,2.7,0.42,2026-06-07T00:00:00,price_negotiation +OPP-190-2,LED-0190,PRJ-003,PRJ-003-U005,discovery,23.58,0.81,2026-09-05T00:00:00,schedule_site_visit +OPP-191-1,LED-0191,PRJ-008,PRJ-008-U003,site_visit,8.37,0.67,2026-07-22T00:00:00,family_meeting +OPP-191-2,LED-0191,PRJ-006,PRJ-006-U001,proposal,5.95,0.74,2026-09-30T00:00:00,price_negotiation +OPP-191-3,LED-0191,PRJ-011,PRJ-011-U009,prospecting,3.92,0.23,2026-10-14T00:00:00,send_proposal +OPP-192-1,LED-0192,PRJ-005,PRJ-005-U005,verbal_commitment,19.27,0.75,2026-07-01T00:00:00,follow_up_call +OPP-192-2,LED-0192,PRJ-007,PRJ-007-U003,prospecting,18.26,0.63,2026-06-22T00:00:00,document_collection +OPP-193-1,LED-0193,PRJ-001,PRJ-001-U013,closed_lost,14.28,0.83,2026-06-05T00:00:00,family_meeting +OPP-193-2,LED-0193,PRJ-008,PRJ-008-U018,prospecting,51.49,0.35,2026-08-27T00:00:00,follow_up_call +OPP-193-3,LED-0193,PRJ-009,PRJ-009-U014,closed_won,9.56,0.77,2026-06-13T00:00:00,send_proposal +OPP-194-1,LED-0194,PRJ-006,PRJ-006-U003,negotiation,14.7,0.9,2026-06-27T00:00:00,document_collection +OPP-194-2,LED-0194,PRJ-005,PRJ-005-U006,site_visit,10.06,0.22,2026-07-31T00:00:00,family_meeting +OPP-195-1,LED-0195,PRJ-004,PRJ-004-U008,prospecting,31.98,0.44,2026-06-12T00:00:00,price_negotiation +OPP-195-2,LED-0195,PRJ-008,PRJ-008-U012,proposal,1.62,0.31,2026-07-03T00:00:00,follow_up_call +OPP-195-3,LED-0195,PRJ-001,PRJ-001-U009,negotiation,12.54,0.18,2026-07-05T00:00:00,follow_up_call +OPP-196-1,LED-0196,PRJ-011,PRJ-011-U009,discovery,3.92,0.93,2026-07-03T00:00:00,family_meeting +OPP-197-1,LED-0197,PRJ-006,PRJ-006-U005,closed_won,37.11,0.76,2026-07-25T00:00:00,send_proposal +OPP-198-1,LED-0198,PRJ-002,PRJ-002-U002,proposal,6.93,0.24,2026-09-17T00:00:00,follow_up_call +OPP-199-1,LED-0199,PRJ-003,PRJ-003-U008,closed_lost,5.39,0.29,2026-08-18T00:00:00,price_negotiation +OPP-200-1,LED-0200,PRJ-009,PRJ-009-U012,prospecting,52.97,0.44,2026-08-01T00:00:00,schedule_site_visit +OPP-200-2,LED-0200,PRJ-006,PRJ-006-U005,site_visit,37.11,0.32,2026-07-14T00:00:00,document_collection +OPP-201-1,LED-0201,PRJ-004,PRJ-004-U004,closed_won,22.05,0.6,2026-06-18T00:00:00,schedule_site_visit +OPP-201-2,LED-0201,PRJ-002,PRJ-002-U011,verbal_commitment,3.87,0.74,2026-08-07T00:00:00,family_meeting +OPP-202-1,LED-0202,PRJ-003,PRJ-003-U003,site_visit,20.76,0.73,2026-07-03T00:00:00,price_negotiation +OPP-202-2,LED-0202,PRJ-004,PRJ-004-U008,closed_won,31.98,0.63,2026-07-24T00:00:00,document_collection +OPP-203-1,LED-0203,PRJ-012,PRJ-012-U004,negotiation,10.9,0.85,2026-06-13T00:00:00,send_proposal +OPP-204-1,LED-0204,PRJ-014,PRJ-014-U001,discovery,73.38,0.57,2026-08-01T00:00:00,send_proposal +OPP-204-2,LED-0204,PRJ-009,PRJ-009-U004,site_visit,3.15,0.44,2026-09-25T00:00:00,send_proposal +OPP-205-1,LED-0205,PRJ-004,PRJ-004-U020,verbal_commitment,18.88,0.16,2026-07-27T00:00:00,send_proposal +OPP-206-1,LED-0206,PRJ-014,PRJ-014-U005,negotiation,4.25,0.29,2026-06-13T00:00:00,schedule_site_visit +OPP-206-2,LED-0206,PRJ-007,PRJ-007-U012,prospecting,13.22,0.64,2026-07-28T00:00:00,follow_up_call +OPP-206-3,LED-0206,PRJ-011,PRJ-011-U007,verbal_commitment,32.9,0.17,2026-06-12T00:00:00,follow_up_call +OPP-207-1,LED-0207,PRJ-014,PRJ-014-U003,verbal_commitment,25.55,0.8,2026-08-14T00:00:00,price_negotiation +OPP-207-2,LED-0207,PRJ-006,PRJ-006-U005,negotiation,37.11,0.75,2026-06-28T00:00:00,send_proposal +OPP-208-1,LED-0208,PRJ-007,PRJ-007-U014,discovery,6.92,0.27,2026-06-10T00:00:00,follow_up_call +OPP-209-1,LED-0209,PRJ-014,PRJ-014-U006,closed_lost,58.43,0.81,2026-09-01T00:00:00,document_collection +OPP-210-1,LED-0210,PRJ-009,PRJ-009-U014,prospecting,9.56,0.86,2026-09-17T00:00:00,follow_up_call +OPP-211-1,LED-0211,PRJ-006,PRJ-006-U001,discovery,5.95,0.9,2026-10-11T00:00:00,follow_up_call +OPP-212-1,LED-0212,PRJ-010,PRJ-010-U010,site_visit,10.62,0.86,2026-07-02T00:00:00,document_collection +OPP-213-1,LED-0213,PRJ-005,PRJ-005-U008,site_visit,3.88,0.48,2026-07-07T00:00:00,price_negotiation +OPP-214-1,LED-0214,PRJ-010,PRJ-010-U013,prospecting,19.77,0.14,2026-08-23T00:00:00,send_proposal +OPP-215-1,LED-0215,PRJ-012,PRJ-012-U004,closed_won,10.9,0.34,2026-07-30T00:00:00,price_negotiation +OPP-216-1,LED-0216,PRJ-011,PRJ-011-U004,verbal_commitment,50.68,0.66,2026-09-07T00:00:00,schedule_site_visit +OPP-217-1,LED-0217,PRJ-010,PRJ-010-U011,closed_lost,12.73,0.87,2026-07-17T00:00:00,follow_up_call +OPP-217-2,LED-0217,PRJ-008,PRJ-008-U009,site_visit,13.33,0.49,2026-08-18T00:00:00,send_proposal +OPP-217-3,LED-0217,PRJ-005,PRJ-005-U006,verbal_commitment,10.06,0.73,2026-09-05T00:00:00,price_negotiation +OPP-218-1,LED-0218,PRJ-003,PRJ-003-U011,prospecting,3.86,0.69,2026-08-24T00:00:00,document_collection +OPP-218-2,LED-0218,PRJ-007,PRJ-007-U014,proposal,6.92,0.23,2026-08-07T00:00:00,family_meeting +OPP-219-1,LED-0219,PRJ-002,PRJ-002-U019,verbal_commitment,10.46,0.16,2026-06-21T00:00:00,document_collection +OPP-220-1,LED-0220,PRJ-008,PRJ-008-U014,discovery,5.24,0.38,2026-05-26T00:00:00,send_proposal +OPP-220-2,LED-0220,PRJ-004,PRJ-004-U010,closed_won,2.02,0.43,2026-07-26T00:00:00,follow_up_call +OPP-220-3,LED-0220,PRJ-014,PRJ-014-U005,closed_won,4.25,0.7,2026-06-20T00:00:00,price_negotiation +OPP-221-1,LED-0221,PRJ-013,PRJ-013-U015,discovery,26.57,0.62,2026-06-01T00:00:00,follow_up_call +OPP-222-1,LED-0222,PRJ-009,PRJ-009-U010,proposal,14.67,0.46,2026-08-14T00:00:00,follow_up_call +OPP-222-2,LED-0222,PRJ-013,PRJ-013-U004,discovery,20.12,0.15,2026-09-21T00:00:00,price_negotiation +OPP-223-1,LED-0223,PRJ-014,PRJ-014-U002,closed_won,24.47,0.41,2026-09-06T00:00:00,follow_up_call +OPP-223-2,LED-0223,PRJ-002,PRJ-002-U001,closed_won,2.96,0.5,2026-07-26T00:00:00,price_negotiation +OPP-224-1,LED-0224,PRJ-005,PRJ-005-U008,verbal_commitment,3.88,0.79,2026-06-19T00:00:00,price_negotiation +OPP-224-2,LED-0224,PRJ-006,PRJ-006-U005,proposal,37.11,0.28,2026-08-09T00:00:00,follow_up_call +OPP-225-1,LED-0225,PRJ-013,PRJ-013-U006,verbal_commitment,51.53,0.51,2026-08-06T00:00:00,document_collection +OPP-226-1,LED-0226,PRJ-009,PRJ-009-U003,closed_won,6.82,0.65,2026-08-27T00:00:00,send_proposal +OPP-226-2,LED-0226,PRJ-010,PRJ-010-U012,prospecting,19.52,0.85,2026-06-01T00:00:00,follow_up_call +OPP-227-1,LED-0227,PRJ-002,PRJ-002-U016,negotiation,12.55,0.29,2026-06-01T00:00:00,follow_up_call +OPP-228-1,LED-0228,PRJ-007,PRJ-007-U001,negotiation,6.59,0.48,2026-09-09T00:00:00,document_collection +OPP-229-1,LED-0229,PRJ-006,PRJ-006-U002,proposal,24.02,0.93,2026-08-21T00:00:00,schedule_site_visit +OPP-230-1,LED-0230,PRJ-012,PRJ-012-U001,proposal,20.23,0.16,2026-08-22T00:00:00,schedule_site_visit +OPP-230-2,LED-0230,PRJ-007,PRJ-007-U003,prospecting,18.26,0.59,2026-05-29T00:00:00,follow_up_call +OPP-230-3,LED-0230,PRJ-008,PRJ-008-U003,negotiation,8.37,0.12,2026-07-26T00:00:00,send_proposal +OPP-231-1,LED-0231,PRJ-014,PRJ-014-U002,prospecting,24.47,0.39,2026-06-24T00:00:00,document_collection +OPP-231-2,LED-0231,PRJ-014,PRJ-014-U005,discovery,4.25,0.8,2026-06-15T00:00:00,document_collection +OPP-232-1,LED-0232,PRJ-002,PRJ-002-U004,site_visit,2.02,0.8,2026-06-05T00:00:00,schedule_site_visit +OPP-233-1,LED-0233,PRJ-014,PRJ-014-U005,discovery,4.25,0.46,2026-10-15T00:00:00,document_collection +OPP-233-2,LED-0233,PRJ-001,PRJ-001-U015,discovery,9.67,0.5,2026-10-04T00:00:00,schedule_site_visit +OPP-234-1,LED-0234,PRJ-003,PRJ-003-U002,proposal,27.76,0.51,2026-07-20T00:00:00,schedule_site_visit +OPP-234-2,LED-0234,PRJ-005,PRJ-005-U006,proposal,10.06,0.39,2026-10-14T00:00:00,family_meeting +OPP-234-3,LED-0234,PRJ-003,PRJ-003-U003,site_visit,20.76,0.73,2026-10-09T00:00:00,schedule_site_visit +OPP-235-1,LED-0235,PRJ-005,PRJ-005-U009,discovery,2.39,0.93,2026-07-04T00:00:00,document_collection +OPP-235-2,LED-0235,PRJ-004,PRJ-004-U004,negotiation,22.05,0.21,2026-08-26T00:00:00,schedule_site_visit +OPP-236-1,LED-0236,PRJ-011,PRJ-011-U014,verbal_commitment,10.7,0.43,2026-07-14T00:00:00,follow_up_call +OPP-237-1,LED-0237,PRJ-009,PRJ-009-U004,negotiation,3.15,0.63,2026-07-26T00:00:00,price_negotiation +OPP-237-2,LED-0237,PRJ-010,PRJ-010-U009,verbal_commitment,9.32,0.93,2026-07-06T00:00:00,price_negotiation +OPP-238-1,LED-0238,PRJ-002,PRJ-002-U004,negotiation,2.02,0.89,2026-09-11T00:00:00,document_collection +OPP-239-1,LED-0239,PRJ-004,PRJ-004-U004,proposal,22.05,0.63,2026-10-11T00:00:00,price_negotiation +OPP-239-2,LED-0239,PRJ-009,PRJ-009-U011,proposal,2.2,0.25,2026-08-24T00:00:00,send_proposal +OPP-240-1,LED-0240,PRJ-014,PRJ-014-U001,closed_won,73.38,0.71,2026-09-08T00:00:00,send_proposal +OPP-241-1,LED-0241,PRJ-004,PRJ-004-U010,closed_lost,2.02,0.92,2026-10-09T00:00:00,send_proposal +OPP-242-1,LED-0242,PRJ-010,PRJ-010-U013,site_visit,19.77,0.35,2026-09-15T00:00:00,family_meeting +OPP-243-1,LED-0243,PRJ-009,PRJ-009-U017,closed_won,21.65,0.86,2026-09-14T00:00:00,follow_up_call +OPP-243-2,LED-0243,PRJ-007,PRJ-007-U003,closed_lost,18.26,0.21,2026-05-27T00:00:00,send_proposal +OPP-244-1,LED-0244,PRJ-005,PRJ-005-U008,closed_lost,3.88,0.13,2026-09-17T00:00:00,schedule_site_visit +OPP-244-2,LED-0244,PRJ-009,PRJ-009-U008,prospecting,14.61,0.94,2026-06-24T00:00:00,follow_up_call +OPP-245-1,LED-0245,PRJ-001,PRJ-001-U002,site_visit,32.98,0.83,2026-07-24T00:00:00,follow_up_call +OPP-246-1,LED-0246,PRJ-005,PRJ-005-U005,proposal,19.27,0.24,2026-09-18T00:00:00,follow_up_call +OPP-247-1,LED-0247,PRJ-008,PRJ-008-U003,prospecting,8.37,0.21,2026-08-19T00:00:00,follow_up_call +OPP-248-1,LED-0248,PRJ-010,PRJ-010-U009,negotiation,9.32,0.13,2026-08-12T00:00:00,follow_up_call +OPP-248-2,LED-0248,PRJ-009,PRJ-009-U010,negotiation,14.67,0.66,2026-08-28T00:00:00,family_meeting +OPP-249-1,LED-0249,PRJ-007,PRJ-007-U001,closed_lost,6.59,0.84,2026-08-11T00:00:00,send_proposal +OPP-250-1,LED-0250,PRJ-006,PRJ-006-U001,closed_won,5.95,0.6,2026-06-03T00:00:00,family_meeting diff --git a/db assets/synthetic_crm_v1/csv/crm_people.csv b/db assets/synthetic_crm_v1/csv/crm_people.csv new file mode 100644 index 00000000..6e995c45 --- /dev/null +++ b/db assets/synthetic_crm_v1/csv/crm_people.csv @@ -0,0 +1,342 @@ +person_id,full_name,primary_email,primary_phone,linkedin_url,persona_labels,source_confidence,created_at,updated_at +PER-0001,Rohan Bose,rohan.bose99@gmail.com,+91-76251-12482,https://linkedin.com/in/rohan-bose-551,"[""high_intent_buyer""]",0.82,2024-06-04T00:00:00,2025-02-26T00:00:00 +PER-0002,Debjani Sen,debjani.sen88@hotmail.com,+91-77840-41779,https://linkedin.com/in/debjani-sen-151,"[""slow_burn_investor""]",0.9,2025-06-27T00:00:00,2024-08-19T00:00:00 +PER-0002-CO,Raj Banerjee,raj.banerjee80@yahoo.com,+91-83333-95575,,"[""co_buyer""]",0.85,2025-05-02T00:00:00,2026-04-18T00:00:00 +PER-0003,Meera Roy,meera.roy32@hotmail.com,+91-98054-93719,https://linkedin.com/in/meera-roy-515,"[""slow_burn_investor""]",0.94,2025-06-11T00:00:00,2024-12-01T00:00:00 +PER-0004,Nilesh Pillai,nilesh.pillai29@yahoo.com,+91-80751-78202,https://linkedin.com/in/nilesh-pillai-552,"[""high_intent_buyer""]",0.78,2024-07-29T00:00:00,2026-01-04T00:00:00 +PER-0005,Kunal Saha,kunal.saha96@gmail.com,+91-78019-15798,https://linkedin.com/in/kunal-saha-511,"[""high_intent_buyer""]",0.85,2025-07-06T00:00:00,2024-08-10T00:00:00 +PER-0006,Kunal Mukherjee,kunal.mukherjee81@rediffmail.com,+91-83648-83044,https://linkedin.com/in/kunal-mukherjee-642,"[""broker_referral_chain""]",0.78,2024-09-05T00:00:00,2024-09-18T00:00:00 +PER-0007,Isha Sharma,isha.sharma56@hotmail.com,+91-98927-75179,https://linkedin.com/in/isha-sharma-577,"[""nri_buyer""]",0.77,2026-01-09T00:00:00,2025-04-25T00:00:00 +PER-0008,Parth Saha,parth.saha71@rediffmail.com,+91-70515-10866,https://linkedin.com/in/parth-saha-644,"[""nri_buyer""]",0.88,2024-01-13T00:00:00,2024-01-18T00:00:00 +PER-0008-CO,Divya Nair,divya.nair42@outlook.com,+91-78759-62022,,"[""co_buyer""]",0.85,2024-03-21T00:00:00,2026-04-18T00:00:00 +PER-0009,Sanjay Chatterjee,sanjay.chatterjee48@yahoo.com,+91-88479-41519,https://linkedin.com/in/sanjay-chatterjee-680,"[""repeat_visitor""]",0.94,2025-02-02T00:00:00,2025-11-24T00:00:00 +PER-0010,Sanjay Agarwal,sanjay.agarwal56@gmail.com,+91-72998-10680,https://linkedin.com/in/sanjay-agarwal-415,"[""slow_burn_investor""]",0.85,2026-02-18T00:00:00,2024-10-03T00:00:00 +PER-0011,Tanvi Das,tanvi.das18@yahoo.com,+91-84243-46170,https://linkedin.com/in/tanvi-das-531,"[""slow_burn_investor""]",0.82,2026-03-12T00:00:00,2024-03-19T00:00:00 +PER-0011-CO,Parth Verma,parth.verma52@rediffmail.com,+91-80968-66441,,"[""co_buyer""]",0.85,2025-10-28T00:00:00,2026-04-18T00:00:00 +PER-0012,Vivek Verma,vivek.verma19@rediffmail.com,+91-89593-72814,https://linkedin.com/in/vivek-verma-696,"[""slow_burn_investor""]",0.84,2025-06-02T00:00:00,2025-12-09T00:00:00 +PER-0013,Rahul Gupta,rahul.gupta53@rediffmail.com,+91-95698-37114,https://linkedin.com/in/rahul-gupta-633,"[""high_intent_buyer""]",0.86,2025-05-02T00:00:00,2024-04-09T00:00:00 +PER-0013-CO,Swati Patel,swati.patel76@yahoo.com,+91-88084-30989,,"[""co_buyer""]",0.85,2024-12-04T00:00:00,2026-04-18T00:00:00 +PER-0014,Vidya Agarwal,vidya.agarwal86@rediffmail.com,+91-90031-61451,https://linkedin.com/in/vidya-agarwal-701,"[""high_intent_buyer""]",0.78,2024-12-26T00:00:00,2025-04-13T00:00:00 +PER-0015,Ananya Reddy,ananya.reddy27@yahoo.com,+91-96712-60324,https://linkedin.com/in/ananya-reddy-675,"[""family_decision_unit""]",0.87,2025-05-21T00:00:00,2025-02-22T00:00:00 +PER-0015-CO,Aditya Bose,aditya.bose13@yahoo.com,+91-79571-14285,,"[""co_buyer""]",0.85,2024-10-08T00:00:00,2026-04-18T00:00:00 +PER-0016,Raj Patel,raj.patel28@outlook.com,+91-97147-42447,https://linkedin.com/in/raj-patel-879,"[""repeat_visitor""]",0.94,2025-02-06T00:00:00,2025-05-16T00:00:00 +PER-0017,Neha Chatterjee,neha.chatterjee57@yahoo.com,+91-71696-61949,https://linkedin.com/in/neha-chatterjee-740,"[""high_intent_buyer""]",0.82,2025-12-17T00:00:00,2026-02-12T00:00:00 +PER-0017-CO,Arjun Agarwal,arjun.agarwal25@rediffmail.com,+91-92742-27324,,"[""co_buyer""]",0.85,2025-05-04T00:00:00,2026-04-18T00:00:00 +PER-0018,Sourav Chatterjee,sourav.chatterjee41@hotmail.com,+91-89693-88644,https://linkedin.com/in/sourav-chatterjee-838,"[""price_sensitive_aspirational""]",0.89,2026-03-08T00:00:00,2025-12-08T00:00:00 +PER-0019,Manish Pillai,manish.pillai88@yahoo.com,+91-79092-20957,https://linkedin.com/in/manish-pillai-417,"[""price_sensitive_aspirational""]",0.77,2024-07-27T00:00:00,2026-04-07T00:00:00 +PER-0020,Amit Singh,amit.singh44@hotmail.com,+91-72092-44465,https://linkedin.com/in/amit-singh-829,"[""broker_referral_chain""]",0.97,2025-10-04T00:00:00,2024-03-19T00:00:00 +PER-0021,Riya Kumar,riya.kumar46@outlook.com,+91-80724-21322,https://linkedin.com/in/riya-kumar-666,"[""repeat_visitor""]",0.86,2025-01-12T00:00:00,2024-07-24T00:00:00 +PER-0022,Sneha Pillai,sneha.pillai55@yahoo.com,+91-84808-50410,https://linkedin.com/in/sneha-pillai-574,"[""nri_buyer""]",0.81,2024-05-02T00:00:00,2024-04-02T00:00:00 +PER-0022-CO,Prasenjit Sharma,prasenjit.sharma32@gmail.com,+91-83251-69270,,"[""co_buyer""]",0.85,2025-07-23T00:00:00,2026-04-18T00:00:00 +PER-0023,Rahul Roy,rahul.roy33@outlook.com,+91-79170-68459,https://linkedin.com/in/rahul-roy-252,"[""family_decision_unit""]",0.76,2025-09-26T00:00:00,2025-09-23T00:00:00 +PER-0023-CO,Pallavi Nair,pallavi.nair41@hotmail.com,+91-96045-12559,,"[""co_buyer""]",0.85,2025-01-26T00:00:00,2026-04-18T00:00:00 +PER-0024,Vikram Nair,vikram.nair56@gmail.com,+91-82241-96787,https://linkedin.com/in/vikram-nair-505,"[""price_sensitive_aspirational""]",0.88,2024-12-10T00:00:00,2024-11-05T00:00:00 +PER-0025,Neha Sen,neha.sen10@gmail.com,+91-82646-67438,https://linkedin.com/in/neha-sen-850,"[""family_decision_unit""]",0.85,2024-06-19T00:00:00,2025-02-27T00:00:00 +PER-0025-CO,Rohan Gupta,rohan.gupta12@outlook.com,+91-78556-23726,,"[""co_buyer""]",0.85,2024-03-16T00:00:00,2026-04-18T00:00:00 +PER-0026,Pallavi Sen,pallavi.sen13@yahoo.com,+91-75597-93648,https://linkedin.com/in/pallavi-sen-398,"[""high_intent_buyer""]",0.97,2025-04-29T00:00:00,2024-04-28T00:00:00 +PER-0027,Asha Reddy,asha.reddy83@yahoo.com,+91-85606-49171,https://linkedin.com/in/asha-reddy-180,"[""price_sensitive_aspirational""]",0.84,2026-01-01T00:00:00,2024-02-05T00:00:00 +PER-0028,Meera Saha,meera.saha70@gmail.com,+91-75642-46099,https://linkedin.com/in/meera-saha-512,"[""nri_buyer""]",0.78,2025-09-15T00:00:00,2025-11-28T00:00:00 +PER-0028-CO,Abhishek Sharma,abhishek.sharma57@gmail.com,+91-81071-49722,,"[""co_buyer""]",0.85,2024-11-14T00:00:00,2026-04-18T00:00:00 +PER-0029,Swati Reddy,swati.reddy85@hotmail.com,+91-81460-55121,https://linkedin.com/in/swati-reddy-267,"[""slow_burn_investor""]",0.94,2024-09-21T00:00:00,2026-02-05T00:00:00 +PER-0029-CO,Nilesh Roy,nilesh.roy38@yahoo.com,+91-92206-37096,,"[""co_buyer""]",0.85,2024-10-02T00:00:00,2026-04-18T00:00:00 +PER-0030,Isha Sen,isha.sen71@gmail.com,+91-81019-46239,https://linkedin.com/in/isha-sen-755,"[""family_decision_unit""]",0.82,2024-10-10T00:00:00,2024-09-24T00:00:00 +PER-0030-CO,Deb Mukherjee,deb.mukherjee86@rediffmail.com,+91-91644-51888,,"[""co_buyer""]",0.85,2025-11-28T00:00:00,2026-04-18T00:00:00 +PER-0031,Kavita Agarwal,kavita.agarwal57@outlook.com,+91-89187-48541,https://linkedin.com/in/kavita-agarwal-574,"[""slow_burn_investor""]",0.95,2025-04-26T00:00:00,2024-02-24T00:00:00 +PER-0032,Kunal Sharma,kunal.sharma36@yahoo.com,+91-88883-30766,https://linkedin.com/in/kunal-sharma-601,"[""family_decision_unit""]",0.93,2026-03-09T00:00:00,2024-03-31T00:00:00 +PER-0032-CO,Trisha Banerjee,trisha.banerjee51@hotmail.com,+91-76244-12348,,"[""co_buyer""]",0.85,2025-11-23T00:00:00,2026-04-18T00:00:00 +PER-0033,Vikram Jain,vikram.jain93@gmail.com,+91-82294-93928,https://linkedin.com/in/vikram-jain-361,"[""price_sensitive_aspirational""]",0.93,2025-09-30T00:00:00,2024-02-19T00:00:00 +PER-0034,Abhishek Agarwal,abhishek.agarwal40@gmail.com,+91-70417-98032,https://linkedin.com/in/abhishek-agarwal-191,"[""family_decision_unit""]",0.96,2025-08-10T00:00:00,2025-11-16T00:00:00 +PER-0034-CO,Priya Sen,priya.sen32@gmail.com,+91-97926-48085,,"[""co_buyer""]",0.85,2025-01-03T00:00:00,2026-04-18T00:00:00 +PER-0035,Kavita Ghosh,kavita.ghosh24@yahoo.com,+91-92812-17686,https://linkedin.com/in/kavita-ghosh-964,"[""price_sensitive_aspirational""]",0.79,2025-03-02T00:00:00,2025-08-27T00:00:00 +PER-0035-CO,Vivek Kumar,vivek.kumar15@gmail.com,+91-78572-95848,,"[""co_buyer""]",0.85,2024-11-17T00:00:00,2026-04-18T00:00:00 +PER-0036,Sonal Sen,sonal.sen73@gmail.com,+91-73363-62879,https://linkedin.com/in/sonal-sen-522,"[""broker_referral_chain""]",0.76,2025-07-16T00:00:00,2024-01-01T00:00:00 +PER-0037,Abhishek Banerjee,abhishek.banerjee77@gmail.com,+91-88128-66729,https://linkedin.com/in/abhishek-banerjee-958,"[""family_decision_unit""]",0.88,2025-06-04T00:00:00,2026-03-10T00:00:00 +PER-0037-CO,Debjani Sen,debjani.sen59@hotmail.com,+91-89862-52184,,"[""co_buyer""]",0.85,2025-05-31T00:00:00,2026-04-18T00:00:00 +PER-0038,Manish Verma,manish.verma40@hotmail.com,+91-95700-47701,https://linkedin.com/in/manish-verma-809,"[""family_decision_unit""]",0.9,2025-01-25T00:00:00,2025-01-31T00:00:00 +PER-0039,Riya Jain,riya.jain38@yahoo.com,+91-91736-53500,https://linkedin.com/in/riya-jain-439,"[""high_intent_buyer""]",0.83,2024-08-11T00:00:00,2026-02-09T00:00:00 +PER-0040,Vidya Nair,vidya.nair67@rediffmail.com,+91-71436-48854,https://linkedin.com/in/vidya-nair-767,"[""price_sensitive_aspirational""]",0.79,2025-06-10T00:00:00,2024-03-25T00:00:00 +PER-0040-CO,Anirban Singh,anirban.singh23@yahoo.com,+91-87621-67047,,"[""co_buyer""]",0.85,2025-10-24T00:00:00,2026-04-18T00:00:00 +PER-0041,Asha Pillai,asha.pillai20@outlook.com,+91-76883-55069,https://linkedin.com/in/asha-pillai-316,"[""family_decision_unit""]",0.84,2025-10-23T00:00:00,2025-06-08T00:00:00 +PER-0042,Tanvi Pillai,tanvi.pillai23@yahoo.com,+91-91153-89511,https://linkedin.com/in/tanvi-pillai-183,"[""slow_burn_investor""]",0.94,2024-05-23T00:00:00,2025-07-05T00:00:00 +PER-0043,Neha Bose,neha.bose79@hotmail.com,+91-75696-59369,https://linkedin.com/in/neha-bose-769,"[""repeat_visitor""]",0.84,2025-08-24T00:00:00,2025-10-31T00:00:00 +PER-0043-CO,Rahul Jain,rahul.jain72@rediffmail.com,+91-99070-89195,,"[""co_buyer""]",0.85,2024-01-07T00:00:00,2026-04-18T00:00:00 +PER-0044,Anirban Nair,anirban.nair74@rediffmail.com,+91-97083-29603,https://linkedin.com/in/anirban-nair-720,"[""high_intent_buyer""]",0.77,2025-05-02T00:00:00,2025-09-21T00:00:00 +PER-0045,Trisha Sen,trisha.sen29@rediffmail.com,+91-91350-86725,https://linkedin.com/in/trisha-sen-359,"[""price_sensitive_aspirational""]",0.81,2025-07-02T00:00:00,2025-03-09T00:00:00 +PER-0046,Aditya Das,aditya.das70@hotmail.com,+91-84266-21552,https://linkedin.com/in/aditya-das-165,"[""repeat_visitor""]",0.81,2025-01-14T00:00:00,2024-03-22T00:00:00 +PER-0047,Deepak Gupta,deepak.gupta53@gmail.com,+91-96310-77277,https://linkedin.com/in/deepak-gupta-363,"[""family_decision_unit""]",0.95,2025-08-11T00:00:00,2024-09-13T00:00:00 +PER-0048,Swati Roy,swati.roy73@yahoo.com,+91-77695-41726,https://linkedin.com/in/swati-roy-993,"[""slow_burn_investor""]",0.81,2024-08-22T00:00:00,2024-07-26T00:00:00 +PER-0049,Moumita Ghosh,moumita.ghosh68@gmail.com,+91-92880-77922,https://linkedin.com/in/moumita-ghosh-571,"[""high_intent_buyer""]",0.82,2024-01-09T00:00:00,2024-01-13T00:00:00 +PER-0050,Abhishek Banerjee,abhishek.banerjee32@rediffmail.com,+91-86370-27625,https://linkedin.com/in/abhishek-banerjee-969,"[""price_sensitive_aspirational""]",0.9,2025-06-30T00:00:00,2026-01-07T00:00:00 +PER-0051,Shreya Chatterjee,shreya.chatterjee58@hotmail.com,+91-79388-70784,https://linkedin.com/in/shreya-chatterjee-746,"[""family_decision_unit""]",0.97,2024-06-20T00:00:00,2025-10-17T00:00:00 +PER-0051-CO,Sanjay Chatterjee,sanjay.chatterjee20@yahoo.com,+91-81259-39912,,"[""co_buyer""]",0.85,2024-11-17T00:00:00,2026-04-18T00:00:00 +PER-0052,Tanvi Kumar,tanvi.kumar79@outlook.com,+91-87974-68306,https://linkedin.com/in/tanvi-kumar-238,"[""slow_burn_investor""]",0.97,2025-12-15T00:00:00,2025-07-06T00:00:00 +PER-0053,Kunal Saha,kunal.saha67@outlook.com,+91-92953-91625,https://linkedin.com/in/kunal-saha-603,"[""high_intent_buyer""]",0.79,2024-01-20T00:00:00,2024-06-04T00:00:00 +PER-0053-CO,Debjani Banerjee,debjani.banerjee73@yahoo.com,+91-81203-65082,,"[""co_buyer""]",0.85,2024-11-15T00:00:00,2026-04-18T00:00:00 +PER-0054,Sonal Ghosh,sonal.ghosh90@gmail.com,+91-94403-82034,https://linkedin.com/in/sonal-ghosh-633,"[""nri_buyer""]",0.78,2025-05-07T00:00:00,2025-10-15T00:00:00 +PER-0054-CO,Sourav Bose,sourav.bose25@rediffmail.com,+91-95858-41862,,"[""co_buyer""]",0.85,2024-01-10T00:00:00,2026-04-18T00:00:00 +PER-0055,Neha Saha,neha.saha80@yahoo.com,+91-72256-79617,https://linkedin.com/in/neha-saha-258,"[""slow_burn_investor""]",0.85,2024-09-26T00:00:00,2025-07-08T00:00:00 +PER-0056,Nilesh Verma,nilesh.verma94@rediffmail.com,+91-87230-91785,https://linkedin.com/in/nilesh-verma-818,"[""high_intent_buyer""]",0.89,2024-02-20T00:00:00,2025-01-10T00:00:00 +PER-0057,Deepak Patel,deepak.patel82@yahoo.com,+91-88298-83156,https://linkedin.com/in/deepak-patel-525,"[""nri_buyer""]",0.92,2026-02-23T00:00:00,2025-10-15T00:00:00 +PER-0058,Prasenjit Banerjee,prasenjit.banerjee48@yahoo.com,+91-77039-51275,https://linkedin.com/in/prasenjit-banerjee-122,"[""family_decision_unit""]",0.93,2025-12-07T00:00:00,2024-10-09T00:00:00 +PER-0058-CO,Debjani Das,debjani.das43@outlook.com,+91-99151-86304,,"[""co_buyer""]",0.85,2024-09-12T00:00:00,2026-04-18T00:00:00 +PER-0059,Deb Singh,deb.singh47@rediffmail.com,+91-74850-27326,https://linkedin.com/in/deb-singh-444,"[""family_decision_unit""]",0.77,2025-08-08T00:00:00,2026-02-02T00:00:00 +PER-0059-CO,Tanvi Verma,tanvi.verma93@hotmail.com,+91-76425-83553,,"[""co_buyer""]",0.85,2025-09-22T00:00:00,2026-04-18T00:00:00 +PER-0060,Prasenjit Kumar,prasenjit.kumar70@gmail.com,+91-80874-37395,https://linkedin.com/in/prasenjit-kumar-857,"[""high_intent_buyer""]",0.87,2024-07-27T00:00:00,2025-07-13T00:00:00 +PER-0061,Trisha Jain,trisha.jain90@outlook.com,+91-77739-75700,https://linkedin.com/in/trisha-jain-382,"[""high_intent_buyer""]",0.94,2025-10-02T00:00:00,2024-09-20T00:00:00 +PER-0062,Parth Patel,parth.patel39@gmail.com,+91-81772-20417,https://linkedin.com/in/parth-patel-804,"[""family_decision_unit""]",0.93,2024-05-17T00:00:00,2025-05-29T00:00:00 +PER-0062-CO,Moumita Reddy,moumita.reddy70@yahoo.com,+91-75366-35330,,"[""co_buyer""]",0.85,2024-08-19T00:00:00,2026-04-18T00:00:00 +PER-0063,Deepak Das,deepak.das69@rediffmail.com,+91-72963-75622,https://linkedin.com/in/deepak-das-215,"[""nri_buyer""]",0.79,2025-08-22T00:00:00,2025-12-13T00:00:00 +PER-0064,Ananya Kumar,ananya.kumar73@rediffmail.com,+91-87809-10753,https://linkedin.com/in/ananya-kumar-722,"[""high_intent_buyer""]",0.95,2024-08-31T00:00:00,2024-08-10T00:00:00 +PER-0065,Parth Mukherjee,parth.mukherjee23@hotmail.com,+91-93911-92441,https://linkedin.com/in/parth-mukherjee-641,"[""slow_burn_investor""]",0.98,2025-05-10T00:00:00,2026-01-11T00:00:00 +PER-0066,Asha Roy,asha.roy11@yahoo.com,+91-92610-46913,https://linkedin.com/in/asha-roy-360,"[""high_intent_buyer""]",0.93,2024-11-11T00:00:00,2024-11-03T00:00:00 +PER-0067,Sonal Mukherjee,sonal.mukherjee44@rediffmail.com,+91-72844-75149,https://linkedin.com/in/sonal-mukherjee-998,"[""high_intent_buyer""]",0.8,2025-04-07T00:00:00,2024-11-05T00:00:00 +PER-0068,Shreya Sen,shreya.sen44@yahoo.com,+91-75160-45866,https://linkedin.com/in/shreya-sen-217,"[""slow_burn_investor""]",0.75,2025-09-29T00:00:00,2025-07-27T00:00:00 +PER-0069,Trisha Verma,trisha.verma33@outlook.com,+91-95846-52567,https://linkedin.com/in/trisha-verma-564,"[""high_intent_buyer""]",0.86,2024-03-07T00:00:00,2025-05-01T00:00:00 +PER-0070,Divya Bose,divya.bose67@yahoo.com,+91-76739-99327,https://linkedin.com/in/divya-bose-998,"[""family_decision_unit""]",0.82,2025-08-06T00:00:00,2026-03-24T00:00:00 +PER-0071,Abhishek Singh,abhishek.singh27@gmail.com,+91-74496-94180,https://linkedin.com/in/abhishek-singh-925,"[""family_decision_unit""]",0.85,2025-04-11T00:00:00,2026-03-18T00:00:00 +PER-0071-CO,Kavita Pillai,kavita.pillai67@rediffmail.com,+91-81642-39588,,"[""co_buyer""]",0.85,2024-07-09T00:00:00,2026-04-18T00:00:00 +PER-0072,Parth Gupta,parth.gupta82@outlook.com,+91-72012-92483,https://linkedin.com/in/parth-gupta-584,"[""slow_burn_investor""]",0.88,2025-08-09T00:00:00,2024-02-22T00:00:00 +PER-0072-CO,Vidya Chatterjee,vidya.chatterjee45@outlook.com,+91-74343-90713,,"[""co_buyer""]",0.85,2024-10-14T00:00:00,2026-04-18T00:00:00 +PER-0073,Swati Roy,swati.roy83@outlook.com,+91-71780-94182,https://linkedin.com/in/swati-roy-370,"[""slow_burn_investor""]",0.92,2024-04-28T00:00:00,2024-02-23T00:00:00 +PER-0074,Pallavi Mukherjee,pallavi.mukherjee13@hotmail.com,+91-73012-17455,https://linkedin.com/in/pallavi-mukherjee-708,"[""price_sensitive_aspirational""]",0.9,2024-08-10T00:00:00,2025-09-05T00:00:00 +PER-0075,Priya Sharma,priya.sharma43@yahoo.com,+91-84436-19096,https://linkedin.com/in/priya-sharma-603,"[""nri_buyer""]",0.98,2024-07-24T00:00:00,2025-09-16T00:00:00 +PER-0076,Rahul Pillai,rahul.pillai53@gmail.com,+91-97563-70245,https://linkedin.com/in/rahul-pillai-878,"[""high_intent_buyer""]",0.93,2025-10-25T00:00:00,2024-07-26T00:00:00 +PER-0077,Nilesh Patel,nilesh.patel19@gmail.com,+91-94099-28558,https://linkedin.com/in/nilesh-patel-600,"[""broker_referral_chain""]",0.9,2025-04-27T00:00:00,2025-09-25T00:00:00 +PER-0078,Parth Verma,parth.verma30@gmail.com,+91-98823-73827,https://linkedin.com/in/parth-verma-182,"[""high_intent_buyer""]",0.75,2024-07-02T00:00:00,2024-04-01T00:00:00 +PER-0079,Raj Reddy,raj.reddy73@yahoo.com,+91-75235-97836,https://linkedin.com/in/raj-reddy-144,"[""high_intent_buyer""]",0.76,2025-01-07T00:00:00,2024-10-18T00:00:00 +PER-0079-CO,Ananya Reddy,ananya.reddy75@gmail.com,+91-72321-40841,,"[""co_buyer""]",0.85,2026-01-08T00:00:00,2026-04-18T00:00:00 +PER-0080,Amit Patel,amit.patel47@hotmail.com,+91-75137-93623,https://linkedin.com/in/amit-patel-726,"[""nri_buyer""]",0.96,2025-08-14T00:00:00,2025-07-20T00:00:00 +PER-0080-CO,Shreya Sharma,shreya.sharma11@rediffmail.com,+91-94123-42329,,"[""co_buyer""]",0.85,2024-09-10T00:00:00,2026-04-18T00:00:00 +PER-0081,Swati Jain,swati.jain90@rediffmail.com,+91-93065-93021,https://linkedin.com/in/swati-jain-101,"[""price_sensitive_aspirational""]",0.95,2024-03-13T00:00:00,2025-01-29T00:00:00 +PER-0082,Neha Mukherjee,neha.mukherjee18@outlook.com,+91-81312-69298,https://linkedin.com/in/neha-mukherjee-597,"[""broker_referral_chain""]",0.87,2024-05-05T00:00:00,2025-04-26T00:00:00 +PER-0083,Prasenjit Roy,prasenjit.roy18@gmail.com,+91-98566-40451,https://linkedin.com/in/prasenjit-roy-954,"[""price_sensitive_aspirational""]",0.97,2025-10-22T00:00:00,2024-12-09T00:00:00 +PER-0084,Sanjay Reddy,sanjay.reddy28@rediffmail.com,+91-80492-30454,https://linkedin.com/in/sanjay-reddy-104,"[""slow_burn_investor""]",0.97,2025-07-13T00:00:00,2025-06-03T00:00:00 +PER-0084-CO,Tanvi Mukherjee,tanvi.mukherjee27@hotmail.com,+91-73829-50380,,"[""co_buyer""]",0.85,2024-01-26T00:00:00,2026-04-18T00:00:00 +PER-0085,Kavita Das,kavita.das85@hotmail.com,+91-72820-28827,https://linkedin.com/in/kavita-das-312,"[""slow_burn_investor""]",0.82,2025-06-21T00:00:00,2024-12-09T00:00:00 +PER-0086,Tanvi Chatterjee,tanvi.chatterjee86@outlook.com,+91-89040-72978,https://linkedin.com/in/tanvi-chatterjee-679,"[""high_intent_buyer""]",0.85,2024-09-21T00:00:00,2025-10-05T00:00:00 +PER-0087,Sneha Pillai,sneha.pillai84@outlook.com,+91-96978-28837,https://linkedin.com/in/sneha-pillai-113,"[""family_decision_unit""]",0.78,2024-10-15T00:00:00,2025-01-16T00:00:00 +PER-0087-CO,Raj Nair,raj.nair38@yahoo.com,+91-96054-83224,,"[""co_buyer""]",0.85,2025-09-20T00:00:00,2026-04-18T00:00:00 +PER-0088,Ananya Sen,ananya.sen25@hotmail.com,+91-76730-87018,https://linkedin.com/in/ananya-sen-304,"[""high_intent_buyer""]",0.79,2024-12-25T00:00:00,2024-01-30T00:00:00 +PER-0089,Pallavi Chatterjee,pallavi.chatterjee70@outlook.com,+91-75875-11675,https://linkedin.com/in/pallavi-chatterjee-790,"[""repeat_visitor""]",0.86,2024-04-17T00:00:00,2025-02-09T00:00:00 +PER-0090,Sanjay Saha,sanjay.saha96@outlook.com,+91-75004-49682,https://linkedin.com/in/sanjay-saha-736,"[""family_decision_unit""]",0.89,2026-02-17T00:00:00,2024-03-19T00:00:00 +PER-0090-CO,Tanvi Reddy,tanvi.reddy74@outlook.com,+91-87774-55038,,"[""co_buyer""]",0.85,2025-07-07T00:00:00,2026-04-18T00:00:00 +PER-0091,Tanvi Pillai,tanvi.pillai30@hotmail.com,+91-71826-61299,https://linkedin.com/in/tanvi-pillai-369,"[""family_decision_unit""]",0.86,2025-01-21T00:00:00,2025-09-23T00:00:00 +PER-0091-CO,Rohan Das,rohan.das56@outlook.com,+91-96527-86541,,"[""co_buyer""]",0.85,2024-01-28T00:00:00,2026-04-18T00:00:00 +PER-0092,Abhishek Chatterjee,abhishek.chatterjee78@yahoo.com,+91-79416-44754,https://linkedin.com/in/abhishek-chatterjee-148,"[""repeat_visitor""]",0.82,2025-08-10T00:00:00,2025-02-15T00:00:00 +PER-0093,Anirban Banerjee,anirban.banerjee41@outlook.com,+91-85209-73620,https://linkedin.com/in/anirban-banerjee-673,"[""slow_burn_investor""]",0.98,2025-03-08T00:00:00,2025-10-24T00:00:00 +PER-0093-CO,Neha Pillai,neha.pillai32@gmail.com,+91-93674-73680,,"[""co_buyer""]",0.85,2026-03-12T00:00:00,2026-04-18T00:00:00 +PER-0094,Ritu Sharma,ritu.sharma28@outlook.com,+91-85572-58200,https://linkedin.com/in/ritu-sharma-941,"[""family_decision_unit""]",0.82,2025-10-22T00:00:00,2025-09-12T00:00:00 +PER-0094-CO,Deb Kumar,deb.kumar59@gmail.com,+91-99811-61508,,"[""co_buyer""]",0.85,2024-09-18T00:00:00,2026-04-18T00:00:00 +PER-0095,Kunal Das,kunal.das10@rediffmail.com,+91-76556-92352,https://linkedin.com/in/kunal-das-412,"[""family_decision_unit""]",0.82,2024-03-25T00:00:00,2024-04-23T00:00:00 +PER-0095-CO,Swati Bose,swati.bose51@outlook.com,+91-76509-21062,,"[""co_buyer""]",0.85,2025-02-28T00:00:00,2026-04-18T00:00:00 +PER-0096,Sourav Gupta,sourav.gupta73@rediffmail.com,+91-74266-66532,https://linkedin.com/in/sourav-gupta-976,"[""price_sensitive_aspirational""]",0.8,2024-08-08T00:00:00,2024-10-16T00:00:00 +PER-0096-CO,Neha Patel,neha.patel89@rediffmail.com,+91-99731-42547,,"[""co_buyer""]",0.85,2025-01-13T00:00:00,2026-04-18T00:00:00 +PER-0097,Shreya Das,shreya.das21@outlook.com,+91-93273-79523,https://linkedin.com/in/shreya-das-543,"[""family_decision_unit""]",0.78,2024-04-29T00:00:00,2024-11-16T00:00:00 +PER-0098,Deepak Bose,deepak.bose33@rediffmail.com,+91-72517-42264,https://linkedin.com/in/deepak-bose-886,"[""repeat_visitor""]",0.86,2024-04-06T00:00:00,2024-12-02T00:00:00 +PER-0098-CO,Shreya Sharma,shreya.sharma86@gmail.com,+91-80794-15747,,"[""co_buyer""]",0.85,2025-11-02T00:00:00,2026-04-18T00:00:00 +PER-0099,Divya Das,divya.das55@gmail.com,+91-97264-58163,https://linkedin.com/in/divya-das-624,"[""price_sensitive_aspirational""]",0.8,2025-04-01T00:00:00,2025-02-01T00:00:00 +PER-0099-CO,Kunal Patel,kunal.patel92@yahoo.com,+91-86230-79111,,"[""co_buyer""]",0.85,2025-10-06T00:00:00,2026-04-18T00:00:00 +PER-0100,Shreya Saha,shreya.saha43@outlook.com,+91-98552-34535,https://linkedin.com/in/shreya-saha-316,"[""slow_burn_investor""]",0.79,2026-02-03T00:00:00,2025-09-10T00:00:00 +PER-0100-CO,Sanjay Saha,sanjay.saha72@outlook.com,+91-90266-90837,,"[""co_buyer""]",0.85,2025-01-04T00:00:00,2026-04-18T00:00:00 +PER-0101,Priya Agarwal,priya.agarwal11@gmail.com,+91-90657-66595,https://linkedin.com/in/priya-agarwal-525,"[""price_sensitive_aspirational""]",0.95,2026-01-24T00:00:00,2025-08-15T00:00:00 +PER-0102,Debjani Ghosh,debjani.ghosh35@yahoo.com,+91-89849-74511,https://linkedin.com/in/debjani-ghosh-203,"[""price_sensitive_aspirational""]",0.93,2025-05-20T00:00:00,2024-11-06T00:00:00 +PER-0102-CO,Parth Patel,parth.patel25@hotmail.com,+91-77343-73748,,"[""co_buyer""]",0.85,2024-09-21T00:00:00,2026-04-18T00:00:00 +PER-0103,Rahul Agarwal,rahul.agarwal27@gmail.com,+91-97806-36462,https://linkedin.com/in/rahul-agarwal-549,"[""broker_referral_chain""]",0.97,2026-02-26T00:00:00,2026-02-26T00:00:00 +PER-0103-CO,Debjani Nair,debjani.nair63@yahoo.com,+91-74521-66206,,"[""co_buyer""]",0.85,2025-02-27T00:00:00,2026-04-18T00:00:00 +PER-0104,Prasenjit Chatterjee,prasenjit.chatterjee14@hotmail.com,+91-80960-61117,https://linkedin.com/in/prasenjit-chatterjee-842,"[""nri_buyer""]",0.92,2024-05-09T00:00:00,2025-06-16T00:00:00 +PER-0104-CO,Sonal Ghosh,sonal.ghosh12@gmail.com,+91-99173-80770,,"[""co_buyer""]",0.85,2025-08-29T00:00:00,2026-04-18T00:00:00 +PER-0105,Rahul Kumar,rahul.kumar22@yahoo.com,+91-93319-65796,https://linkedin.com/in/rahul-kumar-948,"[""slow_burn_investor""]",0.84,2024-04-04T00:00:00,2024-03-04T00:00:00 +PER-0106,Ananya Sen,ananya.sen80@outlook.com,+91-72213-15856,https://linkedin.com/in/ananya-sen-527,"[""price_sensitive_aspirational""]",0.86,2024-11-13T00:00:00,2025-08-02T00:00:00 +PER-0107,Moumita Sharma,moumita.sharma21@gmail.com,+91-73254-81012,https://linkedin.com/in/moumita-sharma-272,"[""high_intent_buyer""]",0.82,2024-07-06T00:00:00,2024-09-18T00:00:00 +PER-0107-CO,Amit Ghosh,amit.ghosh13@gmail.com,+91-79765-61110,,"[""co_buyer""]",0.85,2024-04-11T00:00:00,2026-04-18T00:00:00 +PER-0108,Kunal Saha,kunal.saha47@yahoo.com,+91-70017-17887,https://linkedin.com/in/kunal-saha-593,"[""nri_buyer""]",0.81,2024-09-13T00:00:00,2025-11-27T00:00:00 +PER-0108-CO,Sneha Das,sneha.das81@outlook.com,+91-98779-66618,,"[""co_buyer""]",0.85,2024-08-03T00:00:00,2026-04-18T00:00:00 +PER-0109,Kunal Banerjee,kunal.banerjee38@gmail.com,+91-94851-46848,https://linkedin.com/in/kunal-banerjee-796,"[""slow_burn_investor""]",0.96,2025-01-01T00:00:00,2024-07-15T00:00:00 +PER-0110,Deb Singh,deb.singh19@yahoo.com,+91-76451-31558,https://linkedin.com/in/deb-singh-437,"[""slow_burn_investor""]",0.82,2025-10-03T00:00:00,2025-10-02T00:00:00 +PER-0111,Riya Sen,riya.sen96@gmail.com,+91-88325-16842,https://linkedin.com/in/riya-sen-401,"[""family_decision_unit""]",0.95,2025-02-15T00:00:00,2024-04-08T00:00:00 +PER-0112,Isha Bose,isha.bose79@yahoo.com,+91-74830-71541,https://linkedin.com/in/isha-bose-416,"[""nri_buyer""]",0.89,2024-10-25T00:00:00,2025-01-12T00:00:00 +PER-0113,Deb Reddy,deb.reddy52@rediffmail.com,+91-76727-62469,https://linkedin.com/in/deb-reddy-288,"[""slow_burn_investor""]",0.94,2024-01-07T00:00:00,2025-01-06T00:00:00 +PER-0114,Debjani Nair,debjani.nair84@rediffmail.com,+91-76856-20670,https://linkedin.com/in/debjani-nair-903,"[""high_intent_buyer""]",0.86,2025-11-10T00:00:00,2025-09-21T00:00:00 +PER-0115,Neha Pillai,neha.pillai20@yahoo.com,+91-94629-21013,https://linkedin.com/in/neha-pillai-402,"[""family_decision_unit""]",0.85,2024-12-26T00:00:00,2024-08-23T00:00:00 +PER-0115-CO,Sanjay Banerjee,sanjay.banerjee32@rediffmail.com,+91-77660-44815,,"[""co_buyer""]",0.85,2025-10-22T00:00:00,2026-04-18T00:00:00 +PER-0116,Ritu Singh,ritu.singh64@rediffmail.com,+91-94996-80464,https://linkedin.com/in/ritu-singh-406,"[""price_sensitive_aspirational""]",0.82,2024-01-24T00:00:00,2025-08-04T00:00:00 +PER-0117,Priya Jain,priya.jain76@gmail.com,+91-75630-52830,https://linkedin.com/in/priya-jain-980,"[""family_decision_unit""]",0.96,2025-02-04T00:00:00,2024-06-09T00:00:00 +PER-0117-CO,Aditya Verma,aditya.verma36@yahoo.com,+91-98522-36958,,"[""co_buyer""]",0.85,2024-11-13T00:00:00,2026-04-18T00:00:00 +PER-0118,Sourav Pillai,sourav.pillai47@gmail.com,+91-92873-38476,https://linkedin.com/in/sourav-pillai-605,"[""broker_referral_chain""]",0.84,2026-02-19T00:00:00,2025-07-20T00:00:00 +PER-0119,Manish Roy,manish.roy66@gmail.com,+91-97410-93203,https://linkedin.com/in/manish-roy-930,"[""high_intent_buyer""]",0.87,2025-11-09T00:00:00,2026-01-03T00:00:00 +PER-0119-CO,Priya Verma,priya.verma35@yahoo.com,+91-82276-41265,,"[""co_buyer""]",0.85,2024-07-23T00:00:00,2026-04-18T00:00:00 +PER-0120,Aditya Sharma,aditya.sharma93@hotmail.com,+91-82090-15759,https://linkedin.com/in/aditya-sharma-168,"[""slow_burn_investor""]",0.95,2025-02-24T00:00:00,2024-11-04T00:00:00 +PER-0121,Pallavi Mukherjee,pallavi.mukherjee40@hotmail.com,+91-84540-53082,https://linkedin.com/in/pallavi-mukherjee-237,"[""slow_burn_investor""]",0.81,2025-10-21T00:00:00,2026-03-16T00:00:00 +PER-0122,Deb Nair,deb.nair20@rediffmail.com,+91-93756-71220,https://linkedin.com/in/deb-nair-418,"[""high_intent_buyer""]",0.79,2024-07-21T00:00:00,2024-09-07T00:00:00 +PER-0122-CO,Swati Reddy,swati.reddy66@rediffmail.com,+91-86557-89874,,"[""co_buyer""]",0.85,2026-01-22T00:00:00,2026-04-18T00:00:00 +PER-0123,Vivek Mukherjee,vivek.mukherjee25@rediffmail.com,+91-88533-31281,https://linkedin.com/in/vivek-mukherjee-298,"[""family_decision_unit""]",0.93,2024-09-18T00:00:00,2026-02-28T00:00:00 +PER-0123-CO,Trisha Mukherjee,trisha.mukherjee93@rediffmail.com,+91-83894-42347,,"[""co_buyer""]",0.85,2024-09-05T00:00:00,2026-04-18T00:00:00 +PER-0124,Vikram Bose,vikram.bose54@yahoo.com,+91-78815-37462,https://linkedin.com/in/vikram-bose-866,"[""nri_buyer""]",0.84,2024-11-11T00:00:00,2024-01-07T00:00:00 +PER-0125,Anirban Sharma,anirban.sharma62@rediffmail.com,+91-90540-91844,https://linkedin.com/in/anirban-sharma-211,"[""high_intent_buyer""]",0.95,2024-06-19T00:00:00,2024-03-22T00:00:00 +PER-0126,Vidya Singh,vidya.singh94@yahoo.com,+91-70102-93633,https://linkedin.com/in/vidya-singh-932,"[""family_decision_unit""]",0.82,2025-10-10T00:00:00,2025-01-03T00:00:00 +PER-0126-CO,Abhishek Verma,abhishek.verma88@gmail.com,+91-81414-66087,,"[""co_buyer""]",0.85,2025-05-02T00:00:00,2026-04-18T00:00:00 +PER-0127,Sneha Das,sneha.das78@rediffmail.com,+91-72963-53620,https://linkedin.com/in/sneha-das-992,"[""price_sensitive_aspirational""]",0.8,2025-08-12T00:00:00,2026-02-23T00:00:00 +PER-0128,Sonal Das,sonal.das47@yahoo.com,+91-86378-99126,https://linkedin.com/in/sonal-das-566,"[""high_intent_buyer""]",0.78,2024-10-17T00:00:00,2024-05-29T00:00:00 +PER-0129,Pallavi Pillai,pallavi.pillai60@gmail.com,+91-74289-52391,https://linkedin.com/in/pallavi-pillai-870,"[""price_sensitive_aspirational""]",0.93,2024-02-25T00:00:00,2025-12-27T00:00:00 +PER-0130,Isha Saha,isha.saha32@rediffmail.com,+91-95423-97914,https://linkedin.com/in/isha-saha-774,"[""slow_burn_investor""]",0.77,2025-04-19T00:00:00,2026-04-17T00:00:00 +PER-0130-CO,Aditya Sen,aditya.sen72@hotmail.com,+91-77370-13018,,"[""co_buyer""]",0.85,2025-08-23T00:00:00,2026-04-18T00:00:00 +PER-0131,Siddharth Chatterjee,siddharth.chatterjee81@outlook.com,+91-97900-14588,https://linkedin.com/in/siddharth-chatterjee-186,"[""high_intent_buyer""]",0.98,2025-06-02T00:00:00,2024-11-01T00:00:00 +PER-0132,Shreya Chatterjee,shreya.chatterjee42@rediffmail.com,+91-92757-28775,https://linkedin.com/in/shreya-chatterjee-648,"[""broker_referral_chain""]",0.8,2025-10-06T00:00:00,2026-01-20T00:00:00 +PER-0132-CO,Parth Patel,parth.patel19@outlook.com,+91-74083-79660,,"[""co_buyer""]",0.85,2024-04-22T00:00:00,2026-04-18T00:00:00 +PER-0133,Priya Jain,priya.jain41@hotmail.com,+91-83705-70003,https://linkedin.com/in/priya-jain-287,"[""slow_burn_investor""]",0.85,2024-12-28T00:00:00,2026-03-28T00:00:00 +PER-0134,Parth Kumar,parth.kumar31@hotmail.com,+91-99615-39500,https://linkedin.com/in/parth-kumar-279,"[""repeat_visitor""]",0.77,2024-05-16T00:00:00,2025-06-10T00:00:00 +PER-0135,Vivek Sen,vivek.sen72@gmail.com,+91-75099-96066,https://linkedin.com/in/vivek-sen-356,"[""family_decision_unit""]",0.8,2025-02-08T00:00:00,2025-01-18T00:00:00 +PER-0135-CO,Trisha Singh,trisha.singh10@outlook.com,+91-98953-36013,,"[""co_buyer""]",0.85,2024-04-23T00:00:00,2026-04-18T00:00:00 +PER-0136,Ritu Singh,ritu.singh35@rediffmail.com,+91-93149-23508,https://linkedin.com/in/ritu-singh-817,"[""price_sensitive_aspirational""]",0.92,2025-09-17T00:00:00,2024-07-04T00:00:00 +PER-0136-CO,Anirban Chatterjee,anirban.chatterjee16@rediffmail.com,+91-83346-78809,,"[""co_buyer""]",0.85,2024-11-09T00:00:00,2026-04-18T00:00:00 +PER-0137,Prasenjit Reddy,prasenjit.reddy45@hotmail.com,+91-73301-66479,https://linkedin.com/in/prasenjit-reddy-289,"[""price_sensitive_aspirational""]",0.81,2025-05-18T00:00:00,2025-01-07T00:00:00 +PER-0138,Vidya Nair,vidya.nair12@yahoo.com,+91-89633-45933,https://linkedin.com/in/vidya-nair-813,"[""high_intent_buyer""]",0.97,2024-10-23T00:00:00,2024-02-16T00:00:00 +PER-0138-CO,Manish Nair,manish.nair19@yahoo.com,+91-84344-76752,,"[""co_buyer""]",0.85,2025-01-28T00:00:00,2026-04-18T00:00:00 +PER-0139,Raj Sharma,raj.sharma27@outlook.com,+91-98619-16752,https://linkedin.com/in/raj-sharma-757,"[""slow_burn_investor""]",0.98,2024-08-03T00:00:00,2025-07-01T00:00:00 +PER-0140,Swati Ghosh,swati.ghosh60@hotmail.com,+91-76155-19103,https://linkedin.com/in/swati-ghosh-246,"[""slow_burn_investor""]",0.77,2024-09-08T00:00:00,2025-04-10T00:00:00 +PER-0141,Sneha Nair,sneha.nair63@yahoo.com,+91-70039-39401,https://linkedin.com/in/sneha-nair-124,"[""high_intent_buyer""]",0.8,2025-01-29T00:00:00,2024-05-30T00:00:00 +PER-0142,Riya Sen,riya.sen83@rediffmail.com,+91-93812-46500,https://linkedin.com/in/riya-sen-248,"[""nri_buyer""]",0.77,2024-05-10T00:00:00,2024-07-05T00:00:00 +PER-0143,Debjani Gupta,debjani.gupta68@yahoo.com,+91-97369-82286,https://linkedin.com/in/debjani-gupta-531,"[""broker_referral_chain""]",0.81,2024-08-17T00:00:00,2024-02-27T00:00:00 +PER-0143-CO,Vivek Jain,vivek.jain16@gmail.com,+91-91716-86232,,"[""co_buyer""]",0.85,2024-03-16T00:00:00,2026-04-18T00:00:00 +PER-0144,Vivek Ghosh,vivek.ghosh44@gmail.com,+91-87088-59487,https://linkedin.com/in/vivek-ghosh-228,"[""family_decision_unit""]",0.92,2025-02-14T00:00:00,2025-09-25T00:00:00 +PER-0144-CO,Moumita Verma,moumita.verma31@gmail.com,+91-96323-58690,,"[""co_buyer""]",0.85,2025-10-24T00:00:00,2026-04-18T00:00:00 +PER-0145,Moumita Jain,moumita.jain26@gmail.com,+91-80856-63383,https://linkedin.com/in/moumita-jain-859,"[""family_decision_unit""]",0.87,2025-05-29T00:00:00,2026-04-06T00:00:00 +PER-0145-CO,Rohan Gupta,rohan.gupta30@yahoo.com,+91-92360-70700,,"[""co_buyer""]",0.85,2024-03-21T00:00:00,2026-04-18T00:00:00 +PER-0146,Trisha Chatterjee,trisha.chatterjee19@yahoo.com,+91-93286-70390,https://linkedin.com/in/trisha-chatterjee-364,"[""slow_burn_investor""]",0.98,2024-09-19T00:00:00,2026-02-20T00:00:00 +PER-0147,Riya Patel,riya.patel59@rediffmail.com,+91-91926-22255,https://linkedin.com/in/riya-patel-457,"[""high_intent_buyer""]",0.86,2025-10-19T00:00:00,2025-07-01T00:00:00 +PER-0148,Rahul Singh,rahul.singh70@yahoo.com,+91-71772-37720,https://linkedin.com/in/rahul-singh-988,"[""price_sensitive_aspirational""]",0.76,2026-02-15T00:00:00,2025-12-01T00:00:00 +PER-0149,Vivek Sharma,vivek.sharma76@gmail.com,+91-84763-26478,https://linkedin.com/in/vivek-sharma-749,"[""broker_referral_chain""]",0.85,2025-08-15T00:00:00,2024-04-09T00:00:00 +PER-0150,Moumita Gupta,moumita.gupta94@rediffmail.com,+91-90778-47125,https://linkedin.com/in/moumita-gupta-818,"[""family_decision_unit""]",0.89,2024-04-11T00:00:00,2024-03-30T00:00:00 +PER-0150-CO,Vivek Sen,vivek.sen73@hotmail.com,+91-87849-23068,,"[""co_buyer""]",0.85,2025-10-10T00:00:00,2026-04-18T00:00:00 +PER-0151,Rahul Nair,rahul.nair86@outlook.com,+91-80980-32336,https://linkedin.com/in/rahul-nair-685,"[""high_intent_buyer""]",0.98,2024-09-04T00:00:00,2025-07-23T00:00:00 +PER-0151-CO,Moumita Ghosh,moumita.ghosh61@outlook.com,+91-86950-30767,,"[""co_buyer""]",0.85,2025-03-23T00:00:00,2026-04-18T00:00:00 +PER-0152,Swati Patel,swati.patel93@yahoo.com,+91-79729-35405,https://linkedin.com/in/swati-patel-648,"[""family_decision_unit""]",0.94,2026-01-13T00:00:00,2026-03-09T00:00:00 +PER-0152-CO,Aditya Das,aditya.das90@gmail.com,+91-90918-85937,,"[""co_buyer""]",0.85,2024-04-15T00:00:00,2026-04-18T00:00:00 +PER-0153,Nilesh Saha,nilesh.saha14@gmail.com,+91-81233-55453,https://linkedin.com/in/nilesh-saha-595,"[""slow_burn_investor""]",0.98,2025-09-06T00:00:00,2025-07-13T00:00:00 +PER-0154,Moumita Banerjee,moumita.banerjee24@yahoo.com,+91-96510-52294,https://linkedin.com/in/moumita-banerjee-539,"[""price_sensitive_aspirational""]",0.93,2025-01-01T00:00:00,2024-09-08T00:00:00 +PER-0154-CO,Nilesh Agarwal,nilesh.agarwal39@hotmail.com,+91-72170-60540,,"[""co_buyer""]",0.85,2024-10-17T00:00:00,2026-04-18T00:00:00 +PER-0155,Priya Pillai,priya.pillai77@gmail.com,+91-81055-94512,https://linkedin.com/in/priya-pillai-116,"[""price_sensitive_aspirational""]",0.77,2024-04-07T00:00:00,2026-04-01T00:00:00 +PER-0155-CO,Prasenjit Kumar,prasenjit.kumar73@gmail.com,+91-97625-59008,,"[""co_buyer""]",0.85,2025-09-24T00:00:00,2026-04-18T00:00:00 +PER-0156,Raj Agarwal,raj.agarwal28@hotmail.com,+91-99091-64171,https://linkedin.com/in/raj-agarwal-752,"[""family_decision_unit""]",0.85,2024-05-05T00:00:00,2025-06-18T00:00:00 +PER-0157,Raj Kumar,raj.kumar23@gmail.com,+91-77882-12174,https://linkedin.com/in/raj-kumar-571,"[""slow_burn_investor""]",0.79,2024-01-30T00:00:00,2025-05-02T00:00:00 +PER-0158,Deb Sen,deb.sen16@gmail.com,+91-88849-44888,https://linkedin.com/in/deb-sen-344,"[""slow_burn_investor""]",0.77,2024-04-13T00:00:00,2024-10-09T00:00:00 +PER-0159,Sourav Chatterjee,sourav.chatterjee31@gmail.com,+91-89464-56156,https://linkedin.com/in/sourav-chatterjee-585,"[""slow_burn_investor""]",0.88,2025-05-15T00:00:00,2024-09-10T00:00:00 +PER-0160,Rahul Reddy,rahul.reddy13@yahoo.com,+91-88926-66455,https://linkedin.com/in/rahul-reddy-468,"[""family_decision_unit""]",0.8,2024-04-01T00:00:00,2024-07-17T00:00:00 +PER-0161,Rohan Reddy,rohan.reddy49@gmail.com,+91-84100-56170,https://linkedin.com/in/rohan-reddy-776,"[""slow_burn_investor""]",0.94,2024-02-21T00:00:00,2024-09-14T00:00:00 +PER-0162,Sonal Nair,sonal.nair97@outlook.com,+91-85347-56424,https://linkedin.com/in/sonal-nair-537,"[""high_intent_buyer""]",0.86,2025-02-24T00:00:00,2025-04-17T00:00:00 +PER-0163,Aditya Banerjee,aditya.banerjee29@hotmail.com,+91-98832-25864,https://linkedin.com/in/aditya-banerjee-632,"[""family_decision_unit""]",0.77,2024-07-28T00:00:00,2024-04-16T00:00:00 +PER-0164,Debjani Kumar,debjani.kumar68@outlook.com,+91-70298-30750,https://linkedin.com/in/debjani-kumar-466,"[""broker_referral_chain""]",0.87,2025-05-30T00:00:00,2024-08-03T00:00:00 +PER-0165,Sneha Mukherjee,sneha.mukherjee19@rediffmail.com,+91-95013-59063,https://linkedin.com/in/sneha-mukherjee-721,"[""high_intent_buyer""]",0.9,2024-01-31T00:00:00,2024-06-27T00:00:00 +PER-0165-CO,Deb Roy,deb.roy30@rediffmail.com,+91-96667-79275,,"[""co_buyer""]",0.85,2026-03-19T00:00:00,2026-04-18T00:00:00 +PER-0166,Aditya Kumar,aditya.kumar64@rediffmail.com,+91-98638-19288,https://linkedin.com/in/aditya-kumar-682,"[""broker_referral_chain""]",0.77,2026-03-12T00:00:00,2025-06-13T00:00:00 +PER-0167,Raj Roy,raj.roy80@outlook.com,+91-94816-96944,https://linkedin.com/in/raj-roy-999,"[""broker_referral_chain""]",0.76,2025-05-20T00:00:00,2024-03-15T00:00:00 +PER-0168,Arjun Mukherjee,arjun.mukherjee13@yahoo.com,+91-87504-89709,https://linkedin.com/in/arjun-mukherjee-980,"[""price_sensitive_aspirational""]",0.84,2025-12-01T00:00:00,2026-01-25T00:00:00 +PER-0168-CO,Sneha Saha,sneha.saha57@outlook.com,+91-76345-54974,,"[""co_buyer""]",0.85,2025-03-23T00:00:00,2026-04-18T00:00:00 +PER-0169,Prasenjit Das,prasenjit.das87@rediffmail.com,+91-85686-96190,https://linkedin.com/in/prasenjit-das-225,"[""family_decision_unit""]",0.9,2024-03-19T00:00:00,2024-09-13T00:00:00 +PER-0170,Sanjay Verma,sanjay.verma66@gmail.com,+91-77354-36965,https://linkedin.com/in/sanjay-verma-488,"[""nri_buyer""]",0.79,2025-03-17T00:00:00,2025-06-29T00:00:00 +PER-0171,Sonal Bose,sonal.bose60@gmail.com,+91-90170-45949,https://linkedin.com/in/sonal-bose-470,"[""repeat_visitor""]",0.81,2024-09-13T00:00:00,2026-03-12T00:00:00 +PER-0172,Raj Saha,raj.saha93@gmail.com,+91-77624-25000,https://linkedin.com/in/raj-saha-770,"[""high_intent_buyer""]",0.76,2025-12-01T00:00:00,2025-06-02T00:00:00 +PER-0173,Nilesh Banerjee,nilesh.banerjee23@hotmail.com,+91-76929-51039,https://linkedin.com/in/nilesh-banerjee-623,"[""high_intent_buyer""]",0.91,2026-01-29T00:00:00,2025-06-04T00:00:00 +PER-0174,Deb Kumar,deb.kumar62@outlook.com,+91-72611-56135,https://linkedin.com/in/deb-kumar-673,"[""price_sensitive_aspirational""]",0.87,2025-01-05T00:00:00,2025-10-31T00:00:00 +PER-0175,Prasenjit Sen,prasenjit.sen53@outlook.com,+91-89381-89791,https://linkedin.com/in/prasenjit-sen-731,"[""nri_buyer""]",0.77,2026-01-09T00:00:00,2024-02-16T00:00:00 +PER-0176,Neha Reddy,neha.reddy66@yahoo.com,+91-99011-32193,https://linkedin.com/in/neha-reddy-395,"[""high_intent_buyer""]",0.97,2024-09-22T00:00:00,2025-09-12T00:00:00 +PER-0177,Neha Kumar,neha.kumar90@hotmail.com,+91-92022-19710,https://linkedin.com/in/neha-kumar-823,"[""high_intent_buyer""]",0.91,2024-02-09T00:00:00,2025-03-19T00:00:00 +PER-0178,Meera Patel,meera.patel91@outlook.com,+91-85867-79528,https://linkedin.com/in/meera-patel-772,"[""slow_burn_investor""]",0.97,2024-11-03T00:00:00,2024-08-25T00:00:00 +PER-0179,Tanvi Patel,tanvi.patel53@gmail.com,+91-80109-68672,https://linkedin.com/in/tanvi-patel-519,"[""broker_referral_chain""]",0.8,2024-06-19T00:00:00,2025-07-02T00:00:00 +PER-0180,Rohan Sharma,rohan.sharma25@rediffmail.com,+91-91472-62527,https://linkedin.com/in/rohan-sharma-234,"[""slow_burn_investor""]",0.94,2024-10-03T00:00:00,2024-03-27T00:00:00 +PER-0181,Sanjay Saha,sanjay.saha70@hotmail.com,+91-93692-84270,https://linkedin.com/in/sanjay-saha-878,"[""slow_burn_investor""]",0.8,2026-02-24T00:00:00,2025-05-20T00:00:00 +PER-0182,Neha Nair,neha.nair51@hotmail.com,+91-99148-58710,https://linkedin.com/in/neha-nair-677,"[""nri_buyer""]",0.9,2024-05-24T00:00:00,2024-10-24T00:00:00 +PER-0183,Rahul Banerjee,rahul.banerjee34@outlook.com,+91-79312-65858,https://linkedin.com/in/rahul-banerjee-698,"[""slow_burn_investor""]",0.92,2025-01-11T00:00:00,2025-10-01T00:00:00 +PER-0184,Deb Pillai,deb.pillai60@rediffmail.com,+91-95359-60532,https://linkedin.com/in/deb-pillai-823,"[""slow_burn_investor""]",0.86,2024-11-15T00:00:00,2025-06-18T00:00:00 +PER-0184-CO,Neha Sen,neha.sen81@rediffmail.com,+91-91367-55636,,"[""co_buyer""]",0.85,2024-07-01T00:00:00,2026-04-18T00:00:00 +PER-0185,Abhishek Saha,abhishek.saha90@rediffmail.com,+91-86066-32776,https://linkedin.com/in/abhishek-saha-584,"[""high_intent_buyer""]",0.92,2025-10-25T00:00:00,2026-02-07T00:00:00 +PER-0185-CO,Sneha Mukherjee,sneha.mukherjee66@gmail.com,+91-80296-22776,,"[""co_buyer""]",0.85,2025-07-11T00:00:00,2026-04-18T00:00:00 +PER-0186,Meera Banerjee,meera.banerjee31@gmail.com,+91-77127-93616,https://linkedin.com/in/meera-banerjee-483,"[""high_intent_buyer""]",0.86,2026-01-11T00:00:00,2024-09-09T00:00:00 +PER-0186-CO,Deb Roy,deb.roy44@yahoo.com,+91-75803-48657,,"[""co_buyer""]",0.85,2024-09-22T00:00:00,2026-04-18T00:00:00 +PER-0187,Meera Bose,meera.bose98@rediffmail.com,+91-93951-62341,https://linkedin.com/in/meera-bose-584,"[""price_sensitive_aspirational""]",0.94,2024-09-15T00:00:00,2026-01-10T00:00:00 +PER-0188,Raj Pillai,raj.pillai57@gmail.com,+91-85641-30883,https://linkedin.com/in/raj-pillai-452,"[""nri_buyer""]",0.77,2025-07-17T00:00:00,2025-12-04T00:00:00 +PER-0188-CO,Debjani Verma,debjani.verma51@outlook.com,+91-96862-98440,,"[""co_buyer""]",0.85,2026-01-17T00:00:00,2026-04-18T00:00:00 +PER-0189,Kunal Chatterjee,kunal.chatterjee54@gmail.com,+91-91491-63015,https://linkedin.com/in/kunal-chatterjee-922,"[""nri_buyer""]",0.94,2024-06-13T00:00:00,2024-11-22T00:00:00 +PER-0190,Shreya Jain,shreya.jain16@hotmail.com,+91-92491-58404,https://linkedin.com/in/shreya-jain-358,"[""high_intent_buyer""]",0.85,2025-11-22T00:00:00,2024-10-30T00:00:00 +PER-0190-CO,Arjun Kumar,arjun.kumar51@outlook.com,+91-90839-14668,,"[""co_buyer""]",0.85,2025-09-02T00:00:00,2026-04-18T00:00:00 +PER-0191,Rohan Jain,rohan.jain83@rediffmail.com,+91-77051-67271,https://linkedin.com/in/rohan-jain-381,"[""family_decision_unit""]",0.92,2026-03-07T00:00:00,2024-07-09T00:00:00 +PER-0191-CO,Kavita Das,kavita.das45@outlook.com,+91-85153-88522,,"[""co_buyer""]",0.85,2026-03-20T00:00:00,2026-04-18T00:00:00 +PER-0192,Asha Reddy,asha.reddy40@rediffmail.com,+91-87615-27261,https://linkedin.com/in/asha-reddy-487,"[""price_sensitive_aspirational""]",0.89,2024-05-06T00:00:00,2024-04-09T00:00:00 +PER-0193,Nilesh Reddy,nilesh.reddy97@gmail.com,+91-82133-12977,https://linkedin.com/in/nilesh-reddy-860,"[""family_decision_unit""]",0.89,2026-03-19T00:00:00,2025-10-31T00:00:00 +PER-0194,Debjani Patel,debjani.patel71@yahoo.com,+91-78667-22730,https://linkedin.com/in/debjani-patel-437,"[""nri_buyer""]",0.9,2024-03-16T00:00:00,2025-04-14T00:00:00 +PER-0195,Nilesh Banerjee,nilesh.banerjee43@outlook.com,+91-93630-76662,https://linkedin.com/in/nilesh-banerjee-863,"[""family_decision_unit""]",0.95,2025-06-13T00:00:00,2025-02-19T00:00:00 +PER-0195-CO,Tanvi Ghosh,tanvi.ghosh77@rediffmail.com,+91-75747-73438,,"[""co_buyer""]",0.85,2025-01-23T00:00:00,2026-04-18T00:00:00 +PER-0196,Nilesh Bose,nilesh.bose71@rediffmail.com,+91-73220-80376,https://linkedin.com/in/nilesh-bose-900,"[""slow_burn_investor""]",0.76,2026-03-19T00:00:00,2025-10-11T00:00:00 +PER-0196-CO,Ananya Bose,ananya.bose65@gmail.com,+91-93592-68017,,"[""co_buyer""]",0.85,2026-03-07T00:00:00,2026-04-18T00:00:00 +PER-0197,Vivek Gupta,vivek.gupta22@rediffmail.com,+91-81220-93608,https://linkedin.com/in/vivek-gupta-803,"[""high_intent_buyer""]",0.87,2024-07-06T00:00:00,2024-07-17T00:00:00 +PER-0198,Trisha Agarwal,trisha.agarwal67@outlook.com,+91-83936-83831,https://linkedin.com/in/trisha-agarwal-502,"[""high_intent_buyer""]",0.93,2024-01-06T00:00:00,2026-02-19T00:00:00 +PER-0199,Ritu Sharma,ritu.sharma87@hotmail.com,+91-82288-17774,https://linkedin.com/in/ritu-sharma-203,"[""repeat_visitor""]",0.76,2024-12-16T00:00:00,2024-10-09T00:00:00 +PER-0199-CO,Nilesh Roy,nilesh.roy81@gmail.com,+91-84360-42142,,"[""co_buyer""]",0.85,2024-12-01T00:00:00,2026-04-18T00:00:00 +PER-0200,Raj Sen,raj.sen92@rediffmail.com,+91-84002-61944,https://linkedin.com/in/raj-sen-925,"[""price_sensitive_aspirational""]",0.86,2024-02-19T00:00:00,2025-06-25T00:00:00 +PER-0201,Anirban Das,anirban.das36@outlook.com,+91-75950-23224,https://linkedin.com/in/anirban-das-126,"[""broker_referral_chain""]",0.87,2024-02-10T00:00:00,2026-03-09T00:00:00 +PER-0202,Vidya Sen,vidya.sen68@gmail.com,+91-70237-59811,https://linkedin.com/in/vidya-sen-922,"[""slow_burn_investor""]",0.85,2024-04-12T00:00:00,2024-12-29T00:00:00 +PER-0203,Priya Das,priya.das62@gmail.com,+91-87677-59418,https://linkedin.com/in/priya-das-880,"[""high_intent_buyer""]",0.89,2025-06-21T00:00:00,2024-06-22T00:00:00 +PER-0204,Shreya Bose,shreya.bose76@hotmail.com,+91-88912-44960,https://linkedin.com/in/shreya-bose-878,"[""family_decision_unit""]",0.96,2024-12-01T00:00:00,2025-03-08T00:00:00 +PER-0204-CO,Rohan Patel,rohan.patel30@rediffmail.com,+91-80568-11535,,"[""co_buyer""]",0.85,2025-08-08T00:00:00,2026-04-18T00:00:00 +PER-0205,Vidya Saha,vidya.saha29@hotmail.com,+91-98178-79541,https://linkedin.com/in/vidya-saha-637,"[""price_sensitive_aspirational""]",0.76,2025-06-29T00:00:00,2025-01-06T00:00:00 +PER-0205-CO,Parth Singh,parth.singh35@outlook.com,+91-71602-62543,,"[""co_buyer""]",0.85,2024-10-30T00:00:00,2026-04-18T00:00:00 +PER-0206,Sonal Banerjee,sonal.banerjee91@gmail.com,+91-87059-50784,https://linkedin.com/in/sonal-banerjee-636,"[""nri_buyer""]",0.77,2025-10-05T00:00:00,2025-09-04T00:00:00 +PER-0207,Sneha Reddy,sneha.reddy81@hotmail.com,+91-97440-84136,https://linkedin.com/in/sneha-reddy-484,"[""family_decision_unit""]",0.89,2025-11-14T00:00:00,2025-01-26T00:00:00 +PER-0208,Amit Jain,amit.jain88@hotmail.com,+91-94243-39828,https://linkedin.com/in/amit-jain-424,"[""price_sensitive_aspirational""]",0.94,2024-04-13T00:00:00,2026-01-09T00:00:00 +PER-0209,Moumita Das,moumita.das59@gmail.com,+91-97689-48523,https://linkedin.com/in/moumita-das-728,"[""slow_burn_investor""]",0.88,2024-03-25T00:00:00,2024-11-27T00:00:00 +PER-0210,Neha Jain,neha.jain43@rediffmail.com,+91-82131-57777,https://linkedin.com/in/neha-jain-340,"[""family_decision_unit""]",0.82,2024-12-31T00:00:00,2024-03-19T00:00:00 +PER-0210-CO,Manish Bose,manish.bose26@gmail.com,+91-95697-76512,,"[""co_buyer""]",0.85,2025-12-26T00:00:00,2026-04-18T00:00:00 +PER-0211,Meera Sharma,meera.sharma13@hotmail.com,+91-86082-66469,https://linkedin.com/in/meera-sharma-821,"[""repeat_visitor""]",0.93,2024-05-16T00:00:00,2025-02-09T00:00:00 +PER-0212,Swati Sen,swati.sen49@outlook.com,+91-75813-66408,https://linkedin.com/in/swati-sen-358,"[""nri_buyer""]",0.86,2024-07-07T00:00:00,2024-09-23T00:00:00 +PER-0213,Prasenjit Gupta,prasenjit.gupta23@outlook.com,+91-92381-33647,https://linkedin.com/in/prasenjit-gupta-704,"[""high_intent_buyer""]",0.87,2024-04-12T00:00:00,2025-05-24T00:00:00 +PER-0214,Abhishek Sen,abhishek.sen51@hotmail.com,+91-85863-89909,https://linkedin.com/in/abhishek-sen-498,"[""high_intent_buyer""]",0.82,2026-03-16T00:00:00,2026-02-28T00:00:00 +PER-0215,Swati Verma,swati.verma39@outlook.com,+91-97452-62685,https://linkedin.com/in/swati-verma-145,"[""family_decision_unit""]",0.79,2025-09-05T00:00:00,2024-09-09T00:00:00 +PER-0215-CO,Prasenjit Roy,prasenjit.roy93@outlook.com,+91-83408-11340,,"[""co_buyer""]",0.85,2025-03-01T00:00:00,2026-04-18T00:00:00 +PER-0216,Aditya Pillai,aditya.pillai73@yahoo.com,+91-74165-77924,https://linkedin.com/in/aditya-pillai-136,"[""price_sensitive_aspirational""]",0.86,2024-04-21T00:00:00,2024-04-24T00:00:00 +PER-0217,Raj Pillai,raj.pillai50@gmail.com,+91-73649-99753,https://linkedin.com/in/raj-pillai-166,"[""family_decision_unit""]",0.84,2025-07-01T00:00:00,2024-01-18T00:00:00 +PER-0217-CO,Debjani Sen,debjani.sen97@yahoo.com,+91-70193-59966,,"[""co_buyer""]",0.85,2024-01-04T00:00:00,2026-04-18T00:00:00 +PER-0218,Sanjay Das,sanjay.das90@outlook.com,+91-76819-63188,https://linkedin.com/in/sanjay-das-531,"[""price_sensitive_aspirational""]",0.95,2025-04-16T00:00:00,2026-01-21T00:00:00 +PER-0219,Vikram Chatterjee,vikram.chatterjee20@gmail.com,+91-70284-16914,https://linkedin.com/in/vikram-chatterjee-439,"[""family_decision_unit""]",0.95,2024-11-16T00:00:00,2024-12-31T00:00:00 +PER-0219-CO,Swati Gupta,swati.gupta48@gmail.com,+91-96290-83647,,"[""co_buyer""]",0.85,2024-06-12T00:00:00,2026-04-18T00:00:00 +PER-0220,Amit Gupta,amit.gupta20@outlook.com,+91-89752-74847,https://linkedin.com/in/amit-gupta-116,"[""repeat_visitor""]",0.89,2025-08-27T00:00:00,2025-03-03T00:00:00 +PER-0221,Riya Agarwal,riya.agarwal75@gmail.com,+91-70753-26846,https://linkedin.com/in/riya-agarwal-925,"[""slow_burn_investor""]",0.93,2024-09-05T00:00:00,2024-03-17T00:00:00 +PER-0222,Arjun Singh,arjun.singh97@yahoo.com,+91-76888-16553,https://linkedin.com/in/arjun-singh-834,"[""high_intent_buyer""]",0.77,2024-11-24T00:00:00,2025-10-02T00:00:00 +PER-0222-CO,Priya Kumar,priya.kumar33@hotmail.com,+91-70206-20427,,"[""co_buyer""]",0.85,2024-06-29T00:00:00,2026-04-18T00:00:00 +PER-0223,Ananya Chatterjee,ananya.chatterjee50@hotmail.com,+91-95276-57379,https://linkedin.com/in/ananya-chatterjee-814,"[""price_sensitive_aspirational""]",0.91,2025-11-25T00:00:00,2024-03-08T00:00:00 +PER-0224,Ritu Roy,ritu.roy72@hotmail.com,+91-93715-75422,https://linkedin.com/in/ritu-roy-543,"[""high_intent_buyer""]",0.85,2024-06-12T00:00:00,2025-05-14T00:00:00 +PER-0225,Pallavi Das,pallavi.das51@hotmail.com,+91-99864-40005,https://linkedin.com/in/pallavi-das-825,"[""family_decision_unit""]",0.89,2024-08-30T00:00:00,2026-04-12T00:00:00 +PER-0226,Deepak Nair,deepak.nair46@yahoo.com,+91-95909-59284,https://linkedin.com/in/deepak-nair-533,"[""price_sensitive_aspirational""]",0.91,2024-01-12T00:00:00,2024-11-01T00:00:00 +PER-0227,Deepak Ghosh,deepak.ghosh40@gmail.com,+91-94728-57227,https://linkedin.com/in/deepak-ghosh-465,"[""high_intent_buyer""]",0.83,2025-02-26T00:00:00,2024-12-17T00:00:00 +PER-0228,Deb Das,deb.das27@hotmail.com,+91-80468-52329,https://linkedin.com/in/deb-das-496,"[""high_intent_buyer""]",0.92,2025-11-17T00:00:00,2025-02-09T00:00:00 +PER-0228-CO,Meera Reddy,meera.reddy10@outlook.com,+91-92997-20567,,"[""co_buyer""]",0.85,2025-08-18T00:00:00,2026-04-18T00:00:00 +PER-0229,Anirban Roy,anirban.roy82@outlook.com,+91-97293-98369,https://linkedin.com/in/anirban-roy-319,"[""high_intent_buyer""]",0.95,2024-11-06T00:00:00,2025-01-04T00:00:00 +PER-0229-CO,Moumita Agarwal,moumita.agarwal68@rediffmail.com,+91-89720-31660,,"[""co_buyer""]",0.85,2025-05-18T00:00:00,2026-04-18T00:00:00 +PER-0230,Prasenjit Das,prasenjit.das43@rediffmail.com,+91-99077-36825,https://linkedin.com/in/prasenjit-das-223,"[""price_sensitive_aspirational""]",0.96,2026-02-01T00:00:00,2025-11-29T00:00:00 +PER-0231,Asha Reddy,asha.reddy39@gmail.com,+91-79388-57714,https://linkedin.com/in/asha-reddy-190,"[""high_intent_buyer""]",0.89,2025-04-12T00:00:00,2025-04-28T00:00:00 +PER-0232,Deb Agarwal,deb.agarwal72@gmail.com,+91-80665-58932,https://linkedin.com/in/deb-agarwal-661,"[""repeat_visitor""]",0.97,2025-06-19T00:00:00,2025-11-03T00:00:00 +PER-0232-CO,Sneha Patel,sneha.patel91@rediffmail.com,+91-75102-34684,,"[""co_buyer""]",0.85,2026-01-03T00:00:00,2026-04-18T00:00:00 +PER-0233,Ananya Saha,ananya.saha48@outlook.com,+91-82705-59140,https://linkedin.com/in/ananya-saha-313,"[""repeat_visitor""]",0.82,2025-09-26T00:00:00,2025-08-26T00:00:00 +PER-0234,Ritu Saha,ritu.saha70@gmail.com,+91-80579-50607,https://linkedin.com/in/ritu-saha-665,"[""slow_burn_investor""]",0.93,2025-04-07T00:00:00,2024-08-09T00:00:00 +PER-0235,Asha Sen,asha.sen63@rediffmail.com,+91-71098-46556,https://linkedin.com/in/asha-sen-546,"[""nri_buyer""]",0.88,2025-03-08T00:00:00,2024-03-09T00:00:00 +PER-0236,Meera Nair,meera.nair11@outlook.com,+91-98848-27964,https://linkedin.com/in/meera-nair-427,"[""family_decision_unit""]",0.96,2025-05-06T00:00:00,2026-03-31T00:00:00 +PER-0236-CO,Aditya Das,aditya.das95@yahoo.com,+91-98109-76829,,"[""co_buyer""]",0.85,2024-05-28T00:00:00,2026-04-18T00:00:00 +PER-0237,Deb Saha,deb.saha76@outlook.com,+91-86290-19837,https://linkedin.com/in/deb-saha-543,"[""broker_referral_chain""]",0.89,2025-03-03T00:00:00,2024-03-08T00:00:00 +PER-0238,Parth Das,parth.das98@outlook.com,+91-76224-99912,https://linkedin.com/in/parth-das-470,"[""nri_buyer""]",0.91,2025-07-20T00:00:00,2024-11-24T00:00:00 +PER-0239,Tanvi Saha,tanvi.saha23@rediffmail.com,+91-84325-60709,https://linkedin.com/in/tanvi-saha-420,"[""high_intent_buyer""]",0.78,2024-07-04T00:00:00,2024-05-05T00:00:00 +PER-0240,Tanvi Sen,tanvi.sen22@yahoo.com,+91-97701-63267,https://linkedin.com/in/tanvi-sen-326,"[""price_sensitive_aspirational""]",0.81,2025-09-16T00:00:00,2024-06-18T00:00:00 +PER-0241,Abhishek Singh,abhishek.singh77@outlook.com,+91-80553-12715,https://linkedin.com/in/abhishek-singh-611,"[""price_sensitive_aspirational""]",0.87,2025-02-01T00:00:00,2025-03-28T00:00:00 +PER-0242,Moumita Banerjee,moumita.banerjee72@rediffmail.com,+91-93729-68369,https://linkedin.com/in/moumita-banerjee-534,"[""family_decision_unit""]",0.77,2024-09-18T00:00:00,2024-12-22T00:00:00 +PER-0242-CO,Deb Chatterjee,deb.chatterjee30@gmail.com,+91-90167-82459,,"[""co_buyer""]",0.85,2024-02-21T00:00:00,2026-04-18T00:00:00 +PER-0243,Aditya Sen,aditya.sen44@yahoo.com,+91-87496-26270,https://linkedin.com/in/aditya-sen-897,"[""family_decision_unit""]",0.86,2026-02-18T00:00:00,2025-01-12T00:00:00 +PER-0243-CO,Ananya Agarwal,ananya.agarwal31@outlook.com,+91-86818-12715,,"[""co_buyer""]",0.85,2025-05-27T00:00:00,2026-04-18T00:00:00 +PER-0244,Moumita Verma,moumita.verma48@outlook.com,+91-70782-51228,https://linkedin.com/in/moumita-verma-598,"[""family_decision_unit""]",0.8,2024-01-17T00:00:00,2024-08-08T00:00:00 +PER-0244-CO,Deb Kumar,deb.kumar42@rediffmail.com,+91-83082-71125,,"[""co_buyer""]",0.85,2025-12-30T00:00:00,2026-04-18T00:00:00 +PER-0245,Ananya Kumar,ananya.kumar61@outlook.com,+91-96165-90337,https://linkedin.com/in/ananya-kumar-571,"[""slow_burn_investor""]",0.83,2024-11-30T00:00:00,2024-10-18T00:00:00 +PER-0246,Abhishek Sen,abhishek.sen20@rediffmail.com,+91-96597-54923,https://linkedin.com/in/abhishek-sen-731,"[""broker_referral_chain""]",0.92,2025-01-16T00:00:00,2025-04-25T00:00:00 +PER-0246-CO,Debjani Bose,debjani.bose76@outlook.com,+91-96417-87837,,"[""co_buyer""]",0.85,2026-03-07T00:00:00,2026-04-18T00:00:00 +PER-0247,Debjani Singh,debjani.singh70@gmail.com,+91-80937-58546,https://linkedin.com/in/debjani-singh-221,"[""nri_buyer""]",0.82,2025-05-13T00:00:00,2025-05-18T00:00:00 +PER-0248,Sneha Mukherjee,sneha.mukherjee84@gmail.com,+91-71294-90525,https://linkedin.com/in/sneha-mukherjee-100,"[""broker_referral_chain""]",0.94,2024-07-15T00:00:00,2026-03-19T00:00:00 +PER-0249,Raj Mukherjee,raj.mukherjee20@gmail.com,+91-89257-25429,https://linkedin.com/in/raj-mukherjee-251,"[""slow_burn_investor""]",0.77,2025-04-04T00:00:00,2024-05-09T00:00:00 +PER-0249-CO,Asha Bose,asha.bose48@yahoo.com,+91-99346-72026,,"[""co_buyer""]",0.85,2025-11-02T00:00:00,2026-04-18T00:00:00 +PER-0250,Pallavi Ghosh,pallavi.ghosh63@gmail.com,+91-95259-11209,https://linkedin.com/in/pallavi-ghosh-746,"[""family_decision_unit""]",0.83,2024-12-17T00:00:00,2026-03-30T00:00:00 +PER-0250-CO,Deepak Roy,deepak.roy37@yahoo.com,+91-80895-99175,,"[""co_buyer""]",0.85,2025-11-05T00:00:00,2026-04-18T00:00:00 diff --git a/db assets/synthetic_crm_v1/csv/crm_property_interests.csv b/db assets/synthetic_crm_v1/csv/crm_property_interests.csv new file mode 100644 index 00000000..5d64d737 --- /dev/null +++ b/db assets/synthetic_crm_v1/csv/crm_property_interests.csv @@ -0,0 +1,401 @@ +interest_id,person_id,project_id,unit_id,interest_level,configuration_preference,budget_min,budget_max,timeline,financing_plan,notes +INT-1-1,PER-0001,PRJ-004,PRJ-004-U019,high,Penthouse,17.82,26.74,6_months,cash,Comparing with competitor projects +INT-1-2,PER-0001,PRJ-011,PRJ-011-U010,medium,4 BHK,4.94,7.42,6_months,cash,Prefers higher floor +INT-1-3,PER-0001,PRJ-012,PRJ-012-U001,very_high,4 BHK,16.18,24.28,3_months,home_loan,Comparing with competitor projects +INT-2-1,PER-0002,PRJ-002,PRJ-002-U019,very_high,2 BHK,8.37,12.55,3_months,undecided,Prefers higher floor +INT-2-2,PER-0002,PRJ-004,PRJ-004-U020,high,5 BHK,15.1,22.66,3_months,cash,Waiting for festive season offer +INT-3-1,PER-0003,PRJ-004,PRJ-004-U004,high,3 BHK,17.64,26.46,flexible,undecided,Comparing with competitor projects +INT-3-2,PER-0003,PRJ-013,PRJ-013-U015,very_high,4 BHK,21.26,31.88,6_months,cash,Comparing with competitor projects +INT-4-1,PER-0004,PRJ-014,PRJ-014-U006,medium,Penthouse,46.74,70.12,flexible,home_loan,Waiting for festive season offer +INT-4-2,PER-0004,PRJ-004,PRJ-004-U020,very_high,5 BHK,15.1,22.66,flexible,home_loan,Needs proximity to school +INT-4-3,PER-0004,PRJ-008,PRJ-008-U007,very_high,2 BHK,19.2,28.8,immediate,home_loan,Needs proximity to school +INT-5-1,PER-0005,PRJ-012,PRJ-012-U004,very_high,Villa,8.72,13.08,3_months,home_loan,Prefers higher floor +INT-6-1,PER-0006,PRJ-012,PRJ-012-U007,low,Duplex,2.16,3.24,3_months,home_loan,Waiting for festive season offer +INT-6-2,PER-0006,PRJ-002,PRJ-002-U015,medium,Villa,3.56,5.34,6_months,combined,Wants ready to move in +INT-7-1,PER-0007,PRJ-011,PRJ-011-U007,very_high,Duplex,26.32,39.48,flexible,home_loan,Waiting for festive season offer +INT-7-2,PER-0007,PRJ-013,PRJ-013-U007,medium,5 BHK,31.08,46.62,immediate,cash,Looking for east facing unit +INT-7-3,PER-0007,PRJ-014,PRJ-014-U001,medium,5 BHK,58.7,88.06,immediate,home_loan,Comparing with competitor projects +INT-8-1,PER-0008,PRJ-011,PRJ-011-U007,medium,Duplex,26.32,39.48,flexible,combined,Looking for east facing unit +INT-8-2,PER-0008,PRJ-002,PRJ-002-U014,low,Penthouse,6.22,9.32,3_months,combined,Looking for east facing unit +INT-9-1,PER-0009,PRJ-013,PRJ-013-U007,medium,5 BHK,31.08,46.62,6_months,undecided,Wants ready to move in +INT-9-2,PER-0009,PRJ-003,PRJ-003-U010,low,4 BHK,12.46,18.68,immediate,combined,Needs proximity to school +INT-10-1,PER-0010,PRJ-005,PRJ-005-U009,medium,Villa,1.91,2.87,flexible,home_loan,Needs proximity to school +INT-11-1,PER-0011,PRJ-008,PRJ-008-U018,very_high,2 BHK,41.19,61.79,3_months,combined,Needs proximity to school +INT-12-1,PER-0012,PRJ-002,PRJ-002-U001,medium,Villa,2.37,3.55,flexible,combined,Wants ready to move in +INT-12-2,PER-0012,PRJ-008,PRJ-008-U018,low,2 BHK,41.19,61.79,6_months,undecided,Looking for east facing unit +INT-13-1,PER-0013,PRJ-004,PRJ-004-U008,high,Villa,25.58,38.38,6_months,home_loan,Wants ready to move in +INT-14-1,PER-0014,PRJ-008,PRJ-008-U014,medium,Duplex,4.19,6.29,3_months,combined,Wants ready to move in +INT-15-1,PER-0015,PRJ-003,PRJ-003-U003,high,Duplex,16.61,24.91,6_months,home_loan,Prefers higher floor +INT-15-2,PER-0015,PRJ-012,PRJ-012-U004,low,Villa,8.72,13.08,3_months,undecided,Looking for east facing unit +INT-16-1,PER-0016,PRJ-003,PRJ-003-U011,low,Duplex,3.09,4.63,flexible,cash,Looking for east facing unit +INT-16-2,PER-0016,PRJ-014,PRJ-014-U002,medium,Penthouse,19.58,29.36,6_months,home_loan,Prefers higher floor +INT-17-1,PER-0017,PRJ-010,PRJ-010-U004,medium,Penthouse,3.99,5.99,flexible,undecided,Needs proximity to school +INT-17-2,PER-0017,PRJ-002,PRJ-002-U019,very_high,2 BHK,8.37,12.55,6_months,undecided,Prefers higher floor +INT-18-1,PER-0018,PRJ-001,PRJ-001-U010,high,Penthouse,30.81,46.21,3_months,undecided,Looking for east facing unit +INT-18-2,PER-0018,PRJ-001,PRJ-001-U002,very_high,2 BHK,26.38,39.58,6_months,undecided,Wants ready to move in +INT-19-1,PER-0019,PRJ-003,PRJ-003-U011,high,Duplex,3.09,4.63,3_months,combined,Waiting for festive season offer +INT-20-1,PER-0020,PRJ-003,PRJ-003-U003,high,Duplex,16.61,24.91,3_months,undecided,Waiting for festive season offer +INT-20-2,PER-0020,PRJ-006,PRJ-006-U003,low,5 BHK,11.76,17.64,3_months,home_loan,Comparing with competitor projects +INT-21-1,PER-0021,PRJ-002,PRJ-002-U013,low,Duplex,1.87,2.81,flexible,home_loan,Needs proximity to school +INT-21-2,PER-0021,PRJ-005,PRJ-005-U008,high,3 BHK,3.1,4.66,6_months,undecided,Prefers higher floor +INT-21-3,PER-0021,PRJ-004,PRJ-004-U001,medium,5 BHK,4.96,7.44,immediate,home_loan,Wants ready to move in +INT-22-1,PER-0022,PRJ-005,PRJ-005-U005,very_high,3 BHK,15.42,23.12,3_months,cash,Prefers higher floor +INT-22-2,PER-0022,PRJ-002,PRJ-002-U001,very_high,Villa,2.37,3.55,flexible,cash,Wants ready to move in +INT-23-1,PER-0023,PRJ-006,PRJ-006-U001,medium,Penthouse,4.76,7.14,flexible,combined,Needs proximity to school +INT-23-2,PER-0023,PRJ-008,PRJ-008-U001,very_high,Villa,3.05,4.57,immediate,combined,Comparing with competitor projects +INT-23-3,PER-0023,PRJ-004,PRJ-004-U020,low,5 BHK,15.1,22.66,immediate,home_loan,Comparing with competitor projects +INT-24-1,PER-0024,PRJ-006,PRJ-006-U002,low,Duplex,19.22,28.82,6_months,home_loan,Needs proximity to school +INT-25-1,PER-0025,PRJ-003,PRJ-003-U001,high,Duplex,55.2,82.8,6_months,combined,Needs proximity to school +INT-25-2,PER-0025,PRJ-002,PRJ-002-U001,low,Villa,2.37,3.55,6_months,cash,Wants ready to move in +INT-26-1,PER-0026,PRJ-013,PRJ-013-U015,very_high,4 BHK,21.26,31.88,3_months,cash,Wants ready to move in +INT-27-1,PER-0027,PRJ-009,PRJ-009-U012,low,5 BHK,42.38,63.56,flexible,cash,Wants ready to move in +INT-27-2,PER-0027,PRJ-003,PRJ-003-U003,high,Duplex,16.61,24.91,6_months,undecided,Prefers higher floor +INT-28-1,PER-0028,PRJ-008,PRJ-008-U018,low,2 BHK,41.19,61.79,6_months,undecided,Needs proximity to school +INT-28-2,PER-0028,PRJ-013,PRJ-013-U013,medium,Penthouse,9.29,13.93,immediate,undecided,Looking for east facing unit +INT-28-3,PER-0028,PRJ-006,PRJ-006-U002,very_high,Duplex,19.22,28.82,immediate,cash,Needs proximity to school +INT-29-1,PER-0029,PRJ-004,PRJ-004-U010,low,Villa,1.62,2.42,immediate,combined,Comparing with competitor projects +INT-30-1,PER-0030,PRJ-002,PRJ-002-U011,high,Penthouse,3.1,4.64,immediate,home_loan,Prefers higher floor +INT-31-1,PER-0031,PRJ-006,PRJ-006-U005,very_high,Penthouse,29.69,44.53,6_months,home_loan,Prefers higher floor +INT-32-1,PER-0032,PRJ-013,PRJ-013-U005,medium,Villa,8.3,12.44,3_months,home_loan,Needs proximity to school +INT-33-1,PER-0033,PRJ-010,PRJ-010-U009,very_high,Duplex,7.46,11.18,6_months,home_loan,Looking for east facing unit +INT-34-1,PER-0034,PRJ-012,PRJ-012-U001,very_high,4 BHK,16.18,24.28,flexible,undecided,Prefers higher floor +INT-35-1,PER-0035,PRJ-009,PRJ-009-U009,very_high,2 BHK,4.26,6.38,flexible,undecided,Looking for east facing unit +INT-36-1,PER-0036,PRJ-004,PRJ-004-U001,high,5 BHK,4.96,7.44,immediate,cash,Needs proximity to school +INT-36-2,PER-0036,PRJ-008,PRJ-008-U003,low,Penthouse,6.7,10.04,flexible,home_loan,Wants ready to move in +INT-36-3,PER-0036,PRJ-014,PRJ-014-U002,low,Penthouse,19.58,29.36,flexible,undecided,Waiting for festive season offer +INT-37-1,PER-0037,PRJ-003,PRJ-003-U008,very_high,4 BHK,4.31,6.47,6_months,undecided,Looking for east facing unit +INT-37-2,PER-0037,PRJ-009,PRJ-009-U004,low,2 BHK,2.52,3.78,3_months,combined,Needs proximity to school +INT-37-3,PER-0037,PRJ-005,PRJ-005-U008,low,3 BHK,3.1,4.66,6_months,undecided,Looking for east facing unit +INT-38-1,PER-0038,PRJ-012,PRJ-012-U001,low,4 BHK,16.18,24.28,6_months,undecided,Comparing with competitor projects +INT-38-2,PER-0038,PRJ-009,PRJ-009-U011,medium,Duplex,1.76,2.64,3_months,cash,Comparing with competitor projects +INT-39-1,PER-0039,PRJ-001,PRJ-001-U010,high,Penthouse,30.81,46.21,6_months,cash,Comparing with competitor projects +INT-40-1,PER-0040,PRJ-014,PRJ-014-U001,high,5 BHK,58.7,88.06,immediate,combined,Wants ready to move in +INT-40-2,PER-0040,PRJ-007,PRJ-007-U012,medium,4 BHK,10.58,15.86,flexible,combined,Waiting for festive season offer +INT-40-3,PER-0040,PRJ-003,PRJ-003-U005,medium,Penthouse,18.86,28.3,immediate,cash,Looking for east facing unit +INT-41-1,PER-0041,PRJ-003,PRJ-003-U008,high,4 BHK,4.31,6.47,3_months,home_loan,Waiting for festive season offer +INT-41-2,PER-0041,PRJ-012,PRJ-012-U007,high,Duplex,2.16,3.24,flexible,undecided,Wants ready to move in +INT-42-1,PER-0042,PRJ-003,PRJ-003-U003,medium,Duplex,16.61,24.91,flexible,combined,Looking for east facing unit +INT-42-2,PER-0042,PRJ-004,PRJ-004-U020,medium,5 BHK,15.1,22.66,immediate,home_loan,Comparing with competitor projects +INT-42-3,PER-0042,PRJ-013,PRJ-013-U007,low,5 BHK,31.08,46.62,6_months,cash,Waiting for festive season offer +INT-43-1,PER-0043,PRJ-009,PRJ-009-U003,very_high,Villa,5.46,8.18,immediate,combined,Looking for east facing unit +INT-43-2,PER-0043,PRJ-004,PRJ-004-U010,very_high,Villa,1.62,2.42,3_months,home_loan,Comparing with competitor projects +INT-43-3,PER-0043,PRJ-011,PRJ-011-U010,low,4 BHK,4.94,7.42,3_months,undecided,Wants ready to move in +INT-44-1,PER-0044,PRJ-012,PRJ-012-U007,low,Duplex,2.16,3.24,flexible,home_loan,Waiting for festive season offer +INT-45-1,PER-0045,PRJ-008,PRJ-008-U018,high,2 BHK,41.19,61.79,immediate,home_loan,Wants ready to move in +INT-46-1,PER-0046,PRJ-004,PRJ-004-U017,high,Duplex,4.04,6.06,6_months,combined,Prefers higher floor +INT-46-2,PER-0046,PRJ-004,PRJ-004-U017,low,Duplex,4.04,6.06,6_months,home_loan,Wants ready to move in +INT-47-1,PER-0047,PRJ-004,PRJ-004-U008,medium,Villa,25.58,38.38,flexible,combined,Prefers higher floor +INT-48-1,PER-0048,PRJ-008,PRJ-008-U003,low,Penthouse,6.7,10.04,flexible,undecided,Comparing with competitor projects +INT-49-1,PER-0049,PRJ-010,PRJ-010-U009,very_high,Duplex,7.46,11.18,flexible,home_loan,Needs proximity to school +INT-50-1,PER-0050,PRJ-007,PRJ-007-U001,medium,Duplex,5.27,7.91,6_months,combined,Prefers higher floor +INT-51-1,PER-0051,PRJ-009,PRJ-009-U004,very_high,2 BHK,2.52,3.78,6_months,home_loan,Needs proximity to school +INT-51-2,PER-0051,PRJ-012,PRJ-012-U004,medium,Villa,8.72,13.08,immediate,cash,Waiting for festive season offer +INT-52-1,PER-0052,PRJ-007,PRJ-007-U012,medium,4 BHK,10.58,15.86,6_months,cash,Wants ready to move in +INT-52-2,PER-0052,PRJ-011,PRJ-011-U004,very_high,Penthouse,40.54,60.82,3_months,cash,Needs proximity to school +INT-53-1,PER-0053,PRJ-008,PRJ-008-U003,low,Penthouse,6.7,10.04,immediate,home_loan,Wants ready to move in +INT-53-2,PER-0053,PRJ-013,PRJ-013-U012,very_high,2 BHK,3.24,4.86,immediate,home_loan,Wants ready to move in +INT-54-1,PER-0054,PRJ-008,PRJ-008-U014,very_high,Duplex,4.19,6.29,3_months,home_loan,Comparing with competitor projects +INT-55-1,PER-0055,PRJ-009,PRJ-009-U004,low,2 BHK,2.52,3.78,3_months,cash,Wants ready to move in +INT-56-1,PER-0056,PRJ-009,PRJ-009-U003,low,Villa,5.46,8.18,immediate,home_loan,Comparing with competitor projects +INT-57-1,PER-0057,PRJ-007,PRJ-007-U014,very_high,4 BHK,5.54,8.3,immediate,cash,Prefers higher floor +INT-58-1,PER-0058,PRJ-009,PRJ-009-U008,low,Duplex,11.69,17.53,flexible,undecided,Comparing with competitor projects +INT-59-1,PER-0059,PRJ-004,PRJ-004-U019,low,Penthouse,17.82,26.74,3_months,home_loan,Prefers higher floor +INT-60-1,PER-0060,PRJ-012,PRJ-012-U001,medium,4 BHK,16.18,24.28,3_months,undecided,Comparing with competitor projects +INT-60-2,PER-0060,PRJ-012,PRJ-012-U001,high,4 BHK,16.18,24.28,flexible,undecided,Waiting for festive season offer +INT-61-1,PER-0061,PRJ-013,PRJ-013-U005,very_high,Villa,8.3,12.44,3_months,home_loan,Prefers higher floor +INT-61-2,PER-0061,PRJ-002,PRJ-002-U012,low,Villa,11.17,16.75,6_months,undecided,Wants ready to move in +INT-61-3,PER-0061,PRJ-005,PRJ-005-U009,medium,Villa,1.91,2.87,3_months,cash,Comparing with competitor projects +INT-62-1,PER-0062,PRJ-009,PRJ-009-U003,very_high,Villa,5.46,8.18,immediate,undecided,Comparing with competitor projects +INT-62-2,PER-0062,PRJ-013,PRJ-013-U015,high,4 BHK,21.26,31.88,6_months,undecided,Needs proximity to school +INT-63-1,PER-0063,PRJ-010,PRJ-010-U009,high,Duplex,7.46,11.18,3_months,home_loan,Needs proximity to school +INT-63-2,PER-0063,PRJ-003,PRJ-003-U001,medium,Duplex,55.2,82.8,immediate,home_loan,Needs proximity to school +INT-64-1,PER-0064,PRJ-012,PRJ-012-U007,high,Duplex,2.16,3.24,6_months,undecided,Looking for east facing unit +INT-64-2,PER-0064,PRJ-013,PRJ-013-U008,high,5 BHK,28.32,42.48,6_months,undecided,Comparing with competitor projects +INT-65-1,PER-0065,PRJ-012,PRJ-012-U004,low,Villa,8.72,13.08,3_months,undecided,Wants ready to move in +INT-66-1,PER-0066,PRJ-003,PRJ-003-U005,medium,Penthouse,18.86,28.3,flexible,home_loan,Comparing with competitor projects +INT-67-1,PER-0067,PRJ-009,PRJ-009-U010,medium,Penthouse,11.74,17.6,6_months,home_loan,Needs proximity to school +INT-68-1,PER-0068,PRJ-002,PRJ-002-U017,very_high,4 BHK,1.56,2.34,flexible,home_loan,Needs proximity to school +INT-69-1,PER-0069,PRJ-004,PRJ-004-U004,low,3 BHK,17.64,26.46,flexible,combined,Comparing with competitor projects +INT-69-2,PER-0069,PRJ-002,PRJ-002-U017,low,4 BHK,1.56,2.34,flexible,combined,Wants ready to move in +INT-69-3,PER-0069,PRJ-011,PRJ-011-U014,low,5 BHK,8.56,12.84,3_months,home_loan,Wants ready to move in +INT-70-1,PER-0070,PRJ-009,PRJ-009-U011,very_high,Duplex,1.76,2.64,flexible,combined,Waiting for festive season offer +INT-70-2,PER-0070,PRJ-007,PRJ-007-U012,medium,4 BHK,10.58,15.86,flexible,home_loan,Needs proximity to school +INT-70-3,PER-0070,PRJ-009,PRJ-009-U012,medium,5 BHK,42.38,63.56,3_months,cash,Looking for east facing unit +INT-71-1,PER-0071,PRJ-009,PRJ-009-U010,low,Penthouse,11.74,17.6,3_months,undecided,Waiting for festive season offer +INT-71-2,PER-0071,PRJ-012,PRJ-012-U007,high,Duplex,2.16,3.24,immediate,combined,Comparing with competitor projects +INT-71-3,PER-0071,PRJ-013,PRJ-013-U001,high,3 BHK,38.3,57.46,flexible,combined,Prefers higher floor +INT-72-1,PER-0072,PRJ-013,PRJ-013-U013,medium,Penthouse,9.29,13.93,flexible,undecided,Wants ready to move in +INT-73-1,PER-0073,PRJ-013,PRJ-013-U015,high,4 BHK,21.26,31.88,3_months,combined,Comparing with competitor projects +INT-73-2,PER-0073,PRJ-001,PRJ-001-U001,low,Villa,15.87,23.81,flexible,combined,Needs proximity to school +INT-74-1,PER-0074,PRJ-011,PRJ-011-U009,medium,3 BHK,3.14,4.7,immediate,combined,Looking for east facing unit +INT-75-1,PER-0075,PRJ-009,PRJ-009-U009,high,2 BHK,4.26,6.38,6_months,combined,Wants ready to move in +INT-76-1,PER-0076,PRJ-006,PRJ-006-U001,low,Penthouse,4.76,7.14,3_months,undecided,Waiting for festive season offer +INT-77-1,PER-0077,PRJ-005,PRJ-005-U006,medium,3 BHK,8.05,12.07,flexible,home_loan,Comparing with competitor projects +INT-78-1,PER-0078,PRJ-004,PRJ-004-U001,medium,5 BHK,4.96,7.44,flexible,home_loan,Prefers higher floor +INT-79-1,PER-0079,PRJ-003,PRJ-003-U004,very_high,Villa,13.78,20.66,3_months,combined,Prefers higher floor +INT-79-2,PER-0079,PRJ-004,PRJ-004-U008,high,Villa,25.58,38.38,3_months,cash,Wants ready to move in +INT-80-1,PER-0080,PRJ-004,PRJ-004-U001,medium,5 BHK,4.96,7.44,6_months,combined,Needs proximity to school +INT-80-2,PER-0080,PRJ-011,PRJ-011-U003,very_high,Villa,18.68,28.02,immediate,undecided,Wants ready to move in +INT-81-1,PER-0081,PRJ-010,PRJ-010-U004,low,Penthouse,3.99,5.99,3_months,home_loan,Prefers higher floor +INT-81-2,PER-0081,PRJ-004,PRJ-004-U017,medium,Duplex,4.04,6.06,3_months,combined,Prefers higher floor +INT-82-1,PER-0082,PRJ-009,PRJ-009-U003,very_high,Villa,5.46,8.18,6_months,undecided,Wants ready to move in +INT-83-1,PER-0083,PRJ-004,PRJ-004-U017,high,Duplex,4.04,6.06,flexible,home_loan,Comparing with competitor projects +INT-84-1,PER-0084,PRJ-001,PRJ-001-U010,very_high,Penthouse,30.81,46.21,6_months,cash,Prefers higher floor +INT-84-2,PER-0084,PRJ-006,PRJ-006-U003,medium,5 BHK,11.76,17.64,flexible,undecided,Wants ready to move in +INT-85-1,PER-0085,PRJ-005,PRJ-005-U009,medium,Villa,1.91,2.87,flexible,home_loan,Looking for east facing unit +INT-86-1,PER-0086,PRJ-009,PRJ-009-U009,high,2 BHK,4.26,6.38,6_months,combined,Prefers higher floor +INT-87-1,PER-0087,PRJ-014,PRJ-014-U001,medium,5 BHK,58.7,88.06,6_months,home_loan,Needs proximity to school +INT-87-2,PER-0087,PRJ-003,PRJ-003-U002,low,3 BHK,22.21,33.31,flexible,undecided,Looking for east facing unit +INT-87-3,PER-0087,PRJ-004,PRJ-004-U001,low,5 BHK,4.96,7.44,flexible,cash,Prefers higher floor +INT-88-1,PER-0088,PRJ-003,PRJ-003-U011,low,Duplex,3.09,4.63,immediate,combined,Wants ready to move in +INT-88-2,PER-0088,PRJ-002,PRJ-002-U010,very_high,Penthouse,3.0,4.5,3_months,undecided,Prefers higher floor +INT-89-1,PER-0089,PRJ-010,PRJ-010-U010,high,Duplex,8.5,12.74,3_months,undecided,Looking for east facing unit +INT-89-2,PER-0089,PRJ-002,PRJ-002-U005,low,3 BHK,11.22,16.84,immediate,cash,Wants ready to move in +INT-90-1,PER-0090,PRJ-012,PRJ-012-U001,very_high,4 BHK,16.18,24.28,flexible,cash,Comparing with competitor projects +INT-91-1,PER-0091,PRJ-005,PRJ-005-U005,very_high,3 BHK,15.42,23.12,6_months,cash,Wants ready to move in +INT-91-2,PER-0091,PRJ-002,PRJ-002-U015,high,Villa,3.56,5.34,3_months,combined,Prefers higher floor +INT-92-1,PER-0092,PRJ-014,PRJ-014-U005,very_high,2 BHK,3.4,5.1,immediate,home_loan,Prefers higher floor +INT-92-2,PER-0092,PRJ-008,PRJ-008-U003,very_high,Penthouse,6.7,10.04,6_months,cash,Waiting for festive season offer +INT-92-3,PER-0092,PRJ-004,PRJ-004-U020,medium,5 BHK,15.1,22.66,6_months,home_loan,Wants ready to move in +INT-93-1,PER-0093,PRJ-004,PRJ-004-U008,very_high,Villa,25.58,38.38,6_months,cash,Prefers higher floor +INT-94-1,PER-0094,PRJ-012,PRJ-012-U004,high,Villa,8.72,13.08,flexible,cash,Looking for east facing unit +INT-95-1,PER-0095,PRJ-006,PRJ-006-U002,very_high,Duplex,19.22,28.82,flexible,cash,Needs proximity to school +INT-96-1,PER-0096,PRJ-009,PRJ-009-U012,low,5 BHK,42.38,63.56,3_months,combined,Needs proximity to school +INT-97-1,PER-0097,PRJ-002,PRJ-002-U008,medium,Villa,57.06,85.6,6_months,home_loan,Comparing with competitor projects +INT-98-1,PER-0098,PRJ-005,PRJ-005-U006,low,3 BHK,8.05,12.07,3_months,home_loan,Wants ready to move in +INT-98-2,PER-0098,PRJ-013,PRJ-013-U008,high,5 BHK,28.32,42.48,flexible,undecided,Waiting for festive season offer +INT-99-1,PER-0099,PRJ-012,PRJ-012-U007,low,Duplex,2.16,3.24,immediate,undecided,Waiting for festive season offer +INT-100-1,PER-0100,PRJ-004,PRJ-004-U001,very_high,5 BHK,4.96,7.44,immediate,cash,Needs proximity to school +INT-100-2,PER-0100,PRJ-003,PRJ-003-U011,medium,Duplex,3.09,4.63,3_months,combined,Comparing with competitor projects +INT-101-1,PER-0101,PRJ-004,PRJ-004-U017,very_high,Duplex,4.04,6.06,3_months,combined,Waiting for festive season offer +INT-101-2,PER-0101,PRJ-012,PRJ-012-U004,medium,Villa,8.72,13.08,3_months,combined,Waiting for festive season offer +INT-102-1,PER-0102,PRJ-011,PRJ-011-U003,high,Villa,18.68,28.02,flexible,undecided,Waiting for festive season offer +INT-103-1,PER-0103,PRJ-014,PRJ-014-U003,medium,Duplex,20.44,30.66,flexible,combined,Waiting for festive season offer +INT-104-1,PER-0104,PRJ-006,PRJ-006-U003,medium,5 BHK,11.76,17.64,flexible,home_loan,Looking for east facing unit +INT-105-1,PER-0105,PRJ-005,PRJ-005-U005,high,3 BHK,15.42,23.12,6_months,undecided,Looking for east facing unit +INT-105-2,PER-0105,PRJ-013,PRJ-013-U004,high,Duplex,16.1,24.14,6_months,home_loan,Needs proximity to school +INT-106-1,PER-0106,PRJ-002,PRJ-002-U014,low,Penthouse,6.22,9.32,3_months,undecided,Comparing with competitor projects +INT-106-2,PER-0106,PRJ-001,PRJ-001-U002,medium,2 BHK,26.38,39.58,flexible,cash,Comparing with competitor projects +INT-106-3,PER-0106,PRJ-010,PRJ-010-U010,high,Duplex,8.5,12.74,flexible,home_loan,Wants ready to move in +INT-107-1,PER-0107,PRJ-010,PRJ-010-U013,medium,4 BHK,15.82,23.72,6_months,undecided,Wants ready to move in +INT-107-2,PER-0107,PRJ-002,PRJ-002-U017,medium,4 BHK,1.56,2.34,3_months,undecided,Comparing with competitor projects +INT-108-1,PER-0108,PRJ-012,PRJ-012-U007,low,Duplex,2.16,3.24,immediate,undecided,Waiting for festive season offer +INT-108-2,PER-0108,PRJ-002,PRJ-002-U008,medium,Villa,57.06,85.6,immediate,cash,Wants ready to move in +INT-109-1,PER-0109,PRJ-001,PRJ-001-U016,very_high,2 BHK,12.55,18.83,immediate,combined,Wants ready to move in +INT-109-2,PER-0109,PRJ-014,PRJ-014-U005,very_high,2 BHK,3.4,5.1,6_months,cash,Waiting for festive season offer +INT-109-3,PER-0109,PRJ-004,PRJ-004-U001,high,5 BHK,4.96,7.44,immediate,undecided,Needs proximity to school +INT-110-1,PER-0110,PRJ-001,PRJ-001-U001,low,Villa,15.87,23.81,flexible,cash,Prefers higher floor +INT-111-1,PER-0111,PRJ-011,PRJ-011-U003,low,Villa,18.68,28.02,immediate,cash,Comparing with competitor projects +INT-111-2,PER-0111,PRJ-012,PRJ-012-U001,high,4 BHK,16.18,24.28,6_months,undecided,Wants ready to move in +INT-111-3,PER-0111,PRJ-012,PRJ-012-U007,low,Duplex,2.16,3.24,3_months,combined,Comparing with competitor projects +INT-112-1,PER-0112,PRJ-012,PRJ-012-U007,high,Duplex,2.16,3.24,6_months,undecided,Prefers higher floor +INT-112-2,PER-0112,PRJ-003,PRJ-003-U002,medium,3 BHK,22.21,33.31,immediate,home_loan,Waiting for festive season offer +INT-113-1,PER-0113,PRJ-007,PRJ-007-U017,medium,Villa,5.71,8.57,flexible,combined,Prefers higher floor +INT-113-2,PER-0113,PRJ-010,PRJ-010-U011,high,Villa,10.18,15.28,3_months,combined,Needs proximity to school +INT-114-1,PER-0114,PRJ-004,PRJ-004-U004,medium,3 BHK,17.64,26.46,6_months,undecided,Wants ready to move in +INT-115-1,PER-0115,PRJ-009,PRJ-009-U008,medium,Duplex,11.69,17.53,flexible,undecided,Prefers higher floor +INT-115-2,PER-0115,PRJ-013,PRJ-013-U002,very_high,3 BHK,34.97,52.45,3_months,undecided,Wants ready to move in +INT-115-3,PER-0115,PRJ-014,PRJ-014-U006,high,Penthouse,46.74,70.12,immediate,undecided,Waiting for festive season offer +INT-116-1,PER-0116,PRJ-003,PRJ-003-U004,medium,Villa,13.78,20.66,3_months,combined,Waiting for festive season offer +INT-117-1,PER-0117,PRJ-003,PRJ-003-U010,low,4 BHK,12.46,18.68,flexible,cash,Needs proximity to school +INT-118-1,PER-0118,PRJ-008,PRJ-008-U009,medium,5 BHK,10.66,16.0,flexible,home_loan,Wants ready to move in +INT-118-2,PER-0118,PRJ-014,PRJ-014-U003,low,Duplex,20.44,30.66,3_months,combined,Looking for east facing unit +INT-118-3,PER-0118,PRJ-009,PRJ-009-U012,high,5 BHK,42.38,63.56,3_months,undecided,Prefers higher floor +INT-119-1,PER-0119,PRJ-004,PRJ-004-U004,very_high,3 BHK,17.64,26.46,6_months,cash,Wants ready to move in +INT-120-1,PER-0120,PRJ-004,PRJ-004-U019,medium,Penthouse,17.82,26.74,6_months,undecided,Prefers higher floor +INT-121-1,PER-0121,PRJ-002,PRJ-002-U017,medium,4 BHK,1.56,2.34,3_months,home_loan,Looking for east facing unit +INT-122-1,PER-0122,PRJ-001,PRJ-001-U001,high,Villa,15.87,23.81,flexible,undecided,Prefers higher floor +INT-123-1,PER-0123,PRJ-011,PRJ-011-U004,very_high,Penthouse,40.54,60.82,flexible,cash,Comparing with competitor projects +INT-123-2,PER-0123,PRJ-004,PRJ-004-U010,high,Villa,1.62,2.42,flexible,combined,Waiting for festive season offer +INT-124-1,PER-0124,PRJ-003,PRJ-003-U003,very_high,Duplex,16.61,24.91,3_months,home_loan,Needs proximity to school +INT-125-1,PER-0125,PRJ-007,PRJ-007-U014,low,4 BHK,5.54,8.3,flexible,undecided,Waiting for festive season offer +INT-125-2,PER-0125,PRJ-014,PRJ-014-U002,medium,Penthouse,19.58,29.36,6_months,undecided,Comparing with competitor projects +INT-126-1,PER-0126,PRJ-004,PRJ-004-U004,high,3 BHK,17.64,26.46,flexible,combined,Needs proximity to school +INT-127-1,PER-0127,PRJ-014,PRJ-014-U005,medium,2 BHK,3.4,5.1,3_months,cash,Wants ready to move in +INT-128-1,PER-0128,PRJ-014,PRJ-014-U002,high,Penthouse,19.58,29.36,3_months,home_loan,Waiting for festive season offer +INT-128-2,PER-0128,PRJ-013,PRJ-013-U005,very_high,Villa,8.3,12.44,6_months,home_loan,Looking for east facing unit +INT-128-3,PER-0128,PRJ-009,PRJ-009-U012,very_high,5 BHK,42.38,63.56,flexible,cash,Comparing with competitor projects +INT-129-1,PER-0129,PRJ-001,PRJ-001-U002,very_high,2 BHK,26.38,39.58,3_months,cash,Looking for east facing unit +INT-130-1,PER-0130,PRJ-014,PRJ-014-U001,very_high,5 BHK,58.7,88.06,immediate,cash,Needs proximity to school +INT-130-2,PER-0130,PRJ-011,PRJ-011-U003,very_high,Villa,18.68,28.02,6_months,cash,Looking for east facing unit +INT-131-1,PER-0131,PRJ-003,PRJ-003-U004,high,Villa,13.78,20.66,6_months,undecided,Waiting for festive season offer +INT-132-1,PER-0132,PRJ-005,PRJ-005-U011,very_high,Penthouse,1.78,2.68,3_months,combined,Waiting for festive season offer +INT-132-2,PER-0132,PRJ-011,PRJ-011-U010,low,4 BHK,4.94,7.42,3_months,home_loan,Needs proximity to school +INT-133-1,PER-0133,PRJ-008,PRJ-008-U009,low,5 BHK,10.66,16.0,flexible,combined,Needs proximity to school +INT-134-1,PER-0134,PRJ-014,PRJ-014-U005,high,2 BHK,3.4,5.1,6_months,cash,Looking for east facing unit +INT-134-2,PER-0134,PRJ-006,PRJ-006-U002,very_high,Duplex,19.22,28.82,3_months,cash,Comparing with competitor projects +INT-135-1,PER-0135,PRJ-001,PRJ-001-U008,low,3 BHK,5.0,7.5,flexible,undecided,Prefers higher floor +INT-135-2,PER-0135,PRJ-005,PRJ-005-U009,medium,Villa,1.91,2.87,3_months,home_loan,Prefers higher floor +INT-136-1,PER-0136,PRJ-012,PRJ-012-U004,low,Villa,8.72,13.08,immediate,cash,Waiting for festive season offer +INT-137-1,PER-0137,PRJ-010,PRJ-010-U010,medium,Duplex,8.5,12.74,immediate,home_loan,Needs proximity to school +INT-137-2,PER-0137,PRJ-007,PRJ-007-U014,high,4 BHK,5.54,8.3,flexible,cash,Wants ready to move in +INT-138-1,PER-0138,PRJ-014,PRJ-014-U002,medium,Penthouse,19.58,29.36,3_months,cash,Comparing with competitor projects +INT-139-1,PER-0139,PRJ-008,PRJ-008-U001,medium,Villa,3.05,4.57,flexible,home_loan,Waiting for festive season offer +INT-140-1,PER-0140,PRJ-005,PRJ-005-U008,high,3 BHK,3.1,4.66,immediate,cash,Looking for east facing unit +INT-141-1,PER-0141,PRJ-008,PRJ-008-U014,medium,Duplex,4.19,6.29,3_months,combined,Needs proximity to school +INT-142-1,PER-0142,PRJ-004,PRJ-004-U008,very_high,Villa,25.58,38.38,3_months,cash,Looking for east facing unit +INT-143-1,PER-0143,PRJ-012,PRJ-012-U004,low,Villa,8.72,13.08,6_months,cash,Needs proximity to school +INT-143-2,PER-0143,PRJ-001,PRJ-001-U001,very_high,Villa,15.87,23.81,flexible,combined,Comparing with competitor projects +INT-144-1,PER-0144,PRJ-001,PRJ-001-U009,high,Villa,10.03,15.05,immediate,cash,Comparing with competitor projects +INT-144-2,PER-0144,PRJ-013,PRJ-013-U012,low,2 BHK,3.24,4.86,6_months,combined,Wants ready to move in +INT-145-1,PER-0145,PRJ-001,PRJ-001-U013,very_high,4 BHK,11.42,17.14,immediate,cash,Needs proximity to school +INT-145-2,PER-0145,PRJ-013,PRJ-013-U006,medium,4 BHK,41.22,61.84,6_months,home_loan,Looking for east facing unit +INT-146-1,PER-0146,PRJ-014,PRJ-014-U006,very_high,Penthouse,46.74,70.12,6_months,cash,Comparing with competitor projects +INT-146-2,PER-0146,PRJ-011,PRJ-011-U003,medium,Villa,18.68,28.02,immediate,combined,Wants ready to move in +INT-147-1,PER-0147,PRJ-008,PRJ-008-U001,medium,Villa,3.05,4.57,6_months,cash,Comparing with competitor projects +INT-148-1,PER-0148,PRJ-012,PRJ-012-U007,medium,Duplex,2.16,3.24,flexible,home_loan,Wants ready to move in +INT-149-1,PER-0149,PRJ-006,PRJ-006-U005,very_high,Penthouse,29.69,44.53,6_months,home_loan,Comparing with competitor projects +INT-150-1,PER-0150,PRJ-005,PRJ-005-U008,medium,3 BHK,3.1,4.66,immediate,undecided,Looking for east facing unit +INT-151-1,PER-0151,PRJ-011,PRJ-011-U010,very_high,4 BHK,4.94,7.42,immediate,home_loan,Wants ready to move in +INT-152-1,PER-0152,PRJ-008,PRJ-008-U014,high,Duplex,4.19,6.29,flexible,home_loan,Needs proximity to school +INT-153-1,PER-0153,PRJ-014,PRJ-014-U003,medium,Duplex,20.44,30.66,3_months,undecided,Wants ready to move in +INT-153-2,PER-0153,PRJ-008,PRJ-008-U009,very_high,5 BHK,10.66,16.0,flexible,home_loan,Comparing with competitor projects +INT-153-3,PER-0153,PRJ-006,PRJ-006-U003,high,5 BHK,11.76,17.64,flexible,combined,Comparing with competitor projects +INT-154-1,PER-0154,PRJ-010,PRJ-010-U011,low,Villa,10.18,15.28,flexible,combined,Needs proximity to school +INT-155-1,PER-0155,PRJ-002,PRJ-002-U001,very_high,Villa,2.37,3.55,6_months,home_loan,Needs proximity to school +INT-156-1,PER-0156,PRJ-007,PRJ-007-U012,high,4 BHK,10.58,15.86,flexible,home_loan,Waiting for festive season offer +INT-157-1,PER-0157,PRJ-005,PRJ-005-U008,very_high,3 BHK,3.1,4.66,3_months,combined,Needs proximity to school +INT-157-2,PER-0157,PRJ-007,PRJ-007-U003,very_high,3 BHK,14.61,21.91,immediate,cash,Waiting for festive season offer +INT-158-1,PER-0158,PRJ-003,PRJ-003-U008,medium,4 BHK,4.31,6.47,immediate,undecided,Wants ready to move in +INT-159-1,PER-0159,PRJ-005,PRJ-005-U008,low,3 BHK,3.1,4.66,3_months,undecided,Needs proximity to school +INT-160-1,PER-0160,PRJ-010,PRJ-010-U012,high,Villa,15.62,23.42,immediate,undecided,Looking for east facing unit +INT-161-1,PER-0161,PRJ-007,PRJ-007-U014,very_high,4 BHK,5.54,8.3,3_months,undecided,Wants ready to move in +INT-162-1,PER-0162,PRJ-009,PRJ-009-U008,high,Duplex,11.69,17.53,immediate,undecided,Comparing with competitor projects +INT-163-1,PER-0163,PRJ-006,PRJ-006-U003,very_high,5 BHK,11.76,17.64,flexible,home_loan,Looking for east facing unit +INT-163-2,PER-0163,PRJ-005,PRJ-005-U009,high,Villa,1.91,2.87,immediate,undecided,Looking for east facing unit +INT-164-1,PER-0164,PRJ-014,PRJ-014-U005,low,2 BHK,3.4,5.1,immediate,undecided,Waiting for festive season offer +INT-164-2,PER-0164,PRJ-008,PRJ-008-U007,medium,2 BHK,19.2,28.8,flexible,undecided,Looking for east facing unit +INT-165-1,PER-0165,PRJ-011,PRJ-011-U014,very_high,5 BHK,8.56,12.84,6_months,combined,Comparing with competitor projects +INT-166-1,PER-0166,PRJ-010,PRJ-010-U011,very_high,Villa,10.18,15.28,6_months,home_loan,Prefers higher floor +INT-167-1,PER-0167,PRJ-005,PRJ-005-U005,high,3 BHK,15.42,23.12,flexible,undecided,Prefers higher floor +INT-168-1,PER-0168,PRJ-014,PRJ-014-U001,high,5 BHK,58.7,88.06,immediate,combined,Prefers higher floor +INT-169-1,PER-0169,PRJ-010,PRJ-010-U011,medium,Villa,10.18,15.28,6_months,home_loan,Looking for east facing unit +INT-169-2,PER-0169,PRJ-006,PRJ-006-U002,very_high,Duplex,19.22,28.82,immediate,cash,Wants ready to move in +INT-169-3,PER-0169,PRJ-014,PRJ-014-U001,low,5 BHK,58.7,88.06,immediate,combined,Comparing with competitor projects +INT-170-1,PER-0170,PRJ-003,PRJ-003-U010,low,4 BHK,12.46,18.68,6_months,combined,Looking for east facing unit +INT-171-1,PER-0171,PRJ-001,PRJ-001-U010,very_high,Penthouse,30.81,46.21,immediate,cash,Prefers higher floor +INT-171-2,PER-0171,PRJ-010,PRJ-010-U012,high,Villa,15.62,23.42,6_months,combined,Wants ready to move in +INT-172-1,PER-0172,PRJ-006,PRJ-006-U003,high,5 BHK,11.76,17.64,immediate,home_loan,Prefers higher floor +INT-173-1,PER-0173,PRJ-005,PRJ-005-U006,high,3 BHK,8.05,12.07,3_months,undecided,Prefers higher floor +INT-174-1,PER-0174,PRJ-014,PRJ-014-U005,very_high,2 BHK,3.4,5.1,flexible,combined,Needs proximity to school +INT-175-1,PER-0175,PRJ-010,PRJ-010-U012,medium,Villa,15.62,23.42,3_months,cash,Waiting for festive season offer +INT-175-2,PER-0175,PRJ-012,PRJ-012-U001,high,4 BHK,16.18,24.28,immediate,combined,Prefers higher floor +INT-176-1,PER-0176,PRJ-012,PRJ-012-U004,low,Villa,8.72,13.08,flexible,undecided,Wants ready to move in +INT-176-2,PER-0176,PRJ-005,PRJ-005-U005,low,3 BHK,15.42,23.12,3_months,cash,Prefers higher floor +INT-177-1,PER-0177,PRJ-003,PRJ-003-U011,medium,Duplex,3.09,4.63,immediate,home_loan,Looking for east facing unit +INT-177-2,PER-0177,PRJ-007,PRJ-007-U001,medium,Duplex,5.27,7.91,immediate,undecided,Waiting for festive season offer +INT-178-1,PER-0178,PRJ-007,PRJ-007-U017,medium,Villa,5.71,8.57,flexible,cash,Comparing with competitor projects +INT-178-2,PER-0178,PRJ-013,PRJ-013-U007,very_high,5 BHK,31.08,46.62,flexible,undecided,Prefers higher floor +INT-179-1,PER-0179,PRJ-014,PRJ-014-U001,medium,5 BHK,58.7,88.06,6_months,combined,Looking for east facing unit +INT-180-1,PER-0180,PRJ-012,PRJ-012-U001,medium,4 BHK,16.18,24.28,flexible,combined,Wants ready to move in +INT-180-2,PER-0180,PRJ-010,PRJ-010-U004,medium,Penthouse,3.99,5.99,3_months,undecided,Comparing with competitor projects +INT-181-1,PER-0181,PRJ-012,PRJ-012-U001,very_high,4 BHK,16.18,24.28,flexible,home_loan,Waiting for festive season offer +INT-181-2,PER-0181,PRJ-013,PRJ-013-U013,very_high,Penthouse,9.29,13.93,immediate,combined,Looking for east facing unit +INT-182-1,PER-0182,PRJ-004,PRJ-004-U019,low,Penthouse,17.82,26.74,flexible,home_loan,Looking for east facing unit +INT-183-1,PER-0183,PRJ-003,PRJ-003-U011,very_high,Duplex,3.09,4.63,flexible,undecided,Prefers higher floor +INT-184-1,PER-0184,PRJ-010,PRJ-010-U010,low,Duplex,8.5,12.74,6_months,combined,Waiting for festive season offer +INT-185-1,PER-0185,PRJ-006,PRJ-006-U005,low,Penthouse,29.69,44.53,immediate,home_loan,Waiting for festive season offer +INT-186-1,PER-0186,PRJ-011,PRJ-011-U004,high,Penthouse,40.54,60.82,flexible,cash,Prefers higher floor +INT-186-2,PER-0186,PRJ-012,PRJ-012-U001,very_high,4 BHK,16.18,24.28,flexible,combined,Prefers higher floor +INT-186-3,PER-0186,PRJ-011,PRJ-011-U003,very_high,Villa,18.68,28.02,3_months,cash,Wants ready to move in +INT-187-1,PER-0187,PRJ-011,PRJ-011-U004,low,Penthouse,40.54,60.82,3_months,home_loan,Needs proximity to school +INT-188-1,PER-0188,PRJ-005,PRJ-005-U008,high,3 BHK,3.1,4.66,flexible,home_loan,Needs proximity to school +INT-189-1,PER-0189,PRJ-012,PRJ-012-U007,low,Duplex,2.16,3.24,flexible,combined,Looking for east facing unit +INT-190-1,PER-0190,PRJ-012,PRJ-012-U007,high,Duplex,2.16,3.24,flexible,undecided,Looking for east facing unit +INT-190-2,PER-0190,PRJ-003,PRJ-003-U005,medium,Penthouse,18.86,28.3,6_months,combined,Comparing with competitor projects +INT-191-1,PER-0191,PRJ-008,PRJ-008-U003,low,Penthouse,6.7,10.04,immediate,undecided,Comparing with competitor projects +INT-191-2,PER-0191,PRJ-006,PRJ-006-U001,high,Penthouse,4.76,7.14,6_months,combined,Wants ready to move in +INT-191-3,PER-0191,PRJ-011,PRJ-011-U009,high,3 BHK,3.14,4.7,flexible,undecided,Looking for east facing unit +INT-192-1,PER-0192,PRJ-005,PRJ-005-U005,low,3 BHK,15.42,23.12,flexible,undecided,Wants ready to move in +INT-192-2,PER-0192,PRJ-007,PRJ-007-U003,low,3 BHK,14.61,21.91,flexible,cash,Prefers higher floor +INT-193-1,PER-0193,PRJ-001,PRJ-001-U013,high,4 BHK,11.42,17.14,immediate,cash,Wants ready to move in +INT-193-2,PER-0193,PRJ-008,PRJ-008-U018,low,2 BHK,41.19,61.79,6_months,undecided,Waiting for festive season offer +INT-193-3,PER-0193,PRJ-009,PRJ-009-U014,high,3 BHK,7.65,11.47,immediate,home_loan,Prefers higher floor +INT-194-1,PER-0194,PRJ-006,PRJ-006-U003,high,5 BHK,11.76,17.64,flexible,undecided,Waiting for festive season offer +INT-194-2,PER-0194,PRJ-005,PRJ-005-U006,high,3 BHK,8.05,12.07,3_months,cash,Needs proximity to school +INT-195-1,PER-0195,PRJ-004,PRJ-004-U008,low,Villa,25.58,38.38,6_months,cash,Looking for east facing unit +INT-195-2,PER-0195,PRJ-008,PRJ-008-U012,medium,3 BHK,1.3,1.94,3_months,undecided,Needs proximity to school +INT-195-3,PER-0195,PRJ-001,PRJ-001-U009,low,Villa,10.03,15.05,3_months,combined,Looking for east facing unit +INT-196-1,PER-0196,PRJ-011,PRJ-011-U009,low,3 BHK,3.14,4.7,6_months,undecided,Wants ready to move in +INT-197-1,PER-0197,PRJ-006,PRJ-006-U005,high,Penthouse,29.69,44.53,flexible,combined,Prefers higher floor +INT-198-1,PER-0198,PRJ-002,PRJ-002-U002,very_high,5 BHK,5.54,8.32,immediate,undecided,Waiting for festive season offer +INT-199-1,PER-0199,PRJ-003,PRJ-003-U008,medium,4 BHK,4.31,6.47,6_months,combined,Comparing with competitor projects +INT-200-1,PER-0200,PRJ-009,PRJ-009-U012,very_high,5 BHK,42.38,63.56,immediate,cash,Needs proximity to school +INT-200-2,PER-0200,PRJ-006,PRJ-006-U005,high,Penthouse,29.69,44.53,flexible,home_loan,Comparing with competitor projects +INT-201-1,PER-0201,PRJ-004,PRJ-004-U004,medium,3 BHK,17.64,26.46,immediate,home_loan,Needs proximity to school +INT-201-2,PER-0201,PRJ-002,PRJ-002-U011,medium,Penthouse,3.1,4.64,3_months,cash,Comparing with competitor projects +INT-202-1,PER-0202,PRJ-003,PRJ-003-U003,low,Duplex,16.61,24.91,3_months,cash,Wants ready to move in +INT-202-2,PER-0202,PRJ-004,PRJ-004-U008,high,Villa,25.58,38.38,immediate,cash,Prefers higher floor +INT-203-1,PER-0203,PRJ-012,PRJ-012-U004,medium,Villa,8.72,13.08,6_months,home_loan,Waiting for festive season offer +INT-204-1,PER-0204,PRJ-014,PRJ-014-U001,high,5 BHK,58.7,88.06,6_months,undecided,Wants ready to move in +INT-204-2,PER-0204,PRJ-009,PRJ-009-U004,medium,2 BHK,2.52,3.78,3_months,cash,Needs proximity to school +INT-205-1,PER-0205,PRJ-004,PRJ-004-U020,very_high,5 BHK,15.1,22.66,immediate,home_loan,Needs proximity to school +INT-206-1,PER-0206,PRJ-014,PRJ-014-U005,high,2 BHK,3.4,5.1,3_months,undecided,Waiting for festive season offer +INT-206-2,PER-0206,PRJ-007,PRJ-007-U012,high,4 BHK,10.58,15.86,6_months,combined,Wants ready to move in +INT-206-3,PER-0206,PRJ-011,PRJ-011-U007,very_high,Duplex,26.32,39.48,3_months,undecided,Needs proximity to school +INT-207-1,PER-0207,PRJ-014,PRJ-014-U003,medium,Duplex,20.44,30.66,6_months,undecided,Looking for east facing unit +INT-207-2,PER-0207,PRJ-006,PRJ-006-U005,high,Penthouse,29.69,44.53,flexible,combined,Needs proximity to school +INT-208-1,PER-0208,PRJ-007,PRJ-007-U014,very_high,4 BHK,5.54,8.3,6_months,home_loan,Waiting for festive season offer +INT-209-1,PER-0209,PRJ-014,PRJ-014-U006,medium,Penthouse,46.74,70.12,flexible,home_loan,Comparing with competitor projects +INT-210-1,PER-0210,PRJ-009,PRJ-009-U014,medium,3 BHK,7.65,11.47,immediate,combined,Looking for east facing unit +INT-211-1,PER-0211,PRJ-006,PRJ-006-U001,very_high,Penthouse,4.76,7.14,flexible,undecided,Waiting for festive season offer +INT-212-1,PER-0212,PRJ-010,PRJ-010-U010,medium,Duplex,8.5,12.74,flexible,cash,Comparing with competitor projects +INT-213-1,PER-0213,PRJ-005,PRJ-005-U008,very_high,3 BHK,3.1,4.66,flexible,undecided,Wants ready to move in +INT-214-1,PER-0214,PRJ-010,PRJ-010-U013,low,4 BHK,15.82,23.72,6_months,cash,Needs proximity to school +INT-215-1,PER-0215,PRJ-012,PRJ-012-U004,high,Villa,8.72,13.08,immediate,cash,Wants ready to move in +INT-216-1,PER-0216,PRJ-011,PRJ-011-U004,very_high,Penthouse,40.54,60.82,immediate,home_loan,Comparing with competitor projects +INT-217-1,PER-0217,PRJ-010,PRJ-010-U011,very_high,Villa,10.18,15.28,6_months,combined,Waiting for festive season offer +INT-217-2,PER-0217,PRJ-008,PRJ-008-U009,medium,5 BHK,10.66,16.0,6_months,home_loan,Wants ready to move in +INT-217-3,PER-0217,PRJ-005,PRJ-005-U006,medium,3 BHK,8.05,12.07,immediate,undecided,Wants ready to move in +INT-218-1,PER-0218,PRJ-003,PRJ-003-U011,medium,Duplex,3.09,4.63,6_months,home_loan,Waiting for festive season offer +INT-218-2,PER-0218,PRJ-007,PRJ-007-U014,medium,4 BHK,5.54,8.3,3_months,undecided,Prefers higher floor +INT-219-1,PER-0219,PRJ-002,PRJ-002-U019,high,2 BHK,8.37,12.55,flexible,home_loan,Looking for east facing unit +INT-220-1,PER-0220,PRJ-008,PRJ-008-U014,low,Duplex,4.19,6.29,immediate,combined,Wants ready to move in +INT-220-2,PER-0220,PRJ-004,PRJ-004-U010,very_high,Villa,1.62,2.42,6_months,combined,Comparing with competitor projects +INT-220-3,PER-0220,PRJ-014,PRJ-014-U005,high,2 BHK,3.4,5.1,3_months,undecided,Prefers higher floor +INT-221-1,PER-0221,PRJ-013,PRJ-013-U015,medium,4 BHK,21.26,31.88,3_months,cash,Needs proximity to school +INT-222-1,PER-0222,PRJ-009,PRJ-009-U010,medium,Penthouse,11.74,17.6,immediate,combined,Prefers higher floor +INT-222-2,PER-0222,PRJ-013,PRJ-013-U004,low,Duplex,16.1,24.14,flexible,cash,Waiting for festive season offer +INT-223-1,PER-0223,PRJ-014,PRJ-014-U002,medium,Penthouse,19.58,29.36,3_months,home_loan,Needs proximity to school +INT-223-2,PER-0223,PRJ-002,PRJ-002-U001,medium,Villa,2.37,3.55,immediate,undecided,Wants ready to move in +INT-224-1,PER-0224,PRJ-005,PRJ-005-U008,very_high,3 BHK,3.1,4.66,immediate,cash,Wants ready to move in +INT-224-2,PER-0224,PRJ-006,PRJ-006-U005,medium,Penthouse,29.69,44.53,6_months,undecided,Prefers higher floor +INT-225-1,PER-0225,PRJ-013,PRJ-013-U006,medium,4 BHK,41.22,61.84,3_months,cash,Prefers higher floor +INT-226-1,PER-0226,PRJ-009,PRJ-009-U003,high,Villa,5.46,8.18,immediate,combined,Prefers higher floor +INT-226-2,PER-0226,PRJ-010,PRJ-010-U012,medium,Villa,15.62,23.42,flexible,cash,Looking for east facing unit +INT-227-1,PER-0227,PRJ-002,PRJ-002-U016,low,3 BHK,10.04,15.06,immediate,home_loan,Wants ready to move in +INT-228-1,PER-0228,PRJ-007,PRJ-007-U001,very_high,Duplex,5.27,7.91,3_months,home_loan,Looking for east facing unit +INT-229-1,PER-0229,PRJ-006,PRJ-006-U002,high,Duplex,19.22,28.82,flexible,cash,Prefers higher floor +INT-230-1,PER-0230,PRJ-012,PRJ-012-U001,low,4 BHK,16.18,24.28,flexible,undecided,Wants ready to move in +INT-230-2,PER-0230,PRJ-007,PRJ-007-U003,low,3 BHK,14.61,21.91,6_months,combined,Waiting for festive season offer +INT-230-3,PER-0230,PRJ-008,PRJ-008-U003,medium,Penthouse,6.7,10.04,flexible,cash,Waiting for festive season offer +INT-231-1,PER-0231,PRJ-014,PRJ-014-U002,high,Penthouse,19.58,29.36,3_months,home_loan,Needs proximity to school +INT-231-2,PER-0231,PRJ-014,PRJ-014-U005,low,2 BHK,3.4,5.1,immediate,cash,Prefers higher floor +INT-232-1,PER-0232,PRJ-002,PRJ-002-U004,high,Villa,1.62,2.42,flexible,cash,Wants ready to move in +INT-233-1,PER-0233,PRJ-014,PRJ-014-U005,high,2 BHK,3.4,5.1,flexible,cash,Wants ready to move in +INT-233-2,PER-0233,PRJ-001,PRJ-001-U015,low,4 BHK,7.74,11.6,3_months,cash,Wants ready to move in +INT-234-1,PER-0234,PRJ-003,PRJ-003-U002,very_high,3 BHK,22.21,33.31,3_months,undecided,Looking for east facing unit +INT-234-2,PER-0234,PRJ-005,PRJ-005-U006,medium,3 BHK,8.05,12.07,flexible,cash,Looking for east facing unit +INT-234-3,PER-0234,PRJ-003,PRJ-003-U003,very_high,Duplex,16.61,24.91,flexible,combined,Waiting for festive season offer +INT-235-1,PER-0235,PRJ-005,PRJ-005-U009,very_high,Villa,1.91,2.87,immediate,cash,Needs proximity to school +INT-235-2,PER-0235,PRJ-004,PRJ-004-U004,high,3 BHK,17.64,26.46,immediate,cash,Looking for east facing unit +INT-236-1,PER-0236,PRJ-011,PRJ-011-U014,medium,5 BHK,8.56,12.84,flexible,undecided,Waiting for festive season offer +INT-237-1,PER-0237,PRJ-009,PRJ-009-U004,medium,2 BHK,2.52,3.78,6_months,combined,Needs proximity to school +INT-237-2,PER-0237,PRJ-010,PRJ-010-U009,very_high,Duplex,7.46,11.18,6_months,combined,Comparing with competitor projects +INT-238-1,PER-0238,PRJ-002,PRJ-002-U004,high,Villa,1.62,2.42,flexible,home_loan,Prefers higher floor +INT-239-1,PER-0239,PRJ-004,PRJ-004-U004,high,3 BHK,17.64,26.46,3_months,home_loan,Looking for east facing unit +INT-239-2,PER-0239,PRJ-009,PRJ-009-U011,low,Duplex,1.76,2.64,3_months,cash,Comparing with competitor projects +INT-240-1,PER-0240,PRJ-014,PRJ-014-U001,very_high,5 BHK,58.7,88.06,flexible,cash,Comparing with competitor projects +INT-241-1,PER-0241,PRJ-004,PRJ-004-U010,low,Villa,1.62,2.42,flexible,cash,Wants ready to move in +INT-242-1,PER-0242,PRJ-010,PRJ-010-U013,medium,4 BHK,15.82,23.72,3_months,cash,Needs proximity to school +INT-243-1,PER-0243,PRJ-009,PRJ-009-U017,high,5 BHK,17.32,25.98,flexible,combined,Comparing with competitor projects +INT-243-2,PER-0243,PRJ-007,PRJ-007-U003,low,3 BHK,14.61,21.91,6_months,combined,Looking for east facing unit +INT-244-1,PER-0244,PRJ-005,PRJ-005-U008,high,3 BHK,3.1,4.66,6_months,home_loan,Prefers higher floor +INT-244-2,PER-0244,PRJ-009,PRJ-009-U008,high,Duplex,11.69,17.53,immediate,cash,Comparing with competitor projects +INT-245-1,PER-0245,PRJ-001,PRJ-001-U002,very_high,2 BHK,26.38,39.58,immediate,home_loan,Wants ready to move in +INT-246-1,PER-0246,PRJ-005,PRJ-005-U005,low,3 BHK,15.42,23.12,6_months,cash,Wants ready to move in +INT-247-1,PER-0247,PRJ-008,PRJ-008-U003,high,Penthouse,6.7,10.04,immediate,cash,Needs proximity to school +INT-248-1,PER-0248,PRJ-010,PRJ-010-U009,medium,Duplex,7.46,11.18,flexible,undecided,Prefers higher floor +INT-248-2,PER-0248,PRJ-009,PRJ-009-U010,medium,Penthouse,11.74,17.6,6_months,combined,Needs proximity to school +INT-249-1,PER-0249,PRJ-007,PRJ-007-U001,low,Duplex,5.27,7.91,3_months,home_loan,Comparing with competitor projects +INT-250-1,PER-0250,PRJ-006,PRJ-006-U001,very_high,Penthouse,4.76,7.14,flexible,home_loan,Prefers higher floor diff --git a/db assets/synthetic_crm_v1/csv/crm_relationships.csv b/db assets/synthetic_crm_v1/csv/crm_relationships.csv new file mode 100644 index 00000000..d0133012 --- /dev/null +++ b/db assets/synthetic_crm_v1/csv/crm_relationships.csv @@ -0,0 +1,92 @@ +relationship_id,from_person_id,to_person_id,relationship_type,strength_score,metadata_json +REL-2-001,PER-0002,PER-0002-CO,business_partner,0.9,"{""verified"": false}" +REL-8-001,PER-0008,PER-0008-CO,sibling,0.99,"{""verified"": false}" +REL-11-001,PER-0011,PER-0011-CO,parent,0.79,"{""verified"": true}" +REL-13-001,PER-0013,PER-0013-CO,business_partner,0.99,"{""verified"": true}" +REL-15-001,PER-0015,PER-0015-CO,parent,0.86,"{""verified"": true}" +REL-17-001,PER-0017,PER-0017-CO,spouse,0.77,"{""verified"": true}" +REL-22-001,PER-0022,PER-0022-CO,parent,0.73,"{""verified"": true}" +REL-23-001,PER-0023,PER-0023-CO,sibling,0.84,"{""verified"": false}" +REL-25-001,PER-0025,PER-0025-CO,sibling,0.75,"{""verified"": false}" +REL-28-001,PER-0028,PER-0028-CO,sibling,0.95,"{""verified"": true}" +REL-29-001,PER-0029,PER-0029-CO,business_partner,0.85,"{""verified"": true}" +REL-30-001,PER-0030,PER-0030-CO,parent,0.92,"{""verified"": false}" +REL-32-001,PER-0032,PER-0032-CO,spouse,0.89,"{""verified"": true}" +REL-34-001,PER-0034,PER-0034-CO,sibling,0.83,"{""verified"": true}" +REL-35-001,PER-0035,PER-0035-CO,spouse,0.91,"{""verified"": true}" +REL-37-001,PER-0037,PER-0037-CO,business_partner,0.83,"{""verified"": true}" +REL-40-001,PER-0040,PER-0040-CO,spouse,0.92,"{""verified"": true}" +REL-43-001,PER-0043,PER-0043-CO,parent,0.83,"{""verified"": true}" +REL-51-001,PER-0051,PER-0051-CO,sibling,0.9,"{""verified"": false}" +REL-53-001,PER-0053,PER-0053-CO,business_partner,1.0,"{""verified"": false}" +REL-54-001,PER-0054,PER-0054-CO,spouse,0.87,"{""verified"": false}" +REL-58-001,PER-0058,PER-0058-CO,parent,0.78,"{""verified"": false}" +REL-59-001,PER-0059,PER-0059-CO,parent,0.77,"{""verified"": false}" +REL-62-001,PER-0062,PER-0062-CO,spouse,0.82,"{""verified"": true}" +REL-71-001,PER-0071,PER-0071-CO,business_partner,0.88,"{""verified"": false}" +REL-72-001,PER-0072,PER-0072-CO,sibling,0.96,"{""verified"": true}" +REL-79-001,PER-0079,PER-0079-CO,business_partner,0.88,"{""verified"": false}" +REL-80-001,PER-0080,PER-0080-CO,sibling,0.83,"{""verified"": true}" +REL-84-001,PER-0084,PER-0084-CO,business_partner,0.89,"{""verified"": true}" +REL-87-001,PER-0087,PER-0087-CO,spouse,0.83,"{""verified"": true}" +REL-90-001,PER-0090,PER-0090-CO,spouse,0.99,"{""verified"": true}" +REL-91-001,PER-0091,PER-0091-CO,sibling,0.81,"{""verified"": false}" +REL-93-001,PER-0093,PER-0093-CO,spouse,0.72,"{""verified"": true}" +REL-94-001,PER-0094,PER-0094-CO,sibling,0.73,"{""verified"": true}" +REL-95-001,PER-0095,PER-0095-CO,sibling,0.75,"{""verified"": false}" +REL-96-001,PER-0096,PER-0096-CO,business_partner,0.73,"{""verified"": false}" +REL-98-001,PER-0098,PER-0098-CO,business_partner,0.8,"{""verified"": true}" +REL-99-001,PER-0099,PER-0099-CO,spouse,0.79,"{""verified"": false}" +REL-100-001,PER-0100,PER-0100-CO,business_partner,0.94,"{""verified"": true}" +REL-102-001,PER-0102,PER-0102-CO,sibling,0.94,"{""verified"": true}" +REL-103-001,PER-0103,PER-0103-CO,business_partner,0.97,"{""verified"": false}" +REL-104-001,PER-0104,PER-0104-CO,sibling,0.77,"{""verified"": false}" +REL-107-001,PER-0107,PER-0107-CO,sibling,0.74,"{""verified"": false}" +REL-108-001,PER-0108,PER-0108-CO,sibling,0.97,"{""verified"": false}" +REL-115-001,PER-0115,PER-0115-CO,spouse,0.81,"{""verified"": true}" +REL-117-001,PER-0117,PER-0117-CO,business_partner,0.95,"{""verified"": false}" +REL-119-001,PER-0119,PER-0119-CO,spouse,0.7,"{""verified"": true}" +REL-122-001,PER-0122,PER-0122-CO,business_partner,0.93,"{""verified"": false}" +REL-123-001,PER-0123,PER-0123-CO,business_partner,0.71,"{""verified"": false}" +REL-126-001,PER-0126,PER-0126-CO,spouse,0.92,"{""verified"": false}" +REL-130-001,PER-0130,PER-0130-CO,business_partner,0.78,"{""verified"": true}" +REL-132-001,PER-0132,PER-0132-CO,business_partner,0.72,"{""verified"": true}" +REL-135-001,PER-0135,PER-0135-CO,parent,0.79,"{""verified"": true}" +REL-136-001,PER-0136,PER-0136-CO,parent,0.77,"{""verified"": false}" +REL-138-001,PER-0138,PER-0138-CO,business_partner,0.82,"{""verified"": false}" +REL-143-001,PER-0143,PER-0143-CO,business_partner,0.95,"{""verified"": true}" +REL-144-001,PER-0144,PER-0144-CO,business_partner,0.76,"{""verified"": true}" +REL-145-001,PER-0145,PER-0145-CO,spouse,0.99,"{""verified"": true}" +REL-150-001,PER-0150,PER-0150-CO,business_partner,0.85,"{""verified"": true}" +REL-151-001,PER-0151,PER-0151-CO,parent,0.73,"{""verified"": true}" +REL-152-001,PER-0152,PER-0152-CO,spouse,0.84,"{""verified"": true}" +REL-154-001,PER-0154,PER-0154-CO,parent,0.86,"{""verified"": true}" +REL-155-001,PER-0155,PER-0155-CO,spouse,0.71,"{""verified"": true}" +REL-165-001,PER-0165,PER-0165-CO,parent,0.73,"{""verified"": true}" +REL-168-001,PER-0168,PER-0168-CO,spouse,0.77,"{""verified"": true}" +REL-184-001,PER-0184,PER-0184-CO,spouse,0.96,"{""verified"": false}" +REL-185-001,PER-0185,PER-0185-CO,sibling,1.0,"{""verified"": true}" +REL-186-001,PER-0186,PER-0186-CO,business_partner,0.78,"{""verified"": false}" +REL-188-001,PER-0188,PER-0188-CO,business_partner,0.88,"{""verified"": true}" +REL-190-001,PER-0190,PER-0190-CO,spouse,0.81,"{""verified"": true}" +REL-191-001,PER-0191,PER-0191-CO,sibling,0.73,"{""verified"": true}" +REL-195-001,PER-0195,PER-0195-CO,spouse,0.9,"{""verified"": true}" +REL-196-001,PER-0196,PER-0196-CO,parent,0.88,"{""verified"": false}" +REL-199-001,PER-0199,PER-0199-CO,sibling,0.87,"{""verified"": false}" +REL-204-001,PER-0204,PER-0204-CO,business_partner,0.85,"{""verified"": false}" +REL-205-001,PER-0205,PER-0205-CO,business_partner,0.97,"{""verified"": false}" +REL-210-001,PER-0210,PER-0210-CO,business_partner,0.86,"{""verified"": true}" +REL-215-001,PER-0215,PER-0215-CO,business_partner,0.81,"{""verified"": true}" +REL-217-001,PER-0217,PER-0217-CO,spouse,0.94,"{""verified"": true}" +REL-219-001,PER-0219,PER-0219-CO,parent,0.75,"{""verified"": true}" +REL-222-001,PER-0222,PER-0222-CO,parent,0.78,"{""verified"": true}" +REL-228-001,PER-0228,PER-0228-CO,sibling,0.85,"{""verified"": true}" +REL-229-001,PER-0229,PER-0229-CO,business_partner,0.87,"{""verified"": false}" +REL-232-001,PER-0232,PER-0232-CO,spouse,0.97,"{""verified"": true}" +REL-236-001,PER-0236,PER-0236-CO,spouse,0.84,"{""verified"": true}" +REL-242-001,PER-0242,PER-0242-CO,sibling,0.72,"{""verified"": false}" +REL-243-001,PER-0243,PER-0243-CO,spouse,0.82,"{""verified"": true}" +REL-244-001,PER-0244,PER-0244-CO,business_partner,0.81,"{""verified"": true}" +REL-246-001,PER-0246,PER-0246-CO,parent,0.77,"{""verified"": true}" +REL-249-001,PER-0249,PER-0249-CO,spouse,0.81,"{""verified"": false}" +REL-250-001,PER-0250,PER-0250-CO,sibling,0.86,"{""verified"": true}" diff --git a/db assets/synthetic_crm_v1/csv/crm_stage_history.csv b/db assets/synthetic_crm_v1/csv/crm_stage_history.csv new file mode 100644 index 00000000..d2e8f7d7 --- /dev/null +++ b/db assets/synthetic_crm_v1/csv/crm_stage_history.csv @@ -0,0 +1,1374 @@ +history_id,lead_id,from_stage,to_stage,changed_at,changed_by,reason +SH-1-0,LED-0001,,new,2025-09-29T00:00:00,user_003,re_engaged +SH-1-1,LED-0001,new,contacted,2025-10-09T00:00:00,user_005,negotiation_started +SH-1-2,LED-0001,contacted,qualified,2025-10-17T00:00:00,user_002,negotiation_started +SH-1-3,LED-0001,qualified,site_visit_scheduled,2025-10-28T00:00:00,user_003,stalled +SH-1-4,LED-0001,site_visit_scheduled,site_visit_done,2025-11-05T00:00:00,user_003,stalled +SH-1-5,LED-0001,site_visit_done,negotiation,2025-11-15T00:00:00,user_002,follow_up +SH-1-6,LED-0001,negotiation,booking_pending,2025-11-22T00:00:00,user_005,site_visit_completed +SH-1-7,LED-0001,booking_pending,closed_won,2025-11-28T00:00:00,user_003,site_visit_completed +SH-2-0,LED-0002,,new,2024-12-05T00:00:00,user_001,follow_up +SH-2-1,LED-0002,new,contacted,2024-12-14T00:00:00,user_002,progression +SH-2-2,LED-0002,contacted,qualified,2024-12-23T00:00:00,user_004,follow_up +SH-2-3,LED-0002,qualified,site_visit_scheduled,2025-01-06T00:00:00,user_003,progression +SH-2-4,LED-0002,site_visit_scheduled,site_visit_done,2025-01-09T00:00:00,user_003,stalled +SH-3-0,LED-0003,,new,2024-12-06T00:00:00,user_001,negotiation_started +SH-3-1,LED-0003,new,contacted,2024-12-13T00:00:00,user_002,negotiation_started +SH-3-2,LED-0003,contacted,qualified,2024-12-26T00:00:00,user_005,re_engaged +SH-3-3,LED-0003,qualified,site_visit_scheduled,2025-01-10T00:00:00,user_003,re_engaged +SH-3-4,LED-0003,site_visit_scheduled,site_visit_done,2025-01-14T00:00:00,user_003,site_visit_completed +SH-4-0,LED-0004,,new,2025-04-21T00:00:00,user_003,progression +SH-4-1,LED-0004,new,contacted,2025-05-05T00:00:00,user_002,stalled +SH-4-2,LED-0004,contacted,qualified,2025-05-09T00:00:00,user_001,negotiation_started +SH-4-3,LED-0004,qualified,site_visit_scheduled,2025-05-17T00:00:00,user_001,stalled +SH-4-4,LED-0004,site_visit_scheduled,site_visit_done,2025-05-20T00:00:00,user_001,negotiation_started +SH-4-5,LED-0004,site_visit_done,negotiation,2025-05-23T00:00:00,user_003,negotiation_started +SH-4-6,LED-0004,negotiation,booking_pending,2025-05-28T00:00:00,user_002,re_engaged +SH-4-7,LED-0004,booking_pending,closed_won,2025-06-11T00:00:00,user_004,site_visit_completed +SH-4-8,LED-0004,closed_won,closed_lost,2025-06-20T00:00:00,user_004,negotiation_started +SH-4-9,LED-0004,closed_lost,nurturing,2025-06-29T00:00:00,user_001,re_engaged +SH-5-0,LED-0005,,new,2024-06-04T00:00:00,user_005,re_engaged +SH-5-1,LED-0005,new,contacted,2024-06-12T00:00:00,user_002,site_visit_completed +SH-5-2,LED-0005,contacted,qualified,2024-06-17T00:00:00,user_005,follow_up +SH-5-3,LED-0005,qualified,site_visit_scheduled,2024-06-26T00:00:00,user_003,site_visit_completed +SH-5-4,LED-0005,site_visit_scheduled,site_visit_done,2024-06-29T00:00:00,user_005,stalled +SH-5-5,LED-0005,site_visit_done,negotiation,2024-07-13T00:00:00,user_002,re_engaged +SH-5-6,LED-0005,negotiation,booking_pending,2024-07-26T00:00:00,user_004,stalled +SH-5-7,LED-0005,booking_pending,closed_won,2024-08-05T00:00:00,user_001,site_visit_completed +SH-5-8,LED-0005,closed_won,closed_lost,2024-08-18T00:00:00,user_004,stalled +SH-6-0,LED-0006,,new,2024-07-17T00:00:00,user_001,follow_up +SH-7-0,LED-0007,,new,2024-08-10T00:00:00,user_002,progression +SH-7-1,LED-0007,new,contacted,2024-08-17T00:00:00,user_005,stalled +SH-7-2,LED-0007,contacted,qualified,2024-08-29T00:00:00,user_004,site_visit_completed +SH-7-3,LED-0007,qualified,site_visit_scheduled,2024-09-03T00:00:00,user_002,site_visit_completed +SH-7-4,LED-0007,site_visit_scheduled,site_visit_done,2024-09-09T00:00:00,user_004,stalled +SH-7-5,LED-0007,site_visit_done,negotiation,2024-09-15T00:00:00,user_004,stalled +SH-8-0,LED-0008,,new,2025-08-05T00:00:00,user_004,negotiation_started +SH-8-1,LED-0008,new,contacted,2025-08-14T00:00:00,user_005,negotiation_started +SH-8-2,LED-0008,contacted,qualified,2025-08-17T00:00:00,user_001,re_engaged +SH-8-3,LED-0008,qualified,site_visit_scheduled,2025-08-22T00:00:00,user_001,negotiation_started +SH-9-0,LED-0009,,new,2026-02-16T00:00:00,user_004,follow_up +SH-9-1,LED-0009,new,contacted,2026-02-20T00:00:00,user_003,stalled +SH-9-2,LED-0009,contacted,qualified,2026-03-07T00:00:00,user_005,stalled +SH-10-0,LED-0010,,new,2024-04-27T00:00:00,user_003,negotiation_started +SH-11-0,LED-0011,,new,2025-05-17T00:00:00,user_002,site_visit_completed +SH-11-1,LED-0011,new,contacted,2025-05-26T00:00:00,user_003,negotiation_started +SH-11-2,LED-0011,contacted,qualified,2025-06-03T00:00:00,user_001,stalled +SH-11-3,LED-0011,qualified,site_visit_scheduled,2025-06-09T00:00:00,user_005,stalled +SH-11-4,LED-0011,site_visit_scheduled,site_visit_done,2025-06-14T00:00:00,user_005,progression +SH-11-5,LED-0011,site_visit_done,negotiation,2025-06-28T00:00:00,user_004,re_engaged +SH-12-0,LED-0012,,new,2024-04-10T00:00:00,user_005,progression +SH-12-1,LED-0012,new,contacted,2024-04-22T00:00:00,user_004,site_visit_completed +SH-13-0,LED-0013,,new,2025-02-21T00:00:00,user_005,follow_up +SH-13-1,LED-0013,new,contacted,2025-03-03T00:00:00,user_005,negotiation_started +SH-13-2,LED-0013,contacted,qualified,2025-03-12T00:00:00,user_001,re_engaged +SH-14-0,LED-0014,,new,2025-12-29T00:00:00,user_003,progression +SH-14-1,LED-0014,new,contacted,2026-01-03T00:00:00,user_003,re_engaged +SH-14-2,LED-0014,contacted,qualified,2026-01-08T00:00:00,user_005,negotiation_started +SH-14-3,LED-0014,qualified,site_visit_scheduled,2026-01-17T00:00:00,user_005,follow_up +SH-14-4,LED-0014,site_visit_scheduled,site_visit_done,2026-01-29T00:00:00,user_004,negotiation_started +SH-15-0,LED-0015,,new,2025-04-17T00:00:00,user_003,stalled +SH-15-1,LED-0015,new,contacted,2025-04-25T00:00:00,user_005,progression +SH-15-2,LED-0015,contacted,qualified,2025-05-10T00:00:00,user_004,stalled +SH-15-3,LED-0015,qualified,site_visit_scheduled,2025-05-16T00:00:00,user_004,progression +SH-15-4,LED-0015,site_visit_scheduled,site_visit_done,2025-05-30T00:00:00,user_002,site_visit_completed +SH-15-5,LED-0015,site_visit_done,negotiation,2025-06-02T00:00:00,user_004,site_visit_completed +SH-15-6,LED-0015,negotiation,booking_pending,2025-06-10T00:00:00,user_001,negotiation_started +SH-15-7,LED-0015,booking_pending,closed_won,2025-06-14T00:00:00,user_002,follow_up +SH-15-8,LED-0015,closed_won,closed_lost,2025-06-29T00:00:00,user_005,re_engaged +SH-15-9,LED-0015,closed_lost,nurturing,2025-07-07T00:00:00,user_005,re_engaged +SH-16-0,LED-0016,,new,2024-04-13T00:00:00,user_005,progression +SH-16-1,LED-0016,new,contacted,2024-04-28T00:00:00,user_001,re_engaged +SH-16-2,LED-0016,contacted,qualified,2024-05-08T00:00:00,user_003,progression +SH-16-3,LED-0016,qualified,site_visit_scheduled,2024-05-23T00:00:00,user_005,negotiation_started +SH-16-4,LED-0016,site_visit_scheduled,site_visit_done,2024-05-29T00:00:00,user_004,follow_up +SH-16-5,LED-0016,site_visit_done,negotiation,2024-06-08T00:00:00,user_003,site_visit_completed +SH-16-6,LED-0016,negotiation,booking_pending,2024-06-15T00:00:00,user_003,stalled +SH-17-0,LED-0017,,new,2026-01-27T00:00:00,user_002,re_engaged +SH-17-1,LED-0017,new,contacted,2026-02-09T00:00:00,user_002,progression +SH-18-0,LED-0018,,new,2024-11-08T00:00:00,user_005,progression +SH-19-0,LED-0019,,new,2026-01-27T00:00:00,user_005,stalled +SH-19-1,LED-0019,new,contacted,2026-01-30T00:00:00,user_003,re_engaged +SH-19-2,LED-0019,contacted,qualified,2026-02-13T00:00:00,user_002,progression +SH-19-3,LED-0019,qualified,site_visit_scheduled,2026-02-16T00:00:00,user_002,re_engaged +SH-20-0,LED-0020,,new,2024-09-21T00:00:00,user_001,follow_up +SH-20-1,LED-0020,new,contacted,2024-09-24T00:00:00,user_004,site_visit_completed +SH-21-0,LED-0021,,new,2024-07-25T00:00:00,user_005,site_visit_completed +SH-21-1,LED-0021,new,contacted,2024-08-07T00:00:00,user_001,site_visit_completed +SH-21-2,LED-0021,contacted,qualified,2024-08-10T00:00:00,user_004,re_engaged +SH-21-3,LED-0021,qualified,site_visit_scheduled,2024-08-24T00:00:00,user_003,progression +SH-21-4,LED-0021,site_visit_scheduled,site_visit_done,2024-08-30T00:00:00,user_005,follow_up +SH-21-5,LED-0021,site_visit_done,negotiation,2024-09-08T00:00:00,user_004,progression +SH-21-6,LED-0021,negotiation,booking_pending,2024-09-13T00:00:00,user_003,progression +SH-21-7,LED-0021,booking_pending,closed_won,2024-09-16T00:00:00,user_002,stalled +SH-21-8,LED-0021,closed_won,closed_lost,2024-09-25T00:00:00,user_003,negotiation_started +SH-22-0,LED-0022,,new,2024-06-01T00:00:00,user_003,re_engaged +SH-22-1,LED-0022,new,contacted,2024-06-14T00:00:00,user_001,stalled +SH-23-0,LED-0023,,new,2024-12-26T00:00:00,user_005,follow_up +SH-23-1,LED-0023,new,contacted,2024-12-29T00:00:00,user_003,progression +SH-23-2,LED-0023,contacted,qualified,2025-01-13T00:00:00,user_004,stalled +SH-23-3,LED-0023,qualified,site_visit_scheduled,2025-01-21T00:00:00,user_005,follow_up +SH-23-4,LED-0023,site_visit_scheduled,site_visit_done,2025-01-26T00:00:00,user_001,follow_up +SH-23-5,LED-0023,site_visit_done,negotiation,2025-02-08T00:00:00,user_002,site_visit_completed +SH-23-6,LED-0023,negotiation,booking_pending,2025-02-19T00:00:00,user_001,follow_up +SH-23-7,LED-0023,booking_pending,closed_won,2025-03-03T00:00:00,user_004,site_visit_completed +SH-23-8,LED-0023,closed_won,closed_lost,2025-03-08T00:00:00,user_002,follow_up +SH-23-9,LED-0023,closed_lost,nurturing,2025-03-20T00:00:00,user_003,re_engaged +SH-24-0,LED-0024,,new,2026-01-03T00:00:00,user_003,re_engaged +SH-24-1,LED-0024,new,contacted,2026-01-17T00:00:00,user_003,follow_up +SH-24-2,LED-0024,contacted,qualified,2026-01-22T00:00:00,user_001,re_engaged +SH-24-3,LED-0024,qualified,site_visit_scheduled,2026-02-03T00:00:00,user_004,stalled +SH-24-4,LED-0024,site_visit_scheduled,site_visit_done,2026-02-06T00:00:00,user_002,stalled +SH-24-5,LED-0024,site_visit_done,negotiation,2026-02-14T00:00:00,user_005,follow_up +SH-24-6,LED-0024,negotiation,booking_pending,2026-02-27T00:00:00,user_005,progression +SH-24-7,LED-0024,booking_pending,closed_won,2026-03-09T00:00:00,user_002,site_visit_completed +SH-24-8,LED-0024,closed_won,closed_lost,2026-03-23T00:00:00,user_001,follow_up +SH-25-0,LED-0025,,new,2024-06-27T00:00:00,user_001,negotiation_started +SH-25-1,LED-0025,new,contacted,2024-07-10T00:00:00,user_002,stalled +SH-26-0,LED-0026,,new,2025-02-03T00:00:00,user_003,negotiation_started +SH-26-1,LED-0026,new,contacted,2025-02-13T00:00:00,user_003,follow_up +SH-26-2,LED-0026,contacted,qualified,2025-02-20T00:00:00,user_005,progression +SH-27-0,LED-0027,,new,2024-07-03T00:00:00,user_004,follow_up +SH-27-1,LED-0027,new,contacted,2024-07-16T00:00:00,user_002,stalled +SH-27-2,LED-0027,contacted,qualified,2024-07-23T00:00:00,user_003,re_engaged +SH-27-3,LED-0027,qualified,site_visit_scheduled,2024-08-07T00:00:00,user_001,progression +SH-28-0,LED-0028,,new,2024-09-04T00:00:00,user_004,stalled +SH-28-1,LED-0028,new,contacted,2024-09-17T00:00:00,user_001,follow_up +SH-28-2,LED-0028,contacted,qualified,2024-09-27T00:00:00,user_002,negotiation_started +SH-29-0,LED-0029,,new,2025-05-12T00:00:00,user_003,re_engaged +SH-29-1,LED-0029,new,contacted,2025-05-26T00:00:00,user_003,negotiation_started +SH-29-2,LED-0029,contacted,qualified,2025-06-04T00:00:00,user_003,negotiation_started +SH-30-0,LED-0030,,new,2024-11-12T00:00:00,user_005,follow_up +SH-30-1,LED-0030,new,contacted,2024-11-20T00:00:00,user_002,re_engaged +SH-30-2,LED-0030,contacted,qualified,2024-12-01T00:00:00,user_004,re_engaged +SH-30-3,LED-0030,qualified,site_visit_scheduled,2024-12-09T00:00:00,user_005,site_visit_completed +SH-30-4,LED-0030,site_visit_scheduled,site_visit_done,2024-12-14T00:00:00,user_005,follow_up +SH-31-0,LED-0031,,new,2025-10-08T00:00:00,user_003,negotiation_started +SH-31-1,LED-0031,new,contacted,2025-10-11T00:00:00,user_002,follow_up +SH-32-0,LED-0032,,new,2024-08-31T00:00:00,user_003,follow_up +SH-32-1,LED-0032,new,contacted,2024-09-04T00:00:00,user_001,site_visit_completed +SH-32-2,LED-0032,contacted,qualified,2024-09-11T00:00:00,user_004,re_engaged +SH-32-3,LED-0032,qualified,site_visit_scheduled,2024-09-22T00:00:00,user_005,stalled +SH-32-4,LED-0032,site_visit_scheduled,site_visit_done,2024-09-30T00:00:00,user_004,re_engaged +SH-32-5,LED-0032,site_visit_done,negotiation,2024-10-05T00:00:00,user_003,negotiation_started +SH-33-0,LED-0033,,new,2025-03-16T00:00:00,user_002,follow_up +SH-33-1,LED-0033,new,contacted,2025-03-30T00:00:00,user_001,site_visit_completed +SH-33-2,LED-0033,contacted,qualified,2025-04-08T00:00:00,user_001,re_engaged +SH-33-3,LED-0033,qualified,site_visit_scheduled,2025-04-19T00:00:00,user_003,stalled +SH-33-4,LED-0033,site_visit_scheduled,site_visit_done,2025-05-01T00:00:00,user_002,negotiation_started +SH-33-5,LED-0033,site_visit_done,negotiation,2025-05-05T00:00:00,user_005,re_engaged +SH-33-6,LED-0033,negotiation,booking_pending,2025-05-17T00:00:00,user_001,site_visit_completed +SH-33-7,LED-0033,booking_pending,closed_won,2025-05-21T00:00:00,user_001,negotiation_started +SH-34-0,LED-0034,,new,2024-04-15T00:00:00,user_004,stalled +SH-35-0,LED-0035,,new,2025-11-24T00:00:00,user_004,follow_up +SH-35-1,LED-0035,new,contacted,2025-12-05T00:00:00,user_005,progression +SH-35-2,LED-0035,contacted,qualified,2025-12-08T00:00:00,user_002,stalled +SH-35-3,LED-0035,qualified,site_visit_scheduled,2025-12-18T00:00:00,user_004,follow_up +SH-35-4,LED-0035,site_visit_scheduled,site_visit_done,2025-12-22T00:00:00,user_004,site_visit_completed +SH-35-5,LED-0035,site_visit_done,negotiation,2025-12-28T00:00:00,user_003,site_visit_completed +SH-36-0,LED-0036,,new,2025-10-03T00:00:00,user_001,follow_up +SH-36-1,LED-0036,new,contacted,2025-10-13T00:00:00,user_003,stalled +SH-36-2,LED-0036,contacted,qualified,2025-10-28T00:00:00,user_005,stalled +SH-36-3,LED-0036,qualified,site_visit_scheduled,2025-11-07T00:00:00,user_003,re_engaged +SH-36-4,LED-0036,site_visit_scheduled,site_visit_done,2025-11-17T00:00:00,user_001,progression +SH-37-0,LED-0037,,new,2024-10-16T00:00:00,user_005,re_engaged +SH-37-1,LED-0037,new,contacted,2024-10-30T00:00:00,user_005,site_visit_completed +SH-37-2,LED-0037,contacted,qualified,2024-11-13T00:00:00,user_005,site_visit_completed +SH-37-3,LED-0037,qualified,site_visit_scheduled,2024-11-27T00:00:00,user_005,re_engaged +SH-37-4,LED-0037,site_visit_scheduled,site_visit_done,2024-12-03T00:00:00,user_002,follow_up +SH-37-5,LED-0037,site_visit_done,negotiation,2024-12-15T00:00:00,user_003,re_engaged +SH-37-6,LED-0037,negotiation,booking_pending,2024-12-23T00:00:00,user_002,re_engaged +SH-38-0,LED-0038,,new,2025-10-30T00:00:00,user_001,follow_up +SH-38-1,LED-0038,new,contacted,2025-11-04T00:00:00,user_005,progression +SH-38-2,LED-0038,contacted,qualified,2025-11-13T00:00:00,user_001,negotiation_started +SH-38-3,LED-0038,qualified,site_visit_scheduled,2025-11-20T00:00:00,user_005,site_visit_completed +SH-38-4,LED-0038,site_visit_scheduled,site_visit_done,2025-11-25T00:00:00,user_002,stalled +SH-38-5,LED-0038,site_visit_done,negotiation,2025-12-02T00:00:00,user_001,site_visit_completed +SH-39-0,LED-0039,,new,2025-08-10T00:00:00,user_005,stalled +SH-40-0,LED-0040,,new,2024-01-30T00:00:00,user_003,stalled +SH-40-1,LED-0040,new,contacted,2024-02-03T00:00:00,user_005,follow_up +SH-40-2,LED-0040,contacted,qualified,2024-02-10T00:00:00,user_004,negotiation_started +SH-40-3,LED-0040,qualified,site_visit_scheduled,2024-02-20T00:00:00,user_004,negotiation_started +SH-40-4,LED-0040,site_visit_scheduled,site_visit_done,2024-02-28T00:00:00,user_001,negotiation_started +SH-40-5,LED-0040,site_visit_done,negotiation,2024-03-12T00:00:00,user_001,stalled +SH-40-6,LED-0040,negotiation,booking_pending,2024-03-15T00:00:00,user_005,progression +SH-40-7,LED-0040,booking_pending,closed_won,2024-03-30T00:00:00,user_005,progression +SH-41-0,LED-0041,,new,2024-03-09T00:00:00,user_001,site_visit_completed +SH-41-1,LED-0041,new,contacted,2024-03-13T00:00:00,user_002,re_engaged +SH-41-2,LED-0041,contacted,qualified,2024-03-25T00:00:00,user_004,site_visit_completed +SH-41-3,LED-0041,qualified,site_visit_scheduled,2024-04-02T00:00:00,user_002,re_engaged +SH-41-4,LED-0041,site_visit_scheduled,site_visit_done,2024-04-15T00:00:00,user_002,progression +SH-41-5,LED-0041,site_visit_done,negotiation,2024-04-22T00:00:00,user_005,progression +SH-41-6,LED-0041,negotiation,booking_pending,2024-04-28T00:00:00,user_003,negotiation_started +SH-41-7,LED-0041,booking_pending,closed_won,2024-05-08T00:00:00,user_003,stalled +SH-41-8,LED-0041,closed_won,closed_lost,2024-05-21T00:00:00,user_003,re_engaged +SH-42-0,LED-0042,,new,2025-07-24T00:00:00,user_005,re_engaged +SH-42-1,LED-0042,new,contacted,2025-07-31T00:00:00,user_002,negotiation_started +SH-42-2,LED-0042,contacted,qualified,2025-08-11T00:00:00,user_005,progression +SH-42-3,LED-0042,qualified,site_visit_scheduled,2025-08-20T00:00:00,user_003,stalled +SH-42-4,LED-0042,site_visit_scheduled,site_visit_done,2025-08-23T00:00:00,user_002,stalled +SH-43-0,LED-0043,,new,2024-03-27T00:00:00,user_005,re_engaged +SH-43-1,LED-0043,new,contacted,2024-03-31T00:00:00,user_002,negotiation_started +SH-43-2,LED-0043,contacted,qualified,2024-04-15T00:00:00,user_003,re_engaged +SH-43-3,LED-0043,qualified,site_visit_scheduled,2024-04-19T00:00:00,user_004,re_engaged +SH-43-4,LED-0043,site_visit_scheduled,site_visit_done,2024-04-29T00:00:00,user_004,follow_up +SH-43-5,LED-0043,site_visit_done,negotiation,2024-05-11T00:00:00,user_002,re_engaged +SH-43-6,LED-0043,negotiation,booking_pending,2024-05-20T00:00:00,user_001,follow_up +SH-43-7,LED-0043,booking_pending,closed_won,2024-05-23T00:00:00,user_002,stalled +SH-43-8,LED-0043,closed_won,closed_lost,2024-06-04T00:00:00,user_002,follow_up +SH-44-0,LED-0044,,new,2024-01-08T00:00:00,user_004,negotiation_started +SH-44-1,LED-0044,new,contacted,2024-01-16T00:00:00,user_005,re_engaged +SH-44-2,LED-0044,contacted,qualified,2024-01-31T00:00:00,user_005,progression +SH-44-3,LED-0044,qualified,site_visit_scheduled,2024-02-09T00:00:00,user_002,site_visit_completed +SH-44-4,LED-0044,site_visit_scheduled,site_visit_done,2024-02-19T00:00:00,user_002,progression +SH-44-5,LED-0044,site_visit_done,negotiation,2024-02-26T00:00:00,user_005,stalled +SH-44-6,LED-0044,negotiation,booking_pending,2024-03-06T00:00:00,user_003,follow_up +SH-45-0,LED-0045,,new,2025-05-16T00:00:00,user_005,site_visit_completed +SH-45-1,LED-0045,new,contacted,2025-05-31T00:00:00,user_004,re_engaged +SH-45-2,LED-0045,contacted,qualified,2025-06-05T00:00:00,user_001,re_engaged +SH-46-0,LED-0046,,new,2025-02-27T00:00:00,user_004,negotiation_started +SH-46-1,LED-0046,new,contacted,2025-03-02T00:00:00,user_002,re_engaged +SH-46-2,LED-0046,contacted,qualified,2025-03-17T00:00:00,user_005,site_visit_completed +SH-46-3,LED-0046,qualified,site_visit_scheduled,2025-03-23T00:00:00,user_001,stalled +SH-46-4,LED-0046,site_visit_scheduled,site_visit_done,2025-04-03T00:00:00,user_005,re_engaged +SH-46-5,LED-0046,site_visit_done,negotiation,2025-04-09T00:00:00,user_005,follow_up +SH-46-6,LED-0046,negotiation,booking_pending,2025-04-22T00:00:00,user_001,site_visit_completed +SH-46-7,LED-0046,booking_pending,closed_won,2025-04-28T00:00:00,user_001,follow_up +SH-46-8,LED-0046,closed_won,closed_lost,2025-05-02T00:00:00,user_003,negotiation_started +SH-46-9,LED-0046,closed_lost,nurturing,2025-05-10T00:00:00,user_004,negotiation_started +SH-47-0,LED-0047,,new,2026-02-24T00:00:00,user_001,site_visit_completed +SH-47-1,LED-0047,new,contacted,2026-02-28T00:00:00,user_004,re_engaged +SH-47-2,LED-0047,contacted,qualified,2026-03-15T00:00:00,user_002,re_engaged +SH-47-3,LED-0047,qualified,site_visit_scheduled,2026-03-29T00:00:00,user_002,site_visit_completed +SH-47-4,LED-0047,site_visit_scheduled,site_visit_done,2026-04-07T00:00:00,user_003,stalled +SH-47-5,LED-0047,site_visit_done,negotiation,2026-04-18T00:00:00,user_001,re_engaged +SH-48-0,LED-0048,,new,2025-01-02T00:00:00,user_005,progression +SH-48-1,LED-0048,new,contacted,2025-01-12T00:00:00,user_003,stalled +SH-48-2,LED-0048,contacted,qualified,2025-01-20T00:00:00,user_004,stalled +SH-49-0,LED-0049,,new,2024-04-20T00:00:00,user_002,site_visit_completed +SH-49-1,LED-0049,new,contacted,2024-04-30T00:00:00,user_005,site_visit_completed +SH-49-2,LED-0049,contacted,qualified,2024-05-08T00:00:00,user_002,negotiation_started +SH-49-3,LED-0049,qualified,site_visit_scheduled,2024-05-17T00:00:00,user_002,negotiation_started +SH-49-4,LED-0049,site_visit_scheduled,site_visit_done,2024-05-31T00:00:00,user_003,site_visit_completed +SH-49-5,LED-0049,site_visit_done,negotiation,2024-06-09T00:00:00,user_003,negotiation_started +SH-50-0,LED-0050,,new,2025-12-18T00:00:00,user_003,site_visit_completed +SH-50-1,LED-0050,new,contacted,2025-12-26T00:00:00,user_003,stalled +SH-50-2,LED-0050,contacted,qualified,2026-01-06T00:00:00,user_003,site_visit_completed +SH-51-0,LED-0051,,new,2025-09-21T00:00:00,user_004,follow_up +SH-51-1,LED-0051,new,contacted,2025-09-26T00:00:00,user_001,follow_up +SH-51-2,LED-0051,contacted,qualified,2025-10-10T00:00:00,user_002,re_engaged +SH-51-3,LED-0051,qualified,site_visit_scheduled,2025-10-17T00:00:00,user_001,follow_up +SH-51-4,LED-0051,site_visit_scheduled,site_visit_done,2025-10-22T00:00:00,user_004,progression +SH-51-5,LED-0051,site_visit_done,negotiation,2025-10-26T00:00:00,user_001,negotiation_started +SH-51-6,LED-0051,negotiation,booking_pending,2025-11-06T00:00:00,user_001,progression +SH-52-0,LED-0052,,new,2025-05-17T00:00:00,user_003,follow_up +SH-52-1,LED-0052,new,contacted,2025-05-24T00:00:00,user_001,progression +SH-52-2,LED-0052,contacted,qualified,2025-06-04T00:00:00,user_002,site_visit_completed +SH-52-3,LED-0052,qualified,site_visit_scheduled,2025-06-11T00:00:00,user_004,stalled +SH-52-4,LED-0052,site_visit_scheduled,site_visit_done,2025-06-14T00:00:00,user_004,negotiation_started +SH-52-5,LED-0052,site_visit_done,negotiation,2025-06-21T00:00:00,user_001,negotiation_started +SH-52-6,LED-0052,negotiation,booking_pending,2025-07-06T00:00:00,user_003,stalled +SH-52-7,LED-0052,booking_pending,closed_won,2025-07-12T00:00:00,user_001,stalled +SH-52-8,LED-0052,closed_won,closed_lost,2025-07-20T00:00:00,user_002,negotiation_started +SH-53-0,LED-0053,,new,2025-12-29T00:00:00,user_004,progression +SH-54-0,LED-0054,,new,2025-12-15T00:00:00,user_001,re_engaged +SH-54-1,LED-0054,new,contacted,2025-12-27T00:00:00,user_003,re_engaged +SH-54-2,LED-0054,contacted,qualified,2025-12-30T00:00:00,user_001,site_visit_completed +SH-54-3,LED-0054,qualified,site_visit_scheduled,2026-01-12T00:00:00,user_002,re_engaged +SH-54-4,LED-0054,site_visit_scheduled,site_visit_done,2026-01-23T00:00:00,user_001,follow_up +SH-54-5,LED-0054,site_visit_done,negotiation,2026-02-02T00:00:00,user_002,site_visit_completed +SH-54-6,LED-0054,negotiation,booking_pending,2026-02-13T00:00:00,user_003,negotiation_started +SH-54-7,LED-0054,booking_pending,closed_won,2026-02-27T00:00:00,user_002,progression +SH-54-8,LED-0054,closed_won,closed_lost,2026-03-13T00:00:00,user_004,site_visit_completed +SH-54-9,LED-0054,closed_lost,nurturing,2026-03-27T00:00:00,user_002,site_visit_completed +SH-55-0,LED-0055,,new,2025-10-03T00:00:00,user_005,re_engaged +SH-55-1,LED-0055,new,contacted,2025-10-13T00:00:00,user_005,follow_up +SH-55-2,LED-0055,contacted,qualified,2025-10-25T00:00:00,user_003,site_visit_completed +SH-55-3,LED-0055,qualified,site_visit_scheduled,2025-11-03T00:00:00,user_003,progression +SH-56-0,LED-0056,,new,2025-10-31T00:00:00,user_001,stalled +SH-57-0,LED-0057,,new,2024-12-19T00:00:00,user_004,re_engaged +SH-57-1,LED-0057,new,contacted,2024-12-28T00:00:00,user_003,stalled +SH-57-2,LED-0057,contacted,qualified,2025-01-03T00:00:00,user_005,stalled +SH-58-0,LED-0058,,new,2024-04-19T00:00:00,user_004,follow_up +SH-58-1,LED-0058,new,contacted,2024-04-29T00:00:00,user_005,progression +SH-58-2,LED-0058,contacted,qualified,2024-05-11T00:00:00,user_003,progression +SH-58-3,LED-0058,qualified,site_visit_scheduled,2024-05-25T00:00:00,user_005,negotiation_started +SH-58-4,LED-0058,site_visit_scheduled,site_visit_done,2024-05-29T00:00:00,user_001,site_visit_completed +SH-58-5,LED-0058,site_visit_done,negotiation,2024-06-06T00:00:00,user_004,negotiation_started +SH-58-6,LED-0058,negotiation,booking_pending,2024-06-10T00:00:00,user_002,re_engaged +SH-58-7,LED-0058,booking_pending,closed_won,2024-06-23T00:00:00,user_005,progression +SH-58-8,LED-0058,closed_won,closed_lost,2024-07-06T00:00:00,user_004,progression +SH-58-9,LED-0058,closed_lost,nurturing,2024-07-13T00:00:00,user_005,progression +SH-59-0,LED-0059,,new,2025-03-24T00:00:00,user_003,follow_up +SH-59-1,LED-0059,new,contacted,2025-04-01T00:00:00,user_003,stalled +SH-59-2,LED-0059,contacted,qualified,2025-04-14T00:00:00,user_001,site_visit_completed +SH-59-3,LED-0059,qualified,site_visit_scheduled,2025-04-19T00:00:00,user_003,stalled +SH-59-4,LED-0059,site_visit_scheduled,site_visit_done,2025-05-04T00:00:00,user_004,stalled +SH-59-5,LED-0059,site_visit_done,negotiation,2025-05-09T00:00:00,user_004,progression +SH-60-0,LED-0060,,new,2024-01-25T00:00:00,user_005,site_visit_completed +SH-60-1,LED-0060,new,contacted,2024-01-28T00:00:00,user_004,re_engaged +SH-60-2,LED-0060,contacted,qualified,2024-01-31T00:00:00,user_001,negotiation_started +SH-60-3,LED-0060,qualified,site_visit_scheduled,2024-02-13T00:00:00,user_003,re_engaged +SH-60-4,LED-0060,site_visit_scheduled,site_visit_done,2024-02-26T00:00:00,user_003,progression +SH-60-5,LED-0060,site_visit_done,negotiation,2024-02-29T00:00:00,user_003,re_engaged +SH-60-6,LED-0060,negotiation,booking_pending,2024-03-09T00:00:00,user_002,negotiation_started +SH-61-0,LED-0061,,new,2024-02-13T00:00:00,user_002,progression +SH-61-1,LED-0061,new,contacted,2024-02-27T00:00:00,user_004,stalled +SH-61-2,LED-0061,contacted,qualified,2024-03-11T00:00:00,user_005,re_engaged +SH-61-3,LED-0061,qualified,site_visit_scheduled,2024-03-24T00:00:00,user_002,negotiation_started +SH-61-4,LED-0061,site_visit_scheduled,site_visit_done,2024-03-30T00:00:00,user_005,follow_up +SH-61-5,LED-0061,site_visit_done,negotiation,2024-04-08T00:00:00,user_003,stalled +SH-61-6,LED-0061,negotiation,booking_pending,2024-04-16T00:00:00,user_004,stalled +SH-61-7,LED-0061,booking_pending,closed_won,2024-04-21T00:00:00,user_002,re_engaged +SH-61-8,LED-0061,closed_won,closed_lost,2024-04-26T00:00:00,user_005,stalled +SH-62-0,LED-0062,,new,2024-10-07T00:00:00,user_002,negotiation_started +SH-62-1,LED-0062,new,contacted,2024-10-19T00:00:00,user_004,re_engaged +SH-62-2,LED-0062,contacted,qualified,2024-10-27T00:00:00,user_004,follow_up +SH-62-3,LED-0062,qualified,site_visit_scheduled,2024-11-05T00:00:00,user_004,progression +SH-62-4,LED-0062,site_visit_scheduled,site_visit_done,2024-11-17T00:00:00,user_004,re_engaged +SH-62-5,LED-0062,site_visit_done,negotiation,2024-11-25T00:00:00,user_004,stalled +SH-62-6,LED-0062,negotiation,booking_pending,2024-12-09T00:00:00,user_005,stalled +SH-63-0,LED-0063,,new,2026-01-13T00:00:00,user_001,progression +SH-63-1,LED-0063,new,contacted,2026-01-17T00:00:00,user_004,re_engaged +SH-63-2,LED-0063,contacted,qualified,2026-01-25T00:00:00,user_001,stalled +SH-63-3,LED-0063,qualified,site_visit_scheduled,2026-02-08T00:00:00,user_004,re_engaged +SH-64-0,LED-0064,,new,2024-09-10T00:00:00,user_002,follow_up +SH-64-1,LED-0064,new,contacted,2024-09-13T00:00:00,user_003,progression +SH-64-2,LED-0064,contacted,qualified,2024-09-18T00:00:00,user_001,re_engaged +SH-64-3,LED-0064,qualified,site_visit_scheduled,2024-09-30T00:00:00,user_005,site_visit_completed +SH-64-4,LED-0064,site_visit_scheduled,site_visit_done,2024-10-08T00:00:00,user_001,progression +SH-64-5,LED-0064,site_visit_done,negotiation,2024-10-12T00:00:00,user_004,follow_up +SH-64-6,LED-0064,negotiation,booking_pending,2024-10-17T00:00:00,user_003,stalled +SH-64-7,LED-0064,booking_pending,closed_won,2024-10-30T00:00:00,user_005,stalled +SH-64-8,LED-0064,closed_won,closed_lost,2024-11-14T00:00:00,user_005,follow_up +SH-65-0,LED-0065,,new,2026-01-05T00:00:00,user_005,site_visit_completed +SH-65-1,LED-0065,new,contacted,2026-01-10T00:00:00,user_005,stalled +SH-65-2,LED-0065,contacted,qualified,2026-01-20T00:00:00,user_005,re_engaged +SH-65-3,LED-0065,qualified,site_visit_scheduled,2026-02-02T00:00:00,user_004,negotiation_started +SH-65-4,LED-0065,site_visit_scheduled,site_visit_done,2026-02-17T00:00:00,user_002,stalled +SH-66-0,LED-0066,,new,2025-08-18T00:00:00,user_004,negotiation_started +SH-66-1,LED-0066,new,contacted,2025-09-02T00:00:00,user_001,re_engaged +SH-66-2,LED-0066,contacted,qualified,2025-09-07T00:00:00,user_004,follow_up +SH-66-3,LED-0066,qualified,site_visit_scheduled,2025-09-20T00:00:00,user_004,stalled +SH-66-4,LED-0066,site_visit_scheduled,site_visit_done,2025-09-28T00:00:00,user_004,negotiation_started +SH-66-5,LED-0066,site_visit_done,negotiation,2025-10-12T00:00:00,user_001,stalled +SH-66-6,LED-0066,negotiation,booking_pending,2025-10-19T00:00:00,user_005,re_engaged +SH-66-7,LED-0066,booking_pending,closed_won,2025-11-01T00:00:00,user_003,stalled +SH-66-8,LED-0066,closed_won,closed_lost,2025-11-12T00:00:00,user_001,follow_up +SH-66-9,LED-0066,closed_lost,nurturing,2025-11-24T00:00:00,user_003,site_visit_completed +SH-67-0,LED-0067,,new,2025-04-07T00:00:00,user_004,re_engaged +SH-67-1,LED-0067,new,contacted,2025-04-18T00:00:00,user_003,site_visit_completed +SH-67-2,LED-0067,contacted,qualified,2025-04-23T00:00:00,user_001,stalled +SH-67-3,LED-0067,qualified,site_visit_scheduled,2025-05-06T00:00:00,user_002,follow_up +SH-67-4,LED-0067,site_visit_scheduled,site_visit_done,2025-05-20T00:00:00,user_001,negotiation_started +SH-67-5,LED-0067,site_visit_done,negotiation,2025-05-29T00:00:00,user_005,progression +SH-67-6,LED-0067,negotiation,booking_pending,2025-06-01T00:00:00,user_003,progression +SH-67-7,LED-0067,booking_pending,closed_won,2025-06-14T00:00:00,user_005,progression +SH-67-8,LED-0067,closed_won,closed_lost,2025-06-22T00:00:00,user_004,progression +SH-68-0,LED-0068,,new,2024-10-25T00:00:00,user_005,negotiation_started +SH-68-1,LED-0068,new,contacted,2024-10-28T00:00:00,user_002,progression +SH-68-2,LED-0068,contacted,qualified,2024-11-07T00:00:00,user_001,progression +SH-68-3,LED-0068,qualified,site_visit_scheduled,2024-11-16T00:00:00,user_001,progression +SH-68-4,LED-0068,site_visit_scheduled,site_visit_done,2024-11-25T00:00:00,user_004,follow_up +SH-68-5,LED-0068,site_visit_done,negotiation,2024-12-09T00:00:00,user_005,stalled +SH-68-6,LED-0068,negotiation,booking_pending,2024-12-22T00:00:00,user_004,stalled +SH-68-7,LED-0068,booking_pending,closed_won,2024-12-30T00:00:00,user_003,site_visit_completed +SH-68-8,LED-0068,closed_won,closed_lost,2025-01-05T00:00:00,user_005,progression +SH-68-9,LED-0068,closed_lost,nurturing,2025-01-20T00:00:00,user_004,stalled +SH-69-0,LED-0069,,new,2024-05-21T00:00:00,user_001,site_visit_completed +SH-69-1,LED-0069,new,contacted,2024-06-01T00:00:00,user_004,negotiation_started +SH-69-2,LED-0069,contacted,qualified,2024-06-13T00:00:00,user_004,follow_up +SH-69-3,LED-0069,qualified,site_visit_scheduled,2024-06-25T00:00:00,user_002,stalled +SH-69-4,LED-0069,site_visit_scheduled,site_visit_done,2024-06-30T00:00:00,user_004,negotiation_started +SH-69-5,LED-0069,site_visit_done,negotiation,2024-07-04T00:00:00,user_003,follow_up +SH-69-6,LED-0069,negotiation,booking_pending,2024-07-18T00:00:00,user_005,negotiation_started +SH-69-7,LED-0069,booking_pending,closed_won,2024-08-02T00:00:00,user_004,stalled +SH-69-8,LED-0069,closed_won,closed_lost,2024-08-17T00:00:00,user_003,stalled +SH-70-0,LED-0070,,new,2024-12-25T00:00:00,user_001,site_visit_completed +SH-70-1,LED-0070,new,contacted,2025-01-05T00:00:00,user_001,progression +SH-71-0,LED-0071,,new,2026-01-21T00:00:00,user_001,stalled +SH-71-1,LED-0071,new,contacted,2026-01-31T00:00:00,user_003,progression +SH-71-2,LED-0071,contacted,qualified,2026-02-12T00:00:00,user_004,re_engaged +SH-71-3,LED-0071,qualified,site_visit_scheduled,2026-02-16T00:00:00,user_002,re_engaged +SH-72-0,LED-0072,,new,2026-02-06T00:00:00,user_002,site_visit_completed +SH-72-1,LED-0072,new,contacted,2026-02-21T00:00:00,user_002,negotiation_started +SH-73-0,LED-0073,,new,2025-12-26T00:00:00,user_003,negotiation_started +SH-73-1,LED-0073,new,contacted,2026-01-04T00:00:00,user_003,stalled +SH-73-2,LED-0073,contacted,qualified,2026-01-17T00:00:00,user_001,progression +SH-73-3,LED-0073,qualified,site_visit_scheduled,2026-01-28T00:00:00,user_003,negotiation_started +SH-73-4,LED-0073,site_visit_scheduled,site_visit_done,2026-02-09T00:00:00,user_003,site_visit_completed +SH-73-5,LED-0073,site_visit_done,negotiation,2026-02-16T00:00:00,user_003,progression +SH-73-6,LED-0073,negotiation,booking_pending,2026-02-23T00:00:00,user_005,negotiation_started +SH-74-0,LED-0074,,new,2024-05-06T00:00:00,user_002,site_visit_completed +SH-74-1,LED-0074,new,contacted,2024-05-13T00:00:00,user_004,re_engaged +SH-75-0,LED-0075,,new,2024-04-30T00:00:00,user_003,negotiation_started +SH-75-1,LED-0075,new,contacted,2024-05-03T00:00:00,user_004,follow_up +SH-75-2,LED-0075,contacted,qualified,2024-05-16T00:00:00,user_001,progression +SH-75-3,LED-0075,qualified,site_visit_scheduled,2024-05-29T00:00:00,user_004,site_visit_completed +SH-75-4,LED-0075,site_visit_scheduled,site_visit_done,2024-06-03T00:00:00,user_003,negotiation_started +SH-75-5,LED-0075,site_visit_done,negotiation,2024-06-15T00:00:00,user_001,stalled +SH-75-6,LED-0075,negotiation,booking_pending,2024-06-29T00:00:00,user_004,negotiation_started +SH-75-7,LED-0075,booking_pending,closed_won,2024-07-08T00:00:00,user_004,re_engaged +SH-76-0,LED-0076,,new,2024-04-24T00:00:00,user_001,follow_up +SH-76-1,LED-0076,new,contacted,2024-04-27T00:00:00,user_005,follow_up +SH-76-2,LED-0076,contacted,qualified,2024-05-07T00:00:00,user_004,progression +SH-76-3,LED-0076,qualified,site_visit_scheduled,2024-05-22T00:00:00,user_005,re_engaged +SH-76-4,LED-0076,site_visit_scheduled,site_visit_done,2024-05-29T00:00:00,user_004,stalled +SH-76-5,LED-0076,site_visit_done,negotiation,2024-06-13T00:00:00,user_004,progression +SH-77-0,LED-0077,,new,2024-04-19T00:00:00,user_005,stalled +SH-77-1,LED-0077,new,contacted,2024-04-25T00:00:00,user_001,follow_up +SH-77-2,LED-0077,contacted,qualified,2024-05-04T00:00:00,user_003,re_engaged +SH-77-3,LED-0077,qualified,site_visit_scheduled,2024-05-17T00:00:00,user_004,site_visit_completed +SH-77-4,LED-0077,site_visit_scheduled,site_visit_done,2024-05-21T00:00:00,user_005,stalled +SH-77-5,LED-0077,site_visit_done,negotiation,2024-05-26T00:00:00,user_003,follow_up +SH-77-6,LED-0077,negotiation,booking_pending,2024-06-10T00:00:00,user_001,stalled +SH-77-7,LED-0077,booking_pending,closed_won,2024-06-15T00:00:00,user_003,progression +SH-78-0,LED-0078,,new,2024-10-30T00:00:00,user_003,stalled +SH-78-1,LED-0078,new,contacted,2024-11-09T00:00:00,user_004,follow_up +SH-78-2,LED-0078,contacted,qualified,2024-11-14T00:00:00,user_005,re_engaged +SH-78-3,LED-0078,qualified,site_visit_scheduled,2024-11-17T00:00:00,user_005,follow_up +SH-78-4,LED-0078,site_visit_scheduled,site_visit_done,2024-12-01T00:00:00,user_004,stalled +SH-78-5,LED-0078,site_visit_done,negotiation,2024-12-05T00:00:00,user_003,site_visit_completed +SH-78-6,LED-0078,negotiation,booking_pending,2024-12-14T00:00:00,user_001,stalled +SH-79-0,LED-0079,,new,2025-03-09T00:00:00,user_002,re_engaged +SH-79-1,LED-0079,new,contacted,2025-03-18T00:00:00,user_002,negotiation_started +SH-79-2,LED-0079,contacted,qualified,2025-03-24T00:00:00,user_001,negotiation_started +SH-79-3,LED-0079,qualified,site_visit_scheduled,2025-04-05T00:00:00,user_004,progression +SH-80-0,LED-0080,,new,2025-09-11T00:00:00,user_005,progression +SH-80-1,LED-0080,new,contacted,2025-09-20T00:00:00,user_005,negotiation_started +SH-80-2,LED-0080,contacted,qualified,2025-09-30T00:00:00,user_001,negotiation_started +SH-81-0,LED-0081,,new,2024-02-15T00:00:00,user_002,re_engaged +SH-81-1,LED-0081,new,contacted,2024-02-19T00:00:00,user_005,site_visit_completed +SH-81-2,LED-0081,contacted,qualified,2024-03-04T00:00:00,user_001,stalled +SH-81-3,LED-0081,qualified,site_visit_scheduled,2024-03-17T00:00:00,user_003,progression +SH-81-4,LED-0081,site_visit_scheduled,site_visit_done,2024-03-21T00:00:00,user_004,site_visit_completed +SH-82-0,LED-0082,,new,2025-07-09T00:00:00,user_001,progression +SH-82-1,LED-0082,new,contacted,2025-07-18T00:00:00,user_002,site_visit_completed +SH-82-2,LED-0082,contacted,qualified,2025-07-22T00:00:00,user_001,follow_up +SH-82-3,LED-0082,qualified,site_visit_scheduled,2025-07-29T00:00:00,user_001,re_engaged +SH-82-4,LED-0082,site_visit_scheduled,site_visit_done,2025-08-03T00:00:00,user_004,follow_up +SH-83-0,LED-0083,,new,2024-11-17T00:00:00,user_003,site_visit_completed +SH-83-1,LED-0083,new,contacted,2024-12-02T00:00:00,user_001,follow_up +SH-83-2,LED-0083,contacted,qualified,2024-12-10T00:00:00,user_003,negotiation_started +SH-83-3,LED-0083,qualified,site_visit_scheduled,2024-12-15T00:00:00,user_005,follow_up +SH-83-4,LED-0083,site_visit_scheduled,site_visit_done,2024-12-29T00:00:00,user_005,site_visit_completed +SH-83-5,LED-0083,site_visit_done,negotiation,2025-01-03T00:00:00,user_002,re_engaged +SH-83-6,LED-0083,negotiation,booking_pending,2025-01-17T00:00:00,user_002,follow_up +SH-83-7,LED-0083,booking_pending,closed_won,2025-01-23T00:00:00,user_001,progression +SH-83-8,LED-0083,closed_won,closed_lost,2025-01-31T00:00:00,user_005,follow_up +SH-83-9,LED-0083,closed_lost,nurturing,2025-02-10T00:00:00,user_003,site_visit_completed +SH-84-0,LED-0084,,new,2025-04-13T00:00:00,user_005,follow_up +SH-84-1,LED-0084,new,contacted,2025-04-28T00:00:00,user_003,follow_up +SH-84-2,LED-0084,contacted,qualified,2025-05-01T00:00:00,user_001,stalled +SH-84-3,LED-0084,qualified,site_visit_scheduled,2025-05-11T00:00:00,user_001,stalled +SH-84-4,LED-0084,site_visit_scheduled,site_visit_done,2025-05-20T00:00:00,user_002,negotiation_started +SH-84-5,LED-0084,site_visit_done,negotiation,2025-05-28T00:00:00,user_005,stalled +SH-85-0,LED-0085,,new,2024-05-23T00:00:00,user_003,stalled +SH-85-1,LED-0085,new,contacted,2024-05-30T00:00:00,user_004,stalled +SH-85-2,LED-0085,contacted,qualified,2024-06-13T00:00:00,user_004,follow_up +SH-85-3,LED-0085,qualified,site_visit_scheduled,2024-06-16T00:00:00,user_001,follow_up +SH-86-0,LED-0086,,new,2024-05-07T00:00:00,user_003,negotiation_started +SH-86-1,LED-0086,new,contacted,2024-05-21T00:00:00,user_002,site_visit_completed +SH-86-2,LED-0086,contacted,qualified,2024-05-26T00:00:00,user_001,site_visit_completed +SH-86-3,LED-0086,qualified,site_visit_scheduled,2024-06-03T00:00:00,user_004,re_engaged +SH-86-4,LED-0086,site_visit_scheduled,site_visit_done,2024-06-11T00:00:00,user_001,site_visit_completed +SH-86-5,LED-0086,site_visit_done,negotiation,2024-06-18T00:00:00,user_005,re_engaged +SH-87-0,LED-0087,,new,2024-05-04T00:00:00,user_004,stalled +SH-87-1,LED-0087,new,contacted,2024-05-15T00:00:00,user_003,follow_up +SH-87-2,LED-0087,contacted,qualified,2024-05-29T00:00:00,user_003,progression +SH-88-0,LED-0088,,new,2025-06-07T00:00:00,user_002,site_visit_completed +SH-88-1,LED-0088,new,contacted,2025-06-12T00:00:00,user_005,progression +SH-88-2,LED-0088,contacted,qualified,2025-06-26T00:00:00,user_001,follow_up +SH-88-3,LED-0088,qualified,site_visit_scheduled,2025-07-07T00:00:00,user_004,site_visit_completed +SH-88-4,LED-0088,site_visit_scheduled,site_visit_done,2025-07-21T00:00:00,user_005,follow_up +SH-88-5,LED-0088,site_visit_done,negotiation,2025-07-31T00:00:00,user_001,follow_up +SH-88-6,LED-0088,negotiation,booking_pending,2025-08-08T00:00:00,user_004,negotiation_started +SH-88-7,LED-0088,booking_pending,closed_won,2025-08-14T00:00:00,user_005,follow_up +SH-88-8,LED-0088,closed_won,closed_lost,2025-08-23T00:00:00,user_001,site_visit_completed +SH-88-9,LED-0088,closed_lost,nurturing,2025-08-27T00:00:00,user_004,progression +SH-89-0,LED-0089,,new,2024-04-26T00:00:00,user_004,progression +SH-89-1,LED-0089,new,contacted,2024-05-02T00:00:00,user_004,re_engaged +SH-89-2,LED-0089,contacted,qualified,2024-05-12T00:00:00,user_003,re_engaged +SH-90-0,LED-0090,,new,2025-03-26T00:00:00,user_001,progression +SH-90-1,LED-0090,new,contacted,2025-03-31T00:00:00,user_005,re_engaged +SH-91-0,LED-0091,,new,2024-12-25T00:00:00,user_003,stalled +SH-91-1,LED-0091,new,contacted,2024-12-29T00:00:00,user_001,site_visit_completed +SH-91-2,LED-0091,contacted,qualified,2025-01-02T00:00:00,user_003,follow_up +SH-91-3,LED-0091,qualified,site_visit_scheduled,2025-01-05T00:00:00,user_005,site_visit_completed +SH-91-4,LED-0091,site_visit_scheduled,site_visit_done,2025-01-08T00:00:00,user_004,re_engaged +SH-91-5,LED-0091,site_visit_done,negotiation,2025-01-17T00:00:00,user_005,stalled +SH-92-0,LED-0092,,new,2024-04-16T00:00:00,user_005,negotiation_started +SH-92-1,LED-0092,new,contacted,2024-04-25T00:00:00,user_002,site_visit_completed +SH-92-2,LED-0092,contacted,qualified,2024-05-10T00:00:00,user_001,re_engaged +SH-92-3,LED-0092,qualified,site_visit_scheduled,2024-05-17T00:00:00,user_005,site_visit_completed +SH-92-4,LED-0092,site_visit_scheduled,site_visit_done,2024-05-26T00:00:00,user_005,site_visit_completed +SH-92-5,LED-0092,site_visit_done,negotiation,2024-06-01T00:00:00,user_004,negotiation_started +SH-92-6,LED-0092,negotiation,booking_pending,2024-06-08T00:00:00,user_005,stalled +SH-92-7,LED-0092,booking_pending,closed_won,2024-06-18T00:00:00,user_005,follow_up +SH-92-8,LED-0092,closed_won,closed_lost,2024-06-21T00:00:00,user_005,follow_up +SH-92-9,LED-0092,closed_lost,nurturing,2024-07-03T00:00:00,user_004,follow_up +SH-93-0,LED-0093,,new,2024-11-26T00:00:00,user_002,follow_up +SH-93-1,LED-0093,new,contacted,2024-11-30T00:00:00,user_005,re_engaged +SH-93-2,LED-0093,contacted,qualified,2024-12-11T00:00:00,user_001,stalled +SH-93-3,LED-0093,qualified,site_visit_scheduled,2024-12-24T00:00:00,user_005,stalled +SH-93-4,LED-0093,site_visit_scheduled,site_visit_done,2024-12-31T00:00:00,user_004,progression +SH-93-5,LED-0093,site_visit_done,negotiation,2025-01-06T00:00:00,user_005,progression +SH-93-6,LED-0093,negotiation,booking_pending,2025-01-21T00:00:00,user_003,site_visit_completed +SH-93-7,LED-0093,booking_pending,closed_won,2025-02-02T00:00:00,user_004,re_engaged +SH-93-8,LED-0093,closed_won,closed_lost,2025-02-16T00:00:00,user_002,negotiation_started +SH-93-9,LED-0093,closed_lost,nurturing,2025-02-22T00:00:00,user_002,progression +SH-94-0,LED-0094,,new,2024-11-15T00:00:00,user_001,site_visit_completed +SH-94-1,LED-0094,new,contacted,2024-11-19T00:00:00,user_004,negotiation_started +SH-94-2,LED-0094,contacted,qualified,2024-12-03T00:00:00,user_004,site_visit_completed +SH-94-3,LED-0094,qualified,site_visit_scheduled,2024-12-17T00:00:00,user_004,progression +SH-95-0,LED-0095,,new,2025-08-11T00:00:00,user_004,follow_up +SH-95-1,LED-0095,new,contacted,2025-08-18T00:00:00,user_002,progression +SH-95-2,LED-0095,contacted,qualified,2025-08-27T00:00:00,user_005,negotiation_started +SH-95-3,LED-0095,qualified,site_visit_scheduled,2025-09-08T00:00:00,user_003,follow_up +SH-96-0,LED-0096,,new,2024-05-30T00:00:00,user_005,site_visit_completed +SH-96-1,LED-0096,new,contacted,2024-06-03T00:00:00,user_001,stalled +SH-96-2,LED-0096,contacted,qualified,2024-06-06T00:00:00,user_001,site_visit_completed +SH-96-3,LED-0096,qualified,site_visit_scheduled,2024-06-12T00:00:00,user_004,site_visit_completed +SH-96-4,LED-0096,site_visit_scheduled,site_visit_done,2024-06-24T00:00:00,user_005,re_engaged +SH-96-5,LED-0096,site_visit_done,negotiation,2024-07-08T00:00:00,user_001,progression +SH-97-0,LED-0097,,new,2024-10-04T00:00:00,user_004,follow_up +SH-97-1,LED-0097,new,contacted,2024-10-15T00:00:00,user_004,progression +SH-97-2,LED-0097,contacted,qualified,2024-10-21T00:00:00,user_002,progression +SH-97-3,LED-0097,qualified,site_visit_scheduled,2024-10-27T00:00:00,user_002,progression +SH-97-4,LED-0097,site_visit_scheduled,site_visit_done,2024-11-06T00:00:00,user_003,follow_up +SH-97-5,LED-0097,site_visit_done,negotiation,2024-11-20T00:00:00,user_004,negotiation_started +SH-97-6,LED-0097,negotiation,booking_pending,2024-11-24T00:00:00,user_004,progression +SH-97-7,LED-0097,booking_pending,closed_won,2024-12-04T00:00:00,user_003,re_engaged +SH-97-8,LED-0097,closed_won,closed_lost,2024-12-15T00:00:00,user_004,negotiation_started +SH-97-9,LED-0097,closed_lost,nurturing,2024-12-25T00:00:00,user_001,re_engaged +SH-98-0,LED-0098,,new,2024-08-16T00:00:00,user_004,progression +SH-99-0,LED-0099,,new,2024-04-02T00:00:00,user_004,site_visit_completed +SH-99-1,LED-0099,new,contacted,2024-04-14T00:00:00,user_001,stalled +SH-99-2,LED-0099,contacted,qualified,2024-04-18T00:00:00,user_001,stalled +SH-99-3,LED-0099,qualified,site_visit_scheduled,2024-04-22T00:00:00,user_005,negotiation_started +SH-99-4,LED-0099,site_visit_scheduled,site_visit_done,2024-05-01T00:00:00,user_001,negotiation_started +SH-99-5,LED-0099,site_visit_done,negotiation,2024-05-14T00:00:00,user_005,site_visit_completed +SH-99-6,LED-0099,negotiation,booking_pending,2024-05-22T00:00:00,user_003,stalled +SH-99-7,LED-0099,booking_pending,closed_won,2024-05-26T00:00:00,user_005,progression +SH-100-0,LED-0100,,new,2024-05-11T00:00:00,user_002,negotiation_started +SH-100-1,LED-0100,new,contacted,2024-05-24T00:00:00,user_002,re_engaged +SH-100-2,LED-0100,contacted,qualified,2024-05-30T00:00:00,user_004,re_engaged +SH-101-0,LED-0101,,new,2025-09-27T00:00:00,user_005,site_visit_completed +SH-101-1,LED-0101,new,contacted,2025-10-08T00:00:00,user_001,site_visit_completed +SH-101-2,LED-0101,contacted,qualified,2025-10-21T00:00:00,user_004,negotiation_started +SH-101-3,LED-0101,qualified,site_visit_scheduled,2025-10-25T00:00:00,user_004,stalled +SH-101-4,LED-0101,site_visit_scheduled,site_visit_done,2025-11-07T00:00:00,user_003,negotiation_started +SH-101-5,LED-0101,site_visit_done,negotiation,2025-11-21T00:00:00,user_004,progression +SH-101-6,LED-0101,negotiation,booking_pending,2025-11-26T00:00:00,user_003,re_engaged +SH-101-7,LED-0101,booking_pending,closed_won,2025-12-02T00:00:00,user_004,site_visit_completed +SH-102-0,LED-0102,,new,2025-08-07T00:00:00,user_001,negotiation_started +SH-102-1,LED-0102,new,contacted,2025-08-22T00:00:00,user_004,progression +SH-102-2,LED-0102,contacted,qualified,2025-08-26T00:00:00,user_005,stalled +SH-102-3,LED-0102,qualified,site_visit_scheduled,2025-09-10T00:00:00,user_001,stalled +SH-102-4,LED-0102,site_visit_scheduled,site_visit_done,2025-09-13T00:00:00,user_005,progression +SH-103-0,LED-0103,,new,2024-02-04T00:00:00,user_003,site_visit_completed +SH-103-1,LED-0103,new,contacted,2024-02-13T00:00:00,user_002,negotiation_started +SH-103-2,LED-0103,contacted,qualified,2024-02-16T00:00:00,user_004,progression +SH-103-3,LED-0103,qualified,site_visit_scheduled,2024-02-29T00:00:00,user_002,stalled +SH-103-4,LED-0103,site_visit_scheduled,site_visit_done,2024-03-03T00:00:00,user_005,site_visit_completed +SH-103-5,LED-0103,site_visit_done,negotiation,2024-03-12T00:00:00,user_004,re_engaged +SH-103-6,LED-0103,negotiation,booking_pending,2024-03-26T00:00:00,user_005,site_visit_completed +SH-103-7,LED-0103,booking_pending,closed_won,2024-04-09T00:00:00,user_003,site_visit_completed +SH-104-0,LED-0104,,new,2026-01-26T00:00:00,user_005,site_visit_completed +SH-104-1,LED-0104,new,contacted,2026-01-30T00:00:00,user_001,re_engaged +SH-104-2,LED-0104,contacted,qualified,2026-02-03T00:00:00,user_004,site_visit_completed +SH-104-3,LED-0104,qualified,site_visit_scheduled,2026-02-15T00:00:00,user_001,negotiation_started +SH-104-4,LED-0104,site_visit_scheduled,site_visit_done,2026-02-23T00:00:00,user_002,re_engaged +SH-104-5,LED-0104,site_visit_done,negotiation,2026-03-07T00:00:00,user_005,re_engaged +SH-104-6,LED-0104,negotiation,booking_pending,2026-03-20T00:00:00,user_005,stalled +SH-105-0,LED-0105,,new,2025-02-26T00:00:00,user_004,re_engaged +SH-105-1,LED-0105,new,contacted,2025-03-07T00:00:00,user_002,follow_up +SH-105-2,LED-0105,contacted,qualified,2025-03-18T00:00:00,user_002,negotiation_started +SH-105-3,LED-0105,qualified,site_visit_scheduled,2025-04-01T00:00:00,user_004,follow_up +SH-105-4,LED-0105,site_visit_scheduled,site_visit_done,2025-04-15T00:00:00,user_005,stalled +SH-105-5,LED-0105,site_visit_done,negotiation,2025-04-19T00:00:00,user_002,negotiation_started +SH-105-6,LED-0105,negotiation,booking_pending,2025-04-29T00:00:00,user_001,re_engaged +SH-105-7,LED-0105,booking_pending,closed_won,2025-05-04T00:00:00,user_005,site_visit_completed +SH-105-8,LED-0105,closed_won,closed_lost,2025-05-08T00:00:00,user_005,negotiation_started +SH-105-9,LED-0105,closed_lost,nurturing,2025-05-12T00:00:00,user_001,site_visit_completed +SH-106-0,LED-0106,,new,2025-06-04T00:00:00,user_005,re_engaged +SH-106-1,LED-0106,new,contacted,2025-06-16T00:00:00,user_004,negotiation_started +SH-106-2,LED-0106,contacted,qualified,2025-06-22T00:00:00,user_004,site_visit_completed +SH-106-3,LED-0106,qualified,site_visit_scheduled,2025-07-03T00:00:00,user_001,re_engaged +SH-106-4,LED-0106,site_visit_scheduled,site_visit_done,2025-07-13T00:00:00,user_003,re_engaged +SH-106-5,LED-0106,site_visit_done,negotiation,2025-07-17T00:00:00,user_002,re_engaged +SH-106-6,LED-0106,negotiation,booking_pending,2025-07-20T00:00:00,user_005,re_engaged +SH-106-7,LED-0106,booking_pending,closed_won,2025-08-04T00:00:00,user_003,stalled +SH-107-0,LED-0107,,new,2024-10-03T00:00:00,user_002,negotiation_started +SH-107-1,LED-0107,new,contacted,2024-10-14T00:00:00,user_005,negotiation_started +SH-107-2,LED-0107,contacted,qualified,2024-10-18T00:00:00,user_003,progression +SH-107-3,LED-0107,qualified,site_visit_scheduled,2024-10-26T00:00:00,user_004,stalled +SH-107-4,LED-0107,site_visit_scheduled,site_visit_done,2024-11-04T00:00:00,user_001,negotiation_started +SH-107-5,LED-0107,site_visit_done,negotiation,2024-11-07T00:00:00,user_004,re_engaged +SH-107-6,LED-0107,negotiation,booking_pending,2024-11-13T00:00:00,user_001,site_visit_completed +SH-108-0,LED-0108,,new,2025-10-18T00:00:00,user_004,stalled +SH-108-1,LED-0108,new,contacted,2025-10-26T00:00:00,user_001,re_engaged +SH-108-2,LED-0108,contacted,qualified,2025-10-31T00:00:00,user_001,stalled +SH-108-3,LED-0108,qualified,site_visit_scheduled,2025-11-10T00:00:00,user_001,progression +SH-108-4,LED-0108,site_visit_scheduled,site_visit_done,2025-11-23T00:00:00,user_002,negotiation_started +SH-109-0,LED-0109,,new,2025-10-20T00:00:00,user_005,follow_up +SH-109-1,LED-0109,new,contacted,2025-11-02T00:00:00,user_005,re_engaged +SH-109-2,LED-0109,contacted,qualified,2025-11-15T00:00:00,user_005,stalled +SH-109-3,LED-0109,qualified,site_visit_scheduled,2025-11-20T00:00:00,user_001,stalled +SH-109-4,LED-0109,site_visit_scheduled,site_visit_done,2025-11-25T00:00:00,user_001,follow_up +SH-109-5,LED-0109,site_visit_done,negotiation,2025-12-02T00:00:00,user_005,follow_up +SH-109-6,LED-0109,negotiation,booking_pending,2025-12-13T00:00:00,user_003,follow_up +SH-110-0,LED-0110,,new,2024-09-21T00:00:00,user_005,follow_up +SH-110-1,LED-0110,new,contacted,2024-09-25T00:00:00,user_005,stalled +SH-110-2,LED-0110,contacted,qualified,2024-10-05T00:00:00,user_001,re_engaged +SH-110-3,LED-0110,qualified,site_visit_scheduled,2024-10-15T00:00:00,user_005,progression +SH-111-0,LED-0111,,new,2025-10-12T00:00:00,user_001,site_visit_completed +SH-112-0,LED-0112,,new,2025-11-13T00:00:00,user_003,follow_up +SH-112-1,LED-0112,new,contacted,2025-11-19T00:00:00,user_002,progression +SH-112-2,LED-0112,contacted,qualified,2025-11-27T00:00:00,user_002,re_engaged +SH-113-0,LED-0113,,new,2025-10-15T00:00:00,user_002,follow_up +SH-113-1,LED-0113,new,contacted,2025-10-22T00:00:00,user_002,site_visit_completed +SH-113-2,LED-0113,contacted,qualified,2025-11-02T00:00:00,user_002,follow_up +SH-113-3,LED-0113,qualified,site_visit_scheduled,2025-11-08T00:00:00,user_001,follow_up +SH-113-4,LED-0113,site_visit_scheduled,site_visit_done,2025-11-15T00:00:00,user_001,progression +SH-113-5,LED-0113,site_visit_done,negotiation,2025-11-28T00:00:00,user_002,negotiation_started +SH-113-6,LED-0113,negotiation,booking_pending,2025-12-11T00:00:00,user_001,site_visit_completed +SH-113-7,LED-0113,booking_pending,closed_won,2025-12-17T00:00:00,user_003,negotiation_started +SH-113-8,LED-0113,closed_won,closed_lost,2025-12-23T00:00:00,user_003,site_visit_completed +SH-113-9,LED-0113,closed_lost,nurturing,2026-01-05T00:00:00,user_002,stalled +SH-114-0,LED-0114,,new,2025-05-04T00:00:00,user_004,negotiation_started +SH-114-1,LED-0114,new,contacted,2025-05-11T00:00:00,user_005,negotiation_started +SH-114-2,LED-0114,contacted,qualified,2025-05-24T00:00:00,user_005,re_engaged +SH-115-0,LED-0115,,new,2024-11-01T00:00:00,user_003,progression +SH-115-1,LED-0115,new,contacted,2024-11-12T00:00:00,user_002,site_visit_completed +SH-115-2,LED-0115,contacted,qualified,2024-11-18T00:00:00,user_003,site_visit_completed +SH-115-3,LED-0115,qualified,site_visit_scheduled,2024-11-25T00:00:00,user_003,follow_up +SH-115-4,LED-0115,site_visit_scheduled,site_visit_done,2024-12-09T00:00:00,user_005,follow_up +SH-115-5,LED-0115,site_visit_done,negotiation,2024-12-24T00:00:00,user_005,site_visit_completed +SH-115-6,LED-0115,negotiation,booking_pending,2024-12-27T00:00:00,user_003,site_visit_completed +SH-115-7,LED-0115,booking_pending,closed_won,2025-01-04T00:00:00,user_004,negotiation_started +SH-115-8,LED-0115,closed_won,closed_lost,2025-01-16T00:00:00,user_001,negotiation_started +SH-116-0,LED-0116,,new,2024-06-17T00:00:00,user_004,follow_up +SH-116-1,LED-0116,new,contacted,2024-06-27T00:00:00,user_001,site_visit_completed +SH-116-2,LED-0116,contacted,qualified,2024-07-09T00:00:00,user_004,re_engaged +SH-116-3,LED-0116,qualified,site_visit_scheduled,2024-07-16T00:00:00,user_001,follow_up +SH-116-4,LED-0116,site_visit_scheduled,site_visit_done,2024-07-20T00:00:00,user_005,follow_up +SH-116-5,LED-0116,site_visit_done,negotiation,2024-07-23T00:00:00,user_005,negotiation_started +SH-117-0,LED-0117,,new,2024-06-18T00:00:00,user_002,progression +SH-117-1,LED-0117,new,contacted,2024-06-23T00:00:00,user_004,progression +SH-117-2,LED-0117,contacted,qualified,2024-07-02T00:00:00,user_005,follow_up +SH-117-3,LED-0117,qualified,site_visit_scheduled,2024-07-13T00:00:00,user_003,stalled +SH-117-4,LED-0117,site_visit_scheduled,site_visit_done,2024-07-23T00:00:00,user_004,negotiation_started +SH-117-5,LED-0117,site_visit_done,negotiation,2024-08-04T00:00:00,user_001,re_engaged +SH-117-6,LED-0117,negotiation,booking_pending,2024-08-08T00:00:00,user_003,re_engaged +SH-117-7,LED-0117,booking_pending,closed_won,2024-08-18T00:00:00,user_003,re_engaged +SH-117-8,LED-0117,closed_won,closed_lost,2024-09-01T00:00:00,user_003,negotiation_started +SH-117-9,LED-0117,closed_lost,nurturing,2024-09-13T00:00:00,user_002,negotiation_started +SH-118-0,LED-0118,,new,2024-06-21T00:00:00,user_004,negotiation_started +SH-118-1,LED-0118,new,contacted,2024-06-29T00:00:00,user_004,follow_up +SH-118-2,LED-0118,contacted,qualified,2024-07-08T00:00:00,user_001,progression +SH-118-3,LED-0118,qualified,site_visit_scheduled,2024-07-15T00:00:00,user_001,re_engaged +SH-118-4,LED-0118,site_visit_scheduled,site_visit_done,2024-07-20T00:00:00,user_003,re_engaged +SH-119-0,LED-0119,,new,2024-01-19T00:00:00,user_002,re_engaged +SH-119-1,LED-0119,new,contacted,2024-01-24T00:00:00,user_001,negotiation_started +SH-119-2,LED-0119,contacted,qualified,2024-02-04T00:00:00,user_001,site_visit_completed +SH-119-3,LED-0119,qualified,site_visit_scheduled,2024-02-12T00:00:00,user_005,re_engaged +SH-119-4,LED-0119,site_visit_scheduled,site_visit_done,2024-02-18T00:00:00,user_005,follow_up +SH-119-5,LED-0119,site_visit_done,negotiation,2024-02-29T00:00:00,user_004,negotiation_started +SH-120-0,LED-0120,,new,2024-04-27T00:00:00,user_004,re_engaged +SH-120-1,LED-0120,new,contacted,2024-05-12T00:00:00,user_002,site_visit_completed +SH-120-2,LED-0120,contacted,qualified,2024-05-17T00:00:00,user_003,re_engaged +SH-120-3,LED-0120,qualified,site_visit_scheduled,2024-05-27T00:00:00,user_001,site_visit_completed +SH-120-4,LED-0120,site_visit_scheduled,site_visit_done,2024-05-30T00:00:00,user_005,stalled +SH-120-5,LED-0120,site_visit_done,negotiation,2024-06-09T00:00:00,user_004,stalled +SH-120-6,LED-0120,negotiation,booking_pending,2024-06-22T00:00:00,user_002,stalled +SH-120-7,LED-0120,booking_pending,closed_won,2024-07-04T00:00:00,user_001,follow_up +SH-120-8,LED-0120,closed_won,closed_lost,2024-07-07T00:00:00,user_005,progression +SH-121-0,LED-0121,,new,2025-03-06T00:00:00,user_002,stalled +SH-121-1,LED-0121,new,contacted,2025-03-09T00:00:00,user_002,re_engaged +SH-121-2,LED-0121,contacted,qualified,2025-03-23T00:00:00,user_002,stalled +SH-121-3,LED-0121,qualified,site_visit_scheduled,2025-04-01T00:00:00,user_005,site_visit_completed +SH-121-4,LED-0121,site_visit_scheduled,site_visit_done,2025-04-06T00:00:00,user_004,re_engaged +SH-122-0,LED-0122,,new,2024-01-26T00:00:00,user_005,re_engaged +SH-122-1,LED-0122,new,contacted,2024-01-31T00:00:00,user_003,negotiation_started +SH-122-2,LED-0122,contacted,qualified,2024-02-10T00:00:00,user_003,negotiation_started +SH-122-3,LED-0122,qualified,site_visit_scheduled,2024-02-17T00:00:00,user_004,stalled +SH-122-4,LED-0122,site_visit_scheduled,site_visit_done,2024-02-29T00:00:00,user_004,progression +SH-122-5,LED-0122,site_visit_done,negotiation,2024-03-08T00:00:00,user_002,re_engaged +SH-122-6,LED-0122,negotiation,booking_pending,2024-03-18T00:00:00,user_002,follow_up +SH-123-0,LED-0123,,new,2025-10-15T00:00:00,user_002,stalled +SH-124-0,LED-0124,,new,2024-01-15T00:00:00,user_003,re_engaged +SH-124-1,LED-0124,new,contacted,2024-01-24T00:00:00,user_002,follow_up +SH-125-0,LED-0125,,new,2025-05-17T00:00:00,user_005,progression +SH-125-1,LED-0125,new,contacted,2025-05-21T00:00:00,user_002,stalled +SH-125-2,LED-0125,contacted,qualified,2025-06-05T00:00:00,user_001,negotiation_started +SH-125-3,LED-0125,qualified,site_visit_scheduled,2025-06-17T00:00:00,user_005,site_visit_completed +SH-125-4,LED-0125,site_visit_scheduled,site_visit_done,2025-06-27T00:00:00,user_004,site_visit_completed +SH-125-5,LED-0125,site_visit_done,negotiation,2025-07-09T00:00:00,user_004,site_visit_completed +SH-125-6,LED-0125,negotiation,booking_pending,2025-07-17T00:00:00,user_003,site_visit_completed +SH-125-7,LED-0125,booking_pending,closed_won,2025-07-23T00:00:00,user_003,re_engaged +SH-126-0,LED-0126,,new,2025-09-18T00:00:00,user_004,progression +SH-126-1,LED-0126,new,contacted,2025-09-25T00:00:00,user_005,negotiation_started +SH-126-2,LED-0126,contacted,qualified,2025-09-30T00:00:00,user_004,progression +SH-126-3,LED-0126,qualified,site_visit_scheduled,2025-10-10T00:00:00,user_005,follow_up +SH-127-0,LED-0127,,new,2026-01-19T00:00:00,user_001,progression +SH-127-1,LED-0127,new,contacted,2026-01-23T00:00:00,user_003,re_engaged +SH-127-2,LED-0127,contacted,qualified,2026-02-04T00:00:00,user_002,re_engaged +SH-127-3,LED-0127,qualified,site_visit_scheduled,2026-02-08T00:00:00,user_005,site_visit_completed +SH-127-4,LED-0127,site_visit_scheduled,site_visit_done,2026-02-13T00:00:00,user_003,negotiation_started +SH-127-5,LED-0127,site_visit_done,negotiation,2026-02-25T00:00:00,user_001,site_visit_completed +SH-127-6,LED-0127,negotiation,booking_pending,2026-02-28T00:00:00,user_005,stalled +SH-128-0,LED-0128,,new,2026-01-03T00:00:00,user_005,negotiation_started +SH-129-0,LED-0129,,new,2024-08-16T00:00:00,user_005,progression +SH-129-1,LED-0129,new,contacted,2024-08-29T00:00:00,user_002,negotiation_started +SH-129-2,LED-0129,contacted,qualified,2024-09-07T00:00:00,user_002,progression +SH-129-3,LED-0129,qualified,site_visit_scheduled,2024-09-11T00:00:00,user_003,negotiation_started +SH-130-0,LED-0130,,new,2025-09-11T00:00:00,user_002,progression +SH-130-1,LED-0130,new,contacted,2025-09-19T00:00:00,user_001,re_engaged +SH-130-2,LED-0130,contacted,qualified,2025-10-04T00:00:00,user_005,follow_up +SH-131-0,LED-0131,,new,2025-06-26T00:00:00,user_003,stalled +SH-131-1,LED-0131,new,contacted,2025-07-07T00:00:00,user_005,follow_up +SH-131-2,LED-0131,contacted,qualified,2025-07-21T00:00:00,user_001,re_engaged +SH-131-3,LED-0131,qualified,site_visit_scheduled,2025-07-24T00:00:00,user_002,progression +SH-131-4,LED-0131,site_visit_scheduled,site_visit_done,2025-07-30T00:00:00,user_002,site_visit_completed +SH-132-0,LED-0132,,new,2025-01-10T00:00:00,user_004,follow_up +SH-132-1,LED-0132,new,contacted,2025-01-19T00:00:00,user_001,progression +SH-132-2,LED-0132,contacted,qualified,2025-01-24T00:00:00,user_005,re_engaged +SH-132-3,LED-0132,qualified,site_visit_scheduled,2025-01-31T00:00:00,user_005,negotiation_started +SH-132-4,LED-0132,site_visit_scheduled,site_visit_done,2025-02-04T00:00:00,user_005,site_visit_completed +SH-132-5,LED-0132,site_visit_done,negotiation,2025-02-18T00:00:00,user_005,site_visit_completed +SH-133-0,LED-0133,,new,2024-04-13T00:00:00,user_002,progression +SH-133-1,LED-0133,new,contacted,2024-04-18T00:00:00,user_005,progression +SH-133-2,LED-0133,contacted,qualified,2024-04-22T00:00:00,user_003,stalled +SH-133-3,LED-0133,qualified,site_visit_scheduled,2024-05-02T00:00:00,user_001,negotiation_started +SH-133-4,LED-0133,site_visit_scheduled,site_visit_done,2024-05-15T00:00:00,user_005,re_engaged +SH-134-0,LED-0134,,new,2024-12-19T00:00:00,user_002,progression +SH-134-1,LED-0134,new,contacted,2025-01-02T00:00:00,user_005,negotiation_started +SH-134-2,LED-0134,contacted,qualified,2025-01-08T00:00:00,user_003,re_engaged +SH-134-3,LED-0134,qualified,site_visit_scheduled,2025-01-19T00:00:00,user_001,negotiation_started +SH-135-0,LED-0135,,new,2025-02-21T00:00:00,user_003,progression +SH-135-1,LED-0135,new,contacted,2025-03-02T00:00:00,user_004,stalled +SH-135-2,LED-0135,contacted,qualified,2025-03-12T00:00:00,user_002,site_visit_completed +SH-135-3,LED-0135,qualified,site_visit_scheduled,2025-03-27T00:00:00,user_004,stalled +SH-135-4,LED-0135,site_visit_scheduled,site_visit_done,2025-04-10T00:00:00,user_004,follow_up +SH-135-5,LED-0135,site_visit_done,negotiation,2025-04-14T00:00:00,user_001,progression +SH-135-6,LED-0135,negotiation,booking_pending,2025-04-19T00:00:00,user_002,site_visit_completed +SH-136-0,LED-0136,,new,2025-05-12T00:00:00,user_003,site_visit_completed +SH-137-0,LED-0137,,new,2026-02-10T00:00:00,user_004,progression +SH-137-1,LED-0137,new,contacted,2026-02-14T00:00:00,user_002,re_engaged +SH-137-2,LED-0137,contacted,qualified,2026-02-28T00:00:00,user_005,progression +SH-137-3,LED-0137,qualified,site_visit_scheduled,2026-03-03T00:00:00,user_005,re_engaged +SH-137-4,LED-0137,site_visit_scheduled,site_visit_done,2026-03-09T00:00:00,user_002,re_engaged +SH-137-5,LED-0137,site_visit_done,negotiation,2026-03-19T00:00:00,user_001,progression +SH-138-0,LED-0138,,new,2024-08-13T00:00:00,user_001,stalled +SH-138-1,LED-0138,new,contacted,2024-08-23T00:00:00,user_005,re_engaged +SH-138-2,LED-0138,contacted,qualified,2024-09-06T00:00:00,user_005,site_visit_completed +SH-139-0,LED-0139,,new,2025-02-28T00:00:00,user_003,follow_up +SH-139-1,LED-0139,new,contacted,2025-03-07T00:00:00,user_001,stalled +SH-139-2,LED-0139,contacted,qualified,2025-03-20T00:00:00,user_005,progression +SH-139-3,LED-0139,qualified,site_visit_scheduled,2025-04-03T00:00:00,user_004,re_engaged +SH-139-4,LED-0139,site_visit_scheduled,site_visit_done,2025-04-10T00:00:00,user_005,stalled +SH-139-5,LED-0139,site_visit_done,negotiation,2025-04-16T00:00:00,user_004,follow_up +SH-139-6,LED-0139,negotiation,booking_pending,2025-04-24T00:00:00,user_003,follow_up +SH-139-7,LED-0139,booking_pending,closed_won,2025-05-06T00:00:00,user_004,follow_up +SH-139-8,LED-0139,closed_won,closed_lost,2025-05-16T00:00:00,user_002,re_engaged +SH-139-9,LED-0139,closed_lost,nurturing,2025-05-30T00:00:00,user_004,site_visit_completed +SH-140-0,LED-0140,,new,2024-04-21T00:00:00,user_004,progression +SH-140-1,LED-0140,new,contacted,2024-04-25T00:00:00,user_001,re_engaged +SH-140-2,LED-0140,contacted,qualified,2024-04-28T00:00:00,user_002,follow_up +SH-140-3,LED-0140,qualified,site_visit_scheduled,2024-05-13T00:00:00,user_001,site_visit_completed +SH-140-4,LED-0140,site_visit_scheduled,site_visit_done,2024-05-18T00:00:00,user_005,progression +SH-140-5,LED-0140,site_visit_done,negotiation,2024-06-02T00:00:00,user_001,progression +SH-140-6,LED-0140,negotiation,booking_pending,2024-06-13T00:00:00,user_003,re_engaged +SH-140-7,LED-0140,booking_pending,closed_won,2024-06-17T00:00:00,user_002,follow_up +SH-140-8,LED-0140,closed_won,closed_lost,2024-06-27T00:00:00,user_005,negotiation_started +SH-141-0,LED-0141,,new,2024-10-19T00:00:00,user_001,stalled +SH-141-1,LED-0141,new,contacted,2024-10-24T00:00:00,user_002,negotiation_started +SH-141-2,LED-0141,contacted,qualified,2024-11-04T00:00:00,user_003,stalled +SH-141-3,LED-0141,qualified,site_visit_scheduled,2024-11-09T00:00:00,user_004,follow_up +SH-141-4,LED-0141,site_visit_scheduled,site_visit_done,2024-11-22T00:00:00,user_003,stalled +SH-141-5,LED-0141,site_visit_done,negotiation,2024-11-29T00:00:00,user_003,progression +SH-142-0,LED-0142,,new,2025-05-26T00:00:00,user_002,negotiation_started +SH-142-1,LED-0142,new,contacted,2025-06-04T00:00:00,user_005,negotiation_started +SH-142-2,LED-0142,contacted,qualified,2025-06-15T00:00:00,user_005,negotiation_started +SH-142-3,LED-0142,qualified,site_visit_scheduled,2025-06-26T00:00:00,user_005,follow_up +SH-142-4,LED-0142,site_visit_scheduled,site_visit_done,2025-07-05T00:00:00,user_001,stalled +SH-142-5,LED-0142,site_visit_done,negotiation,2025-07-19T00:00:00,user_004,stalled +SH-142-6,LED-0142,negotiation,booking_pending,2025-07-31T00:00:00,user_002,re_engaged +SH-143-0,LED-0143,,new,2024-02-03T00:00:00,user_005,negotiation_started +SH-143-1,LED-0143,new,contacted,2024-02-08T00:00:00,user_002,negotiation_started +SH-143-2,LED-0143,contacted,qualified,2024-02-22T00:00:00,user_002,re_engaged +SH-144-0,LED-0144,,new,2024-04-23T00:00:00,user_002,stalled +SH-144-1,LED-0144,new,contacted,2024-04-27T00:00:00,user_001,follow_up +SH-145-0,LED-0145,,new,2024-08-23T00:00:00,user_003,negotiation_started +SH-145-1,LED-0145,new,contacted,2024-09-07T00:00:00,user_002,site_visit_completed +SH-145-2,LED-0145,contacted,qualified,2024-09-14T00:00:00,user_003,stalled +SH-146-0,LED-0146,,new,2024-06-01T00:00:00,user_005,re_engaged +SH-146-1,LED-0146,new,contacted,2024-06-06T00:00:00,user_004,site_visit_completed +SH-147-0,LED-0147,,new,2024-04-05T00:00:00,user_001,site_visit_completed +SH-147-1,LED-0147,new,contacted,2024-04-13T00:00:00,user_005,negotiation_started +SH-147-2,LED-0147,contacted,qualified,2024-04-19T00:00:00,user_004,progression +SH-148-0,LED-0148,,new,2024-11-04T00:00:00,user_001,negotiation_started +SH-148-1,LED-0148,new,contacted,2024-11-12T00:00:00,user_003,follow_up +SH-148-2,LED-0148,contacted,qualified,2024-11-18T00:00:00,user_003,negotiation_started +SH-148-3,LED-0148,qualified,site_visit_scheduled,2024-11-28T00:00:00,user_004,stalled +SH-148-4,LED-0148,site_visit_scheduled,site_visit_done,2024-12-12T00:00:00,user_002,re_engaged +SH-148-5,LED-0148,site_visit_done,negotiation,2024-12-21T00:00:00,user_003,re_engaged +SH-148-6,LED-0148,negotiation,booking_pending,2025-01-02T00:00:00,user_004,progression +SH-148-7,LED-0148,booking_pending,closed_won,2025-01-13T00:00:00,user_005,follow_up +SH-149-0,LED-0149,,new,2024-12-30T00:00:00,user_001,site_visit_completed +SH-149-1,LED-0149,new,contacted,2025-01-06T00:00:00,user_005,progression +SH-149-2,LED-0149,contacted,qualified,2025-01-20T00:00:00,user_004,re_engaged +SH-149-3,LED-0149,qualified,site_visit_scheduled,2025-01-30T00:00:00,user_004,negotiation_started +SH-150-0,LED-0150,,new,2025-11-23T00:00:00,user_001,follow_up +SH-150-1,LED-0150,new,contacted,2025-12-03T00:00:00,user_001,site_visit_completed +SH-150-2,LED-0150,contacted,qualified,2025-12-18T00:00:00,user_004,negotiation_started +SH-150-3,LED-0150,qualified,site_visit_scheduled,2025-12-31T00:00:00,user_004,progression +SH-150-4,LED-0150,site_visit_scheduled,site_visit_done,2026-01-08T00:00:00,user_002,stalled +SH-151-0,LED-0151,,new,2025-06-08T00:00:00,user_002,progression +SH-151-1,LED-0151,new,contacted,2025-06-12T00:00:00,user_001,negotiation_started +SH-152-0,LED-0152,,new,2024-04-29T00:00:00,user_003,follow_up +SH-152-1,LED-0152,new,contacted,2024-05-08T00:00:00,user_001,negotiation_started +SH-152-2,LED-0152,contacted,qualified,2024-05-23T00:00:00,user_001,negotiation_started +SH-153-0,LED-0153,,new,2025-06-17T00:00:00,user_003,follow_up +SH-153-1,LED-0153,new,contacted,2025-06-23T00:00:00,user_001,re_engaged +SH-153-2,LED-0153,contacted,qualified,2025-07-07T00:00:00,user_002,site_visit_completed +SH-153-3,LED-0153,qualified,site_visit_scheduled,2025-07-14T00:00:00,user_004,follow_up +SH-153-4,LED-0153,site_visit_scheduled,site_visit_done,2025-07-18T00:00:00,user_003,re_engaged +SH-153-5,LED-0153,site_visit_done,negotiation,2025-07-29T00:00:00,user_003,negotiation_started +SH-153-6,LED-0153,negotiation,booking_pending,2025-08-12T00:00:00,user_004,negotiation_started +SH-153-7,LED-0153,booking_pending,closed_won,2025-08-23T00:00:00,user_004,follow_up +SH-153-8,LED-0153,closed_won,closed_lost,2025-08-30T00:00:00,user_002,follow_up +SH-154-0,LED-0154,,new,2025-08-05T00:00:00,user_003,follow_up +SH-154-1,LED-0154,new,contacted,2025-08-11T00:00:00,user_001,negotiation_started +SH-154-2,LED-0154,contacted,qualified,2025-08-21T00:00:00,user_001,site_visit_completed +SH-154-3,LED-0154,qualified,site_visit_scheduled,2025-08-30T00:00:00,user_001,progression +SH-154-4,LED-0154,site_visit_scheduled,site_visit_done,2025-09-09T00:00:00,user_002,stalled +SH-155-0,LED-0155,,new,2024-01-16T00:00:00,user_001,follow_up +SH-155-1,LED-0155,new,contacted,2024-01-30T00:00:00,user_003,stalled +SH-155-2,LED-0155,contacted,qualified,2024-02-02T00:00:00,user_001,site_visit_completed +SH-156-0,LED-0156,,new,2024-12-31T00:00:00,user_004,progression +SH-156-1,LED-0156,new,contacted,2025-01-06T00:00:00,user_001,re_engaged +SH-156-2,LED-0156,contacted,qualified,2025-01-12T00:00:00,user_004,negotiation_started +SH-156-3,LED-0156,qualified,site_visit_scheduled,2025-01-18T00:00:00,user_004,progression +SH-156-4,LED-0156,site_visit_scheduled,site_visit_done,2025-01-26T00:00:00,user_002,stalled +SH-156-5,LED-0156,site_visit_done,negotiation,2025-02-10T00:00:00,user_005,stalled +SH-156-6,LED-0156,negotiation,booking_pending,2025-02-18T00:00:00,user_003,re_engaged +SH-156-7,LED-0156,booking_pending,closed_won,2025-02-28T00:00:00,user_002,stalled +SH-156-8,LED-0156,closed_won,closed_lost,2025-03-04T00:00:00,user_002,follow_up +SH-157-0,LED-0157,,new,2024-10-07T00:00:00,user_005,negotiation_started +SH-157-1,LED-0157,new,contacted,2024-10-18T00:00:00,user_003,progression +SH-158-0,LED-0158,,new,2025-12-22T00:00:00,user_003,re_engaged +SH-158-1,LED-0158,new,contacted,2026-01-03T00:00:00,user_003,re_engaged +SH-158-2,LED-0158,contacted,qualified,2026-01-06T00:00:00,user_001,follow_up +SH-158-3,LED-0158,qualified,site_visit_scheduled,2026-01-17T00:00:00,user_005,negotiation_started +SH-158-4,LED-0158,site_visit_scheduled,site_visit_done,2026-01-31T00:00:00,user_003,re_engaged +SH-159-0,LED-0159,,new,2024-06-30T00:00:00,user_003,stalled +SH-159-1,LED-0159,new,contacted,2024-07-07T00:00:00,user_004,site_visit_completed +SH-159-2,LED-0159,contacted,qualified,2024-07-15T00:00:00,user_004,progression +SH-160-0,LED-0160,,new,2025-10-11T00:00:00,user_004,stalled +SH-160-1,LED-0160,new,contacted,2025-10-20T00:00:00,user_003,site_visit_completed +SH-160-2,LED-0160,contacted,qualified,2025-10-26T00:00:00,user_001,stalled +SH-160-3,LED-0160,qualified,site_visit_scheduled,2025-11-06T00:00:00,user_003,stalled +SH-160-4,LED-0160,site_visit_scheduled,site_visit_done,2025-11-10T00:00:00,user_004,negotiation_started +SH-160-5,LED-0160,site_visit_done,negotiation,2025-11-22T00:00:00,user_003,site_visit_completed +SH-160-6,LED-0160,negotiation,booking_pending,2025-11-26T00:00:00,user_001,negotiation_started +SH-160-7,LED-0160,booking_pending,closed_won,2025-12-09T00:00:00,user_002,negotiation_started +SH-160-8,LED-0160,closed_won,closed_lost,2025-12-22T00:00:00,user_002,stalled +SH-161-0,LED-0161,,new,2024-07-28T00:00:00,user_002,re_engaged +SH-161-1,LED-0161,new,contacted,2024-08-10T00:00:00,user_004,negotiation_started +SH-161-2,LED-0161,contacted,qualified,2024-08-19T00:00:00,user_001,site_visit_completed +SH-161-3,LED-0161,qualified,site_visit_scheduled,2024-08-26T00:00:00,user_005,site_visit_completed +SH-161-4,LED-0161,site_visit_scheduled,site_visit_done,2024-08-31T00:00:00,user_005,negotiation_started +SH-161-5,LED-0161,site_visit_done,negotiation,2024-09-13T00:00:00,user_003,stalled +SH-161-6,LED-0161,negotiation,booking_pending,2024-09-18T00:00:00,user_002,site_visit_completed +SH-162-0,LED-0162,,new,2024-09-12T00:00:00,user_001,negotiation_started +SH-162-1,LED-0162,new,contacted,2024-09-17T00:00:00,user_004,re_engaged +SH-162-2,LED-0162,contacted,qualified,2024-09-20T00:00:00,user_004,stalled +SH-162-3,LED-0162,qualified,site_visit_scheduled,2024-09-30T00:00:00,user_001,progression +SH-162-4,LED-0162,site_visit_scheduled,site_visit_done,2024-10-03T00:00:00,user_003,re_engaged +SH-162-5,LED-0162,site_visit_done,negotiation,2024-10-07T00:00:00,user_003,stalled +SH-162-6,LED-0162,negotiation,booking_pending,2024-10-11T00:00:00,user_003,stalled +SH-162-7,LED-0162,booking_pending,closed_won,2024-10-21T00:00:00,user_003,progression +SH-162-8,LED-0162,closed_won,closed_lost,2024-10-25T00:00:00,user_005,re_engaged +SH-162-9,LED-0162,closed_lost,nurturing,2024-11-05T00:00:00,user_001,re_engaged +SH-163-0,LED-0163,,new,2025-07-18T00:00:00,user_001,follow_up +SH-163-1,LED-0163,new,contacted,2025-07-23T00:00:00,user_002,follow_up +SH-163-2,LED-0163,contacted,qualified,2025-08-03T00:00:00,user_005,follow_up +SH-163-3,LED-0163,qualified,site_visit_scheduled,2025-08-13T00:00:00,user_004,site_visit_completed +SH-163-4,LED-0163,site_visit_scheduled,site_visit_done,2025-08-20T00:00:00,user_001,stalled +SH-164-0,LED-0164,,new,2024-06-02T00:00:00,user_005,re_engaged +SH-164-1,LED-0164,new,contacted,2024-06-07T00:00:00,user_005,re_engaged +SH-164-2,LED-0164,contacted,qualified,2024-06-18T00:00:00,user_005,site_visit_completed +SH-164-3,LED-0164,qualified,site_visit_scheduled,2024-06-23T00:00:00,user_003,stalled +SH-164-4,LED-0164,site_visit_scheduled,site_visit_done,2024-07-05T00:00:00,user_003,stalled +SH-165-0,LED-0165,,new,2025-10-21T00:00:00,user_004,stalled +SH-165-1,LED-0165,new,contacted,2025-11-01T00:00:00,user_001,site_visit_completed +SH-166-0,LED-0166,,new,2024-08-22T00:00:00,user_003,progression +SH-166-1,LED-0166,new,contacted,2024-09-02T00:00:00,user_005,follow_up +SH-166-2,LED-0166,contacted,qualified,2024-09-13T00:00:00,user_005,stalled +SH-166-3,LED-0166,qualified,site_visit_scheduled,2024-09-20T00:00:00,user_004,stalled +SH-166-4,LED-0166,site_visit_scheduled,site_visit_done,2024-09-23T00:00:00,user_005,re_engaged +SH-167-0,LED-0167,,new,2025-09-20T00:00:00,user_005,negotiation_started +SH-168-0,LED-0168,,new,2025-08-28T00:00:00,user_001,re_engaged +SH-169-0,LED-0169,,new,2025-01-07T00:00:00,user_002,stalled +SH-169-1,LED-0169,new,contacted,2025-01-14T00:00:00,user_003,re_engaged +SH-169-2,LED-0169,contacted,qualified,2025-01-25T00:00:00,user_005,progression +SH-169-3,LED-0169,qualified,site_visit_scheduled,2025-01-28T00:00:00,user_003,negotiation_started +SH-170-0,LED-0170,,new,2026-02-25T00:00:00,user_005,negotiation_started +SH-170-1,LED-0170,new,contacted,2026-03-06T00:00:00,user_001,progression +SH-170-2,LED-0170,contacted,qualified,2026-03-17T00:00:00,user_004,re_engaged +SH-170-3,LED-0170,qualified,site_visit_scheduled,2026-03-30T00:00:00,user_003,stalled +SH-170-4,LED-0170,site_visit_scheduled,site_visit_done,2026-04-09T00:00:00,user_004,stalled +SH-170-5,LED-0170,site_visit_done,negotiation,2026-04-23T00:00:00,user_005,stalled +SH-171-0,LED-0171,,new,2024-01-18T00:00:00,user_004,negotiation_started +SH-171-1,LED-0171,new,contacted,2024-01-21T00:00:00,user_004,progression +SH-172-0,LED-0172,,new,2024-02-15T00:00:00,user_003,stalled +SH-172-1,LED-0172,new,contacted,2024-02-29T00:00:00,user_001,stalled +SH-172-2,LED-0172,contacted,qualified,2024-03-06T00:00:00,user_003,progression +SH-172-3,LED-0172,qualified,site_visit_scheduled,2024-03-10T00:00:00,user_005,negotiation_started +SH-172-4,LED-0172,site_visit_scheduled,site_visit_done,2024-03-14T00:00:00,user_005,progression +SH-172-5,LED-0172,site_visit_done,negotiation,2024-03-20T00:00:00,user_002,site_visit_completed +SH-172-6,LED-0172,negotiation,booking_pending,2024-04-01T00:00:00,user_003,re_engaged +SH-172-7,LED-0172,booking_pending,closed_won,2024-04-10T00:00:00,user_001,re_engaged +SH-172-8,LED-0172,closed_won,closed_lost,2024-04-19T00:00:00,user_003,follow_up +SH-173-0,LED-0173,,new,2024-08-23T00:00:00,user_001,progression +SH-173-1,LED-0173,new,contacted,2024-08-29T00:00:00,user_005,stalled +SH-173-2,LED-0173,contacted,qualified,2024-09-10T00:00:00,user_005,re_engaged +SH-173-3,LED-0173,qualified,site_visit_scheduled,2024-09-19T00:00:00,user_005,re_engaged +SH-173-4,LED-0173,site_visit_scheduled,site_visit_done,2024-09-23T00:00:00,user_005,progression +SH-173-5,LED-0173,site_visit_done,negotiation,2024-10-05T00:00:00,user_004,re_engaged +SH-173-6,LED-0173,negotiation,booking_pending,2024-10-16T00:00:00,user_005,negotiation_started +SH-174-0,LED-0174,,new,2024-05-20T00:00:00,user_003,site_visit_completed +SH-174-1,LED-0174,new,contacted,2024-05-28T00:00:00,user_003,progression +SH-174-2,LED-0174,contacted,qualified,2024-06-01T00:00:00,user_004,negotiation_started +SH-174-3,LED-0174,qualified,site_visit_scheduled,2024-06-12T00:00:00,user_002,stalled +SH-174-4,LED-0174,site_visit_scheduled,site_visit_done,2024-06-22T00:00:00,user_002,follow_up +SH-174-5,LED-0174,site_visit_done,negotiation,2024-07-02T00:00:00,user_001,follow_up +SH-174-6,LED-0174,negotiation,booking_pending,2024-07-06T00:00:00,user_004,site_visit_completed +SH-174-7,LED-0174,booking_pending,closed_won,2024-07-21T00:00:00,user_005,re_engaged +SH-174-8,LED-0174,closed_won,closed_lost,2024-07-31T00:00:00,user_001,follow_up +SH-175-0,LED-0175,,new,2024-10-27T00:00:00,user_002,progression +SH-175-1,LED-0175,new,contacted,2024-11-08T00:00:00,user_005,site_visit_completed +SH-175-2,LED-0175,contacted,qualified,2024-11-21T00:00:00,user_004,negotiation_started +SH-175-3,LED-0175,qualified,site_visit_scheduled,2024-11-29T00:00:00,user_004,follow_up +SH-175-4,LED-0175,site_visit_scheduled,site_visit_done,2024-12-10T00:00:00,user_005,site_visit_completed +SH-175-5,LED-0175,site_visit_done,negotiation,2024-12-25T00:00:00,user_001,follow_up +SH-175-6,LED-0175,negotiation,booking_pending,2025-01-01T00:00:00,user_004,site_visit_completed +SH-175-7,LED-0175,booking_pending,closed_won,2025-01-04T00:00:00,user_005,stalled +SH-176-0,LED-0176,,new,2025-11-28T00:00:00,user_002,progression +SH-176-1,LED-0176,new,contacted,2025-12-10T00:00:00,user_001,stalled +SH-176-2,LED-0176,contacted,qualified,2025-12-21T00:00:00,user_002,progression +SH-176-3,LED-0176,qualified,site_visit_scheduled,2025-12-31T00:00:00,user_001,site_visit_completed +SH-176-4,LED-0176,site_visit_scheduled,site_visit_done,2026-01-06T00:00:00,user_003,stalled +SH-177-0,LED-0177,,new,2025-10-09T00:00:00,user_002,site_visit_completed +SH-178-0,LED-0178,,new,2025-05-22T00:00:00,user_001,site_visit_completed +SH-178-1,LED-0178,new,contacted,2025-05-31T00:00:00,user_004,site_visit_completed +SH-178-2,LED-0178,contacted,qualified,2025-06-06T00:00:00,user_004,progression +SH-178-3,LED-0178,qualified,site_visit_scheduled,2025-06-11T00:00:00,user_004,site_visit_completed +SH-178-4,LED-0178,site_visit_scheduled,site_visit_done,2025-06-24T00:00:00,user_001,site_visit_completed +SH-178-5,LED-0178,site_visit_done,negotiation,2025-07-08T00:00:00,user_004,re_engaged +SH-178-6,LED-0178,negotiation,booking_pending,2025-07-13T00:00:00,user_004,negotiation_started +SH-179-0,LED-0179,,new,2024-01-26T00:00:00,user_001,stalled +SH-179-1,LED-0179,new,contacted,2024-02-01T00:00:00,user_003,stalled +SH-179-2,LED-0179,contacted,qualified,2024-02-07T00:00:00,user_002,stalled +SH-179-3,LED-0179,qualified,site_visit_scheduled,2024-02-16T00:00:00,user_002,site_visit_completed +SH-179-4,LED-0179,site_visit_scheduled,site_visit_done,2024-03-02T00:00:00,user_002,site_visit_completed +SH-179-5,LED-0179,site_visit_done,negotiation,2024-03-10T00:00:00,user_004,follow_up +SH-179-6,LED-0179,negotiation,booking_pending,2024-03-21T00:00:00,user_002,progression +SH-180-0,LED-0180,,new,2024-04-16T00:00:00,user_005,re_engaged +SH-180-1,LED-0180,new,contacted,2024-04-19T00:00:00,user_003,site_visit_completed +SH-180-2,LED-0180,contacted,qualified,2024-04-29T00:00:00,user_002,progression +SH-180-3,LED-0180,qualified,site_visit_scheduled,2024-05-06T00:00:00,user_005,negotiation_started +SH-180-4,LED-0180,site_visit_scheduled,site_visit_done,2024-05-15T00:00:00,user_003,negotiation_started +SH-180-5,LED-0180,site_visit_done,negotiation,2024-05-19T00:00:00,user_002,negotiation_started +SH-180-6,LED-0180,negotiation,booking_pending,2024-05-30T00:00:00,user_003,negotiation_started +SH-180-7,LED-0180,booking_pending,closed_won,2024-06-06T00:00:00,user_005,stalled +SH-180-8,LED-0180,closed_won,closed_lost,2024-06-12T00:00:00,user_004,progression +SH-180-9,LED-0180,closed_lost,nurturing,2024-06-22T00:00:00,user_004,site_visit_completed +SH-181-0,LED-0181,,new,2025-09-20T00:00:00,user_004,stalled +SH-181-1,LED-0181,new,contacted,2025-09-30T00:00:00,user_003,re_engaged +SH-181-2,LED-0181,contacted,qualified,2025-10-06T00:00:00,user_003,negotiation_started +SH-181-3,LED-0181,qualified,site_visit_scheduled,2025-10-20T00:00:00,user_004,stalled +SH-181-4,LED-0181,site_visit_scheduled,site_visit_done,2025-10-31T00:00:00,user_001,progression +SH-181-5,LED-0181,site_visit_done,negotiation,2025-11-09T00:00:00,user_001,negotiation_started +SH-181-6,LED-0181,negotiation,booking_pending,2025-11-14T00:00:00,user_001,follow_up +SH-182-0,LED-0182,,new,2024-12-12T00:00:00,user_004,follow_up +SH-182-1,LED-0182,new,contacted,2024-12-17T00:00:00,user_004,progression +SH-182-2,LED-0182,contacted,qualified,2024-12-20T00:00:00,user_003,re_engaged +SH-183-0,LED-0183,,new,2025-08-11T00:00:00,user_002,site_visit_completed +SH-183-1,LED-0183,new,contacted,2025-08-16T00:00:00,user_003,stalled +SH-183-2,LED-0183,contacted,qualified,2025-08-20T00:00:00,user_002,stalled +SH-183-3,LED-0183,qualified,site_visit_scheduled,2025-09-01T00:00:00,user_004,site_visit_completed +SH-183-4,LED-0183,site_visit_scheduled,site_visit_done,2025-09-13T00:00:00,user_005,stalled +SH-183-5,LED-0183,site_visit_done,negotiation,2025-09-20T00:00:00,user_005,re_engaged +SH-183-6,LED-0183,negotiation,booking_pending,2025-09-30T00:00:00,user_002,follow_up +SH-183-7,LED-0183,booking_pending,closed_won,2025-10-03T00:00:00,user_002,follow_up +SH-183-8,LED-0183,closed_won,closed_lost,2025-10-07T00:00:00,user_005,follow_up +SH-184-0,LED-0184,,new,2025-11-26T00:00:00,user_003,follow_up +SH-184-1,LED-0184,new,contacted,2025-12-10T00:00:00,user_001,follow_up +SH-184-2,LED-0184,contacted,qualified,2025-12-20T00:00:00,user_003,stalled +SH-184-3,LED-0184,qualified,site_visit_scheduled,2025-12-26T00:00:00,user_001,stalled +SH-184-4,LED-0184,site_visit_scheduled,site_visit_done,2026-01-02T00:00:00,user_003,progression +SH-184-5,LED-0184,site_visit_done,negotiation,2026-01-10T00:00:00,user_003,stalled +SH-185-0,LED-0185,,new,2025-11-13T00:00:00,user_003,stalled +SH-185-1,LED-0185,new,contacted,2025-11-16T00:00:00,user_004,negotiation_started +SH-185-2,LED-0185,contacted,qualified,2025-11-29T00:00:00,user_001,progression +SH-185-3,LED-0185,qualified,site_visit_scheduled,2025-12-05T00:00:00,user_005,follow_up +SH-185-4,LED-0185,site_visit_scheduled,site_visit_done,2025-12-19T00:00:00,user_003,progression +SH-185-5,LED-0185,site_visit_done,negotiation,2025-12-24T00:00:00,user_004,progression +SH-185-6,LED-0185,negotiation,booking_pending,2025-12-31T00:00:00,user_005,follow_up +SH-185-7,LED-0185,booking_pending,closed_won,2026-01-14T00:00:00,user_005,negotiation_started +SH-185-8,LED-0185,closed_won,closed_lost,2026-01-19T00:00:00,user_001,site_visit_completed +SH-185-9,LED-0185,closed_lost,nurturing,2026-01-26T00:00:00,user_005,site_visit_completed +SH-186-0,LED-0186,,new,2025-01-11T00:00:00,user_002,progression +SH-186-1,LED-0186,new,contacted,2025-01-23T00:00:00,user_004,follow_up +SH-186-2,LED-0186,contacted,qualified,2025-02-03T00:00:00,user_005,follow_up +SH-186-3,LED-0186,qualified,site_visit_scheduled,2025-02-17T00:00:00,user_004,site_visit_completed +SH-186-4,LED-0186,site_visit_scheduled,site_visit_done,2025-03-02T00:00:00,user_003,follow_up +SH-186-5,LED-0186,site_visit_done,negotiation,2025-03-10T00:00:00,user_005,stalled +SH-186-6,LED-0186,negotiation,booking_pending,2025-03-24T00:00:00,user_003,progression +SH-186-7,LED-0186,booking_pending,closed_won,2025-04-04T00:00:00,user_002,site_visit_completed +SH-186-8,LED-0186,closed_won,closed_lost,2025-04-10T00:00:00,user_004,site_visit_completed +SH-186-9,LED-0186,closed_lost,nurturing,2025-04-13T00:00:00,user_001,stalled +SH-187-0,LED-0187,,new,2024-09-05T00:00:00,user_005,progression +SH-187-1,LED-0187,new,contacted,2024-09-10T00:00:00,user_005,follow_up +SH-187-2,LED-0187,contacted,qualified,2024-09-17T00:00:00,user_005,re_engaged +SH-187-3,LED-0187,qualified,site_visit_scheduled,2024-09-28T00:00:00,user_002,stalled +SH-187-4,LED-0187,site_visit_scheduled,site_visit_done,2024-10-13T00:00:00,user_002,follow_up +SH-187-5,LED-0187,site_visit_done,negotiation,2024-10-26T00:00:00,user_003,progression +SH-187-6,LED-0187,negotiation,booking_pending,2024-10-30T00:00:00,user_003,follow_up +SH-187-7,LED-0187,booking_pending,closed_won,2024-11-14T00:00:00,user_003,negotiation_started +SH-187-8,LED-0187,closed_won,closed_lost,2024-11-23T00:00:00,user_002,negotiation_started +SH-188-0,LED-0188,,new,2024-12-29T00:00:00,user_003,site_visit_completed +SH-188-1,LED-0188,new,contacted,2025-01-09T00:00:00,user_001,stalled +SH-188-2,LED-0188,contacted,qualified,2025-01-21T00:00:00,user_004,progression +SH-188-3,LED-0188,qualified,site_visit_scheduled,2025-02-03T00:00:00,user_002,follow_up +SH-188-4,LED-0188,site_visit_scheduled,site_visit_done,2025-02-13T00:00:00,user_002,progression +SH-188-5,LED-0188,site_visit_done,negotiation,2025-02-19T00:00:00,user_003,negotiation_started +SH-188-6,LED-0188,negotiation,booking_pending,2025-02-23T00:00:00,user_003,negotiation_started +SH-188-7,LED-0188,booking_pending,closed_won,2025-03-08T00:00:00,user_002,negotiation_started +SH-189-0,LED-0189,,new,2025-12-01T00:00:00,user_001,stalled +SH-189-1,LED-0189,new,contacted,2025-12-16T00:00:00,user_004,stalled +SH-189-2,LED-0189,contacted,qualified,2025-12-24T00:00:00,user_004,re_engaged +SH-189-3,LED-0189,qualified,site_visit_scheduled,2026-01-01T00:00:00,user_005,site_visit_completed +SH-189-4,LED-0189,site_visit_scheduled,site_visit_done,2026-01-05T00:00:00,user_002,negotiation_started +SH-189-5,LED-0189,site_visit_done,negotiation,2026-01-16T00:00:00,user_004,re_engaged +SH-189-6,LED-0189,negotiation,booking_pending,2026-01-20T00:00:00,user_002,progression +SH-190-0,LED-0190,,new,2025-07-03T00:00:00,user_002,re_engaged +SH-190-1,LED-0190,new,contacted,2025-07-13T00:00:00,user_004,site_visit_completed +SH-190-2,LED-0190,contacted,qualified,2025-07-21T00:00:00,user_004,re_engaged +SH-190-3,LED-0190,qualified,site_visit_scheduled,2025-08-02T00:00:00,user_002,re_engaged +SH-190-4,LED-0190,site_visit_scheduled,site_visit_done,2025-08-13T00:00:00,user_005,negotiation_started +SH-190-5,LED-0190,site_visit_done,negotiation,2025-08-16T00:00:00,user_001,site_visit_completed +SH-190-6,LED-0190,negotiation,booking_pending,2025-08-24T00:00:00,user_001,follow_up +SH-191-0,LED-0191,,new,2024-01-29T00:00:00,user_005,negotiation_started +SH-191-1,LED-0191,new,contacted,2024-02-11T00:00:00,user_005,site_visit_completed +SH-191-2,LED-0191,contacted,qualified,2024-02-22T00:00:00,user_004,negotiation_started +SH-191-3,LED-0191,qualified,site_visit_scheduled,2024-03-04T00:00:00,user_001,site_visit_completed +SH-191-4,LED-0191,site_visit_scheduled,site_visit_done,2024-03-12T00:00:00,user_003,site_visit_completed +SH-191-5,LED-0191,site_visit_done,negotiation,2024-03-22T00:00:00,user_002,negotiation_started +SH-192-0,LED-0192,,new,2026-01-29T00:00:00,user_003,site_visit_completed +SH-192-1,LED-0192,new,contacted,2026-02-11T00:00:00,user_001,re_engaged +SH-192-2,LED-0192,contacted,qualified,2026-02-24T00:00:00,user_003,stalled +SH-192-3,LED-0192,qualified,site_visit_scheduled,2026-03-07T00:00:00,user_005,negotiation_started +SH-192-4,LED-0192,site_visit_scheduled,site_visit_done,2026-03-13T00:00:00,user_004,negotiation_started +SH-192-5,LED-0192,site_visit_done,negotiation,2026-03-28T00:00:00,user_004,site_visit_completed +SH-192-6,LED-0192,negotiation,booking_pending,2026-04-07T00:00:00,user_002,follow_up +SH-193-0,LED-0193,,new,2024-08-04T00:00:00,user_004,negotiation_started +SH-193-1,LED-0193,new,contacted,2024-08-10T00:00:00,user_005,negotiation_started +SH-193-2,LED-0193,contacted,qualified,2024-08-16T00:00:00,user_002,negotiation_started +SH-193-3,LED-0193,qualified,site_visit_scheduled,2024-08-27T00:00:00,user_001,stalled +SH-193-4,LED-0193,site_visit_scheduled,site_visit_done,2024-09-04T00:00:00,user_002,follow_up +SH-193-5,LED-0193,site_visit_done,negotiation,2024-09-14T00:00:00,user_001,progression +SH-194-0,LED-0194,,new,2024-09-22T00:00:00,user_004,re_engaged +SH-194-1,LED-0194,new,contacted,2024-09-29T00:00:00,user_005,site_visit_completed +SH-194-2,LED-0194,contacted,qualified,2024-10-11T00:00:00,user_001,follow_up +SH-194-3,LED-0194,qualified,site_visit_scheduled,2024-10-16T00:00:00,user_005,site_visit_completed +SH-194-4,LED-0194,site_visit_scheduled,site_visit_done,2024-10-19T00:00:00,user_002,site_visit_completed +SH-195-0,LED-0195,,new,2024-12-28T00:00:00,user_001,re_engaged +SH-195-1,LED-0195,new,contacted,2025-01-03T00:00:00,user_003,negotiation_started +SH-195-2,LED-0195,contacted,qualified,2025-01-13T00:00:00,user_005,re_engaged +SH-195-3,LED-0195,qualified,site_visit_scheduled,2025-01-16T00:00:00,user_005,follow_up +SH-196-0,LED-0196,,new,2024-01-09T00:00:00,user_005,negotiation_started +SH-196-1,LED-0196,new,contacted,2024-01-20T00:00:00,user_003,re_engaged +SH-196-2,LED-0196,contacted,qualified,2024-01-27T00:00:00,user_003,stalled +SH-196-3,LED-0196,qualified,site_visit_scheduled,2024-02-02T00:00:00,user_003,site_visit_completed +SH-196-4,LED-0196,site_visit_scheduled,site_visit_done,2024-02-15T00:00:00,user_005,stalled +SH-197-0,LED-0197,,new,2024-08-19T00:00:00,user_003,stalled +SH-197-1,LED-0197,new,contacted,2024-08-25T00:00:00,user_005,re_engaged +SH-197-2,LED-0197,contacted,qualified,2024-08-30T00:00:00,user_003,follow_up +SH-197-3,LED-0197,qualified,site_visit_scheduled,2024-09-05T00:00:00,user_004,follow_up +SH-197-4,LED-0197,site_visit_scheduled,site_visit_done,2024-09-10T00:00:00,user_005,re_engaged +SH-198-0,LED-0198,,new,2025-04-19T00:00:00,user_003,progression +SH-198-1,LED-0198,new,contacted,2025-04-27T00:00:00,user_004,negotiation_started +SH-198-2,LED-0198,contacted,qualified,2025-05-05T00:00:00,user_005,stalled +SH-198-3,LED-0198,qualified,site_visit_scheduled,2025-05-19T00:00:00,user_002,follow_up +SH-198-4,LED-0198,site_visit_scheduled,site_visit_done,2025-05-31T00:00:00,user_005,negotiation_started +SH-199-0,LED-0199,,new,2025-12-22T00:00:00,user_004,re_engaged +SH-200-0,LED-0200,,new,2024-12-14T00:00:00,user_001,stalled +SH-200-1,LED-0200,new,contacted,2024-12-18T00:00:00,user_005,progression +SH-200-2,LED-0200,contacted,qualified,2024-12-29T00:00:00,user_002,stalled +SH-200-3,LED-0200,qualified,site_visit_scheduled,2025-01-02T00:00:00,user_005,negotiation_started +SH-200-4,LED-0200,site_visit_scheduled,site_visit_done,2025-01-14T00:00:00,user_002,progression +SH-200-5,LED-0200,site_visit_done,negotiation,2025-01-29T00:00:00,user_004,site_visit_completed +SH-200-6,LED-0200,negotiation,booking_pending,2025-02-08T00:00:00,user_004,re_engaged +SH-200-7,LED-0200,booking_pending,closed_won,2025-02-13T00:00:00,user_003,progression +SH-200-8,LED-0200,closed_won,closed_lost,2025-02-18T00:00:00,user_005,site_visit_completed +SH-201-0,LED-0201,,new,2024-08-09T00:00:00,user_003,progression +SH-201-1,LED-0201,new,contacted,2024-08-14T00:00:00,user_004,progression +SH-201-2,LED-0201,contacted,qualified,2024-08-23T00:00:00,user_001,negotiation_started +SH-201-3,LED-0201,qualified,site_visit_scheduled,2024-09-06T00:00:00,user_002,negotiation_started +SH-201-4,LED-0201,site_visit_scheduled,site_visit_done,2024-09-09T00:00:00,user_004,negotiation_started +SH-202-0,LED-0202,,new,2024-04-01T00:00:00,user_002,follow_up +SH-202-1,LED-0202,new,contacted,2024-04-13T00:00:00,user_001,follow_up +SH-202-2,LED-0202,contacted,qualified,2024-04-24T00:00:00,user_002,follow_up +SH-202-3,LED-0202,qualified,site_visit_scheduled,2024-05-08T00:00:00,user_004,progression +SH-202-4,LED-0202,site_visit_scheduled,site_visit_done,2024-05-11T00:00:00,user_005,follow_up +SH-202-5,LED-0202,site_visit_done,negotiation,2024-05-25T00:00:00,user_003,site_visit_completed +SH-202-6,LED-0202,negotiation,booking_pending,2024-06-06T00:00:00,user_004,follow_up +SH-203-0,LED-0203,,new,2025-07-13T00:00:00,user_004,site_visit_completed +SH-203-1,LED-0203,new,contacted,2025-07-18T00:00:00,user_003,re_engaged +SH-203-2,LED-0203,contacted,qualified,2025-07-29T00:00:00,user_003,stalled +SH-203-3,LED-0203,qualified,site_visit_scheduled,2025-08-11T00:00:00,user_001,negotiation_started +SH-203-4,LED-0203,site_visit_scheduled,site_visit_done,2025-08-21T00:00:00,user_005,follow_up +SH-203-5,LED-0203,site_visit_done,negotiation,2025-08-26T00:00:00,user_002,stalled +SH-203-6,LED-0203,negotiation,booking_pending,2025-08-31T00:00:00,user_002,follow_up +SH-203-7,LED-0203,booking_pending,closed_won,2025-09-13T00:00:00,user_001,re_engaged +SH-204-0,LED-0204,,new,2024-07-18T00:00:00,user_005,negotiation_started +SH-204-1,LED-0204,new,contacted,2024-07-22T00:00:00,user_003,re_engaged +SH-204-2,LED-0204,contacted,qualified,2024-08-06T00:00:00,user_005,site_visit_completed +SH-204-3,LED-0204,qualified,site_visit_scheduled,2024-08-14T00:00:00,user_002,site_visit_completed +SH-204-4,LED-0204,site_visit_scheduled,site_visit_done,2024-08-22T00:00:00,user_004,stalled +SH-204-5,LED-0204,site_visit_done,negotiation,2024-09-01T00:00:00,user_001,re_engaged +SH-204-6,LED-0204,negotiation,booking_pending,2024-09-09T00:00:00,user_005,site_visit_completed +SH-204-7,LED-0204,booking_pending,closed_won,2024-09-13T00:00:00,user_003,negotiation_started +SH-204-8,LED-0204,closed_won,closed_lost,2024-09-26T00:00:00,user_001,stalled +SH-204-9,LED-0204,closed_lost,nurturing,2024-10-01T00:00:00,user_001,follow_up +SH-205-0,LED-0205,,new,2025-05-06T00:00:00,user_003,re_engaged +SH-205-1,LED-0205,new,contacted,2025-05-17T00:00:00,user_003,follow_up +SH-205-2,LED-0205,contacted,qualified,2025-05-31T00:00:00,user_005,stalled +SH-205-3,LED-0205,qualified,site_visit_scheduled,2025-06-04T00:00:00,user_001,negotiation_started +SH-205-4,LED-0205,site_visit_scheduled,site_visit_done,2025-06-09T00:00:00,user_002,negotiation_started +SH-205-5,LED-0205,site_visit_done,negotiation,2025-06-14T00:00:00,user_002,negotiation_started +SH-205-6,LED-0205,negotiation,booking_pending,2025-06-29T00:00:00,user_002,re_engaged +SH-205-7,LED-0205,booking_pending,closed_won,2025-07-08T00:00:00,user_004,stalled +SH-206-0,LED-0206,,new,2024-06-10T00:00:00,user_004,negotiation_started +SH-206-1,LED-0206,new,contacted,2024-06-22T00:00:00,user_002,re_engaged +SH-207-0,LED-0207,,new,2025-09-23T00:00:00,user_004,negotiation_started +SH-207-1,LED-0207,new,contacted,2025-10-05T00:00:00,user_005,progression +SH-207-2,LED-0207,contacted,qualified,2025-10-14T00:00:00,user_004,re_engaged +SH-207-3,LED-0207,qualified,site_visit_scheduled,2025-10-17T00:00:00,user_002,stalled +SH-207-4,LED-0207,site_visit_scheduled,site_visit_done,2025-10-22T00:00:00,user_001,re_engaged +SH-207-5,LED-0207,site_visit_done,negotiation,2025-10-30T00:00:00,user_001,site_visit_completed +SH-207-6,LED-0207,negotiation,booking_pending,2025-11-08T00:00:00,user_001,re_engaged +SH-208-0,LED-0208,,new,2025-01-17T00:00:00,user_003,stalled +SH-208-1,LED-0208,new,contacted,2025-01-31T00:00:00,user_005,site_visit_completed +SH-208-2,LED-0208,contacted,qualified,2025-02-15T00:00:00,user_005,stalled +SH-209-0,LED-0209,,new,2024-02-17T00:00:00,user_002,follow_up +SH-209-1,LED-0209,new,contacted,2024-02-23T00:00:00,user_004,re_engaged +SH-209-2,LED-0209,contacted,qualified,2024-03-09T00:00:00,user_002,follow_up +SH-209-3,LED-0209,qualified,site_visit_scheduled,2024-03-12T00:00:00,user_003,follow_up +SH-210-0,LED-0210,,new,2025-09-20T00:00:00,user_003,stalled +SH-210-1,LED-0210,new,contacted,2025-09-23T00:00:00,user_004,stalled +SH-210-2,LED-0210,contacted,qualified,2025-10-03T00:00:00,user_004,stalled +SH-210-3,LED-0210,qualified,site_visit_scheduled,2025-10-12T00:00:00,user_001,follow_up +SH-211-0,LED-0211,,new,2025-08-27T00:00:00,user_001,stalled +SH-211-1,LED-0211,new,contacted,2025-08-31T00:00:00,user_005,negotiation_started +SH-211-2,LED-0211,contacted,qualified,2025-09-14T00:00:00,user_002,re_engaged +SH-211-3,LED-0211,qualified,site_visit_scheduled,2025-09-20T00:00:00,user_002,stalled +SH-211-4,LED-0211,site_visit_scheduled,site_visit_done,2025-10-05T00:00:00,user_002,follow_up +SH-211-5,LED-0211,site_visit_done,negotiation,2025-10-08T00:00:00,user_004,re_engaged +SH-212-0,LED-0212,,new,2024-04-09T00:00:00,user_003,progression +SH-212-1,LED-0212,new,contacted,2024-04-14T00:00:00,user_001,stalled +SH-212-2,LED-0212,contacted,qualified,2024-04-17T00:00:00,user_001,site_visit_completed +SH-212-3,LED-0212,qualified,site_visit_scheduled,2024-04-26T00:00:00,user_003,progression +SH-212-4,LED-0212,site_visit_scheduled,site_visit_done,2024-05-11T00:00:00,user_005,stalled +SH-212-5,LED-0212,site_visit_done,negotiation,2024-05-19T00:00:00,user_001,follow_up +SH-212-6,LED-0212,negotiation,booking_pending,2024-05-25T00:00:00,user_005,negotiation_started +SH-212-7,LED-0212,booking_pending,closed_won,2024-05-30T00:00:00,user_005,follow_up +SH-212-8,LED-0212,closed_won,closed_lost,2024-06-07T00:00:00,user_001,re_engaged +SH-213-0,LED-0213,,new,2024-05-05T00:00:00,user_004,follow_up +SH-213-1,LED-0213,new,contacted,2024-05-20T00:00:00,user_004,progression +SH-213-2,LED-0213,contacted,qualified,2024-05-28T00:00:00,user_001,negotiation_started +SH-213-3,LED-0213,qualified,site_visit_scheduled,2024-06-12T00:00:00,user_005,progression +SH-213-4,LED-0213,site_visit_scheduled,site_visit_done,2024-06-23T00:00:00,user_001,re_engaged +SH-213-5,LED-0213,site_visit_done,negotiation,2024-07-06T00:00:00,user_003,stalled +SH-213-6,LED-0213,negotiation,booking_pending,2024-07-18T00:00:00,user_005,re_engaged +SH-213-7,LED-0213,booking_pending,closed_won,2024-07-29T00:00:00,user_005,negotiation_started +SH-213-8,LED-0213,closed_won,closed_lost,2024-08-13T00:00:00,user_005,re_engaged +SH-214-0,LED-0214,,new,2025-08-10T00:00:00,user_001,site_visit_completed +SH-214-1,LED-0214,new,contacted,2025-08-19T00:00:00,user_002,site_visit_completed +SH-214-2,LED-0214,contacted,qualified,2025-08-30T00:00:00,user_001,re_engaged +SH-214-3,LED-0214,qualified,site_visit_scheduled,2025-09-08T00:00:00,user_005,stalled +SH-214-4,LED-0214,site_visit_scheduled,site_visit_done,2025-09-13T00:00:00,user_005,site_visit_completed +SH-214-5,LED-0214,site_visit_done,negotiation,2025-09-26T00:00:00,user_001,follow_up +SH-214-6,LED-0214,negotiation,booking_pending,2025-09-30T00:00:00,user_004,follow_up +SH-214-7,LED-0214,booking_pending,closed_won,2025-10-06T00:00:00,user_003,progression +SH-214-8,LED-0214,closed_won,closed_lost,2025-10-20T00:00:00,user_002,negotiation_started +SH-215-0,LED-0215,,new,2025-05-28T00:00:00,user_004,follow_up +SH-215-1,LED-0215,new,contacted,2025-06-10T00:00:00,user_002,progression +SH-215-2,LED-0215,contacted,qualified,2025-06-23T00:00:00,user_001,progression +SH-215-3,LED-0215,qualified,site_visit_scheduled,2025-06-28T00:00:00,user_004,progression +SH-215-4,LED-0215,site_visit_scheduled,site_visit_done,2025-07-03T00:00:00,user_005,site_visit_completed +SH-216-0,LED-0216,,new,2025-01-29T00:00:00,user_002,follow_up +SH-216-1,LED-0216,new,contacted,2025-02-12T00:00:00,user_003,progression +SH-216-2,LED-0216,contacted,qualified,2025-02-24T00:00:00,user_001,follow_up +SH-216-3,LED-0216,qualified,site_visit_scheduled,2025-03-04T00:00:00,user_003,follow_up +SH-216-4,LED-0216,site_visit_scheduled,site_visit_done,2025-03-12T00:00:00,user_004,follow_up +SH-216-5,LED-0216,site_visit_done,negotiation,2025-03-25T00:00:00,user_001,negotiation_started +SH-216-6,LED-0216,negotiation,booking_pending,2025-04-03T00:00:00,user_002,site_visit_completed +SH-216-7,LED-0216,booking_pending,closed_won,2025-04-14T00:00:00,user_001,follow_up +SH-217-0,LED-0217,,new,2024-08-30T00:00:00,user_004,site_visit_completed +SH-218-0,LED-0218,,new,2026-01-16T00:00:00,user_005,site_visit_completed +SH-218-1,LED-0218,new,contacted,2026-01-26T00:00:00,user_005,negotiation_started +SH-218-2,LED-0218,contacted,qualified,2026-02-03T00:00:00,user_003,follow_up +SH-218-3,LED-0218,qualified,site_visit_scheduled,2026-02-12T00:00:00,user_002,negotiation_started +SH-218-4,LED-0218,site_visit_scheduled,site_visit_done,2026-02-16T00:00:00,user_005,re_engaged +SH-218-5,LED-0218,site_visit_done,negotiation,2026-02-26T00:00:00,user_003,stalled +SH-218-6,LED-0218,negotiation,booking_pending,2026-03-07T00:00:00,user_001,follow_up +SH-218-7,LED-0218,booking_pending,closed_won,2026-03-13T00:00:00,user_003,stalled +SH-218-8,LED-0218,closed_won,closed_lost,2026-03-18T00:00:00,user_004,stalled +SH-219-0,LED-0219,,new,2025-07-13T00:00:00,user_003,re_engaged +SH-219-1,LED-0219,new,contacted,2025-07-19T00:00:00,user_001,re_engaged +SH-219-2,LED-0219,contacted,qualified,2025-07-24T00:00:00,user_004,progression +SH-219-3,LED-0219,qualified,site_visit_scheduled,2025-08-08T00:00:00,user_001,follow_up +SH-219-4,LED-0219,site_visit_scheduled,site_visit_done,2025-08-17T00:00:00,user_004,negotiation_started +SH-219-5,LED-0219,site_visit_done,negotiation,2025-08-27T00:00:00,user_002,progression +SH-219-6,LED-0219,negotiation,booking_pending,2025-09-08T00:00:00,user_003,negotiation_started +SH-219-7,LED-0219,booking_pending,closed_won,2025-09-20T00:00:00,user_005,follow_up +SH-219-8,LED-0219,closed_won,closed_lost,2025-09-30T00:00:00,user_001,negotiation_started +SH-219-9,LED-0219,closed_lost,nurturing,2025-10-13T00:00:00,user_005,site_visit_completed +SH-220-0,LED-0220,,new,2024-09-20T00:00:00,user_001,re_engaged +SH-220-1,LED-0220,new,contacted,2024-09-26T00:00:00,user_003,site_visit_completed +SH-220-2,LED-0220,contacted,qualified,2024-10-06T00:00:00,user_004,site_visit_completed +SH-220-3,LED-0220,qualified,site_visit_scheduled,2024-10-09T00:00:00,user_003,re_engaged +SH-221-0,LED-0221,,new,2024-01-23T00:00:00,user_004,re_engaged +SH-222-0,LED-0222,,new,2025-12-22T00:00:00,user_004,re_engaged +SH-222-1,LED-0222,new,contacted,2026-01-03T00:00:00,user_003,stalled +SH-223-0,LED-0223,,new,2025-05-29T00:00:00,user_003,negotiation_started +SH-223-1,LED-0223,new,contacted,2025-06-08T00:00:00,user_004,site_visit_completed +SH-223-2,LED-0223,contacted,qualified,2025-06-23T00:00:00,user_004,negotiation_started +SH-223-3,LED-0223,qualified,site_visit_scheduled,2025-07-03T00:00:00,user_004,follow_up +SH-223-4,LED-0223,site_visit_scheduled,site_visit_done,2025-07-08T00:00:00,user_004,negotiation_started +SH-223-5,LED-0223,site_visit_done,negotiation,2025-07-11T00:00:00,user_002,site_visit_completed +SH-224-0,LED-0224,,new,2025-09-23T00:00:00,user_004,progression +SH-224-1,LED-0224,new,contacted,2025-09-30T00:00:00,user_002,site_visit_completed +SH-224-2,LED-0224,contacted,qualified,2025-10-13T00:00:00,user_003,re_engaged +SH-224-3,LED-0224,qualified,site_visit_scheduled,2025-10-25T00:00:00,user_004,stalled +SH-224-4,LED-0224,site_visit_scheduled,site_visit_done,2025-10-29T00:00:00,user_005,follow_up +SH-225-0,LED-0225,,new,2024-11-20T00:00:00,user_005,negotiation_started +SH-225-1,LED-0225,new,contacted,2024-11-30T00:00:00,user_005,re_engaged +SH-225-2,LED-0225,contacted,qualified,2024-12-07T00:00:00,user_001,negotiation_started +SH-225-3,LED-0225,qualified,site_visit_scheduled,2024-12-16T00:00:00,user_002,site_visit_completed +SH-225-4,LED-0225,site_visit_scheduled,site_visit_done,2024-12-30T00:00:00,user_002,site_visit_completed +SH-225-5,LED-0225,site_visit_done,negotiation,2025-01-14T00:00:00,user_001,negotiation_started +SH-225-6,LED-0225,negotiation,booking_pending,2025-01-20T00:00:00,user_002,re_engaged +SH-225-7,LED-0225,booking_pending,closed_won,2025-01-23T00:00:00,user_003,site_visit_completed +SH-225-8,LED-0225,closed_won,closed_lost,2025-02-04T00:00:00,user_004,stalled +SH-226-0,LED-0226,,new,2024-06-15T00:00:00,user_003,progression +SH-226-1,LED-0226,new,contacted,2024-06-22T00:00:00,user_004,site_visit_completed +SH-226-2,LED-0226,contacted,qualified,2024-06-28T00:00:00,user_005,negotiation_started +SH-226-3,LED-0226,qualified,site_visit_scheduled,2024-07-05T00:00:00,user_002,stalled +SH-226-4,LED-0226,site_visit_scheduled,site_visit_done,2024-07-10T00:00:00,user_003,progression +SH-226-5,LED-0226,site_visit_done,negotiation,2024-07-14T00:00:00,user_001,site_visit_completed +SH-226-6,LED-0226,negotiation,booking_pending,2024-07-25T00:00:00,user_004,site_visit_completed +SH-226-7,LED-0226,booking_pending,closed_won,2024-07-30T00:00:00,user_003,re_engaged +SH-227-0,LED-0227,,new,2025-07-16T00:00:00,user_002,negotiation_started +SH-228-0,LED-0228,,new,2025-02-17T00:00:00,user_005,site_visit_completed +SH-228-1,LED-0228,new,contacted,2025-02-28T00:00:00,user_004,follow_up +SH-228-2,LED-0228,contacted,qualified,2025-03-06T00:00:00,user_005,site_visit_completed +SH-228-3,LED-0228,qualified,site_visit_scheduled,2025-03-14T00:00:00,user_002,site_visit_completed +SH-229-0,LED-0229,,new,2025-11-26T00:00:00,user_001,progression +SH-229-1,LED-0229,new,contacted,2025-12-03T00:00:00,user_001,site_visit_completed +SH-229-2,LED-0229,contacted,qualified,2025-12-13T00:00:00,user_004,re_engaged +SH-229-3,LED-0229,qualified,site_visit_scheduled,2025-12-25T00:00:00,user_002,progression +SH-230-0,LED-0230,,new,2025-05-14T00:00:00,user_005,site_visit_completed +SH-230-1,LED-0230,new,contacted,2025-05-21T00:00:00,user_001,re_engaged +SH-230-2,LED-0230,contacted,qualified,2025-06-02T00:00:00,user_004,progression +SH-231-0,LED-0231,,new,2025-10-26T00:00:00,user_003,site_visit_completed +SH-231-1,LED-0231,new,contacted,2025-10-31T00:00:00,user_004,re_engaged +SH-231-2,LED-0231,contacted,qualified,2025-11-11T00:00:00,user_004,site_visit_completed +SH-231-3,LED-0231,qualified,site_visit_scheduled,2025-11-20T00:00:00,user_001,stalled +SH-231-4,LED-0231,site_visit_scheduled,site_visit_done,2025-11-27T00:00:00,user_002,site_visit_completed +SH-231-5,LED-0231,site_visit_done,negotiation,2025-12-05T00:00:00,user_004,negotiation_started +SH-232-0,LED-0232,,new,2025-05-29T00:00:00,user_002,stalled +SH-232-1,LED-0232,new,contacted,2025-06-11T00:00:00,user_001,follow_up +SH-232-2,LED-0232,contacted,qualified,2025-06-14T00:00:00,user_001,progression +SH-233-0,LED-0233,,new,2025-09-02T00:00:00,user_003,re_engaged +SH-234-0,LED-0234,,new,2025-06-16T00:00:00,user_005,negotiation_started +SH-234-1,LED-0234,new,contacted,2025-07-01T00:00:00,user_005,re_engaged +SH-234-2,LED-0234,contacted,qualified,2025-07-15T00:00:00,user_001,site_visit_completed +SH-234-3,LED-0234,qualified,site_visit_scheduled,2025-07-27T00:00:00,user_001,re_engaged +SH-234-4,LED-0234,site_visit_scheduled,site_visit_done,2025-08-07T00:00:00,user_004,follow_up +SH-234-5,LED-0234,site_visit_done,negotiation,2025-08-17T00:00:00,user_003,follow_up +SH-234-6,LED-0234,negotiation,booking_pending,2025-08-20T00:00:00,user_003,stalled +SH-234-7,LED-0234,booking_pending,closed_won,2025-08-28T00:00:00,user_004,progression +SH-235-0,LED-0235,,new,2024-06-02T00:00:00,user_002,negotiation_started +SH-235-1,LED-0235,new,contacted,2024-06-15T00:00:00,user_005,site_visit_completed +SH-236-0,LED-0236,,new,2025-08-09T00:00:00,user_004,progression +SH-236-1,LED-0236,new,contacted,2025-08-24T00:00:00,user_004,progression +SH-236-2,LED-0236,contacted,qualified,2025-09-01T00:00:00,user_004,progression +SH-237-0,LED-0237,,new,2024-12-24T00:00:00,user_005,re_engaged +SH-237-1,LED-0237,new,contacted,2025-01-04T00:00:00,user_005,stalled +SH-237-2,LED-0237,contacted,qualified,2025-01-17T00:00:00,user_005,follow_up +SH-237-3,LED-0237,qualified,site_visit_scheduled,2025-01-27T00:00:00,user_003,progression +SH-237-4,LED-0237,site_visit_scheduled,site_visit_done,2025-02-10T00:00:00,user_004,site_visit_completed +SH-238-0,LED-0238,,new,2025-01-28T00:00:00,user_005,site_visit_completed +SH-238-1,LED-0238,new,contacted,2025-02-02T00:00:00,user_003,stalled +SH-238-2,LED-0238,contacted,qualified,2025-02-06T00:00:00,user_003,progression +SH-238-3,LED-0238,qualified,site_visit_scheduled,2025-02-15T00:00:00,user_005,negotiation_started +SH-239-0,LED-0239,,new,2024-10-04T00:00:00,user_005,progression +SH-239-1,LED-0239,new,contacted,2024-10-07T00:00:00,user_001,site_visit_completed +SH-239-2,LED-0239,contacted,qualified,2024-10-19T00:00:00,user_003,site_visit_completed +SH-240-0,LED-0240,,new,2024-10-25T00:00:00,user_005,negotiation_started +SH-240-1,LED-0240,new,contacted,2024-11-04T00:00:00,user_002,follow_up +SH-241-0,LED-0241,,new,2025-12-29T00:00:00,user_003,negotiation_started +SH-241-1,LED-0241,new,contacted,2026-01-05T00:00:00,user_002,re_engaged +SH-242-0,LED-0242,,new,2025-04-14T00:00:00,user_004,site_visit_completed +SH-242-1,LED-0242,new,contacted,2025-04-19T00:00:00,user_005,progression +SH-242-2,LED-0242,contacted,qualified,2025-04-25T00:00:00,user_001,stalled +SH-243-0,LED-0243,,new,2024-03-02T00:00:00,user_003,negotiation_started +SH-243-1,LED-0243,new,contacted,2024-03-08T00:00:00,user_004,follow_up +SH-243-2,LED-0243,contacted,qualified,2024-03-22T00:00:00,user_001,re_engaged +SH-243-3,LED-0243,qualified,site_visit_scheduled,2024-03-28T00:00:00,user_002,re_engaged +SH-243-4,LED-0243,site_visit_scheduled,site_visit_done,2024-04-09T00:00:00,user_001,progression +SH-243-5,LED-0243,site_visit_done,negotiation,2024-04-18T00:00:00,user_002,progression +SH-243-6,LED-0243,negotiation,booking_pending,2024-04-25T00:00:00,user_004,stalled +SH-243-7,LED-0243,booking_pending,closed_won,2024-05-10T00:00:00,user_004,re_engaged +SH-244-0,LED-0244,,new,2025-04-26T00:00:00,user_003,progression +SH-244-1,LED-0244,new,contacted,2025-05-04T00:00:00,user_004,negotiation_started +SH-244-2,LED-0244,contacted,qualified,2025-05-17T00:00:00,user_004,progression +SH-245-0,LED-0245,,new,2024-02-21T00:00:00,user_003,follow_up +SH-245-1,LED-0245,new,contacted,2024-02-26T00:00:00,user_002,progression +SH-245-2,LED-0245,contacted,qualified,2024-03-09T00:00:00,user_004,site_visit_completed +SH-245-3,LED-0245,qualified,site_visit_scheduled,2024-03-18T00:00:00,user_002,progression +SH-245-4,LED-0245,site_visit_scheduled,site_visit_done,2024-03-21T00:00:00,user_003,progression +SH-245-5,LED-0245,site_visit_done,negotiation,2024-03-26T00:00:00,user_002,negotiation_started +SH-245-6,LED-0245,negotiation,booking_pending,2024-04-07T00:00:00,user_002,negotiation_started +SH-245-7,LED-0245,booking_pending,closed_won,2024-04-22T00:00:00,user_002,negotiation_started +SH-245-8,LED-0245,closed_won,closed_lost,2024-05-03T00:00:00,user_005,site_visit_completed +SH-246-0,LED-0246,,new,2025-04-03T00:00:00,user_004,progression +SH-246-1,LED-0246,new,contacted,2025-04-15T00:00:00,user_003,site_visit_completed +SH-246-2,LED-0246,contacted,qualified,2025-04-19T00:00:00,user_002,stalled +SH-246-3,LED-0246,qualified,site_visit_scheduled,2025-04-25T00:00:00,user_002,follow_up +SH-246-4,LED-0246,site_visit_scheduled,site_visit_done,2025-05-05T00:00:00,user_002,progression +SH-246-5,LED-0246,site_visit_done,negotiation,2025-05-19T00:00:00,user_005,stalled +SH-246-6,LED-0246,negotiation,booking_pending,2025-05-27T00:00:00,user_004,re_engaged +SH-246-7,LED-0246,booking_pending,closed_won,2025-06-05T00:00:00,user_004,stalled +SH-247-0,LED-0247,,new,2024-08-22T00:00:00,user_002,site_visit_completed +SH-247-1,LED-0247,new,contacted,2024-08-27T00:00:00,user_005,site_visit_completed +SH-247-2,LED-0247,contacted,qualified,2024-09-08T00:00:00,user_004,progression +SH-247-3,LED-0247,qualified,site_visit_scheduled,2024-09-12T00:00:00,user_001,progression +SH-247-4,LED-0247,site_visit_scheduled,site_visit_done,2024-09-27T00:00:00,user_001,follow_up +SH-247-5,LED-0247,site_visit_done,negotiation,2024-10-08T00:00:00,user_004,negotiation_started +SH-247-6,LED-0247,negotiation,booking_pending,2024-10-12T00:00:00,user_002,progression +SH-248-0,LED-0248,,new,2025-06-29T00:00:00,user_002,re_engaged +SH-248-1,LED-0248,new,contacted,2025-07-14T00:00:00,user_005,progression +SH-249-0,LED-0249,,new,2024-07-20T00:00:00,user_004,negotiation_started +SH-249-1,LED-0249,new,contacted,2024-08-02T00:00:00,user_004,re_engaged +SH-249-2,LED-0249,contacted,qualified,2024-08-10T00:00:00,user_004,follow_up +SH-249-3,LED-0249,qualified,site_visit_scheduled,2024-08-18T00:00:00,user_004,re_engaged +SH-249-4,LED-0249,site_visit_scheduled,site_visit_done,2024-08-26T00:00:00,user_005,re_engaged +SH-249-5,LED-0249,site_visit_done,negotiation,2024-08-31T00:00:00,user_001,follow_up +SH-250-0,LED-0250,,new,2025-04-01T00:00:00,user_004,progression diff --git a/db assets/synthetic_crm_v1/csv/intel_calls.csv b/db assets/synthetic_crm_v1/csv/intel_calls.csv new file mode 100644 index 00000000..73f7cb76 --- /dev/null +++ b/db assets/synthetic_crm_v1/csv/intel_calls.csv @@ -0,0 +1,479 @@ +call_id,interaction_id,call_direction,duration_seconds,recording_ref,transcript_ref +CAL-00001,INT-000006,inbound,158,rec/CAL-00001.mp3,trx/CAL-00001.json +CAL-00002,INT-000012,outbound,447,rec/CAL-00002.mp3,trx/CAL-00002.json +CAL-00003,INT-000015,outbound,404,rec/CAL-00003.mp3,trx/CAL-00003.json +CAL-00004,INT-000018,inbound,217,,trx/CAL-00004.json +CAL-00005,INT-000020,outbound,142,rec/CAL-00005.mp3, +CAL-00006,INT-000022,outbound,723,rec/CAL-00006.mp3, +CAL-00007,INT-000025,outbound,688,rec/CAL-00007.mp3, +CAL-00008,INT-000030,inbound,536,rec/CAL-00008.mp3,trx/CAL-00008.json +CAL-00009,INT-000037,inbound,823,rec/CAL-00009.mp3,trx/CAL-00009.json +CAL-00010,INT-000046,inbound,444,rec/CAL-00010.mp3,trx/CAL-00010.json +CAL-00011,INT-000051,outbound,472,rec/CAL-00011.mp3,trx/CAL-00011.json +CAL-00012,INT-000052,inbound,679,rec/CAL-00012.mp3, +CAL-00013,INT-000059,outbound,682,rec/CAL-00013.mp3, +CAL-00014,INT-000061,outbound,594,rec/CAL-00014.mp3,trx/CAL-00014.json +CAL-00015,INT-000070,inbound,283,, +CAL-00016,INT-000074,inbound,393,rec/CAL-00016.mp3, +CAL-00017,INT-000083,inbound,240,rec/CAL-00017.mp3,trx/CAL-00017.json +CAL-00018,INT-000094,inbound,736,rec/CAL-00018.mp3, +CAL-00019,INT-000101,inbound,215,rec/CAL-00019.mp3,trx/CAL-00019.json +CAL-00020,INT-000106,outbound,450,rec/CAL-00020.mp3, +CAL-00021,INT-000125,outbound,803,rec/CAL-00021.mp3, +CAL-00022,INT-000134,outbound,64,rec/CAL-00022.mp3, +CAL-00023,INT-000142,outbound,884,,trx/CAL-00023.json +CAL-00024,INT-000146,outbound,467,, +CAL-00025,INT-000154,outbound,345,, +CAL-00026,INT-000165,outbound,411,rec/CAL-00026.mp3, +CAL-00027,INT-000167,outbound,73,,trx/CAL-00027.json +CAL-00028,INT-000176,outbound,242,rec/CAL-00028.mp3,trx/CAL-00028.json +CAL-00029,INT-000179,outbound,829,, +CAL-00030,INT-000199,inbound,847,,trx/CAL-00030.json +CAL-00031,INT-000201,outbound,372,rec/CAL-00031.mp3, +CAL-00032,INT-000202,outbound,844,rec/CAL-00032.mp3, +CAL-00033,INT-000208,inbound,174,,trx/CAL-00033.json +CAL-00034,INT-000209,inbound,465,,trx/CAL-00034.json +CAL-00035,INT-000210,inbound,525,rec/CAL-00035.mp3, +CAL-00036,INT-000221,outbound,99,rec/CAL-00036.mp3, +CAL-00037,INT-000230,inbound,684,rec/CAL-00037.mp3,trx/CAL-00037.json +CAL-00038,INT-000233,inbound,826,, +CAL-00039,INT-000235,outbound,773,rec/CAL-00039.mp3, +CAL-00040,INT-000237,outbound,163,rec/CAL-00040.mp3,trx/CAL-00040.json +CAL-00041,INT-000239,outbound,82,rec/CAL-00041.mp3,trx/CAL-00041.json +CAL-00042,INT-000249,inbound,83,rec/CAL-00042.mp3,trx/CAL-00042.json +CAL-00043,INT-000251,inbound,814,rec/CAL-00043.mp3, +CAL-00044,INT-000253,inbound,173,rec/CAL-00044.mp3, +CAL-00045,INT-000259,outbound,628,rec/CAL-00045.mp3,trx/CAL-00045.json +CAL-00046,INT-000264,outbound,512,,trx/CAL-00046.json +CAL-00047,INT-000268,inbound,494,,trx/CAL-00047.json +CAL-00048,INT-000269,outbound,396,, +CAL-00049,INT-000271,inbound,542,, +CAL-00050,INT-000274,inbound,292,rec/CAL-00050.mp3,trx/CAL-00050.json +CAL-00051,INT-000282,inbound,199,rec/CAL-00051.mp3, +CAL-00052,INT-000287,inbound,563,rec/CAL-00052.mp3,trx/CAL-00052.json +CAL-00053,INT-000289,outbound,523,rec/CAL-00053.mp3, +CAL-00054,INT-000291,inbound,271,rec/CAL-00054.mp3,trx/CAL-00054.json +CAL-00055,INT-000292,outbound,462,, +CAL-00056,INT-000294,inbound,453,rec/CAL-00056.mp3, +CAL-00057,INT-000298,inbound,573,,trx/CAL-00057.json +CAL-00058,INT-000302,inbound,481,rec/CAL-00058.mp3,trx/CAL-00058.json +CAL-00059,INT-000304,inbound,469,, +CAL-00060,INT-000305,outbound,460,rec/CAL-00060.mp3, +CAL-00061,INT-000307,outbound,515,rec/CAL-00061.mp3, +CAL-00062,INT-000312,outbound,335,rec/CAL-00062.mp3,trx/CAL-00062.json +CAL-00063,INT-000313,inbound,814,rec/CAL-00063.mp3,trx/CAL-00063.json +CAL-00064,INT-000315,inbound,581,rec/CAL-00064.mp3,trx/CAL-00064.json +CAL-00065,INT-000327,inbound,582,rec/CAL-00065.mp3, +CAL-00066,INT-000329,inbound,190,rec/CAL-00066.mp3,trx/CAL-00066.json +CAL-00067,INT-000331,inbound,691,,trx/CAL-00067.json +CAL-00068,INT-000333,outbound,113,rec/CAL-00068.mp3,trx/CAL-00068.json +CAL-00069,INT-000336,inbound,581,rec/CAL-00069.mp3, +CAL-00070,INT-000347,inbound,705,rec/CAL-00070.mp3,trx/CAL-00070.json +CAL-00071,INT-000349,outbound,599,rec/CAL-00071.mp3,trx/CAL-00071.json +CAL-00072,INT-000350,inbound,110,, +CAL-00073,INT-000351,outbound,615,rec/CAL-00073.mp3,trx/CAL-00073.json +CAL-00074,INT-000353,outbound,766,rec/CAL-00074.mp3,trx/CAL-00074.json +CAL-00075,INT-000355,outbound,498,rec/CAL-00075.mp3,trx/CAL-00075.json +CAL-00076,INT-000356,inbound,363,rec/CAL-00076.mp3, +CAL-00077,INT-000357,inbound,163,, +CAL-00078,INT-000360,inbound,257,, +CAL-00079,INT-000362,inbound,67,rec/CAL-00079.mp3,trx/CAL-00079.json +CAL-00080,INT-000363,inbound,102,rec/CAL-00080.mp3, +CAL-00081,INT-000365,outbound,829,rec/CAL-00081.mp3, +CAL-00082,INT-000366,outbound,646,rec/CAL-00082.mp3, +CAL-00083,INT-000370,outbound,552,,trx/CAL-00083.json +CAL-00084,INT-000374,outbound,682,,trx/CAL-00084.json +CAL-00085,INT-000377,outbound,263,rec/CAL-00085.mp3,trx/CAL-00085.json +CAL-00086,INT-000387,inbound,391,, +CAL-00087,INT-000395,inbound,717,rec/CAL-00087.mp3, +CAL-00088,INT-000400,inbound,742,rec/CAL-00088.mp3, +CAL-00089,INT-000401,outbound,624,,trx/CAL-00089.json +CAL-00090,INT-000402,inbound,310,rec/CAL-00090.mp3,trx/CAL-00090.json +CAL-00091,INT-000405,outbound,762,rec/CAL-00091.mp3,trx/CAL-00091.json +CAL-00092,INT-000407,outbound,656,, +CAL-00093,INT-000410,inbound,457,rec/CAL-00093.mp3,trx/CAL-00093.json +CAL-00094,INT-000411,inbound,547,rec/CAL-00094.mp3,trx/CAL-00094.json +CAL-00095,INT-000414,outbound,714,, +CAL-00096,INT-000421,inbound,690,rec/CAL-00096.mp3, +CAL-00097,INT-000427,inbound,674,rec/CAL-00097.mp3,trx/CAL-00097.json +CAL-00098,INT-000432,inbound,145,rec/CAL-00098.mp3,trx/CAL-00098.json +CAL-00099,INT-000433,inbound,437,,trx/CAL-00099.json +CAL-00100,INT-000434,outbound,323,,trx/CAL-00100.json +CAL-00101,INT-000435,inbound,705,rec/CAL-00101.mp3, +CAL-00102,INT-000438,inbound,413,rec/CAL-00102.mp3,trx/CAL-00102.json +CAL-00103,INT-000440,outbound,618,rec/CAL-00103.mp3, +CAL-00104,INT-000442,inbound,66,,trx/CAL-00104.json +CAL-00105,INT-000449,outbound,483,, +CAL-00106,INT-000457,outbound,110,, +CAL-00107,INT-000459,inbound,680,rec/CAL-00107.mp3,trx/CAL-00107.json +CAL-00108,INT-000460,inbound,168,rec/CAL-00108.mp3, +CAL-00109,INT-000461,outbound,567,rec/CAL-00109.mp3, +CAL-00110,INT-000463,inbound,624,rec/CAL-00110.mp3, +CAL-00111,INT-000466,outbound,871,, +CAL-00112,INT-000469,inbound,429,rec/CAL-00112.mp3, +CAL-00113,INT-000471,outbound,382,rec/CAL-00113.mp3, +CAL-00114,INT-000477,outbound,237,rec/CAL-00114.mp3,trx/CAL-00114.json +CAL-00115,INT-000483,inbound,414,rec/CAL-00115.mp3,trx/CAL-00115.json +CAL-00116,INT-000487,inbound,529,rec/CAL-00116.mp3, +CAL-00117,INT-000488,inbound,229,rec/CAL-00117.mp3, +CAL-00118,INT-000490,outbound,638,rec/CAL-00118.mp3, +CAL-00119,INT-000491,inbound,858,rec/CAL-00119.mp3,trx/CAL-00119.json +CAL-00120,INT-000495,inbound,176,rec/CAL-00120.mp3,trx/CAL-00120.json +CAL-00121,INT-000498,outbound,783,, +CAL-00122,INT-000500,outbound,221,rec/CAL-00122.mp3, +CAL-00123,INT-000503,inbound,711,rec/CAL-00123.mp3,trx/CAL-00123.json +CAL-00124,INT-000505,inbound,315,rec/CAL-00124.mp3, +CAL-00125,INT-000506,outbound,651,rec/CAL-00125.mp3, +CAL-00126,INT-000508,inbound,503,rec/CAL-00126.mp3,trx/CAL-00126.json +CAL-00127,INT-000510,inbound,661,, +CAL-00128,INT-000512,inbound,632,rec/CAL-00128.mp3,trx/CAL-00128.json +CAL-00129,INT-000518,outbound,83,rec/CAL-00129.mp3,trx/CAL-00129.json +CAL-00130,INT-000524,inbound,319,rec/CAL-00130.mp3,trx/CAL-00130.json +CAL-00131,INT-000526,outbound,595,, +CAL-00132,INT-000531,inbound,661,rec/CAL-00132.mp3, +CAL-00133,INT-000535,outbound,716,rec/CAL-00133.mp3,trx/CAL-00133.json +CAL-00134,INT-000536,outbound,632,rec/CAL-00134.mp3, +CAL-00135,INT-000540,inbound,83,, +CAL-00136,INT-000546,outbound,546,rec/CAL-00136.mp3,trx/CAL-00136.json +CAL-00137,INT-000553,outbound,166,rec/CAL-00137.mp3,trx/CAL-00137.json +CAL-00138,INT-000563,outbound,849,rec/CAL-00138.mp3, +CAL-00139,INT-000565,inbound,278,, +CAL-00140,INT-000571,outbound,659,, +CAL-00141,INT-000573,outbound,741,rec/CAL-00141.mp3,trx/CAL-00141.json +CAL-00142,INT-000585,inbound,614,,trx/CAL-00142.json +CAL-00143,INT-000588,outbound,295,rec/CAL-00143.mp3,trx/CAL-00143.json +CAL-00144,INT-000590,inbound,737,rec/CAL-00144.mp3,trx/CAL-00144.json +CAL-00145,INT-000593,outbound,579,rec/CAL-00145.mp3,trx/CAL-00145.json +CAL-00146,INT-000595,outbound,881,rec/CAL-00146.mp3, +CAL-00147,INT-000596,inbound,369,, +CAL-00148,INT-000599,inbound,488,rec/CAL-00148.mp3, +CAL-00149,INT-000604,inbound,817,, +CAL-00150,INT-000608,inbound,237,,trx/CAL-00150.json +CAL-00151,INT-000612,inbound,637,,trx/CAL-00151.json +CAL-00152,INT-000617,outbound,248,rec/CAL-00152.mp3,trx/CAL-00152.json +CAL-00153,INT-000618,outbound,138,rec/CAL-00153.mp3,trx/CAL-00153.json +CAL-00154,INT-000621,inbound,169,rec/CAL-00154.mp3, +CAL-00155,INT-000624,outbound,229,rec/CAL-00155.mp3,trx/CAL-00155.json +CAL-00156,INT-000625,outbound,148,rec/CAL-00156.mp3, +CAL-00157,INT-000627,inbound,443,rec/CAL-00157.mp3, +CAL-00158,INT-000629,outbound,549,rec/CAL-00158.mp3, +CAL-00159,INT-000631,outbound,217,rec/CAL-00159.mp3,trx/CAL-00159.json +CAL-00160,INT-000638,inbound,411,, +CAL-00161,INT-000650,inbound,648,, +CAL-00162,INT-000651,outbound,492,rec/CAL-00162.mp3, +CAL-00163,INT-000652,inbound,271,rec/CAL-00163.mp3,trx/CAL-00163.json +CAL-00164,INT-000653,outbound,257,rec/CAL-00164.mp3, +CAL-00165,INT-000654,outbound,670,rec/CAL-00165.mp3,trx/CAL-00165.json +CAL-00166,INT-000656,inbound,586,rec/CAL-00166.mp3,trx/CAL-00166.json +CAL-00167,INT-000659,outbound,198,rec/CAL-00167.mp3, +CAL-00168,INT-000666,inbound,383,rec/CAL-00168.mp3,trx/CAL-00168.json +CAL-00169,INT-000681,inbound,72,rec/CAL-00169.mp3, +CAL-00170,INT-000688,inbound,529,rec/CAL-00170.mp3, +CAL-00171,INT-000690,outbound,590,rec/CAL-00171.mp3, +CAL-00172,INT-000691,outbound,397,, +CAL-00173,INT-000692,inbound,685,, +CAL-00174,INT-000693,outbound,676,rec/CAL-00174.mp3,trx/CAL-00174.json +CAL-00175,INT-000701,outbound,895,,trx/CAL-00175.json +CAL-00176,INT-000703,outbound,92,rec/CAL-00176.mp3, +CAL-00177,INT-000708,inbound,206,, +CAL-00178,INT-000711,outbound,649,rec/CAL-00178.mp3, +CAL-00179,INT-000713,inbound,818,rec/CAL-00179.mp3, +CAL-00180,INT-000720,outbound,481,rec/CAL-00180.mp3, +CAL-00181,INT-000721,outbound,815,,trx/CAL-00181.json +CAL-00182,INT-000723,outbound,154,rec/CAL-00182.mp3,trx/CAL-00182.json +CAL-00183,INT-000727,outbound,895,, +CAL-00184,INT-000728,outbound,680,, +CAL-00185,INT-000734,outbound,798,, +CAL-00186,INT-000736,inbound,833,rec/CAL-00186.mp3, +CAL-00187,INT-000739,inbound,196,,trx/CAL-00187.json +CAL-00188,INT-000740,inbound,151,rec/CAL-00188.mp3,trx/CAL-00188.json +CAL-00189,INT-000746,outbound,645,rec/CAL-00189.mp3, +CAL-00190,INT-000755,outbound,837,rec/CAL-00190.mp3, +CAL-00191,INT-000760,inbound,894,,trx/CAL-00191.json +CAL-00192,INT-000764,inbound,71,, +CAL-00193,INT-000766,outbound,97,rec/CAL-00193.mp3, +CAL-00194,INT-000768,outbound,792,rec/CAL-00194.mp3, +CAL-00195,INT-000771,outbound,629,rec/CAL-00195.mp3, +CAL-00196,INT-000773,outbound,135,rec/CAL-00196.mp3, +CAL-00197,INT-000784,inbound,244,rec/CAL-00197.mp3, +CAL-00198,INT-000786,outbound,77,rec/CAL-00198.mp3, +CAL-00199,INT-000789,outbound,755,rec/CAL-00199.mp3,trx/CAL-00199.json +CAL-00200,INT-000794,outbound,584,rec/CAL-00200.mp3, +CAL-00201,INT-000796,inbound,321,rec/CAL-00201.mp3,trx/CAL-00201.json +CAL-00202,INT-000804,inbound,780,rec/CAL-00202.mp3, +CAL-00203,INT-000806,inbound,181,rec/CAL-00203.mp3,trx/CAL-00203.json +CAL-00204,INT-000809,inbound,604,rec/CAL-00204.mp3, +CAL-00205,INT-000815,inbound,333,rec/CAL-00205.mp3, +CAL-00206,INT-000817,outbound,503,rec/CAL-00206.mp3, +CAL-00207,INT-000819,outbound,624,, +CAL-00208,INT-000823,inbound,63,rec/CAL-00208.mp3, +CAL-00209,INT-000825,inbound,203,, +CAL-00210,INT-000828,outbound,762,, +CAL-00211,INT-000829,inbound,102,rec/CAL-00211.mp3, +CAL-00212,INT-000844,outbound,644,rec/CAL-00212.mp3, +CAL-00213,INT-000846,outbound,673,rec/CAL-00213.mp3,trx/CAL-00213.json +CAL-00214,INT-000847,outbound,332,rec/CAL-00214.mp3,trx/CAL-00214.json +CAL-00215,INT-000852,inbound,787,rec/CAL-00215.mp3,trx/CAL-00215.json +CAL-00216,INT-000854,outbound,82,,trx/CAL-00216.json +CAL-00217,INT-000856,outbound,759,rec/CAL-00217.mp3, +CAL-00218,INT-000859,outbound,822,rec/CAL-00218.mp3, +CAL-00219,INT-000867,inbound,838,, +CAL-00220,INT-000873,inbound,624,,trx/CAL-00220.json +CAL-00221,INT-000877,inbound,268,, +CAL-00222,INT-000882,inbound,207,rec/CAL-00222.mp3,trx/CAL-00222.json +CAL-00223,INT-000883,inbound,283,rec/CAL-00223.mp3,trx/CAL-00223.json +CAL-00224,INT-000886,outbound,186,rec/CAL-00224.mp3,trx/CAL-00224.json +CAL-00225,INT-000893,inbound,172,rec/CAL-00225.mp3,trx/CAL-00225.json +CAL-00226,INT-000894,outbound,655,rec/CAL-00226.mp3, +CAL-00227,INT-000897,inbound,87,, +CAL-00228,INT-000906,inbound,694,,trx/CAL-00228.json +CAL-00229,INT-000907,inbound,598,rec/CAL-00229.mp3, +CAL-00230,INT-000917,outbound,644,rec/CAL-00230.mp3,trx/CAL-00230.json +CAL-00231,INT-000919,inbound,604,rec/CAL-00231.mp3, +CAL-00232,INT-000922,inbound,808,rec/CAL-00232.mp3,trx/CAL-00232.json +CAL-00233,INT-000924,inbound,787,,trx/CAL-00233.json +CAL-00234,INT-000931,inbound,406,rec/CAL-00234.mp3, +CAL-00235,INT-000934,outbound,455,rec/CAL-00235.mp3, +CAL-00236,INT-000939,outbound,277,rec/CAL-00236.mp3,trx/CAL-00236.json +CAL-00237,INT-000940,outbound,779,rec/CAL-00237.mp3, +CAL-00238,INT-000952,inbound,350,rec/CAL-00238.mp3, +CAL-00239,INT-000960,inbound,706,rec/CAL-00239.mp3,trx/CAL-00239.json +CAL-00240,INT-000971,inbound,639,rec/CAL-00240.mp3, +CAL-00241,INT-000974,outbound,678,, +CAL-00242,INT-000983,outbound,622,rec/CAL-00242.mp3,trx/CAL-00242.json +CAL-00243,INT-000988,inbound,429,rec/CAL-00243.mp3, +CAL-00244,INT-000990,outbound,298,rec/CAL-00244.mp3,trx/CAL-00244.json +CAL-00245,INT-000992,outbound,132,rec/CAL-00245.mp3, +CAL-00246,INT-000993,inbound,216,rec/CAL-00246.mp3,trx/CAL-00246.json +CAL-00247,INT-000998,inbound,210,rec/CAL-00247.mp3,trx/CAL-00247.json +CAL-00248,INT-000999,outbound,327,, +CAL-00249,INT-001008,outbound,884,, +CAL-00250,INT-001012,outbound,601,rec/CAL-00250.mp3, +CAL-00251,INT-001014,outbound,365,rec/CAL-00251.mp3,trx/CAL-00251.json +CAL-00252,INT-001015,outbound,812,rec/CAL-00252.mp3,trx/CAL-00252.json +CAL-00253,INT-001016,inbound,207,,trx/CAL-00253.json +CAL-00254,INT-001018,outbound,454,rec/CAL-00254.mp3,trx/CAL-00254.json +CAL-00255,INT-001021,inbound,893,rec/CAL-00255.mp3,trx/CAL-00255.json +CAL-00256,INT-001027,inbound,200,, +CAL-00257,INT-001033,outbound,71,rec/CAL-00257.mp3,trx/CAL-00257.json +CAL-00258,INT-001043,inbound,553,rec/CAL-00258.mp3, +CAL-00259,INT-001053,inbound,158,, +CAL-00260,INT-001061,outbound,156,rec/CAL-00260.mp3,trx/CAL-00260.json +CAL-00261,INT-001064,outbound,587,,trx/CAL-00261.json +CAL-00262,INT-001067,inbound,285,rec/CAL-00262.mp3, +CAL-00263,INT-001069,inbound,781,rec/CAL-00263.mp3,trx/CAL-00263.json +CAL-00264,INT-001070,inbound,279,rec/CAL-00264.mp3, +CAL-00265,INT-001072,inbound,359,,trx/CAL-00265.json +CAL-00266,INT-001073,outbound,217,, +CAL-00267,INT-001077,outbound,69,, +CAL-00268,INT-001079,inbound,379,,trx/CAL-00268.json +CAL-00269,INT-001085,outbound,316,rec/CAL-00269.mp3, +CAL-00270,INT-001101,outbound,516,rec/CAL-00270.mp3, +CAL-00271,INT-001104,inbound,824,, +CAL-00272,INT-001107,inbound,750,rec/CAL-00272.mp3, +CAL-00273,INT-001108,outbound,784,rec/CAL-00273.mp3, +CAL-00274,INT-001110,inbound,464,rec/CAL-00274.mp3,trx/CAL-00274.json +CAL-00275,INT-001112,outbound,541,rec/CAL-00275.mp3, +CAL-00276,INT-001116,outbound,728,, +CAL-00277,INT-001121,inbound,780,, +CAL-00278,INT-001126,inbound,569,rec/CAL-00278.mp3, +CAL-00279,INT-001129,outbound,453,rec/CAL-00279.mp3,trx/CAL-00279.json +CAL-00280,INT-001133,outbound,287,rec/CAL-00280.mp3,trx/CAL-00280.json +CAL-00281,INT-001137,inbound,371,,trx/CAL-00281.json +CAL-00282,INT-001150,inbound,150,rec/CAL-00282.mp3, +CAL-00283,INT-001151,outbound,649,rec/CAL-00283.mp3,trx/CAL-00283.json +CAL-00284,INT-001152,outbound,830,rec/CAL-00284.mp3,trx/CAL-00284.json +CAL-00285,INT-001157,outbound,378,rec/CAL-00285.mp3, +CAL-00286,INT-001168,inbound,868,rec/CAL-00286.mp3, +CAL-00287,INT-001173,outbound,482,,trx/CAL-00287.json +CAL-00288,INT-001176,outbound,359,, +CAL-00289,INT-001178,outbound,388,,trx/CAL-00289.json +CAL-00290,INT-001181,inbound,341,rec/CAL-00290.mp3, +CAL-00291,INT-001191,outbound,531,rec/CAL-00291.mp3, +CAL-00292,INT-001204,inbound,192,rec/CAL-00292.mp3, +CAL-00293,INT-001205,outbound,336,rec/CAL-00293.mp3,trx/CAL-00293.json +CAL-00294,INT-001209,inbound,816,rec/CAL-00294.mp3, +CAL-00295,INT-001212,outbound,430,,trx/CAL-00295.json +CAL-00296,INT-001213,outbound,321,rec/CAL-00296.mp3, +CAL-00297,INT-001219,inbound,193,rec/CAL-00297.mp3, +CAL-00298,INT-001221,outbound,505,rec/CAL-00298.mp3,trx/CAL-00298.json +CAL-00299,INT-001224,inbound,88,, +CAL-00300,INT-001226,outbound,222,rec/CAL-00300.mp3,trx/CAL-00300.json +CAL-00301,INT-001227,inbound,452,rec/CAL-00301.mp3,trx/CAL-00301.json +CAL-00302,INT-001229,outbound,88,,trx/CAL-00302.json +CAL-00303,INT-001231,inbound,119,rec/CAL-00303.mp3, +CAL-00304,INT-001239,inbound,764,rec/CAL-00304.mp3,trx/CAL-00304.json +CAL-00305,INT-001247,inbound,388,,trx/CAL-00305.json +CAL-00306,INT-001250,outbound,263,,trx/CAL-00306.json +CAL-00307,INT-001256,outbound,637,rec/CAL-00307.mp3, +CAL-00308,INT-001258,inbound,492,rec/CAL-00308.mp3, +CAL-00309,INT-001259,inbound,186,rec/CAL-00309.mp3, +CAL-00310,INT-001260,inbound,526,, +CAL-00311,INT-001261,outbound,768,, +CAL-00312,INT-001265,outbound,668,,trx/CAL-00312.json +CAL-00313,INT-001272,inbound,60,rec/CAL-00313.mp3, +CAL-00314,INT-001277,inbound,666,rec/CAL-00314.mp3, +CAL-00315,INT-001280,inbound,626,, +CAL-00316,INT-001285,inbound,217,rec/CAL-00316.mp3,trx/CAL-00316.json +CAL-00317,INT-001291,outbound,340,,trx/CAL-00317.json +CAL-00318,INT-001292,inbound,488,, +CAL-00319,INT-001293,inbound,670,, +CAL-00320,INT-001300,inbound,375,rec/CAL-00320.mp3, +CAL-00321,INT-001302,outbound,762,rec/CAL-00321.mp3, +CAL-00322,INT-001304,inbound,866,rec/CAL-00322.mp3, +CAL-00323,INT-001305,outbound,748,,trx/CAL-00323.json +CAL-00324,INT-001307,outbound,774,rec/CAL-00324.mp3,trx/CAL-00324.json +CAL-00325,INT-001312,inbound,153,rec/CAL-00325.mp3,trx/CAL-00325.json +CAL-00326,INT-001314,inbound,118,rec/CAL-00326.mp3,trx/CAL-00326.json +CAL-00327,INT-001320,inbound,500,rec/CAL-00327.mp3,trx/CAL-00327.json +CAL-00328,INT-001322,outbound,610,,trx/CAL-00328.json +CAL-00329,INT-001326,outbound,534,rec/CAL-00329.mp3,trx/CAL-00329.json +CAL-00330,INT-001335,inbound,126,,trx/CAL-00330.json +CAL-00331,INT-001338,outbound,140,rec/CAL-00331.mp3, +CAL-00332,INT-001339,inbound,663,rec/CAL-00332.mp3, +CAL-00333,INT-001343,outbound,767,rec/CAL-00333.mp3,trx/CAL-00333.json +CAL-00334,INT-001347,outbound,621,rec/CAL-00334.mp3,trx/CAL-00334.json +CAL-00335,INT-001353,outbound,295,, +CAL-00336,INT-001355,outbound,599,rec/CAL-00336.mp3,trx/CAL-00336.json +CAL-00337,INT-001356,outbound,468,rec/CAL-00337.mp3, +CAL-00338,INT-001357,inbound,732,, +CAL-00339,INT-001359,outbound,591,rec/CAL-00339.mp3,trx/CAL-00339.json +CAL-00340,INT-001373,inbound,308,,trx/CAL-00340.json +CAL-00341,INT-001375,outbound,220,rec/CAL-00341.mp3, +CAL-00342,INT-001376,inbound,396,, +CAL-00343,INT-001377,outbound,108,,trx/CAL-00343.json +CAL-00344,INT-001378,inbound,777,rec/CAL-00344.mp3,trx/CAL-00344.json +CAL-00345,INT-001381,inbound,849,rec/CAL-00345.mp3,trx/CAL-00345.json +CAL-00346,INT-001383,outbound,121,, +CAL-00347,INT-001393,inbound,84,rec/CAL-00347.mp3,trx/CAL-00347.json +CAL-00348,INT-001394,outbound,704,rec/CAL-00348.mp3, +CAL-00349,INT-001395,inbound,786,rec/CAL-00349.mp3,trx/CAL-00349.json +CAL-00350,INT-001397,outbound,722,rec/CAL-00350.mp3, +CAL-00351,INT-001399,outbound,679,rec/CAL-00351.mp3, +CAL-00352,INT-001404,inbound,723,,trx/CAL-00352.json +CAL-00353,INT-001414,outbound,703,, +CAL-00354,INT-001415,inbound,443,rec/CAL-00354.mp3,trx/CAL-00354.json +CAL-00355,INT-001418,inbound,419,rec/CAL-00355.mp3, +CAL-00356,INT-001419,outbound,807,rec/CAL-00356.mp3,trx/CAL-00356.json +CAL-00357,INT-001423,inbound,408,, +CAL-00358,INT-001425,inbound,791,rec/CAL-00358.mp3, +CAL-00359,INT-001427,outbound,846,rec/CAL-00359.mp3, +CAL-00360,INT-001429,inbound,219,rec/CAL-00360.mp3,trx/CAL-00360.json +CAL-00361,INT-001432,outbound,630,rec/CAL-00361.mp3,trx/CAL-00361.json +CAL-00362,INT-001437,outbound,528,rec/CAL-00362.mp3,trx/CAL-00362.json +CAL-00363,INT-001443,inbound,854,, +CAL-00364,INT-001458,inbound,132,rec/CAL-00364.mp3,trx/CAL-00364.json +CAL-00365,INT-001459,inbound,504,rec/CAL-00365.mp3,trx/CAL-00365.json +CAL-00366,INT-001460,outbound,451,rec/CAL-00366.mp3,trx/CAL-00366.json +CAL-00367,INT-001463,outbound,185,rec/CAL-00367.mp3, +CAL-00368,INT-001466,outbound,127,, +CAL-00369,INT-001467,outbound,61,,trx/CAL-00369.json +CAL-00370,INT-001468,inbound,438,rec/CAL-00370.mp3,trx/CAL-00370.json +CAL-00371,INT-001469,outbound,277,rec/CAL-00371.mp3, +CAL-00372,INT-001472,outbound,62,rec/CAL-00372.mp3, +CAL-00373,INT-001479,outbound,159,rec/CAL-00373.mp3,trx/CAL-00373.json +CAL-00374,INT-001483,outbound,68,rec/CAL-00374.mp3,trx/CAL-00374.json +CAL-00375,INT-001486,outbound,153,rec/CAL-00375.mp3, +CAL-00376,INT-001488,inbound,121,rec/CAL-00376.mp3,trx/CAL-00376.json +CAL-00377,INT-001490,outbound,690,rec/CAL-00377.mp3,trx/CAL-00377.json +CAL-00378,INT-001491,outbound,722,, +CAL-00379,INT-001494,inbound,512,rec/CAL-00379.mp3,trx/CAL-00379.json +CAL-00380,INT-001498,inbound,259,rec/CAL-00380.mp3, +CAL-00381,INT-001503,outbound,287,,trx/CAL-00381.json +CAL-00382,INT-001509,outbound,205,rec/CAL-00382.mp3,trx/CAL-00382.json +CAL-00383,INT-001513,inbound,137,rec/CAL-00383.mp3, +CAL-00384,INT-001515,inbound,461,,trx/CAL-00384.json +CAL-00385,INT-001518,inbound,262,rec/CAL-00385.mp3,trx/CAL-00385.json +CAL-00386,INT-001522,inbound,238,rec/CAL-00386.mp3, +CAL-00387,INT-001524,inbound,233,rec/CAL-00387.mp3, +CAL-00388,INT-001529,outbound,574,rec/CAL-00388.mp3,trx/CAL-00388.json +CAL-00389,INT-001530,outbound,206,rec/CAL-00389.mp3,trx/CAL-00389.json +CAL-00390,INT-001534,outbound,737,,trx/CAL-00390.json +CAL-00391,INT-001536,outbound,493,rec/CAL-00391.mp3,trx/CAL-00391.json +CAL-00392,INT-001541,inbound,524,rec/CAL-00392.mp3, +CAL-00393,INT-001544,outbound,833,, +CAL-00394,INT-001546,outbound,634,, +CAL-00395,INT-001548,inbound,107,,trx/CAL-00395.json +CAL-00396,INT-001552,inbound,710,rec/CAL-00396.mp3,trx/CAL-00396.json +CAL-00397,INT-001558,inbound,802,rec/CAL-00397.mp3, +CAL-00398,INT-001560,inbound,882,, +CAL-00399,INT-001563,outbound,528,rec/CAL-00399.mp3, +CAL-00400,INT-001565,outbound,344,rec/CAL-00400.mp3,trx/CAL-00400.json +CAL-00401,INT-001567,inbound,815,,trx/CAL-00401.json +CAL-00402,INT-001574,inbound,287,rec/CAL-00402.mp3,trx/CAL-00402.json +CAL-00403,INT-001578,inbound,230,rec/CAL-00403.mp3, +CAL-00404,INT-001583,inbound,602,,trx/CAL-00404.json +CAL-00405,INT-001585,inbound,286,rec/CAL-00405.mp3,trx/CAL-00405.json +CAL-00406,INT-001594,inbound,726,rec/CAL-00406.mp3,trx/CAL-00406.json +CAL-00407,INT-001595,inbound,672,, +CAL-00408,INT-001597,outbound,706,rec/CAL-00408.mp3, +CAL-00409,INT-001611,inbound,406,, +CAL-00410,INT-001612,inbound,734,,trx/CAL-00410.json +CAL-00411,INT-001622,outbound,527,,trx/CAL-00411.json +CAL-00412,INT-001623,outbound,701,rec/CAL-00412.mp3,trx/CAL-00412.json +CAL-00413,INT-001624,outbound,857,rec/CAL-00413.mp3, +CAL-00414,INT-001626,inbound,301,rec/CAL-00414.mp3,trx/CAL-00414.json +CAL-00415,INT-001629,inbound,294,, +CAL-00416,INT-001634,inbound,896,rec/CAL-00416.mp3,trx/CAL-00416.json +CAL-00417,INT-001636,outbound,765,,trx/CAL-00417.json +CAL-00418,INT-001642,outbound,778,rec/CAL-00418.mp3, +CAL-00419,INT-001643,outbound,508,, +CAL-00420,INT-001646,outbound,478,rec/CAL-00420.mp3,trx/CAL-00420.json +CAL-00421,INT-001649,outbound,884,, +CAL-00422,INT-001653,inbound,358,, +CAL-00423,INT-001656,outbound,422,rec/CAL-00423.mp3, +CAL-00424,INT-001657,inbound,668,rec/CAL-00424.mp3, +CAL-00425,INT-001658,inbound,849,, +CAL-00426,INT-001659,outbound,528,rec/CAL-00426.mp3,trx/CAL-00426.json +CAL-00427,INT-001664,outbound,473,rec/CAL-00427.mp3, +CAL-00428,INT-001673,inbound,889,rec/CAL-00428.mp3, +CAL-00429,INT-001677,inbound,452,,trx/CAL-00429.json +CAL-00430,INT-001678,outbound,271,rec/CAL-00430.mp3,trx/CAL-00430.json +CAL-00431,INT-001679,inbound,870,rec/CAL-00431.mp3, +CAL-00432,INT-001680,inbound,794,, +CAL-00433,INT-001681,inbound,830,rec/CAL-00433.mp3, +CAL-00434,INT-001685,outbound,833,rec/CAL-00434.mp3,trx/CAL-00434.json +CAL-00435,INT-001691,outbound,507,, +CAL-00436,INT-001695,outbound,509,rec/CAL-00436.mp3,trx/CAL-00436.json +CAL-00437,INT-001708,outbound,612,rec/CAL-00437.mp3,trx/CAL-00437.json +CAL-00438,INT-001720,outbound,667,, +CAL-00439,INT-001722,inbound,262,,trx/CAL-00439.json +CAL-00440,INT-001729,outbound,468,,trx/CAL-00440.json +CAL-00441,INT-001731,outbound,286,rec/CAL-00441.mp3, +CAL-00442,INT-001734,outbound,291,rec/CAL-00442.mp3,trx/CAL-00442.json +CAL-00443,INT-001741,outbound,389,rec/CAL-00443.mp3,trx/CAL-00443.json +CAL-00444,INT-001746,inbound,756,rec/CAL-00444.mp3, +CAL-00445,INT-001747,inbound,218,rec/CAL-00445.mp3,trx/CAL-00445.json +CAL-00446,INT-001755,outbound,895,rec/CAL-00446.mp3, +CAL-00447,INT-001757,inbound,614,rec/CAL-00447.mp3,trx/CAL-00447.json +CAL-00448,INT-001759,outbound,61,rec/CAL-00448.mp3,trx/CAL-00448.json +CAL-00449,INT-001763,outbound,221,,trx/CAL-00449.json +CAL-00450,INT-001770,outbound,276,rec/CAL-00450.mp3,trx/CAL-00450.json +CAL-00451,INT-001773,outbound,224,, +CAL-00452,INT-001783,outbound,523,rec/CAL-00452.mp3,trx/CAL-00452.json +CAL-00453,INT-001786,inbound,279,rec/CAL-00453.mp3,trx/CAL-00453.json +CAL-00454,INT-001790,outbound,780,,trx/CAL-00454.json +CAL-00455,INT-001792,outbound,554,,trx/CAL-00455.json +CAL-00456,INT-001797,inbound,431,,trx/CAL-00456.json +CAL-00457,INT-001800,inbound,64,rec/CAL-00457.mp3, +CAL-00458,INT-001802,outbound,63,rec/CAL-00458.mp3,trx/CAL-00458.json +CAL-00459,INT-001804,outbound,829,rec/CAL-00459.mp3, +CAL-00460,INT-001817,outbound,558,,trx/CAL-00460.json +CAL-00461,INT-001820,inbound,322,rec/CAL-00461.mp3,trx/CAL-00461.json +CAL-00462,INT-001822,outbound,557,, +CAL-00463,INT-001824,outbound,344,, +CAL-00464,INT-001827,outbound,237,rec/CAL-00464.mp3, +CAL-00465,INT-001835,outbound,146,rec/CAL-00465.mp3,trx/CAL-00465.json +CAL-00466,INT-001840,outbound,94,rec/CAL-00466.mp3,trx/CAL-00466.json +CAL-00467,INT-001842,inbound,145,, +CAL-00468,INT-001850,outbound,395,rec/CAL-00468.mp3,trx/CAL-00468.json +CAL-00469,INT-001851,inbound,384,rec/CAL-00469.mp3, +CAL-00470,INT-001852,inbound,595,,trx/CAL-00470.json +CAL-00471,INT-001855,outbound,596,rec/CAL-00471.mp3,trx/CAL-00471.json +CAL-00472,INT-001863,outbound,837,rec/CAL-00472.mp3, +CAL-00473,INT-001868,inbound,597,,trx/CAL-00473.json +CAL-00474,INT-001874,outbound,575,rec/CAL-00474.mp3,trx/CAL-00474.json +CAL-00475,INT-001876,inbound,150,rec/CAL-00475.mp3, +CAL-00476,INT-001878,outbound,757,rec/CAL-00476.mp3,trx/CAL-00476.json +CAL-00477,INT-001884,inbound,537,rec/CAL-00477.mp3, +CAL-00478,INT-001893,outbound,762,rec/CAL-00478.mp3, diff --git a/db assets/synthetic_crm_v1/csv/intel_cctv_links.csv b/db assets/synthetic_crm_v1/csv/intel_cctv_links.csv new file mode 100644 index 00000000..12382590 --- /dev/null +++ b/db assets/synthetic_crm_v1/csv/intel_cctv_links.csv @@ -0,0 +1,121 @@ +link_id,visit_id,camera_id,clip_ref,recorded_at,duration_seconds,metadata_json +CCTV-0001,VIS-00103,CAM-008,clips/VIS-00103_6551.mp4,2025-08-18T00:00:00,1276,"{""quality"": ""HD"", ""audio"": false}" +CCTV-0002,VIS-00222,CAM-018,clips/VIS-00222_6900.mp4,2025-07-17T00:00:00,693,"{""quality"": ""4K"", ""audio"": false}" +CCTV-0003,VIS-00303,CAM-020,clips/VIS-00303_5428.mp4,2024-09-06T00:00:00,345,"{""quality"": ""4K"", ""audio"": false}" +CCTV-0004,VIS-00232,CAM-015,clips/VIS-00232_3419.mp4,2025-12-03T00:00:00,1260,"{""quality"": ""4K"", ""audio"": false}" +CCTV-0005,VIS-00079,CAM-017,clips/VIS-00079_1397.mp4,2025-01-03T00:00:00,1571,"{""quality"": ""HD"", ""audio"": false}" +CCTV-0006,VIS-00235,CAM-003,clips/VIS-00235_5865.mp4,2025-10-23T00:00:00,300,"{""quality"": ""HD"", ""audio"": false}" +CCTV-0007,VIS-00193,CAM-009,clips/VIS-00193_1860.mp4,2025-09-20T00:00:00,1380,"{""quality"": ""FHD"", ""audio"": true}" +CCTV-0008,VIS-00243,CAM-008,clips/VIS-00243_8078.mp4,2024-09-27T00:00:00,525,"{""quality"": ""4K"", ""audio"": false}" +CCTV-0009,VIS-00231,CAM-011,clips/VIS-00231_3438.mp4,2025-11-29T00:00:00,854,"{""quality"": ""FHD"", ""audio"": true}" +CCTV-0010,VIS-00059,CAM-013,clips/VIS-00059_5791.mp4,2026-02-25T00:00:00,637,"{""quality"": ""4K"", ""audio"": true}" +CCTV-0011,VIS-00048,CAM-004,clips/VIS-00048_9475.mp4,2026-03-31T00:00:00,403,"{""quality"": ""4K"", ""audio"": true}" +CCTV-0012,VIS-00167,CAM-009,clips/VIS-00167_6220.mp4,2026-03-26T00:00:00,573,"{""quality"": ""HD"", ""audio"": true}" +CCTV-0013,VIS-00071,CAM-004,clips/VIS-00071_6974.mp4,2024-03-09T00:00:00,1480,"{""quality"": ""FHD"", ""audio"": false}" +CCTV-0014,VIS-00126,CAM-007,clips/VIS-00126_5051.mp4,2026-02-18T00:00:00,1451,"{""quality"": ""HD"", ""audio"": false}" +CCTV-0015,VIS-00292,CAM-018,clips/VIS-00292_5135.mp4,2025-01-05T00:00:00,602,"{""quality"": ""FHD"", ""audio"": false}" +CCTV-0016,VIS-00304,CAM-002,clips/VIS-00304_2659.mp4,2024-09-10T00:00:00,1256,"{""quality"": ""FHD"", ""audio"": true}" +CCTV-0017,VIS-00193,CAM-020,clips/VIS-00193_1849.mp4,2025-09-20T00:00:00,1714,"{""quality"": ""FHD"", ""audio"": true}" +CCTV-0018,VIS-00101,CAM-015,clips/VIS-00101_2006.mp4,2025-06-17T00:00:00,1703,"{""quality"": ""HD"", ""audio"": true}" +CCTV-0019,VIS-00195,CAM-008,clips/VIS-00195_9565.mp4,2024-03-06T00:00:00,1715,"{""quality"": ""FHD"", ""audio"": false}" +CCTV-0020,VIS-00033,CAM-009,clips/VIS-00033_4548.mp4,2024-03-28T00:00:00,1135,"{""quality"": ""FHD"", ""audio"": false}" +CCTV-0021,VIS-00095,CAM-019,clips/VIS-00095_7242.mp4,2025-10-03T00:00:00,1760,"{""quality"": ""4K"", ""audio"": true}" +CCTV-0022,VIS-00177,CAM-010,clips/VIS-00177_6580.mp4,2026-04-14T00:00:00,668,"{""quality"": ""HD"", ""audio"": true}" +CCTV-0023,VIS-00299,CAM-006,clips/VIS-00299_7480.mp4,2025-01-25T00:00:00,1271,"{""quality"": ""HD"", ""audio"": true}" +CCTV-0024,VIS-00164,CAM-018,clips/VIS-00164_5501.mp4,2025-05-28T00:00:00,323,"{""quality"": ""FHD"", ""audio"": false}" +CCTV-0025,VIS-00213,CAM-002,clips/VIS-00213_9311.mp4,2024-02-13T00:00:00,1646,"{""quality"": ""HD"", ""audio"": true}" +CCTV-0026,VIS-00225,CAM-008,clips/VIS-00225_6403.mp4,2025-08-09T00:00:00,871,"{""quality"": ""FHD"", ""audio"": true}" +CCTV-0027,VIS-00008,CAM-016,clips/VIS-00008_8539.mp4,2024-07-13T00:00:00,1744,"{""quality"": ""FHD"", ""audio"": true}" +CCTV-0028,VIS-00242,CAM-014,clips/VIS-00242_9455.mp4,2024-09-17T00:00:00,1017,"{""quality"": ""FHD"", ""audio"": false}" +CCTV-0029,VIS-00133,CAM-020,clips/VIS-00133_3490.mp4,2025-12-16T00:00:00,941,"{""quality"": ""FHD"", ""audio"": true}" +CCTV-0030,VIS-00127,CAM-009,clips/VIS-00127_9723.mp4,2026-03-27T00:00:00,1331,"{""quality"": ""FHD"", ""audio"": false}" +CCTV-0031,VIS-00158,CAM-014,clips/VIS-00158_9954.mp4,2024-05-18T00:00:00,423,"{""quality"": ""HD"", ""audio"": true}" +CCTV-0032,VIS-00091,CAM-001,clips/VIS-00091_8262.mp4,2024-06-16T00:00:00,1164,"{""quality"": ""FHD"", ""audio"": false}" +CCTV-0033,VIS-00186,CAM-007,clips/VIS-00186_2128.mp4,2025-02-17T00:00:00,1750,"{""quality"": ""4K"", ""audio"": false}" +CCTV-0034,VIS-00192,CAM-020,clips/VIS-00192_6538.mp4,2025-09-09T00:00:00,1458,"{""quality"": ""FHD"", ""audio"": true}" +CCTV-0035,VIS-00243,CAM-009,clips/VIS-00243_3091.mp4,2024-09-27T00:00:00,742,"{""quality"": ""HD"", ""audio"": false}" +CCTV-0036,VIS-00063,CAM-005,clips/VIS-00063_9941.mp4,2024-06-28T00:00:00,1715,"{""quality"": ""HD"", ""audio"": false}" +CCTV-0037,VIS-00122,CAM-016,clips/VIS-00122_1383.mp4,2024-04-04T00:00:00,793,"{""quality"": ""FHD"", ""audio"": false}" +CCTV-0038,VIS-00096,CAM-013,clips/VIS-00096_7829.mp4,2025-11-06T00:00:00,1349,"{""quality"": ""FHD"", ""audio"": false}" +CCTV-0039,VIS-00183,CAM-008,clips/VIS-00183_2062.mp4,2025-01-03T00:00:00,1083,"{""quality"": ""4K"", ""audio"": true}" +CCTV-0040,VIS-00097,CAM-020,clips/VIS-00097_5307.mp4,2025-09-11T00:00:00,1077,"{""quality"": ""4K"", ""audio"": true}" +CCTV-0041,VIS-00121,CAM-005,clips/VIS-00121_8935.mp4,2024-03-28T00:00:00,1101,"{""quality"": ""FHD"", ""audio"": true}" +CCTV-0042,VIS-00193,CAM-007,clips/VIS-00193_9223.mp4,2025-09-20T00:00:00,875,"{""quality"": ""4K"", ""audio"": true}" +CCTV-0043,VIS-00062,CAM-015,clips/VIS-00062_3484.mp4,2024-04-27T00:00:00,604,"{""quality"": ""FHD"", ""audio"": true}" +CCTV-0044,VIS-00090,CAM-011,clips/VIS-00090_8879.mp4,2024-06-04T00:00:00,924,"{""quality"": ""4K"", ""audio"": true}" +CCTV-0045,VIS-00179,CAM-007,clips/VIS-00179_3942.mp4,2024-09-22T00:00:00,930,"{""quality"": ""FHD"", ""audio"": true}" +CCTV-0046,VIS-00194,CAM-008,clips/VIS-00194_9416.mp4,2025-09-24T00:00:00,520,"{""quality"": ""4K"", ""audio"": true}" +CCTV-0047,VIS-00270,CAM-011,clips/VIS-00270_6749.mp4,2024-05-04T00:00:00,856,"{""quality"": ""HD"", ""audio"": true}" +CCTV-0048,VIS-00201,CAM-001,clips/VIS-00201_5093.mp4,2024-08-17T00:00:00,1549,"{""quality"": ""4K"", ""audio"": false}" +CCTV-0049,VIS-00028,CAM-002,clips/VIS-00028_8955.mp4,2025-10-23T00:00:00,1421,"{""quality"": ""4K"", ""audio"": false}" +CCTV-0050,VIS-00296,CAM-007,clips/VIS-00296_6548.mp4,2024-07-18T00:00:00,313,"{""quality"": ""FHD"", ""audio"": true}" +CCTV-0051,VIS-00250,CAM-015,clips/VIS-00250_3963.mp4,2024-03-25T00:00:00,719,"{""quality"": ""4K"", ""audio"": true}" +CCTV-0052,VIS-00017,CAM-015,clips/VIS-00017_6757.mp4,2026-02-27T00:00:00,448,"{""quality"": ""HD"", ""audio"": true}" +CCTV-0053,VIS-00154,CAM-018,clips/VIS-00154_8052.mp4,2024-08-28T00:00:00,995,"{""quality"": ""FHD"", ""audio"": false}" +CCTV-0054,VIS-00286,CAM-004,clips/VIS-00286_1196.mp4,2025-06-13T00:00:00,798,"{""quality"": ""HD"", ""audio"": true}" +CCTV-0055,VIS-00071,CAM-006,clips/VIS-00071_5244.mp4,2024-03-09T00:00:00,306,"{""quality"": ""HD"", ""audio"": false}" +CCTV-0056,VIS-00114,CAM-006,clips/VIS-00114_2357.mp4,2024-06-02T00:00:00,953,"{""quality"": ""4K"", ""audio"": false}" +CCTV-0057,VIS-00158,CAM-007,clips/VIS-00158_2056.mp4,2024-05-18T00:00:00,592,"{""quality"": ""FHD"", ""audio"": false}" +CCTV-0058,VIS-00251,CAM-009,clips/VIS-00251_1154.mp4,2026-02-22T00:00:00,1733,"{""quality"": ""HD"", ""audio"": false}" +CCTV-0059,VIS-00004,CAM-010,clips/VIS-00004_4999.mp4,2025-11-25T00:00:00,1218,"{""quality"": ""4K"", ""audio"": true}" +CCTV-0060,VIS-00146,CAM-003,clips/VIS-00146_2915.mp4,2024-08-28T00:00:00,1495,"{""quality"": ""FHD"", ""audio"": false}" +CCTV-0061,VIS-00115,CAM-014,clips/VIS-00115_1823.mp4,2024-06-11T00:00:00,1144,"{""quality"": ""4K"", ""audio"": true}" +CCTV-0062,VIS-00136,CAM-002,clips/VIS-00136_7080.mp4,2024-10-29T00:00:00,462,"{""quality"": ""HD"", ""audio"": true}" +CCTV-0063,VIS-00024,CAM-012,clips/VIS-00024_8583.mp4,2024-12-23T00:00:00,681,"{""quality"": ""HD"", ""audio"": false}" +CCTV-0064,VIS-00106,CAM-006,clips/VIS-00106_8408.mp4,2025-02-04T00:00:00,1457,"{""quality"": ""HD"", ""audio"": true}" +CCTV-0065,VIS-00117,CAM-008,clips/VIS-00117_3020.mp4,2025-09-04T00:00:00,1137,"{""quality"": ""FHD"", ""audio"": true}" +CCTV-0066,VIS-00215,CAM-005,clips/VIS-00215_7801.mp4,2024-09-11T00:00:00,1727,"{""quality"": ""4K"", ""audio"": true}" +CCTV-0067,VIS-00240,CAM-011,clips/VIS-00240_6042.mp4,2025-02-07T00:00:00,1438,"{""quality"": ""HD"", ""audio"": false}" +CCTV-0068,VIS-00151,CAM-005,clips/VIS-00151_5033.mp4,2024-08-14T00:00:00,749,"{""quality"": ""FHD"", ""audio"": true}" +CCTV-0069,VIS-00051,CAM-011,clips/VIS-00051_7643.mp4,2024-05-02T00:00:00,400,"{""quality"": ""HD"", ""audio"": true}" +CCTV-0070,VIS-00087,CAM-010,clips/VIS-00087_9122.mp4,2024-07-06T00:00:00,927,"{""quality"": ""FHD"", ""audio"": false}" +CCTV-0071,VIS-00291,CAM-005,clips/VIS-00291_9090.mp4,2025-11-22T00:00:00,475,"{""quality"": ""4K"", ""audio"": false}" +CCTV-0072,VIS-00182,CAM-003,clips/VIS-00182_4767.mp4,2024-12-04T00:00:00,1256,"{""quality"": ""HD"", ""audio"": true}" +CCTV-0073,VIS-00180,CAM-019,clips/VIS-00180_8401.mp4,2024-10-12T00:00:00,1527,"{""quality"": ""FHD"", ""audio"": true}" +CCTV-0074,VIS-00287,CAM-016,clips/VIS-00287_9293.mp4,2025-07-17T00:00:00,1598,"{""quality"": ""FHD"", ""audio"": true}" +CCTV-0075,VIS-00235,CAM-017,clips/VIS-00235_7848.mp4,2025-10-23T00:00:00,1265,"{""quality"": ""4K"", ""audio"": true}" +CCTV-0076,VIS-00111,CAM-014,clips/VIS-00111_4607.mp4,2024-11-29T00:00:00,1469,"{""quality"": ""FHD"", ""audio"": false}" +CCTV-0077,VIS-00252,CAM-006,clips/VIS-00252_1488.mp4,2026-03-12T00:00:00,568,"{""quality"": ""HD"", ""audio"": true}" +CCTV-0078,VIS-00163,CAM-006,clips/VIS-00163_2987.mp4,2025-04-06T00:00:00,426,"{""quality"": ""FHD"", ""audio"": true}" +CCTV-0079,VIS-00061,CAM-009,clips/VIS-00061_7838.mp4,2024-04-22T00:00:00,1383,"{""quality"": ""4K"", ""audio"": true}" +CCTV-0080,VIS-00125,CAM-018,clips/VIS-00125_4721.mp4,2024-04-25T00:00:00,799,"{""quality"": ""HD"", ""audio"": true}" +CCTV-0081,VIS-00269,CAM-014,clips/VIS-00269_4258.mp4,2024-03-14T00:00:00,1703,"{""quality"": ""4K"", ""audio"": false}" +CCTV-0082,VIS-00295,CAM-005,clips/VIS-00295_4525.mp4,2025-02-13T00:00:00,962,"{""quality"": ""4K"", ""audio"": true}" +CCTV-0083,VIS-00143,CAM-020,clips/VIS-00143_4224.mp4,2024-12-28T00:00:00,1298,"{""quality"": ""4K"", ""audio"": true}" +CCTV-0084,VIS-00023,CAM-009,clips/VIS-00023_2629.mp4,2025-07-01T00:00:00,1251,"{""quality"": ""FHD"", ""audio"": true}" +CCTV-0085,VIS-00285,CAM-011,clips/VIS-00285_2723.mp4,2026-02-12T00:00:00,313,"{""quality"": ""HD"", ""audio"": true}" +CCTV-0086,VIS-00037,CAM-014,clips/VIS-00037_5495.mp4,2024-03-28T00:00:00,385,"{""quality"": ""4K"", ""audio"": false}" +CCTV-0087,VIS-00014,CAM-008,clips/VIS-00014_8670.mp4,2025-04-08T00:00:00,1646,"{""quality"": ""FHD"", ""audio"": true}" +CCTV-0088,VIS-00060,CAM-004,clips/VIS-00060_9655.mp4,2025-11-23T00:00:00,1438,"{""quality"": ""HD"", ""audio"": false}" +CCTV-0089,VIS-00019,CAM-009,clips/VIS-00019_5007.mp4,2024-06-16T00:00:00,1331,"{""quality"": ""4K"", ""audio"": true}" +CCTV-0090,VIS-00056,CAM-010,clips/VIS-00056_9397.mp4,2025-11-28T00:00:00,601,"{""quality"": ""HD"", ""audio"": true}" +CCTV-0091,VIS-00087,CAM-001,clips/VIS-00087_7156.mp4,2024-07-06T00:00:00,600,"{""quality"": ""FHD"", ""audio"": false}" +CCTV-0092,VIS-00033,CAM-017,clips/VIS-00033_6173.mp4,2024-03-28T00:00:00,342,"{""quality"": ""HD"", ""audio"": false}" +CCTV-0093,VIS-00215,CAM-010,clips/VIS-00215_2295.mp4,2024-09-11T00:00:00,996,"{""quality"": ""HD"", ""audio"": false}" +CCTV-0094,VIS-00254,CAM-011,clips/VIS-00254_7321.mp4,2024-08-24T00:00:00,1379,"{""quality"": ""HD"", ""audio"": true}" +CCTV-0095,VIS-00118,CAM-009,clips/VIS-00118_4639.mp4,2025-09-16T00:00:00,457,"{""quality"": ""FHD"", ""audio"": true}" +CCTV-0096,VIS-00095,CAM-020,clips/VIS-00095_4640.mp4,2025-10-03T00:00:00,492,"{""quality"": ""FHD"", ""audio"": true}" +CCTV-0097,VIS-00069,CAM-017,clips/VIS-00069_3534.mp4,2024-04-07T00:00:00,620,"{""quality"": ""HD"", ""audio"": false}" +CCTV-0098,VIS-00206,CAM-008,clips/VIS-00206_5543.mp4,2024-10-09T00:00:00,1756,"{""quality"": ""FHD"", ""audio"": true}" +CCTV-0099,VIS-00220,CAM-006,clips/VIS-00220_5425.mp4,2026-02-09T00:00:00,1210,"{""quality"": ""HD"", ""audio"": true}" +CCTV-0100,VIS-00293,CAM-004,clips/VIS-00293_7891.mp4,2025-01-05T00:00:00,950,"{""quality"": ""HD"", ""audio"": false}" +CCTV-0101,VIS-00227,CAM-007,clips/VIS-00227_1089.mp4,2024-05-14T00:00:00,1414,"{""quality"": ""FHD"", ""audio"": true}" +CCTV-0102,VIS-00130,CAM-001,clips/VIS-00130_4829.mp4,2025-05-04T00:00:00,1111,"{""quality"": ""FHD"", ""audio"": true}" +CCTV-0103,VIS-00007,CAM-006,clips/VIS-00007_6817.mp4,2024-06-22T00:00:00,1655,"{""quality"": ""FHD"", ""audio"": true}" +CCTV-0104,VIS-00221,CAM-009,clips/VIS-00221_7254.mp4,2025-06-21T00:00:00,1670,"{""quality"": ""FHD"", ""audio"": false}" +CCTV-0105,VIS-00188,CAM-003,clips/VIS-00188_9060.mp4,2025-12-27T00:00:00,598,"{""quality"": ""FHD"", ""audio"": false}" +CCTV-0106,VIS-00161,CAM-008,clips/VIS-00161_3572.mp4,2024-06-14T00:00:00,1483,"{""quality"": ""HD"", ""audio"": true}" +CCTV-0107,VIS-00105,CAM-013,clips/VIS-00105_6316.mp4,2025-02-03T00:00:00,980,"{""quality"": ""FHD"", ""audio"": false}" +CCTV-0108,VIS-00133,CAM-004,clips/VIS-00133_5266.mp4,2025-12-16T00:00:00,1501,"{""quality"": ""HD"", ""audio"": true}" +CCTV-0109,VIS-00016,CAM-003,clips/VIS-00016_7030.mp4,2026-02-14T00:00:00,1563,"{""quality"": ""HD"", ""audio"": true}" +CCTV-0110,VIS-00287,CAM-006,clips/VIS-00287_5161.mp4,2025-07-17T00:00:00,325,"{""quality"": ""HD"", ""audio"": true}" +CCTV-0111,VIS-00300,CAM-006,clips/VIS-00300_3263.mp4,2026-01-20T00:00:00,1678,"{""quality"": ""4K"", ""audio"": true}" +CCTV-0112,VIS-00159,CAM-007,clips/VIS-00159_7327.mp4,2024-05-30T00:00:00,856,"{""quality"": ""FHD"", ""audio"": false}" +CCTV-0113,VIS-00197,CAM-014,clips/VIS-00197_4283.mp4,2026-01-21T00:00:00,347,"{""quality"": ""4K"", ""audio"": true}" +CCTV-0114,VIS-00194,CAM-014,clips/VIS-00194_6125.mp4,2025-09-24T00:00:00,1425,"{""quality"": ""HD"", ""audio"": false}" +CCTV-0115,VIS-00139,CAM-001,clips/VIS-00139_7411.mp4,2025-05-09T00:00:00,1132,"{""quality"": ""FHD"", ""audio"": false}" +CCTV-0116,VIS-00209,CAM-012,clips/VIS-00209_2091.mp4,2024-08-02T00:00:00,978,"{""quality"": ""FHD"", ""audio"": true}" +CCTV-0117,VIS-00249,CAM-019,clips/VIS-00249_3493.mp4,2025-09-21T00:00:00,1722,"{""quality"": ""HD"", ""audio"": true}" +CCTV-0118,VIS-00007,CAM-005,clips/VIS-00007_9613.mp4,2024-06-22T00:00:00,1330,"{""quality"": ""HD"", ""audio"": false}" +CCTV-0119,VIS-00296,CAM-005,clips/VIS-00296_9787.mp4,2024-07-18T00:00:00,846,"{""quality"": ""FHD"", ""audio"": false}" +CCTV-0120,VIS-00168,CAM-002,clips/VIS-00168_8787.mp4,2024-10-18T00:00:00,935,"{""quality"": ""4K"", ""audio"": true}" diff --git a/db assets/synthetic_crm_v1/csv/intel_emails.csv b/db assets/synthetic_crm_v1/csv/intel_emails.csv new file mode 100644 index 00000000..192d5193 --- /dev/null +++ b/db assets/synthetic_crm_v1/csv/intel_emails.csv @@ -0,0 +1,1617 @@ +email_id,interaction_id,thread_subject,sender,recipient,body_text,sent_at,metadata_json +EML-00001,INT-000016,Revised quote for Unit D11-218,user_002@velocity.desineuron.in,debjani.sen88@hotmail.com,"Hi Debjani, + +Following up on your site visit last week. Did you get a chance to discuss with your family? + +We have a limited period offer running till month-end. Happy to arrange a call to discuss. + +Regards, +Vikram Patel",2025-02-05T00:00:00,"{""attachments"": 1, ""opened"": true}" +EML-00002,INT-000035,Re: Pricing discussion for Shriram Grand City,user_003@velocity.desineuron.in,kunal.saha96@gmail.com,"Dear Kunal, + +Thank you for your interest in Shriram Grand City. As discussed, I have attached the brochure and floor plans. + +The unit you liked (Unit D20-840) is currently available at Rs 9.34 Cr. + +Please let me know a convenient time for your next visit. + +Best regards, +Velocity Realty Team",2024-06-21T00:00:00,"{""attachments"": 0, ""opened"": true}" +EML-00003,INT-000047,Payment schedule and offer details,user_005@velocity.desineuron.in,kunal.mukherjee81@rediffmail.com,"Dear Kunal, + +Thank you for your interest in Sugam Prakriti. As discussed, I have attached the brochure and floor plans. + +The unit you liked (Unit C4-651) is currently available at Rs 11.69 Cr. + +Please let me know a convenient time for your next visit. + +Best regards, +Velocity Realty Team",2024-09-17T00:00:00,"{""attachments"": 1, ""opened"": false}" +EML-00004,INT-000058,Revised quote for Unit A14-319,user_001@velocity.desineuron.in,parth.saha71@rediffmail.com,"Dear Parth, + +Thank you for your interest in DTC Sojon. As discussed, I have attached the brochure and floor plans. + +The unit you liked (Unit A14-319) is currently available at Rs 11.67 Cr. + +Please let me know a convenient time for your next visit. + +Best regards, +Velocity Realty Team",2025-09-22T00:00:00,"{""attachments"": 3, ""opened"": true}" +EML-00005,INT-000062,Revised quote for Unit A14-319,user_001@velocity.desineuron.in,parth.saha71@rediffmail.com,"Dear Parth, + +Thank you for your interest in DTC Sojon. As discussed, I have attached the brochure and floor plans. + +The unit you liked (Unit A14-319) is currently available at Rs 11.53 Cr. + +Please let me know a convenient time for your next visit. + +Best regards, +Velocity Realty Team",2025-10-28T00:00:00,"{""attachments"": 3, ""opened"": false}" +EML-00006,INT-000065,Re: Pricing discussion for Atri Aqua,user_001@velocity.desineuron.in,sanjay.chatterjee48@yahoo.com,"Hi Sanjay, + +Following up on your site visit last week. Did you get a chance to discuss with your family? + +We have a limited period offer running till month-end. Happy to arrange a call to discuss. + +Regards, +Vikram Patel",2026-03-28T00:00:00,"{""attachments"": 3, ""opened"": false}" +EML-00007,INT-000100,Site Visit Confirmation - Atri Aqua,user_005@velocity.desineuron.in,ananya.reddy27@yahoo.com,"Dear Mr./Ms. Reddy, + +Greetings from Atri Aqua sales team. + +As requested, please find attached: +1. Price sheet +2. Payment plan +3. Home loan EMI calculator +4. Project specification sheet + +Looking forward to your feedback. + +Best, +Velocity Team",2025-06-01T00:00:00,"{""attachments"": 2, ""opened"": false}" +EML-00008,INT-000110,Introduction: Family decision maker meeting,user_002@velocity.desineuron.in,neha.chatterjee57@yahoo.com,"Dear Neha, + +Thank you for your interest in Godrej Blue. As discussed, I have attached the brochure and floor plans. + +The unit you liked (Unit A10-1992) is currently available at Rs 3.52 Cr. + +Please let me know a convenient time for your next visit. + +Best regards, +Velocity Realty Team",2026-03-20T00:00:00,"{""attachments"": 0, ""opened"": false}" +EML-00009,INT-000130,Introduction: Family decision maker meeting,user_001@velocity.desineuron.in,riya.kumar46@outlook.com,"Hi Riya, + +Following up on your site visit last week. Did you get a chance to discuss with your family? + +We have a limited period offer running till month-end. Happy to arrange a call to discuss. + +Regards, +Rahul Sharma",2024-08-29T00:00:00,"{""attachments"": 2, ""opened"": true}" +EML-00010,INT-000138,Document checklist for home loan application,user_002@velocity.desineuron.in,sneha.pillai55@yahoo.com,"Hi Sneha, + +Following up on your site visit last week. Did you get a chance to discuss with your family? + +We have a limited period offer running till month-end. Happy to arrange a call to discuss. + +Regards, +Priya Banerjee",2024-07-09T00:00:00,"{""attachments"": 2, ""opened"": false}" +EML-00011,INT-000139,Revised quote for Unit C19-2249,user_002@velocity.desineuron.in,sneha.pillai55@yahoo.com,"Dear Sneha, + +Thank you for your interest in Siddha Suburbia Bungalow. As discussed, I have attached the brochure and floor plans. + +The unit you liked (Unit C19-2249) is currently available at Rs 3.66 Cr. + +Please let me know a convenient time for your next visit. + +Best regards, +Velocity Realty Team",2024-07-19T00:00:00,"{""attachments"": 0, ""opened"": true}" +EML-00012,INT-000140,Re: Pricing discussion for Siddha Suburbia Bungalow,user_002@velocity.desineuron.in,sneha.pillai55@yahoo.com,"Dear Sneha, + +Thank you for your interest in Siddha Suburbia Bungalow. As discussed, I have attached the brochure and floor plans. + +The unit you liked (Unit C19-2249) is currently available at Rs 6.68 Cr. + +Please let me know a convenient time for your next visit. + +Best regards, +Velocity Realty Team",2024-07-30T00:00:00,"{""attachments"": 2, ""opened"": true}" +EML-00013,INT-000143,Follow-up: Site visit feedback,user_001@velocity.desineuron.in,rahul.roy33@outlook.com,"Dear Mr./Ms. Roy, + +Greetings from Atri Surya Toron sales team. + +As requested, please find attached: +1. Price sheet +2. Payment plan +3. Home loan EMI calculator +4. Project specification sheet + +Looking forward to your feedback. + +Best, +Velocity Team",2024-12-31T00:00:00,"{""attachments"": 0, ""opened"": true}" +EML-00014,INT-000147,Document checklist for home loan application,user_002@velocity.desineuron.in,vikram.nair56@gmail.com,"Hi Vikram, + +Following up on your site visit last week. Did you get a chance to discuss with your family? + +We have a limited period offer running till month-end. Happy to arrange a call to discuss. + +Regards, +Vikram Patel",2026-01-13T00:00:00,"{""attachments"": 1, ""opened"": false}" +EML-00015,INT-000162,Document checklist for home loan application,user_004@velocity.desineuron.in,pallavi.sen13@yahoo.com,"Hi Pallavi, + +Following up on your site visit last week. Did you get a chance to discuss with your family? + +We have a limited period offer running till month-end. Happy to arrange a call to discuss. + +Regards, +Vikram Patel",2025-03-11T00:00:00,"{""attachments"": 2, ""opened"": true}" +EML-00016,INT-000163,Introduction: Family decision maker meeting,user_004@velocity.desineuron.in,pallavi.sen13@yahoo.com,"Dear Mr./Ms. Sen, + +Greetings from Godrej Elevate sales team. + +As requested, please find attached: +1. Price sheet +2. Payment plan +3. Home loan EMI calculator +4. Project specification sheet + +Looking forward to your feedback. + +Best, +Velocity Team",2025-03-11T00:00:00,"{""attachments"": 3, ""opened"": false}" +EML-00017,INT-000170,Site Visit Confirmation - Atri Aqua,user_001@velocity.desineuron.in,asha.reddy83@yahoo.com,"Dear Asha, + +Thank you for your interest in Atri Aqua. As discussed, I have attached the brochure and floor plans. + +The unit you liked (Unit B15-1533) is currently available at Rs 1.77 Cr. + +Please let me know a convenient time for your next visit. + +Best regards, +Velocity Realty Team",2024-08-03T00:00:00,"{""attachments"": 3, ""opened"": true}" +EML-00018,INT-000188,Site Visit Confirmation - Sugam Prakriti,user_005@velocity.desineuron.in,isha.sen71@gmail.com,"Dear Mr./Ms. Sen, + +Greetings from Sugam Prakriti sales team. + +As requested, please find attached: +1. Price sheet +2. Payment plan +3. Home loan EMI calculator +4. Project specification sheet + +Looking forward to your feedback. + +Best, +Velocity Team",2024-12-06T00:00:00,"{""attachments"": 1, ""opened"": true}" +EML-00019,INT-000200,Follow-up: Site visit feedback,user_005@velocity.desineuron.in,kunal.sharma36@yahoo.com,"Dear Mr./Ms. Sharma, + +Greetings from Godrej Elevate sales team. + +As requested, please find attached: +1. Price sheet +2. Payment plan +3. Home loan EMI calculator +4. Project specification sheet + +Looking forward to your feedback. + +Best, +Velocity Team",2024-11-02T00:00:00,"{""attachments"": 1, ""opened"": true}" +EML-00020,INT-000217,Site Visit Confirmation - Siddha Sky Waterfront,user_004@velocity.desineuron.in,kavita.ghosh24@yahoo.com,"Dear Kavita, + +Thank you for your interest in Siddha Sky Waterfront. As discussed, I have attached the brochure and floor plans. + +The unit you liked (Unit D3-682) is currently available at Rs 10.32 Cr. + +Please let me know a convenient time for your next visit. + +Best regards, +Velocity Realty Team",2025-12-25T00:00:00,"{""attachments"": 2, ""opened"": true}" +EML-00021,INT-000224,Follow-up: Site visit feedback,user_003@velocity.desineuron.in,sonal.sen73@gmail.com,"Dear Mr./Ms. Sen, + +Greetings from Siddha Serena sales team. + +As requested, please find attached: +1. Price sheet +2. Payment plan +3. Home loan EMI calculator +4. Project specification sheet + +Looking forward to your feedback. + +Best, +Velocity Team",2025-10-19T00:00:00,"{""attachments"": 2, ""opened"": true}" +EML-00022,INT-000244,Document checklist for home loan application,user_004@velocity.desineuron.in,manish.verma40@hotmail.com,"Dear Manish, + +Thank you for your interest in Siddha Sky Waterfront. As discussed, I have attached the brochure and floor plans. + +The unit you liked (Unit B6-304) is currently available at Rs 3.07 Cr. + +Please let me know a convenient time for your next visit. + +Best regards, +Velocity Realty Team",2025-12-24T00:00:00,"{""attachments"": 3, ""opened"": true}" +EML-00023,INT-000280,Project Brochure and Floor Plans,user_002@velocity.desineuron.in,neha.bose79@hotmail.com,"Hi Neha, + +Following up on your site visit last week. Did you get a chance to discuss with your family? + +We have a limited period offer running till month-end. Happy to arrange a call to discuss. + +Regards, +Vikram Patel",2024-05-23T00:00:00,"{""attachments"": 1, ""opened"": true}" +EML-00024,INT-000296,Project Brochure and Floor Plans,user_003@velocity.desineuron.in,trisha.sen29@rediffmail.com,"Dear Mr./Ms. Sen, + +Greetings from Siddha Serena sales team. + +As requested, please find attached: +1. Price sheet +2. Payment plan +3. Home loan EMI calculator +4. Project specification sheet + +Looking forward to your feedback. + +Best, +Velocity Team",2025-07-12T00:00:00,"{""attachments"": 1, ""opened"": true}" +EML-00025,INT-000299,Project Brochure and Floor Plans,user_002@velocity.desineuron.in,aditya.das70@hotmail.com,"Hi Aditya, + +Following up on your site visit last week. Did you get a chance to discuss with your family? + +We have a limited period offer running till month-end. Happy to arrange a call to discuss. + +Regards, +Rahul Sharma",2025-03-17T00:00:00,"{""attachments"": 2, ""opened"": true}" +EML-00026,INT-000311,Follow-up: Site visit feedback,user_001@velocity.desineuron.in,deepak.gupta53@gmail.com,"Dear Deepak, + +Thank you for your interest in Atri Surya Toron. As discussed, I have attached the brochure and floor plans. + +The unit you liked (Unit D8-1218) is currently available at Rs 4.65 Cr. + +Please let me know a convenient time for your next visit. + +Best regards, +Velocity Realty Team",2026-03-12T00:00:00,"{""attachments"": 0, ""opened"": true}" +EML-00027,INT-000337,Follow-up: Site visit feedback,user_001@velocity.desineuron.in,abhishek.banerjee32@rediffmail.com,"Dear Mr./Ms. Banerjee, + +Greetings from DTC Good Earth sales team. + +As requested, please find attached: +1. Price sheet +2. Payment plan +3. Home loan EMI calculator +4. Project specification sheet + +Looking forward to your feedback. + +Best, +Velocity Team",2026-03-03T00:00:00,"{""attachments"": 0, ""opened"": false}" +EML-00028,INT-000341,Introduction: Family decision maker meeting,user_005@velocity.desineuron.in,shreya.chatterjee58@hotmail.com,"Dear Shreya, + +Thank you for your interest in Shriram Grand City. As discussed, I have attached the brochure and floor plans. + +The unit you liked (Unit D20-840) is currently available at Rs 9.9 Cr. + +Please let me know a convenient time for your next visit. + +Best regards, +Velocity Realty Team",2025-10-01T00:00:00,"{""attachments"": 1, ""opened"": true}" +EML-00029,INT-000354,Site Visit Confirmation - DTC Good Earth,user_003@velocity.desineuron.in,tanvi.kumar79@outlook.com,"Dear Tanvi, + +Thank you for your interest in DTC Good Earth. As discussed, I have attached the brochure and floor plans. + +The unit you liked (Unit B17-1788) is currently available at Rs 10.93 Cr. + +Please let me know a convenient time for your next visit. + +Best regards, +Velocity Realty Team",2025-05-26T00:00:00,"{""attachments"": 0, ""opened"": false}" +EML-00030,INT-000369,Revised quote for Unit C16-1309,user_003@velocity.desineuron.in,kunal.saha67@outlook.com,"Dear Kunal, + +Thank you for your interest in Siddha Serena. As discussed, I have attached the brochure and floor plans. + +The unit you liked (Unit C16-1309) is currently available at Rs 4.07 Cr. + +Please let me know a convenient time for your next visit. + +Best regards, +Velocity Realty Team",2026-01-16T00:00:00,"{""attachments"": 1, ""opened"": false}" +EML-00031,INT-000380,Document checklist for home loan application,user_004@velocity.desineuron.in,neha.saha80@yahoo.com,"Hi Neha, + +Following up on your site visit last week. Did you get a chance to discuss with your family? + +We have a limited period offer running till month-end. Happy to arrange a call to discuss. + +Regards, +Vikram Patel",2025-10-27T00:00:00,"{""attachments"": 0, ""opened"": false}" +EML-00032,INT-000388,Project Brochure and Floor Plans,user_003@velocity.desineuron.in,nilesh.verma94@rediffmail.com,"Dear Mr./Ms. Verma, + +Greetings from Siddha Sky Waterfront sales team. + +As requested, please find attached: +1. Price sheet +2. Payment plan +3. Home loan EMI calculator +4. Project specification sheet + +Looking forward to your feedback. + +Best, +Velocity Team",2025-12-30T00:00:00,"{""attachments"": 0, ""opened"": true}" +EML-00033,INT-000408,Project Brochure and Floor Plans,user_004@velocity.desineuron.in,deb.singh47@rediffmail.com,"Dear Mr./Ms. Singh, + +Greetings from Atri Surya Toron sales team. + +As requested, please find attached: +1. Price sheet +2. Payment plan +3. Home loan EMI calculator +4. Project specification sheet + +Looking forward to your feedback. + +Best, +Velocity Team",2025-04-12T00:00:00,"{""attachments"": 0, ""opened"": true}" +EML-00034,INT-000417,Introduction: Family decision maker meeting,user_003@velocity.desineuron.in,prasenjit.kumar70@gmail.com,"Hi Prasenjit, + +Following up on your site visit last week. Did you get a chance to discuss with your family? + +We have a limited period offer running till month-end. Happy to arrange a call to discuss. + +Regards, +Vikram Patel",2024-01-29T00:00:00,"{""attachments"": 2, ""opened"": true}" +EML-00035,INT-000453,Document checklist for home loan application,user_002@velocity.desineuron.in,deepak.das69@rediffmail.com,"Dear Deepak, + +Thank you for your interest in Atri Aqua. As discussed, I have attached the brochure and floor plans. + +The unit you liked (Unit B8-766) is currently available at Rs 5.71 Cr. + +Please let me know a convenient time for your next visit. + +Best regards, +Velocity Realty Team",2026-03-03T00:00:00,"{""attachments"": 1, ""opened"": true}" +EML-00036,INT-000455,Revised quote for Unit B8-766,user_002@velocity.desineuron.in,deepak.das69@rediffmail.com,"Dear Mr./Ms. Das, + +Greetings from Atri Aqua sales team. + +As requested, please find attached: +1. Price sheet +2. Payment plan +3. Home loan EMI calculator +4. Project specification sheet + +Looking forward to your feedback. + +Best, +Velocity Team",2026-03-05T00:00:00,"{""attachments"": 0, ""opened"": true}" +EML-00037,INT-000481,Document checklist for home loan application,user_003@velocity.desineuron.in,asha.roy11@yahoo.com,"Dear Asha, + +Thank you for your interest in Atri Aqua. As discussed, I have attached the brochure and floor plans. + +The unit you liked (Unit A4-1170) is currently available at Rs 10.5 Cr. + +Please let me know a convenient time for your next visit. + +Best regards, +Velocity Realty Team",2025-10-15T00:00:00,"{""attachments"": 0, ""opened"": false}" +EML-00038,INT-000519,Revised quote for Unit D11-1242,user_003@velocity.desineuron.in,abhishek.singh27@gmail.com,"Dear Abhishek, + +Thank you for your interest in Godrej Elevate. As discussed, I have attached the brochure and floor plans. + +The unit you liked (Unit D11-1242) is currently available at Rs 2.33 Cr. + +Please let me know a convenient time for your next visit. + +Best regards, +Velocity Realty Team",2026-02-18T00:00:00,"{""attachments"": 3, ""opened"": true}" +EML-00039,INT-000527,Re: Pricing discussion for Godrej Elevate,user_004@velocity.desineuron.in,parth.gupta82@outlook.com,"Hi Parth, + +Following up on your site visit last week. Did you get a chance to discuss with your family? + +We have a limited period offer running till month-end. Happy to arrange a call to discuss. + +Regards, +Vikram Patel",2026-03-15T00:00:00,"{""attachments"": 1, ""opened"": true}" +EML-00040,INT-000532,Follow-up: Site visit feedback,user_004@velocity.desineuron.in,swati.roy83@outlook.com,"Dear Swati, + +Thank you for your interest in Godrej Elevate. As discussed, I have attached the brochure and floor plans. + +The unit you liked (Unit B12-2210) is currently available at Rs 4.99 Cr. + +Please let me know a convenient time for your next visit. + +Best regards, +Velocity Realty Team",2026-01-15T00:00:00,"{""attachments"": 2, ""opened"": true}" +EML-00041,INT-000539,Introduction: Family decision maker meeting,user_002@velocity.desineuron.in,pallavi.mukherjee13@hotmail.com,"Hi Pallavi, + +Following up on your site visit last week. Did you get a chance to discuss with your family? + +We have a limited period offer running till month-end. Happy to arrange a call to discuss. + +Regards, +Vikram Patel",2024-06-14T00:00:00,"{""attachments"": 1, ""opened"": true}" +EML-00042,INT-000556,Site Visit Confirmation - Merlin Avana,user_002@velocity.desineuron.in,rahul.pillai53@gmail.com,"Hi Rahul, + +Following up on your site visit last week. Did you get a chance to discuss with your family? + +We have a limited period offer running till month-end. Happy to arrange a call to discuss. + +Regards, +Priya Banerjee",2024-05-10T00:00:00,"{""attachments"": 2, ""opened"": true}" +EML-00043,INT-000564,Revised quote for Unit C1-2288,user_001@velocity.desineuron.in,nilesh.patel19@gmail.com,"Dear Nilesh, + +Thank you for your interest in Siddha Suburbia Bungalow. As discussed, I have attached the brochure and floor plans. + +The unit you liked (Unit C1-2288) is currently available at Rs 6.64 Cr. + +Please let me know a convenient time for your next visit. + +Best regards, +Velocity Realty Team",2024-05-20T00:00:00,"{""attachments"": 1, ""opened"": true}" +EML-00044,INT-000574,Introduction: Family decision maker meeting,user_002@velocity.desineuron.in,parth.verma30@gmail.com,"Dear Parth, + +Thank you for your interest in Atri Surya Toron. As discussed, I have attached the brochure and floor plans. + +The unit you liked (Unit D2-2384) is currently available at Rs 6.57 Cr. + +Please let me know a convenient time for your next visit. + +Best regards, +Velocity Realty Team",2024-11-26T00:00:00,"{""attachments"": 3, ""opened"": true}" +EML-00045,INT-000582,Revised quote for Unit C9-385,user_002@velocity.desineuron.in,raj.reddy73@yahoo.com,"Dear Raj, + +Thank you for your interest in Atri Aqua. As discussed, I have attached the brochure and floor plans. + +The unit you liked (Unit C9-385) is currently available at Rs 1.6 Cr. + +Please let me know a convenient time for your next visit. + +Best regards, +Velocity Realty Team",2025-05-10T00:00:00,"{""attachments"": 1, ""opened"": true}" +EML-00046,INT-000594,Re: Pricing discussion for Godrej Blue,user_005@velocity.desineuron.in,swati.jain90@rediffmail.com,"Hi Swati, + +Following up on your site visit last week. Did you get a chance to discuss with your family? + +We have a limited period offer running till month-end. Happy to arrange a call to discuss. + +Regards, +Vikram Patel",2024-03-10T00:00:00,"{""attachments"": 2, ""opened"": true}" +EML-00047,INT-000611,Introduction: Family decision maker meeting,user_002@velocity.desineuron.in,prasenjit.roy18@gmail.com,"Hi Prasenjit, + +Following up on your site visit last week. Did you get a chance to discuss with your family? + +We have a limited period offer running till month-end. Happy to arrange a call to discuss. + +Regards, +Rahul Sharma",2024-11-22T00:00:00,"{""attachments"": 3, ""opened"": false}" +EML-00048,INT-000630,Follow-up: Site visit feedback,user_004@velocity.desineuron.in,kavita.das85@hotmail.com,"Dear Mr./Ms. Das, + +Greetings from Siddha Suburbia Bungalow sales team. + +As requested, please find attached: +1. Price sheet +2. Payment plan +3. Home loan EMI calculator +4. Project specification sheet + +Looking forward to your feedback. + +Best, +Velocity Team",2024-06-21T00:00:00,"{""attachments"": 3, ""opened"": true}" +EML-00049,INT-000632,Document checklist for home loan application,user_004@velocity.desineuron.in,kavita.das85@hotmail.com,"Dear Mr./Ms. Das, + +Greetings from Siddha Suburbia Bungalow sales team. + +As requested, please find attached: +1. Price sheet +2. Payment plan +3. Home loan EMI calculator +4. Project specification sheet + +Looking forward to your feedback. + +Best, +Velocity Team",2024-07-06T00:00:00,"{""attachments"": 3, ""opened"": false}" +EML-00050,INT-000639,Re: Pricing discussion for Atri Aqua,user_003@velocity.desineuron.in,sneha.pillai84@outlook.com,"Dear Sneha, + +Thank you for your interest in Atri Aqua. As discussed, I have attached the brochure and floor plans. + +The unit you liked (Unit B9-753) is currently available at Rs 5.5 Cr. + +Please let me know a convenient time for your next visit. + +Best regards, +Velocity Realty Team",2024-06-21T00:00:00,"{""attachments"": 1, ""opened"": false}" +EML-00051,INT-000642,Revised quote for Unit B9-753,user_003@velocity.desineuron.in,sneha.pillai84@outlook.com,"Hi Sneha, + +Following up on your site visit last week. Did you get a chance to discuss with your family? + +We have a limited period offer running till month-end. Happy to arrange a call to discuss. + +Regards, +Vikram Patel",2024-07-19T00:00:00,"{""attachments"": 2, ""opened"": true}" +EML-00052,INT-000645,Follow-up: Site visit feedback,user_005@velocity.desineuron.in,ananya.sen25@hotmail.com,"Dear Mr./Ms. Sen, + +Greetings from Sugam Prakriti sales team. + +As requested, please find attached: +1. Price sheet +2. Payment plan +3. Home loan EMI calculator +4. Project specification sheet + +Looking forward to your feedback. + +Best, +Velocity Team",2025-06-07T00:00:00,"{""attachments"": 2, ""opened"": true}" +EML-00053,INT-000660,Follow-up: Site visit feedback,user_002@velocity.desineuron.in,pallavi.chatterjee70@outlook.com,"Hi Pallavi, + +Following up on your site visit last week. Did you get a chance to discuss with your family? + +We have a limited period offer running till month-end. Happy to arrange a call to discuss. + +Regards, +Vikram Patel",2024-05-25T00:00:00,"{""attachments"": 1, ""opened"": true}" +EML-00054,INT-000671,Revised quote for Unit C19-2249,user_002@velocity.desineuron.in,tanvi.pillai30@hotmail.com,"Dear Tanvi, + +Thank you for your interest in Siddha Suburbia Bungalow. As discussed, I have attached the brochure and floor plans. + +The unit you liked (Unit C19-2249) is currently available at Rs 6.31 Cr. + +Please let me know a convenient time for your next visit. + +Best regards, +Velocity Realty Team",2025-01-26T00:00:00,"{""attachments"": 0, ""opened"": false}" +EML-00055,INT-000682,Revised quote for Unit D12-1489,user_001@velocity.desineuron.in,abhishek.chatterjee78@yahoo.com,"Hi Abhishek, + +Following up on your site visit last week. Did you get a chance to discuss with your family? + +We have a limited period offer running till month-end. Happy to arrange a call to discuss. + +Regards, +Vikram Patel",2024-05-21T00:00:00,"{""attachments"": 3, ""opened"": true}" +EML-00056,INT-000699,Follow-up: Site visit feedback,user_004@velocity.desineuron.in,ritu.sharma28@outlook.com,"Dear Mr./Ms. Sharma, + +Greetings from Shriram Grand City sales team. + +As requested, please find attached: +1. Price sheet +2. Payment plan +3. Home loan EMI calculator +4. Project specification sheet + +Looking forward to your feedback. + +Best, +Velocity Team",2025-01-10T00:00:00,"{""attachments"": 3, ""opened"": true}" +EML-00057,INT-000706,Revised quote for Unit A15-1346,user_002@velocity.desineuron.in,kunal.das10@rediffmail.com,"Dear Kunal, + +Thank you for your interest in Merlin Avana. As discussed, I have attached the brochure and floor plans. + +The unit you liked (Unit A15-1346) is currently available at Rs 7.41 Cr. + +Please let me know a convenient time for your next visit. + +Best regards, +Velocity Realty Team",2025-10-01T00:00:00,"{""attachments"": 0, ""opened"": false}" +EML-00058,INT-000724,Document checklist for home loan application,user_002@velocity.desineuron.in,shreya.das21@outlook.com,"Dear Shreya, + +Thank you for your interest in Sugam Prakriti. As discussed, I have attached the brochure and floor plans. + +The unit you liked (Unit B7-1316) is currently available at Rs 1.66 Cr. + +Please let me know a convenient time for your next visit. + +Best regards, +Velocity Realty Team",2024-10-22T00:00:00,"{""attachments"": 1, ""opened"": false}" +EML-00059,INT-000737,Revised quote for Unit B20-1895,user_002@velocity.desineuron.in,divya.das55@gmail.com,"Dear Mr./Ms. Das, + +Greetings from Shriram Grand City sales team. + +As requested, please find attached: +1. Price sheet +2. Payment plan +3. Home loan EMI calculator +4. Project specification sheet + +Looking forward to your feedback. + +Best, +Velocity Team",2024-04-10T00:00:00,"{""attachments"": 3, ""opened"": true}" +EML-00060,INT-000747,Payment schedule and offer details,user_002@velocity.desineuron.in,shreya.saha43@outlook.com,"Hi Shreya, + +Following up on your site visit last week. Did you get a chance to discuss with your family? + +We have a limited period offer running till month-end. Happy to arrange a call to discuss. + +Regards, +Vikram Patel",2024-06-24T00:00:00,"{""attachments"": 1, ""opened"": true}" +EML-00061,INT-000750,Follow-up: Site visit feedback,user_002@velocity.desineuron.in,shreya.saha43@outlook.com,"Dear Mr./Ms. Saha, + +Greetings from Atri Surya Toron sales team. + +As requested, please find attached: +1. Price sheet +2. Payment plan +3. Home loan EMI calculator +4. Project specification sheet + +Looking forward to your feedback. + +Best, +Velocity Team",2024-07-29T00:00:00,"{""attachments"": 1, ""opened"": false}" +EML-00062,INT-000754,Re: Pricing discussion for Atri Surya Toron,user_001@velocity.desineuron.in,priya.agarwal11@gmail.com,"Dear Mr./Ms. Agarwal, + +Greetings from Atri Surya Toron sales team. + +As requested, please find attached: +1. Price sheet +2. Payment plan +3. Home loan EMI calculator +4. Project specification sheet + +Looking forward to your feedback. + +Best, +Velocity Team",2025-10-10T00:00:00,"{""attachments"": 2, ""opened"": true}" +EML-00063,INT-000758,Follow-up: Site visit feedback,user_001@velocity.desineuron.in,debjani.ghosh35@yahoo.com,"Dear Mr./Ms. Ghosh, + +Greetings from DTC Sojon sales team. + +As requested, please find attached: +1. Price sheet +2. Payment plan +3. Home loan EMI calculator +4. Project specification sheet + +Looking forward to your feedback. + +Best, +Velocity Team",2025-08-30T00:00:00,"{""attachments"": 2, ""opened"": true}" +EML-00064,INT-000769,Follow-up: Site visit feedback,user_001@velocity.desineuron.in,rahul.agarwal27@gmail.com,"Dear Rahul, + +Thank you for your interest in Ambuja Utpaala. As discussed, I have attached the brochure and floor plans. + +The unit you liked (Unit A13-310) is currently available at Rs 10.03 Cr. + +Please let me know a convenient time for your next visit. + +Best regards, +Velocity Realty Team",2024-02-10T00:00:00,"{""attachments"": 1, ""opened"": true}" +EML-00065,INT-000781,Document checklist for home loan application,user_003@velocity.desineuron.in,prasenjit.chatterjee14@hotmail.com,"Dear Mr./Ms. Chatterjee, + +Greetings from Merlin Avana sales team. + +As requested, please find attached: +1. Price sheet +2. Payment plan +3. Home loan EMI calculator +4. Project specification sheet + +Looking forward to your feedback. + +Best, +Velocity Team",2026-02-13T00:00:00,"{""attachments"": 1, ""opened"": true}" +EML-00066,INT-000802,Re: Pricing discussion for Eden Devprayag,user_003@velocity.desineuron.in,ananya.sen80@outlook.com,"Dear Mr./Ms. Sen, + +Greetings from Eden Devprayag sales team. + +As requested, please find attached: +1. Price sheet +2. Payment plan +3. Home loan EMI calculator +4. Project specification sheet + +Looking forward to your feedback. + +Best, +Velocity Team",2025-06-20T00:00:00,"{""attachments"": 0, ""opened"": true}" +EML-00067,INT-000816,Payment schedule and offer details,user_003@velocity.desineuron.in,kunal.saha47@yahoo.com,"Dear Mr./Ms. Saha, + +Greetings from Shriram Grand City sales team. + +As requested, please find attached: +1. Price sheet +2. Payment plan +3. Home loan EMI calculator +4. Project specification sheet + +Looking forward to your feedback. + +Best, +Velocity Team",2025-10-21T00:00:00,"{""attachments"": 1, ""opened"": true}" +EML-00068,INT-000833,Revised quote for Unit D2-223,user_001@velocity.desineuron.in,deb.singh19@yahoo.com,"Hi Deb, + +Following up on your site visit last week. Did you get a chance to discuss with your family? + +We have a limited period offer running till month-end. Happy to arrange a call to discuss. + +Regards, +Vikram Patel",2024-10-28T00:00:00,"{""attachments"": 2, ""opened"": false}" +EML-00069,INT-000838,Follow-up: Site visit feedback,user_001@velocity.desineuron.in,deb.singh19@yahoo.com,"Hi Deb, + +Following up on your site visit last week. Did you get a chance to discuss with your family? + +We have a limited period offer running till month-end. Happy to arrange a call to discuss. + +Regards, +Vikram Patel",2024-11-29T00:00:00,"{""attachments"": 2, ""opened"": true}" +EML-00070,INT-000851,Re: Pricing discussion for Godrej Blue,user_002@velocity.desineuron.in,deb.reddy52@rediffmail.com,"Dear Mr./Ms. Reddy, + +Greetings from Godrej Blue sales team. + +As requested, please find attached: +1. Price sheet +2. Payment plan +3. Home loan EMI calculator +4. Project specification sheet + +Looking forward to your feedback. + +Best, +Velocity Team",2025-10-31T00:00:00,"{""attachments"": 1, ""opened"": true}" +EML-00071,INT-000860,Document checklist for home loan application,user_004@velocity.desineuron.in,debjani.nair84@rediffmail.com,"Hi Debjani, + +Following up on your site visit last week. Did you get a chance to discuss with your family? + +We have a limited period offer running till month-end. Happy to arrange a call to discuss. + +Regards, +Priya Banerjee",2025-05-03T00:00:00,"{""attachments"": 0, ""opened"": true}" +EML-00072,INT-000904,Site Visit Confirmation - Siddha Sky Waterfront,user_001@velocity.desineuron.in,sourav.pillai47@gmail.com,"Hi Sourav, + +Following up on your site visit last week. Did you get a chance to discuss with your family? + +We have a limited period offer running till month-end. Happy to arrange a call to discuss. + +Regards, +Vikram Patel",2024-08-05T00:00:00,"{""attachments"": 3, ""opened"": true}" +EML-00073,INT-000914,Re: Pricing discussion for Atri Surya Toron,user_002@velocity.desineuron.in,manish.roy66@gmail.com,"Dear Manish, + +Thank you for your interest in Atri Surya Toron. As discussed, I have attached the brochure and floor plans. + +The unit you liked (Unit A10-1061) is currently available at Rs 6.37 Cr. + +Please let me know a convenient time for your next visit. + +Best regards, +Velocity Realty Team",2024-02-24T00:00:00,"{""attachments"": 0, ""opened"": false}" +EML-00074,INT-000920,Introduction: Family decision maker meeting,user_003@velocity.desineuron.in,aditya.sharma93@hotmail.com,"Dear Mr./Ms. Sharma, + +Greetings from Atri Surya Toron sales team. + +As requested, please find attached: +1. Price sheet +2. Payment plan +3. Home loan EMI calculator +4. Project specification sheet + +Looking forward to your feedback. + +Best, +Velocity Team",2024-05-17T00:00:00,"{""attachments"": 3, ""opened"": true}" +EML-00075,INT-000935,Revised quote for Unit D9-281,user_003@velocity.desineuron.in,pallavi.mukherjee40@hotmail.com,"Hi Pallavi, + +Following up on your site visit last week. Did you get a chance to discuss with your family? + +We have a limited period offer running till month-end. Happy to arrange a call to discuss. + +Regards, +Rahul Sharma",2025-03-16T00:00:00,"{""attachments"": 3, ""opened"": false}" +EML-00076,INT-000945,Introduction: Family decision maker meeting,user_005@velocity.desineuron.in,deb.nair20@rediffmail.com,"Dear Deb, + +Thank you for your interest in Eden Devprayag. As discussed, I have attached the brochure and floor plans. + +The unit you liked (Unit D2-223) is currently available at Rs 2.24 Cr. + +Please let me know a convenient time for your next visit. + +Best regards, +Velocity Realty Team",2024-02-28T00:00:00,"{""attachments"": 0, ""opened"": true}" +EML-00077,INT-000950,Introduction: Family decision maker meeting,user_002@velocity.desineuron.in,vivek.mukherjee25@rediffmail.com,"Dear Mr./Ms. Mukherjee, + +Greetings from DTC Sojon sales team. + +As requested, please find attached: +1. Price sheet +2. Payment plan +3. Home loan EMI calculator +4. Project specification sheet + +Looking forward to your feedback. + +Best, +Velocity Team",2025-11-08T00:00:00,"{""attachments"": 3, ""opened"": true}" +EML-00078,INT-000953,Document checklist for home loan application,user_004@velocity.desineuron.in,vikram.bose54@yahoo.com,"Dear Mr./Ms. Bose, + +Greetings from Atri Aqua sales team. + +As requested, please find attached: +1. Price sheet +2. Payment plan +3. Home loan EMI calculator +4. Project specification sheet + +Looking forward to your feedback. + +Best, +Velocity Team",2024-03-21T00:00:00,"{""attachments"": 0, ""opened"": true}" +EML-00079,INT-000961,Introduction: Family decision maker meeting,user_001@velocity.desineuron.in,vidya.singh94@yahoo.com,"Hi Vidya, + +Following up on your site visit last week. Did you get a chance to discuss with your family? + +We have a limited period offer running till month-end. Happy to arrange a call to discuss. + +Regards, +Vikram Patel",2025-10-08T00:00:00,"{""attachments"": 1, ""opened"": true}" +EML-00080,INT-000963,Introduction: Family decision maker meeting,user_001@velocity.desineuron.in,vidya.singh94@yahoo.com,"Dear Mr./Ms. Singh, + +Greetings from Atri Surya Toron sales team. + +As requested, please find attached: +1. Price sheet +2. Payment plan +3. Home loan EMI calculator +4. Project specification sheet + +Looking forward to your feedback. + +Best, +Velocity Team",2025-10-16T00:00:00,"{""attachments"": 0, ""opened"": true}" +EML-00081,INT-000972,Project Brochure and Floor Plans,user_003@velocity.desineuron.in,sonal.das47@yahoo.com,"Hi Sonal, + +Following up on your site visit last week. Did you get a chance to discuss with your family? + +We have a limited period offer running till month-end. Happy to arrange a call to discuss. + +Regards, +Vikram Patel",2026-03-05T00:00:00,"{""attachments"": 2, ""opened"": false}" +EML-00082,INT-000975,Revised quote for Unit D8-1940,user_003@velocity.desineuron.in,pallavi.pillai60@gmail.com,"Dear Mr./Ms. Pillai, + +Greetings from Eden Devprayag sales team. + +As requested, please find attached: +1. Price sheet +2. Payment plan +3. Home loan EMI calculator +4. Project specification sheet + +Looking forward to your feedback. + +Best, +Velocity Team",2024-08-15T00:00:00,"{""attachments"": 0, ""opened"": true}" +EML-00083,INT-000976,Follow-up: Site visit feedback,user_003@velocity.desineuron.in,pallavi.pillai60@gmail.com,"Dear Mr./Ms. Pillai, + +Greetings from Eden Devprayag sales team. + +As requested, please find attached: +1. Price sheet +2. Payment plan +3. Home loan EMI calculator +4. Project specification sheet + +Looking forward to your feedback. + +Best, +Velocity Team",2024-08-16T00:00:00,"{""attachments"": 1, ""opened"": true}" +EML-00084,INT-000984,Follow-up: Site visit feedback,user_003@velocity.desineuron.in,isha.saha32@rediffmail.com,"Dear Mr./Ms. Saha, + +Greetings from DTC Sojon sales team. + +As requested, please find attached: +1. Price sheet +2. Payment plan +3. Home loan EMI calculator +4. Project specification sheet + +Looking forward to your feedback. + +Best, +Velocity Team",2025-10-01T00:00:00,"{""attachments"": 0, ""opened"": true}" +EML-00085,INT-000989,Introduction: Family decision maker meeting,user_003@velocity.desineuron.in,siddharth.chatterjee81@outlook.com,"Hi Siddharth, + +Following up on your site visit last week. Did you get a chance to discuss with your family? + +We have a limited period offer running till month-end. Happy to arrange a call to discuss. + +Regards, +Priya Banerjee",2025-07-03T00:00:00,"{""attachments"": 2, ""opened"": true}" +EML-00086,INT-001037,Payment schedule and offer details,user_002@velocity.desineuron.in,prasenjit.reddy45@hotmail.com,"Dear Prasenjit, + +Thank you for your interest in DTC Good Earth. As discussed, I have attached the brochure and floor plans. + +The unit you liked (Unit C18-748) is currently available at Rs 8.45 Cr. + +Please let me know a convenient time for your next visit. + +Best regards, +Velocity Realty Team",2026-02-04T00:00:00,"{""attachments"": 0, ""opened"": true}" +EML-00087,INT-001068,Site Visit Confirmation - Atri Surya Toron,user_003@velocity.desineuron.in,riya.sen83@rediffmail.com,"Dear Mr./Ms. Sen, + +Greetings from Atri Surya Toron sales team. + +As requested, please find attached: +1. Price sheet +2. Payment plan +3. Home loan EMI calculator +4. Project specification sheet + +Looking forward to your feedback. + +Best, +Velocity Team",2025-06-22T00:00:00,"{""attachments"": 1, ""opened"": true}" +EML-00088,INT-001076,Document checklist for home loan application,user_001@velocity.desineuron.in,debjani.gupta68@yahoo.com,"Dear Mr./Ms. Gupta, + +Greetings from Eden Devprayag sales team. + +As requested, please find attached: +1. Price sheet +2. Payment plan +3. Home loan EMI calculator +4. Project specification sheet + +Looking forward to your feedback. + +Best, +Velocity Team",2024-04-02T00:00:00,"{""attachments"": 3, ""opened"": true}" +EML-00089,INT-001080,Revised quote for Unit B19-1807,user_002@velocity.desineuron.in,vivek.ghosh44@gmail.com,"Dear Vivek, + +Thank you for your interest in Godrej Elevate. As discussed, I have attached the brochure and floor plans. + +The unit you liked (Unit B19-1807) is currently available at Rs 6.4 Cr. + +Please let me know a convenient time for your next visit. + +Best regards, +Velocity Realty Team",2024-06-15T00:00:00,"{""attachments"": 0, ""opened"": true}" +EML-00090,INT-001095,Document checklist for home loan application,user_004@velocity.desineuron.in,riya.patel59@rediffmail.com,"Hi Riya, + +Following up on your site visit last week. Did you get a chance to discuss with your family? + +We have a limited period offer running till month-end. Happy to arrange a call to discuss. + +Regards, +Rahul Sharma",2024-04-29T00:00:00,"{""attachments"": 3, ""opened"": true}" +EML-00091,INT-001119,Document checklist for home loan application,user_003@velocity.desineuron.in,vivek.sharma76@gmail.com,"Dear Mr./Ms. Sharma, + +Greetings from Merlin Avana sales team. + +As requested, please find attached: +1. Price sheet +2. Payment plan +3. Home loan EMI calculator +4. Project specification sheet + +Looking forward to your feedback. + +Best, +Velocity Team",2025-03-20T00:00:00,"{""attachments"": 1, ""opened"": false}" +EML-00092,INT-001132,Document checklist for home loan application,user_002@velocity.desineuron.in,rahul.nair86@outlook.com,"Hi Rahul, + +Following up on your site visit last week. Did you get a chance to discuss with your family? + +We have a limited period offer running till month-end. Happy to arrange a call to discuss. + +Regards, +Priya Banerjee",2025-07-19T00:00:00,"{""attachments"": 2, ""opened"": true}" +EML-00093,INT-001134,Site Visit Confirmation - DTC Sojon,user_002@velocity.desineuron.in,rahul.nair86@outlook.com,"Dear Mr./Ms. Nair, + +Greetings from DTC Sojon sales team. + +As requested, please find attached: +1. Price sheet +2. Payment plan +3. Home loan EMI calculator +4. Project specification sheet + +Looking forward to your feedback. + +Best, +Velocity Team",2025-08-13T00:00:00,"{""attachments"": 1, ""opened"": true}" +EML-00094,INT-001149,Revised quote for Unit A10-2390,user_004@velocity.desineuron.in,moumita.banerjee24@yahoo.com,"Dear Mr./Ms. Banerjee, + +Greetings from Godrej Blue sales team. + +As requested, please find attached: +1. Price sheet +2. Payment plan +3. Home loan EMI calculator +4. Project specification sheet + +Looking forward to your feedback. + +Best, +Velocity Team",2025-08-30T00:00:00,"{""attachments"": 1, ""opened"": true}" +EML-00095,INT-001158,Follow-up: Site visit feedback,user_002@velocity.desineuron.in,priya.pillai77@gmail.com,"Hi Priya, + +Following up on your site visit last week. Did you get a chance to discuss with your family? + +We have a limited period offer running till month-end. Happy to arrange a call to discuss. + +Regards, +Priya Banerjee",2024-02-11T00:00:00,"{""attachments"": 1, ""opened"": true}" +EML-00096,INT-001166,Follow-up: Site visit feedback,user_001@velocity.desineuron.in,raj.agarwal28@hotmail.com,"Hi Raj, + +Following up on your site visit last week. Did you get a chance to discuss with your family? + +We have a limited period offer running till month-end. Happy to arrange a call to discuss. + +Regards, +Vikram Patel",2025-03-23T00:00:00,"{""attachments"": 1, ""opened"": false}" +EML-00097,INT-001169,Site Visit Confirmation - DTC Good Earth,user_002@velocity.desineuron.in,raj.kumar23@gmail.com,"Hi Raj, + +Following up on your site visit last week. Did you get a chance to discuss with your family? + +We have a limited period offer running till month-end. Happy to arrange a call to discuss. + +Regards, +Rahul Sharma",2024-11-11T00:00:00,"{""attachments"": 0, ""opened"": true}" +EML-00098,INT-001174,Document checklist for home loan application,user_003@velocity.desineuron.in,deb.sen16@gmail.com,"Dear Mr./Ms. Sen, + +Greetings from Atri Aqua sales team. + +As requested, please find attached: +1. Price sheet +2. Payment plan +3. Home loan EMI calculator +4. Project specification sheet + +Looking forward to your feedback. + +Best, +Velocity Team",2026-01-11T00:00:00,"{""attachments"": 0, ""opened"": false}" +EML-00099,INT-001186,Document checklist for home loan application,user_004@velocity.desineuron.in,sourav.chatterjee31@gmail.com,"Hi Sourav, + +Following up on your site visit last week. Did you get a chance to discuss with your family? + +We have a limited period offer running till month-end. Happy to arrange a call to discuss. + +Regards, +Vikram Patel",2024-08-08T00:00:00,"{""attachments"": 2, ""opened"": true}" +EML-00100,INT-001187,Site Visit Confirmation - Siddha Suburbia Bungalow,user_004@velocity.desineuron.in,sourav.chatterjee31@gmail.com,"Dear Mr./Ms. Chatterjee, + +Greetings from Siddha Suburbia Bungalow sales team. + +As requested, please find attached: +1. Price sheet +2. Payment plan +3. Home loan EMI calculator +4. Project specification sheet + +Looking forward to your feedback. + +Best, +Velocity Team",2024-08-14T00:00:00,"{""attachments"": 1, ""opened"": true}" +EML-00101,INT-001189,Re: Pricing discussion for Siddha Suburbia Bungalow,user_004@velocity.desineuron.in,sourav.chatterjee31@gmail.com,"Dear Sourav, + +Thank you for your interest in Siddha Suburbia Bungalow. As discussed, I have attached the brochure and floor plans. + +The unit you liked (Unit D4-368) is currently available at Rs 7.77 Cr. + +Please let me know a convenient time for your next visit. + +Best regards, +Velocity Realty Team",2024-08-28T00:00:00,"{""attachments"": 0, ""opened"": false}" +EML-00102,INT-001208,Project Brochure and Floor Plans,user_005@velocity.desineuron.in,sonal.nair97@outlook.com,"Hi Sonal, + +Following up on your site visit last week. Did you get a chance to discuss with your family? + +We have a limited period offer running till month-end. Happy to arrange a call to discuss. + +Regards, +Rahul Sharma",2024-09-16T00:00:00,"{""attachments"": 0, ""opened"": true}" +EML-00103,INT-001225,Revised quote for Unit D4-673,user_004@velocity.desineuron.in,debjani.kumar68@outlook.com,"Dear Mr./Ms. Kumar, + +Greetings from Siddha Serena sales team. + +As requested, please find attached: +1. Price sheet +2. Payment plan +3. Home loan EMI calculator +4. Project specification sheet + +Looking forward to your feedback. + +Best, +Velocity Team",2024-06-06T00:00:00,"{""attachments"": 2, ""opened"": true}" +EML-00104,INT-001234,Site Visit Confirmation - DTC Sojon,user_003@velocity.desineuron.in,sneha.mukherjee19@rediffmail.com,"Dear Mr./Ms. Mukherjee, + +Greetings from DTC Sojon sales team. + +As requested, please find attached: +1. Price sheet +2. Payment plan +3. Home loan EMI calculator +4. Project specification sheet + +Looking forward to your feedback. + +Best, +Velocity Team",2025-12-10T00:00:00,"{""attachments"": 3, ""opened"": true}" +EML-00105,INT-001237,Document checklist for home loan application,user_001@velocity.desineuron.in,aditya.kumar64@rediffmail.com,"Hi Aditya, + +Following up on your site visit last week. Did you get a chance to discuss with your family? + +We have a limited period offer running till month-end. Happy to arrange a call to discuss. + +Regards, +Rahul Sharma",2024-09-05T00:00:00,"{""attachments"": 3, ""opened"": true}" +EML-00106,INT-001244,Payment schedule and offer details,user_005@velocity.desineuron.in,raj.roy80@outlook.com,"Dear Mr./Ms. Roy, + +Greetings from Siddha Suburbia Bungalow sales team. + +As requested, please find attached: +1. Price sheet +2. Payment plan +3. Home loan EMI calculator +4. Project specification sheet + +Looking forward to your feedback. + +Best, +Velocity Team",2025-10-11T00:00:00,"{""attachments"": 1, ""opened"": false}" +EML-00107,INT-001268,Document checklist for home loan application,user_003@velocity.desineuron.in,sonal.bose60@gmail.com,"Hi Sonal, + +Following up on your site visit last week. Did you get a chance to discuss with your family? + +We have a limited period offer running till month-end. Happy to arrange a call to discuss. + +Regards, +Rahul Sharma",2024-03-10T00:00:00,"{""attachments"": 2, ""opened"": true}" +EML-00108,INT-001290,Project Brochure and Floor Plans,user_002@velocity.desineuron.in,deb.kumar62@outlook.com,"Hi Deb, + +Following up on your site visit last week. Did you get a chance to discuss with your family? + +We have a limited period offer running till month-end. Happy to arrange a call to discuss. + +Regards, +Rahul Sharma",2024-05-26T00:00:00,"{""attachments"": 0, ""opened"": true}" +EML-00109,INT-001313,Project Brochure and Floor Plans,user_005@velocity.desineuron.in,neha.reddy66@yahoo.com,"Dear Mr./Ms. Reddy, + +Greetings from Siddha Suburbia Bungalow sales team. + +As requested, please find attached: +1. Price sheet +2. Payment plan +3. Home loan EMI calculator +4. Project specification sheet + +Looking forward to your feedback. + +Best, +Velocity Team",2026-01-27T00:00:00,"{""attachments"": 1, ""opened"": true}" +EML-00110,INT-001321,Project Brochure and Floor Plans,user_001@velocity.desineuron.in,meera.patel91@outlook.com,"Dear Mr./Ms. Patel, + +Greetings from DTC Good Earth sales team. + +As requested, please find attached: +1. Price sheet +2. Payment plan +3. Home loan EMI calculator +4. Project specification sheet + +Looking forward to your feedback. + +Best, +Velocity Team",2025-06-11T00:00:00,"{""attachments"": 2, ""opened"": true}" +EML-00111,INT-001336,Site Visit Confirmation - Ambuja Utpaala,user_005@velocity.desineuron.in,tanvi.patel53@gmail.com,"Dear Mr./Ms. Patel, + +Greetings from Ambuja Utpaala sales team. + +As requested, please find attached: +1. Price sheet +2. Payment plan +3. Home loan EMI calculator +4. Project specification sheet + +Looking forward to your feedback. + +Best, +Velocity Team",2024-02-16T00:00:00,"{""attachments"": 3, ""opened"": true}" +EML-00112,INT-001342,Document checklist for home loan application,user_003@velocity.desineuron.in,rohan.sharma25@rediffmail.com,"Hi Rohan, + +Following up on your site visit last week. Did you get a chance to discuss with your family? + +We have a limited period offer running till month-end. Happy to arrange a call to discuss. + +Regards, +Vikram Patel",2024-05-03T00:00:00,"{""attachments"": 3, ""opened"": true}" +EML-00113,INT-001368,Introduction: Family decision maker meeting,user_001@velocity.desineuron.in,neha.nair51@hotmail.com,"Dear Neha, + +Thank you for your interest in Atri Surya Toron. As discussed, I have attached the brochure and floor plans. + +The unit you liked (Unit D14-1200) is currently available at Rs 5.07 Cr. + +Please let me know a convenient time for your next visit. + +Best regards, +Velocity Realty Team",2025-01-01T00:00:00,"{""attachments"": 2, ""opened"": true}" +EML-00114,INT-001372,Site Visit Confirmation - Atri Aqua,user_001@velocity.desineuron.in,rahul.banerjee34@outlook.com,"Dear Mr./Ms. Banerjee, + +Greetings from Atri Aqua sales team. + +As requested, please find attached: +1. Price sheet +2. Payment plan +3. Home loan EMI calculator +4. Project specification sheet + +Looking forward to your feedback. + +Best, +Velocity Team",2025-08-09T00:00:00,"{""attachments"": 1, ""opened"": true}" +EML-00115,INT-001387,Introduction: Family decision maker meeting,user_002@velocity.desineuron.in,deb.pillai60@rediffmail.com,"Dear Deb, + +Thank you for your interest in Godrej Blue. As discussed, I have attached the brochure and floor plans. + +The unit you liked (Unit A19-680) is currently available at Rs 4.83 Cr. + +Please let me know a convenient time for your next visit. + +Best regards, +Velocity Realty Team",2025-12-04T00:00:00,"{""attachments"": 3, ""opened"": false}" +EML-00116,INT-001398,Site Visit Confirmation - Merlin Avana,user_002@velocity.desineuron.in,abhishek.saha90@rediffmail.com,"Dear Mr./Ms. Saha, + +Greetings from Merlin Avana sales team. + +As requested, please find attached: +1. Price sheet +2. Payment plan +3. Home loan EMI calculator +4. Project specification sheet + +Looking forward to your feedback. + +Best, +Velocity Team",2025-11-19T00:00:00,"{""attachments"": 1, ""opened"": true}" +EML-00117,INT-001411,Introduction: Family decision maker meeting,user_004@velocity.desineuron.in,meera.banerjee31@gmail.com,"Hi Meera, + +Following up on your site visit last week. Did you get a chance to discuss with your family? + +We have a limited period offer running till month-end. Happy to arrange a call to discuss. + +Regards, +Rahul Sharma",2025-01-05T00:00:00,"{""attachments"": 1, ""opened"": true}" +EML-00118,INT-001449,Site Visit Confirmation - Shriram Grand City,user_003@velocity.desineuron.in,kunal.chatterjee54@gmail.com,"Dear Kunal, + +Thank you for your interest in Shriram Grand City. As discussed, I have attached the brochure and floor plans. + +The unit you liked (Unit B20-1895) is currently available at Rs 1.53 Cr. + +Please let me know a convenient time for your next visit. + +Best regards, +Velocity Realty Team",2025-12-01T00:00:00,"{""attachments"": 1, ""opened"": true}" +EML-00119,INT-001477,Payment schedule and offer details,user_005@velocity.desineuron.in,asha.reddy40@rediffmail.com,"Dear Mr./Ms. Reddy, + +Greetings from Siddha Suburbia Bungalow sales team. + +As requested, please find attached: +1. Price sheet +2. Payment plan +3. Home loan EMI calculator +4. Project specification sheet + +Looking forward to your feedback. + +Best, +Velocity Team",2026-02-08T00:00:00,"{""attachments"": 0, ""opened"": true}" +EML-00120,INT-001504,Re: Pricing discussion for Atri Surya Toron,user_003@velocity.desineuron.in,nilesh.banerjee43@outlook.com,"Dear Mr./Ms. Banerjee, + +Greetings from Atri Surya Toron sales team. + +As requested, please find attached: +1. Price sheet +2. Payment plan +3. Home loan EMI calculator +4. Project specification sheet + +Looking forward to your feedback. + +Best, +Velocity Team",2025-02-05T00:00:00,"{""attachments"": 1, ""opened"": false}" +EML-00121,INT-001525,Document checklist for home loan application,user_001@velocity.desineuron.in,vivek.gupta22@rediffmail.com,"Hi Vivek, + +Following up on your site visit last week. Did you get a chance to discuss with your family? + +We have a limited period offer running till month-end. Happy to arrange a call to discuss. + +Regards, +Rahul Sharma",2024-10-25T00:00:00,"{""attachments"": 1, ""opened"": true}" +EML-00122,INT-001528,Introduction: Family decision maker meeting,user_003@velocity.desineuron.in,trisha.agarwal67@outlook.com,"Dear Mr./Ms. Agarwal, + +Greetings from Sugam Prakriti sales team. + +As requested, please find attached: +1. Price sheet +2. Payment plan +3. Home loan EMI calculator +4. Project specification sheet + +Looking forward to your feedback. + +Best, +Velocity Team",2025-05-12T00:00:00,"{""attachments"": 1, ""opened"": true}" +EML-00123,INT-001547,Introduction: Family decision maker meeting,user_002@velocity.desineuron.in,anirban.das36@outlook.com,"Dear Mr./Ms. Das, + +Greetings from Atri Surya Toron sales team. + +As requested, please find attached: +1. Price sheet +2. Payment plan +3. Home loan EMI calculator +4. Project specification sheet + +Looking forward to your feedback. + +Best, +Velocity Team",2024-09-09T00:00:00,"{""attachments"": 3, ""opened"": false}" +EML-00124,INT-001559,Introduction: Family decision maker meeting,user_003@velocity.desineuron.in,priya.das62@gmail.com,"Dear Priya, + +Thank you for your interest in Shriram Grand City. As discussed, I have attached the brochure and floor plans. + +The unit you liked (Unit D20-840) is currently available at Rs 7.84 Cr. + +Please let me know a convenient time for your next visit. + +Best regards, +Velocity Realty Team",2025-09-04T00:00:00,"{""attachments"": 0, ""opened"": false}" +EML-00125,INT-001575,Document checklist for home loan application,user_001@velocity.desineuron.in,vidya.saha29@hotmail.com,"Dear Mr./Ms. Saha, + +Greetings from Atri Surya Toron sales team. + +As requested, please find attached: +1. Price sheet +2. Payment plan +3. Home loan EMI calculator +4. Project specification sheet + +Looking forward to your feedback. + +Best, +Velocity Team",2025-05-10T00:00:00,"{""attachments"": 1, ""opened"": true}" +EML-00126,INT-001586,Project Brochure and Floor Plans,user_003@velocity.desineuron.in,sonal.banerjee91@gmail.com,"Hi Sonal, + +Following up on your site visit last week. Did you get a chance to discuss with your family? + +We have a limited period offer running till month-end. Happy to arrange a call to discuss. + +Regards, +Rahul Sharma",2024-07-17T00:00:00,"{""attachments"": 0, ""opened"": true}" +EML-00127,INT-001593,Site Visit Confirmation - Ambuja Utpaala,user_003@velocity.desineuron.in,sneha.reddy81@hotmail.com,"Hi Sneha, + +Following up on your site visit last week. Did you get a chance to discuss with your family? + +We have a limited period offer running till month-end. Happy to arrange a call to discuss. + +Regards, +Priya Banerjee",2025-10-03T00:00:00,"{""attachments"": 2, ""opened"": true}" +EML-00128,INT-001601,Re: Pricing discussion for DTC Good Earth,user_002@velocity.desineuron.in,amit.jain88@hotmail.com,"Dear Mr./Ms. Jain, + +Greetings from DTC Good Earth sales team. + +As requested, please find attached: +1. Price sheet +2. Payment plan +3. Home loan EMI calculator +4. Project specification sheet + +Looking forward to your feedback. + +Best, +Velocity Team",2025-02-10T00:00:00,"{""attachments"": 1, ""opened"": true}" +EML-00129,INT-001608,Site Visit Confirmation - Ambuja Utpaala,user_004@velocity.desineuron.in,moumita.das59@gmail.com,"Dear Moumita, + +Thank you for your interest in Ambuja Utpaala. As discussed, I have attached the brochure and floor plans. + +The unit you liked (Unit A2-260) is currently available at Rs 2.68 Cr. + +Please let me know a convenient time for your next visit. + +Best regards, +Velocity Realty Team",2024-02-24T00:00:00,"{""attachments"": 3, ""opened"": true}" +EML-00130,INT-001635,Revised quote for Unit D4-368,user_002@velocity.desineuron.in,prasenjit.gupta23@outlook.com,"Hi Prasenjit, + +Following up on your site visit last week. Did you get a chance to discuss with your family? + +We have a limited period offer running till month-end. Happy to arrange a call to discuss. + +Regards, +Rahul Sharma",2024-05-06T00:00:00,"{""attachments"": 2, ""opened"": true}" +EML-00131,INT-001663,Follow-up: Site visit feedback,user_005@velocity.desineuron.in,aditya.pillai73@yahoo.com,"Dear Mr./Ms. Pillai, + +Greetings from DTC Sojon sales team. + +As requested, please find attached: +1. Price sheet +2. Payment plan +3. Home loan EMI calculator +4. Project specification sheet + +Looking forward to your feedback. + +Best, +Velocity Team",2025-03-28T00:00:00,"{""attachments"": 3, ""opened"": true}" +EML-00132,INT-001668,Revised quote for Unit A10-2390,user_005@velocity.desineuron.in,raj.pillai50@gmail.com,"Dear Raj, + +Thank you for your interest in Godrej Blue. As discussed, I have attached the brochure and floor plans. + +The unit you liked (Unit A10-2390) is currently available at Rs 7.26 Cr. + +Please let me know a convenient time for your next visit. + +Best regards, +Velocity Realty Team",2024-10-11T00:00:00,"{""attachments"": 3, ""opened"": true}" +EML-00133,INT-001671,Payment schedule and offer details,user_005@velocity.desineuron.in,sanjay.das90@outlook.com,"Dear Sanjay, + +Thank you for your interest in Atri Aqua. As discussed, I have attached the brochure and floor plans. + +The unit you liked (Unit C17-1473) is currently available at Rs 10.59 Cr. + +Please let me know a convenient time for your next visit. + +Best regards, +Velocity Realty Team",2026-01-22T00:00:00,"{""attachments"": 3, ""opened"": true}" +EML-00134,INT-001684,Project Brochure and Floor Plans,user_004@velocity.desineuron.in,vikram.chatterjee20@gmail.com,"Hi Vikram, + +Following up on your site visit last week. Did you get a chance to discuss with your family? + +We have a limited period offer running till month-end. Happy to arrange a call to discuss. + +Regards, +Priya Banerjee",2025-07-21T00:00:00,"{""attachments"": 1, ""opened"": true}" +EML-00135,INT-001696,Re: Pricing discussion for Siddha Serena,user_003@velocity.desineuron.in,amit.gupta20@outlook.com,"Hi Amit, + +Following up on your site visit last week. Did you get a chance to discuss with your family? + +We have a limited period offer running till month-end. Happy to arrange a call to discuss. + +Regards, +Rahul Sharma",2024-10-18T00:00:00,"{""attachments"": 2, ""opened"": true}" +EML-00136,INT-001698,Revised quote for Unit C6-551,user_003@velocity.desineuron.in,amit.gupta20@outlook.com,"Dear Amit, + +Thank you for your interest in Siddha Serena. As discussed, I have attached the brochure and floor plans. + +The unit you liked (Unit C6-551) is currently available at Rs 9.73 Cr. + +Please let me know a convenient time for your next visit. + +Best regards, +Velocity Realty Team",2024-10-31T00:00:00,"{""attachments"": 0, ""opened"": true}" +EML-00137,INT-001701,Re: Pricing discussion for Siddha Serena,user_003@velocity.desineuron.in,amit.gupta20@outlook.com,"Hi Amit, + +Following up on your site visit last week. Did you get a chance to discuss with your family? + +We have a limited period offer running till month-end. Happy to arrange a call to discuss. + +Regards, +Vikram Patel",2024-12-03T00:00:00,"{""attachments"": 2, ""opened"": true}" +EML-00138,INT-001706,Re: Pricing discussion for Godrej Elevate,user_005@velocity.desineuron.in,riya.agarwal75@gmail.com,"Hi Riya, + +Following up on your site visit last week. Did you get a chance to discuss with your family? + +We have a limited period offer running till month-end. Happy to arrange a call to discuss. + +Regards, +Vikram Patel",2024-04-02T00:00:00,"{""attachments"": 0, ""opened"": true}" +EML-00139,INT-001709,Introduction: Family decision maker meeting,user_002@velocity.desineuron.in,arjun.singh97@yahoo.com,"Dear Mr./Ms. Singh, + +Greetings from Godrej Elevate sales team. + +As requested, please find attached: +1. Price sheet +2. Payment plan +3. Home loan EMI calculator +4. Project specification sheet + +Looking forward to your feedback. + +Best, +Velocity Team",2026-01-17T00:00:00,"{""attachments"": 1, ""opened"": true}" +EML-00140,INT-001710,Payment schedule and offer details,user_002@velocity.desineuron.in,arjun.singh97@yahoo.com,"Dear Arjun, + +Thank you for your interest in Godrej Elevate. As discussed, I have attached the brochure and floor plans. + +The unit you liked (Unit A18-2321) is currently available at Rs 3.01 Cr. + +Please let me know a convenient time for your next visit. + +Best regards, +Velocity Realty Team",2026-01-19T00:00:00,"{""attachments"": 0, ""opened"": true}" +EML-00141,INT-001716,Revised quote for Unit A2-1454,user_001@velocity.desineuron.in,ananya.chatterjee50@hotmail.com,"Dear Ananya, + +Thank you for your interest in Sugam Prakriti. As discussed, I have attached the brochure and floor plans. + +The unit you liked (Unit A2-1454) is currently available at Rs 4.72 Cr. + +Please let me know a convenient time for your next visit. + +Best regards, +Velocity Realty Team",2025-06-01T00:00:00,"{""attachments"": 0, ""opened"": false}" +EML-00142,INT-001728,Site Visit Confirmation - Siddha Suburbia Bungalow,user_002@velocity.desineuron.in,ritu.roy72@hotmail.com,"Dear Ritu, + +Thank you for your interest in Siddha Suburbia Bungalow. As discussed, I have attached the brochure and floor plans. + +The unit you liked (Unit D4-368) is currently available at Rs 9.74 Cr. + +Please let me know a convenient time for your next visit. + +Best regards, +Velocity Realty Team",2025-10-11T00:00:00,"{""attachments"": 0, ""opened"": true}" +EML-00143,INT-001780,Project Brochure and Floor Plans,user_004@velocity.desineuron.in,prasenjit.das43@rediffmail.com,"Dear Prasenjit, + +Thank you for your interest in Shriram Grand City. As discussed, I have attached the brochure and floor plans. + +The unit you liked (Unit D9-250) is currently available at Rs 5.87 Cr. + +Please let me know a convenient time for your next visit. + +Best regards, +Velocity Realty Team",2025-07-03T00:00:00,"{""attachments"": 1, ""opened"": true}" +EML-00144,INT-001794,Introduction: Family decision maker meeting,user_004@velocity.desineuron.in,deb.agarwal72@gmail.com,"Dear Deb, + +Thank you for your interest in Sugam Prakriti. As discussed, I have attached the brochure and floor plans. + +The unit you liked (Unit D11-548) is currently available at Rs 9.69 Cr. + +Please let me know a convenient time for your next visit. + +Best regards, +Velocity Realty Team",2025-08-02T00:00:00,"{""attachments"": 1, ""opened"": false}" +EML-00145,INT-001825,Site Visit Confirmation - Sugam Prakriti,user_005@velocity.desineuron.in,parth.das98@outlook.com,"Dear Mr./Ms. Das, + +Greetings from Sugam Prakriti sales team. + +As requested, please find attached: +1. Price sheet +2. Payment plan +3. Home loan EMI calculator +4. Project specification sheet + +Looking forward to your feedback. + +Best, +Velocity Team",2025-03-21T00:00:00,"{""attachments"": 0, ""opened"": true}" +EML-00146,INT-001836,Follow-up: Site visit feedback,user_002@velocity.desineuron.in,abhishek.singh77@outlook.com,"Dear Mr./Ms. Singh, + +Greetings from Atri Surya Toron sales team. + +As requested, please find attached: +1. Price sheet +2. Payment plan +3. Home loan EMI calculator +4. Project specification sheet + +Looking forward to your feedback. + +Best, +Velocity Team",2026-01-13T00:00:00,"{""attachments"": 0, ""opened"": true}" +EML-00147,INT-001843,Site Visit Confirmation - Godrej Blue,user_002@velocity.desineuron.in,moumita.banerjee72@rediffmail.com,"Hi Moumita, + +Following up on your site visit last week. Did you get a chance to discuss with your family? + +We have a limited period offer running till month-end. Happy to arrange a call to discuss. + +Regards, +Priya Banerjee",2025-05-22T00:00:00,"{""attachments"": 0, ""opened"": true}" +EML-00148,INT-001861,Revised quote for Unit D8-1940,user_004@velocity.desineuron.in,ananya.kumar61@outlook.com,"Dear Mr./Ms. Kumar, + +Greetings from Eden Devprayag sales team. + +As requested, please find attached: +1. Price sheet +2. Payment plan +3. Home loan EMI calculator +4. Project specification sheet + +Looking forward to your feedback. + +Best, +Velocity Team",2024-03-01T00:00:00,"{""attachments"": 2, ""opened"": true}" +EML-00149,INT-001897,Re: Pricing discussion for Merlin Avana,user_003@velocity.desineuron.in,pallavi.ghosh63@gmail.com,"Hi Pallavi, + +Following up on your site visit last week. Did you get a chance to discuss with your family? + +We have a limited period offer running till month-end. Happy to arrange a call to discuss. + +Regards, +Rahul Sharma",2025-06-18T00:00:00,"{""attachments"": 1, ""opened"": true}" diff --git a/db assets/synthetic_crm_v1/csv/intel_interactions.csv b/db assets/synthetic_crm_v1/csv/intel_interactions.csv new file mode 100644 index 00000000..604b977d --- /dev/null +++ b/db assets/synthetic_crm_v1/csv/intel_interactions.csv @@ -0,0 +1,1898 @@ +interaction_id,person_id,channel,interaction_type,happened_at,summary,source_ref +INT-000001,PER-0001,web_enquiry,initial_enquiry,2025-09-19T00:00:00,Initial Enquiry via web_enquiry regarding DTC Sojon,manual_entry +INT-000002,PER-0001,whatsapp,document_sharing,2025-09-24T00:00:00,Document Sharing via whatsapp regarding DTC Sojon,site_visit_log +INT-000003,PER-0001,whatsapp,initial_enquiry,2025-10-17T00:00:00,Initial Enquiry via whatsapp regarding DTC Sojon,whatsapp_api +INT-000004,PER-0001,site_visit,site_visit,2025-10-18T00:00:00,Site Visit via site_visit regarding DTC Sojon,whatsapp_api +INT-000005,PER-0001,whatsapp,site_visit,2025-10-18T00:00:00,Site Visit via whatsapp regarding DTC Sojon,manual_entry +INT-000006,PER-0001,phone_call,initial_enquiry,2025-10-19T00:00:00,Initial Enquiry via phone_call regarding DTC Sojon,whatsapp_api +INT-000007,PER-0001,whatsapp,family_discussion,2025-10-21T00:00:00,Family Discussion via whatsapp regarding DTC Sojon,manual_entry +INT-000008,PER-0001,site_visit,site_visit,2025-10-22T00:00:00,Site Visit via site_visit regarding DTC Sojon,whatsapp_api +INT-000009,PER-0001,whatsapp,document_sharing,2025-11-08T00:00:00,Document Sharing via whatsapp regarding DTC Sojon,whatsapp_api +INT-000010,PER-0001,site_visit,site_visit,2025-11-15T00:00:00,Site Visit via site_visit regarding DTC Sojon,manual_entry +INT-000011,PER-0001,site_visit,site_visit,2025-11-25T00:00:00,Site Visit via site_visit regarding DTC Sojon,manual_entry +INT-000012,PER-0001,phone_call,site_visit,2025-12-02T00:00:00,Site Visit via phone_call regarding DTC Sojon,email_sync +INT-000013,PER-0001,whatsapp,follow_up,2025-12-13T00:00:00,Follow Up via whatsapp regarding DTC Sojon,manual_entry +INT-000014,PER-0002,walk_in,initial_enquiry,2024-12-20T00:00:00,Initial Enquiry via walk_in regarding Atri Surya Toron,email_sync +INT-000015,PER-0002,phone_call,site_visit,2025-01-15T00:00:00,Site Visit via phone_call regarding Atri Surya Toron,manual_entry +INT-000016,PER-0002,email,family_discussion,2025-02-05T00:00:00,Family Discussion via email regarding Atri Surya Toron,whatsapp_api +INT-000017,PER-0002,whatsapp,initial_enquiry,2025-02-08T00:00:00,Initial Enquiry via whatsapp regarding Atri Surya Toron,site_visit_log +INT-000018,PER-0002,phone_call,family_discussion,2025-02-10T00:00:00,Family Discussion via phone_call regarding Atri Surya Toron,email_sync +INT-000019,PER-0002,whatsapp,document_sharing,2025-02-13T00:00:00,Document Sharing via whatsapp regarding Atri Surya Toron,manual_entry +INT-000020,PER-0002,phone_call,price_discussion,2025-02-18T00:00:00,Price Discussion via phone_call regarding Atri Surya Toron,site_visit_log +INT-000021,PER-0003,web_enquiry,initial_enquiry,2024-12-05T00:00:00,Initial Enquiry via web_enquiry regarding Godrej Elevate,manual_entry +INT-000022,PER-0003,phone_call,negotiation,2024-12-07T00:00:00,Negotiation via phone_call regarding Godrej Elevate,site_visit_log +INT-000023,PER-0003,whatsapp,site_visit,2025-02-27T00:00:00,Site Visit via whatsapp regarding Godrej Elevate,call_logs +INT-000024,PER-0004,web_enquiry,initial_enquiry,2025-04-19T00:00:00,Initial Enquiry via web_enquiry regarding Ambuja Utpaala,site_visit_log +INT-000025,PER-0004,phone_call,negotiation,2025-05-12T00:00:00,Negotiation via phone_call regarding Ambuja Utpaala,site_visit_log +INT-000026,PER-0004,whatsapp,initial_enquiry,2025-05-17T00:00:00,Initial Enquiry via whatsapp regarding Ambuja Utpaala,email_sync +INT-000027,PER-0004,whatsapp,price_discussion,2025-05-22T00:00:00,Price Discussion via whatsapp regarding Ambuja Utpaala,manual_entry +INT-000028,PER-0004,whatsapp,negotiation,2025-05-24T00:00:00,Negotiation via whatsapp regarding Ambuja Utpaala,whatsapp_api +INT-000029,PER-0004,site_visit,site_visit,2025-05-29T00:00:00,Site Visit via site_visit regarding Ambuja Utpaala,site_visit_log +INT-000030,PER-0004,phone_call,price_discussion,2025-05-30T00:00:00,Price Discussion via phone_call regarding Ambuja Utpaala,whatsapp_api +INT-000031,PER-0004,whatsapp,price_discussion,2025-06-17T00:00:00,Price Discussion via whatsapp regarding Ambuja Utpaala,site_visit_log +INT-000032,PER-0004,site_visit,site_visit,2025-07-06T00:00:00,Site Visit via site_visit regarding Ambuja Utpaala,whatsapp_api +INT-000033,PER-0005,walk_in,initial_enquiry,2024-06-06T00:00:00,Initial Enquiry via walk_in regarding Shriram Grand City,manual_entry +INT-000034,PER-0005,whatsapp,follow_up,2024-06-08T00:00:00,Follow Up via whatsapp regarding Shriram Grand City,whatsapp_api +INT-000035,PER-0005,email,family_discussion,2024-06-21T00:00:00,Family Discussion via email regarding Shriram Grand City,manual_entry +INT-000036,PER-0005,site_visit,site_visit,2024-06-22T00:00:00,Site Visit via site_visit regarding Shriram Grand City,whatsapp_api +INT-000037,PER-0005,phone_call,initial_enquiry,2024-06-29T00:00:00,Initial Enquiry via phone_call regarding Shriram Grand City,call_logs +INT-000038,PER-0005,whatsapp,negotiation,2024-06-30T00:00:00,Negotiation via whatsapp regarding Shriram Grand City,call_logs +INT-000039,PER-0005,site_visit,site_visit,2024-07-13T00:00:00,Site Visit via site_visit regarding Shriram Grand City,whatsapp_api +INT-000040,PER-0005,whatsapp,price_discussion,2024-07-30T00:00:00,Price Discussion via whatsapp regarding Shriram Grand City,manual_entry +INT-000041,PER-0005,site_visit,site_visit,2024-07-30T00:00:00,Site Visit via site_visit regarding Shriram Grand City,call_logs +INT-000042,PER-0005,whatsapp,initial_enquiry,2024-08-01T00:00:00,Initial Enquiry via whatsapp regarding Shriram Grand City,whatsapp_api +INT-000043,PER-0005,site_visit,site_visit,2024-08-05T00:00:00,Site Visit via site_visit regarding Shriram Grand City,whatsapp_api +INT-000044,PER-0005,site_visit,site_visit,2024-08-13T00:00:00,Site Visit via site_visit regarding Shriram Grand City,site_visit_log +INT-000045,PER-0006,web_enquiry,initial_enquiry,2024-07-29T00:00:00,Initial Enquiry via web_enquiry regarding Sugam Prakriti,whatsapp_api +INT-000046,PER-0006,phone_call,initial_enquiry,2024-09-02T00:00:00,Initial Enquiry via phone_call regarding Sugam Prakriti,manual_entry +INT-000047,PER-0006,email,document_sharing,2024-09-17T00:00:00,Document Sharing via email regarding Sugam Prakriti,site_visit_log +INT-000048,PER-0007,web_enquiry,initial_enquiry,2024-07-29T00:00:00,Initial Enquiry via web_enquiry regarding DTC Sojon,site_visit_log +INT-000049,PER-0007,whatsapp,follow_up,2024-08-07T00:00:00,Follow Up via whatsapp regarding DTC Sojon,email_sync +INT-000050,PER-0007,whatsapp,initial_enquiry,2024-08-10T00:00:00,Initial Enquiry via whatsapp regarding DTC Sojon,whatsapp_api +INT-000051,PER-0007,phone_call,negotiation,2024-08-18T00:00:00,Negotiation via phone_call regarding DTC Sojon,manual_entry +INT-000052,PER-0007,phone_call,family_discussion,2024-08-23T00:00:00,Family Discussion via phone_call regarding DTC Sojon,manual_entry +INT-000053,PER-0007,whatsapp,price_discussion,2024-09-25T00:00:00,Price Discussion via whatsapp regarding DTC Sojon,call_logs +INT-000054,PER-0007,site_visit,site_visit,2024-09-25T00:00:00,Site Visit via site_visit regarding DTC Sojon,site_visit_log +INT-000055,PER-0007,site_visit,site_visit,2024-10-05T00:00:00,Site Visit via site_visit regarding DTC Sojon,whatsapp_api +INT-000056,PER-0008,web_enquiry,initial_enquiry,2025-08-02T00:00:00,Initial Enquiry via web_enquiry regarding DTC Sojon,whatsapp_api +INT-000057,PER-0008,whatsapp,negotiation,2025-09-11T00:00:00,Negotiation via whatsapp regarding DTC Sojon,site_visit_log +INT-000058,PER-0008,email,follow_up,2025-09-22T00:00:00,Follow Up via email regarding DTC Sojon,call_logs +INT-000059,PER-0008,phone_call,site_visit,2025-10-08T00:00:00,Site Visit via phone_call regarding DTC Sojon,site_visit_log +INT-000060,PER-0008,whatsapp,document_sharing,2025-10-09T00:00:00,Document Sharing via whatsapp regarding DTC Sojon,email_sync +INT-000061,PER-0008,phone_call,initial_enquiry,2025-10-23T00:00:00,Initial Enquiry via phone_call regarding DTC Sojon,whatsapp_api +INT-000062,PER-0008,email,document_sharing,2025-10-28T00:00:00,Document Sharing via email regarding DTC Sojon,email_sync +INT-000063,PER-0009,referral,initial_enquiry,2026-03-02T00:00:00,Initial Enquiry via referral regarding Atri Aqua,call_logs +INT-000064,PER-0009,whatsapp,family_discussion,2026-03-28T00:00:00,Family Discussion via whatsapp regarding Atri Aqua,call_logs +INT-000065,PER-0009,email,document_sharing,2026-03-28T00:00:00,Document Sharing via email regarding Atri Aqua,whatsapp_api +INT-000066,PER-0009,walk_in,negotiation,2026-04-17T00:00:00,Negotiation via walk_in regarding Atri Aqua,whatsapp_api +INT-000067,PER-0009,web_enquiry,price_discussion,2026-04-19T00:00:00,Price Discussion via web_enquiry regarding Atri Aqua,whatsapp_api +INT-000068,PER-0009,walk_in,family_discussion,2026-05-09T00:00:00,Family Discussion via walk_in regarding Atri Aqua,email_sync +INT-000069,PER-0010,referral,initial_enquiry,2024-04-16T00:00:00,Initial Enquiry via referral regarding Siddha Suburbia Bungalow,whatsapp_api +INT-000070,PER-0010,phone_call,initial_enquiry,2024-05-02T00:00:00,Initial Enquiry via phone_call regarding Siddha Suburbia Bungalow,site_visit_log +INT-000071,PER-0010,whatsapp,family_discussion,2024-05-05T00:00:00,Family Discussion via whatsapp regarding Siddha Suburbia Bungalow,manual_entry +INT-000072,PER-0010,walk_in,initial_enquiry,2024-06-01T00:00:00,Initial Enquiry via walk_in regarding Siddha Suburbia Bungalow,email_sync +INT-000073,PER-0011,referral,initial_enquiry,2025-05-31T00:00:00,Initial Enquiry via referral regarding Siddha Serena,whatsapp_api +INT-000074,PER-0011,phone_call,family_discussion,2025-06-02T00:00:00,Family Discussion via phone_call regarding Siddha Serena,manual_entry +INT-000075,PER-0011,whatsapp,price_discussion,2025-07-01T00:00:00,Price Discussion via whatsapp regarding Siddha Serena,email_sync +INT-000076,PER-0011,whatsapp,negotiation,2025-08-01T00:00:00,Negotiation via whatsapp regarding Siddha Serena,manual_entry +INT-000077,PER-0012,web_enquiry,initial_enquiry,2024-04-04T00:00:00,Initial Enquiry via web_enquiry regarding Sugam Prakriti,site_visit_log +INT-000078,PER-0012,whatsapp,document_sharing,2024-04-20T00:00:00,Document Sharing via whatsapp regarding Sugam Prakriti,site_visit_log +INT-000079,PER-0012,whatsapp,initial_enquiry,2024-04-22T00:00:00,Initial Enquiry via whatsapp regarding Sugam Prakriti,whatsapp_api +INT-000080,PER-0012,whatsapp,document_sharing,2024-05-18T00:00:00,Document Sharing via whatsapp regarding Sugam Prakriti,manual_entry +INT-000081,PER-0012,whatsapp,initial_enquiry,2024-06-07T00:00:00,Initial Enquiry via whatsapp regarding Sugam Prakriti,manual_entry +INT-000082,PER-0013,web_enquiry,initial_enquiry,2025-02-20T00:00:00,Initial Enquiry via web_enquiry regarding Atri Surya Toron,call_logs +INT-000083,PER-0013,phone_call,family_discussion,2025-03-15T00:00:00,Family Discussion via phone_call regarding Atri Surya Toron,call_logs +INT-000084,PER-0013,whatsapp,initial_enquiry,2025-03-17T00:00:00,Initial Enquiry via whatsapp regarding Atri Surya Toron,whatsapp_api +INT-000085,PER-0013,whatsapp,initial_enquiry,2025-04-03T00:00:00,Initial Enquiry via whatsapp regarding Atri Surya Toron,site_visit_log +INT-000086,PER-0013,site_visit,site_visit,2025-04-08T00:00:00,Site Visit via site_visit regarding Atri Surya Toron,call_logs +INT-000087,PER-0013,site_visit,site_visit,2025-04-15T00:00:00,Site Visit via site_visit regarding Atri Surya Toron,manual_entry +INT-000088,PER-0013,web_enquiry,price_discussion,2025-04-28T00:00:00,Price Discussion via web_enquiry regarding Atri Surya Toron,call_logs +INT-000089,PER-0014,web_enquiry,initial_enquiry,2025-12-29T00:00:00,Initial Enquiry via web_enquiry regarding Siddha Serena,manual_entry +INT-000090,PER-0014,whatsapp,initial_enquiry,2025-12-31T00:00:00,Initial Enquiry via whatsapp regarding Siddha Serena,manual_entry +INT-000091,PER-0014,whatsapp,site_visit,2026-01-03T00:00:00,Site Visit via whatsapp regarding Siddha Serena,site_visit_log +INT-000092,PER-0014,whatsapp,document_sharing,2026-01-06T00:00:00,Document Sharing via whatsapp regarding Siddha Serena,call_logs +INT-000093,PER-0014,whatsapp,document_sharing,2026-01-18T00:00:00,Document Sharing via whatsapp regarding Siddha Serena,call_logs +INT-000094,PER-0014,phone_call,initial_enquiry,2026-02-05T00:00:00,Initial Enquiry via phone_call regarding Siddha Serena,whatsapp_api +INT-000095,PER-0014,site_visit,site_visit,2026-02-14T00:00:00,Site Visit via site_visit regarding Siddha Serena,email_sync +INT-000096,PER-0014,whatsapp,price_discussion,2026-02-21T00:00:00,Price Discussion via whatsapp regarding Siddha Serena,site_visit_log +INT-000097,PER-0014,site_visit,site_visit,2026-02-27T00:00:00,Site Visit via site_visit regarding Siddha Serena,email_sync +INT-000098,PER-0015,web_enquiry,initial_enquiry,2025-04-24T00:00:00,Initial Enquiry via web_enquiry regarding Atri Aqua,manual_entry +INT-000099,PER-0015,whatsapp,price_discussion,2025-05-22T00:00:00,Price Discussion via whatsapp regarding Atri Aqua,site_visit_log +INT-000100,PER-0015,email,follow_up,2025-06-01T00:00:00,Follow Up via email regarding Atri Aqua,call_logs +INT-000101,PER-0015,phone_call,document_sharing,2025-06-25T00:00:00,Document Sharing via phone_call regarding Atri Aqua,call_logs +INT-000102,PER-0015,site_visit,site_visit,2025-06-29T00:00:00,Site Visit via site_visit regarding Atri Aqua,email_sync +INT-000103,PER-0016,walk_in,initial_enquiry,2024-04-11T00:00:00,Initial Enquiry via walk_in regarding Ambuja Utpaala,manual_entry +INT-000104,PER-0016,whatsapp,family_discussion,2024-05-08T00:00:00,Family Discussion via whatsapp regarding Ambuja Utpaala,call_logs +INT-000105,PER-0016,whatsapp,family_discussion,2024-05-17T00:00:00,Family Discussion via whatsapp regarding Ambuja Utpaala,email_sync +INT-000106,PER-0016,phone_call,site_visit,2024-06-10T00:00:00,Site Visit via phone_call regarding Ambuja Utpaala,site_visit_log +INT-000107,PER-0016,site_visit,site_visit,2024-06-16T00:00:00,Site Visit via site_visit regarding Ambuja Utpaala,whatsapp_api +INT-000108,PER-0017,referral,initial_enquiry,2026-01-28T00:00:00,Initial Enquiry via referral regarding Godrej Blue,manual_entry +INT-000109,PER-0017,whatsapp,price_discussion,2026-01-29T00:00:00,Price Discussion via whatsapp regarding Godrej Blue,whatsapp_api +INT-000110,PER-0017,email,family_discussion,2026-03-20T00:00:00,Family Discussion via email regarding Godrej Blue,call_logs +INT-000111,PER-0018,web_enquiry,initial_enquiry,2024-12-12T00:00:00,Initial Enquiry via web_enquiry regarding Eden Devprayag,email_sync +INT-000112,PER-0018,whatsapp,follow_up,2024-12-22T00:00:00,Follow Up via whatsapp regarding Eden Devprayag,manual_entry +INT-000113,PER-0018,whatsapp,family_discussion,2025-01-27T00:00:00,Family Discussion via whatsapp regarding Eden Devprayag,site_visit_log +INT-000114,PER-0019,referral,initial_enquiry,2026-02-02T00:00:00,Initial Enquiry via referral regarding Atri Aqua,whatsapp_api +INT-000115,PER-0019,whatsapp,family_discussion,2026-02-03T00:00:00,Family Discussion via whatsapp regarding Atri Aqua,call_logs +INT-000116,PER-0019,whatsapp,family_discussion,2026-02-08T00:00:00,Family Discussion via whatsapp regarding Atri Aqua,manual_entry +INT-000117,PER-0019,whatsapp,document_sharing,2026-02-09T00:00:00,Document Sharing via whatsapp regarding Atri Aqua,manual_entry +INT-000118,PER-0019,whatsapp,follow_up,2026-02-20T00:00:00,Follow Up via whatsapp regarding Atri Aqua,site_visit_log +INT-000119,PER-0019,referral,follow_up,2026-02-26T00:00:00,Follow Up via referral regarding Atri Aqua,whatsapp_api +INT-000120,PER-0019,whatsapp,follow_up,2026-03-03T00:00:00,Follow Up via whatsapp regarding Atri Aqua,manual_entry +INT-000121,PER-0019,web_enquiry,price_discussion,2026-03-06T00:00:00,Price Discussion via web_enquiry regarding Atri Aqua,email_sync +INT-000122,PER-0019,whatsapp,initial_enquiry,2026-03-24T00:00:00,Initial Enquiry via whatsapp regarding Atri Aqua,site_visit_log +INT-000123,PER-0019,whatsapp,initial_enquiry,2026-04-09T00:00:00,Initial Enquiry via whatsapp regarding Atri Aqua,whatsapp_api +INT-000124,PER-0020,web_enquiry,initial_enquiry,2024-10-23T00:00:00,Initial Enquiry via web_enquiry regarding Merlin Avana,site_visit_log +INT-000125,PER-0020,phone_call,negotiation,2024-12-03T00:00:00,Negotiation via phone_call regarding Merlin Avana,site_visit_log +INT-000126,PER-0020,whatsapp,document_sharing,2024-12-06T00:00:00,Document Sharing via whatsapp regarding Merlin Avana,email_sync +INT-000127,PER-0020,referral,family_discussion,2024-12-07T00:00:00,Family Discussion via referral regarding Merlin Avana,manual_entry +INT-000128,PER-0021,walk_in,initial_enquiry,2024-07-29T00:00:00,Initial Enquiry via walk_in regarding Atri Surya Toron,manual_entry +INT-000129,PER-0021,whatsapp,site_visit,2024-08-04T00:00:00,Site Visit via whatsapp regarding Atri Surya Toron,email_sync +INT-000130,PER-0021,email,initial_enquiry,2024-08-29T00:00:00,Initial Enquiry via email regarding Atri Surya Toron,call_logs +INT-000131,PER-0021,whatsapp,follow_up,2024-08-31T00:00:00,Follow Up via whatsapp regarding Atri Surya Toron,whatsapp_api +INT-000132,PER-0021,whatsapp,follow_up,2024-09-04T00:00:00,Follow Up via whatsapp regarding Atri Surya Toron,site_visit_log +INT-000133,PER-0021,site_visit,site_visit,2024-09-16T00:00:00,Site Visit via site_visit regarding Atri Surya Toron,email_sync +INT-000134,PER-0021,phone_call,price_discussion,2024-09-17T00:00:00,Price Discussion via phone_call regarding Atri Surya Toron,manual_entry +INT-000135,PER-0021,whatsapp,document_sharing,2024-09-23T00:00:00,Document Sharing via whatsapp regarding Atri Surya Toron,call_logs +INT-000136,PER-0022,web_enquiry,initial_enquiry,2024-06-20T00:00:00,Initial Enquiry via web_enquiry regarding Siddha Suburbia Bungalow,whatsapp_api +INT-000137,PER-0022,whatsapp,family_discussion,2024-06-25T00:00:00,Family Discussion via whatsapp regarding Siddha Suburbia Bungalow,call_logs +INT-000138,PER-0022,email,initial_enquiry,2024-07-09T00:00:00,Initial Enquiry via email regarding Siddha Suburbia Bungalow,email_sync +INT-000139,PER-0022,email,initial_enquiry,2024-07-19T00:00:00,Initial Enquiry via email regarding Siddha Suburbia Bungalow,call_logs +INT-000140,PER-0022,email,family_discussion,2024-07-30T00:00:00,Family Discussion via email regarding Siddha Suburbia Bungalow,call_logs +INT-000141,PER-0023,referral,initial_enquiry,2024-12-29T00:00:00,Initial Enquiry via referral regarding Atri Surya Toron,manual_entry +INT-000142,PER-0023,phone_call,follow_up,2024-12-31T00:00:00,Follow Up via phone_call regarding Atri Surya Toron,call_logs +INT-000143,PER-0023,email,price_discussion,2024-12-31T00:00:00,Price Discussion via email regarding Atri Surya Toron,manual_entry +INT-000144,PER-0023,whatsapp,document_sharing,2025-02-16T00:00:00,Document Sharing via whatsapp regarding Atri Surya Toron,whatsapp_api +INT-000145,PER-0024,web_enquiry,initial_enquiry,2025-12-31T00:00:00,Initial Enquiry via web_enquiry regarding Merlin Avana,email_sync +INT-000146,PER-0024,phone_call,price_discussion,2026-01-04T00:00:00,Price Discussion via phone_call regarding Merlin Avana,manual_entry +INT-000147,PER-0024,email,price_discussion,2026-01-13T00:00:00,Price Discussion via email regarding Merlin Avana,email_sync +INT-000148,PER-0024,whatsapp,follow_up,2026-01-26T00:00:00,Follow Up via whatsapp regarding Merlin Avana,whatsapp_api +INT-000149,PER-0024,whatsapp,family_discussion,2026-02-07T00:00:00,Family Discussion via whatsapp regarding Merlin Avana,manual_entry +INT-000150,PER-0024,site_visit,site_visit,2026-02-08T00:00:00,Site Visit via site_visit regarding Merlin Avana,whatsapp_api +INT-000151,PER-0024,site_visit,site_visit,2026-02-10T00:00:00,Site Visit via site_visit regarding Merlin Avana,site_visit_log +INT-000152,PER-0024,whatsapp,family_discussion,2026-02-11T00:00:00,Family Discussion via whatsapp regarding Merlin Avana,site_visit_log +INT-000153,PER-0024,whatsapp,initial_enquiry,2026-02-13T00:00:00,Initial Enquiry via whatsapp regarding Merlin Avana,site_visit_log +INT-000154,PER-0024,phone_call,initial_enquiry,2026-03-08T00:00:00,Initial Enquiry via phone_call regarding Merlin Avana,call_logs +INT-000155,PER-0024,whatsapp,price_discussion,2026-03-23T00:00:00,Price Discussion via whatsapp regarding Merlin Avana,manual_entry +INT-000156,PER-0025,web_enquiry,initial_enquiry,2024-07-16T00:00:00,Initial Enquiry via web_enquiry regarding Sugam Prakriti,manual_entry +INT-000157,PER-0025,whatsapp,document_sharing,2024-08-03T00:00:00,Document Sharing via whatsapp regarding Sugam Prakriti,manual_entry +INT-000158,PER-0025,whatsapp,follow_up,2024-08-05T00:00:00,Follow Up via whatsapp regarding Sugam Prakriti,site_visit_log +INT-000159,PER-0026,walk_in,initial_enquiry,2025-02-08T00:00:00,Initial Enquiry via walk_in regarding Godrej Elevate,email_sync +INT-000160,PER-0026,whatsapp,document_sharing,2025-03-05T00:00:00,Document Sharing via whatsapp regarding Godrej Elevate,whatsapp_api +INT-000161,PER-0026,whatsapp,price_discussion,2025-03-09T00:00:00,Price Discussion via whatsapp regarding Godrej Elevate,site_visit_log +INT-000162,PER-0026,email,negotiation,2025-03-11T00:00:00,Negotiation via email regarding Godrej Elevate,call_logs +INT-000163,PER-0026,email,follow_up,2025-03-11T00:00:00,Follow Up via email regarding Godrej Elevate,email_sync +INT-000164,PER-0026,referral,family_discussion,2025-04-16T00:00:00,Family Discussion via referral regarding Godrej Elevate,site_visit_log +INT-000165,PER-0026,phone_call,initial_enquiry,2025-04-25T00:00:00,Initial Enquiry via phone_call regarding Godrej Elevate,whatsapp_api +INT-000166,PER-0027,walk_in,initial_enquiry,2024-07-02T00:00:00,Initial Enquiry via walk_in regarding Atri Aqua,call_logs +INT-000167,PER-0027,phone_call,family_discussion,2024-07-09T00:00:00,Family Discussion via phone_call regarding Atri Aqua,whatsapp_api +INT-000168,PER-0027,whatsapp,negotiation,2024-07-14T00:00:00,Negotiation via whatsapp regarding Atri Aqua,site_visit_log +INT-000169,PER-0027,referral,initial_enquiry,2024-08-01T00:00:00,Initial Enquiry via referral regarding Atri Aqua,manual_entry +INT-000170,PER-0027,email,site_visit,2024-08-03T00:00:00,Site Visit via email regarding Atri Aqua,site_visit_log +INT-000171,PER-0027,whatsapp,site_visit,2024-08-07T00:00:00,Site Visit via whatsapp regarding Atri Aqua,whatsapp_api +INT-000172,PER-0027,referral,document_sharing,2024-08-11T00:00:00,Document Sharing via referral regarding Atri Aqua,site_visit_log +INT-000173,PER-0027,web_enquiry,site_visit,2024-08-25T00:00:00,Site Visit via web_enquiry regarding Atri Aqua,whatsapp_api +INT-000174,PER-0027,whatsapp,negotiation,2024-09-05T00:00:00,Negotiation via whatsapp regarding Atri Aqua,email_sync +INT-000175,PER-0028,referral,initial_enquiry,2024-08-24T00:00:00,Initial Enquiry via referral regarding Siddha Serena,call_logs +INT-000176,PER-0028,phone_call,price_discussion,2024-09-04T00:00:00,Price Discussion via phone_call regarding Siddha Serena,whatsapp_api +INT-000177,PER-0028,whatsapp,price_discussion,2024-09-09T00:00:00,Price Discussion via whatsapp regarding Siddha Serena,manual_entry +INT-000178,PER-0028,walk_in,negotiation,2024-09-11T00:00:00,Negotiation via walk_in regarding Siddha Serena,manual_entry +INT-000179,PER-0028,phone_call,document_sharing,2024-10-26T00:00:00,Document Sharing via phone_call regarding Siddha Serena,whatsapp_api +INT-000180,PER-0028,referral,price_discussion,2024-11-11T00:00:00,Price Discussion via referral regarding Siddha Serena,email_sync +INT-000181,PER-0029,referral,initial_enquiry,2025-05-22T00:00:00,Initial Enquiry via referral regarding Atri Surya Toron,whatsapp_api +INT-000182,PER-0029,whatsapp,price_discussion,2025-05-30T00:00:00,Price Discussion via whatsapp regarding Atri Surya Toron,site_visit_log +INT-000183,PER-0029,whatsapp,family_discussion,2025-06-24T00:00:00,Family Discussion via whatsapp regarding Atri Surya Toron,call_logs +INT-000184,PER-0029,site_visit,site_visit,2025-07-01T00:00:00,Site Visit via site_visit regarding Atri Surya Toron,manual_entry +INT-000185,PER-0029,whatsapp,initial_enquiry,2025-07-02T00:00:00,Initial Enquiry via whatsapp regarding Atri Surya Toron,email_sync +INT-000186,PER-0030,referral,initial_enquiry,2024-11-09T00:00:00,Initial Enquiry via referral regarding Sugam Prakriti,site_visit_log +INT-000187,PER-0030,whatsapp,site_visit,2024-11-29T00:00:00,Site Visit via whatsapp regarding Sugam Prakriti,call_logs +INT-000188,PER-0030,email,negotiation,2024-12-06T00:00:00,Negotiation via email regarding Sugam Prakriti,call_logs +INT-000189,PER-0030,whatsapp,negotiation,2024-12-07T00:00:00,Negotiation via whatsapp regarding Sugam Prakriti,whatsapp_api +INT-000190,PER-0030,whatsapp,family_discussion,2024-12-09T00:00:00,Family Discussion via whatsapp regarding Sugam Prakriti,call_logs +INT-000191,PER-0030,site_visit,site_visit,2024-12-23T00:00:00,Site Visit via site_visit regarding Sugam Prakriti,site_visit_log +INT-000192,PER-0030,whatsapp,site_visit,2025-01-05T00:00:00,Site Visit via whatsapp regarding Sugam Prakriti,site_visit_log +INT-000193,PER-0030,whatsapp,family_discussion,2025-01-16T00:00:00,Family Discussion via whatsapp regarding Sugam Prakriti,manual_entry +INT-000194,PER-0030,whatsapp,family_discussion,2025-01-17T00:00:00,Family Discussion via whatsapp regarding Sugam Prakriti,whatsapp_api +INT-000195,PER-0031,walk_in,initial_enquiry,2025-10-16T00:00:00,Initial Enquiry via walk_in regarding Merlin Avana,site_visit_log +INT-000196,PER-0031,whatsapp,price_discussion,2025-11-21T00:00:00,Price Discussion via whatsapp regarding Merlin Avana,call_logs +INT-000197,PER-0031,whatsapp,site_visit,2025-11-23T00:00:00,Site Visit via whatsapp regarding Merlin Avana,manual_entry +INT-000198,PER-0032,walk_in,initial_enquiry,2024-08-25T00:00:00,Initial Enquiry via walk_in regarding Godrej Elevate,site_visit_log +INT-000199,PER-0032,phone_call,negotiation,2024-09-29T00:00:00,Negotiation via phone_call regarding Godrej Elevate,site_visit_log +INT-000200,PER-0032,email,family_discussion,2024-11-02T00:00:00,Family Discussion via email regarding Godrej Elevate,whatsapp_api +INT-000201,PER-0032,phone_call,negotiation,2024-11-04T00:00:00,Negotiation via phone_call regarding Godrej Elevate,manual_entry +INT-000202,PER-0032,phone_call,document_sharing,2024-11-16T00:00:00,Document Sharing via phone_call regarding Godrej Elevate,email_sync +INT-000203,PER-0033,walk_in,initial_enquiry,2025-03-23T00:00:00,Initial Enquiry via walk_in regarding Godrej Blue,whatsapp_api +INT-000204,PER-0033,whatsapp,document_sharing,2025-03-26T00:00:00,Document Sharing via whatsapp regarding Godrej Blue,manual_entry +INT-000205,PER-0033,whatsapp,price_discussion,2025-04-01T00:00:00,Price Discussion via whatsapp regarding Godrej Blue,email_sync +INT-000206,PER-0033,site_visit,site_visit,2025-04-06T00:00:00,Site Visit via site_visit regarding Godrej Blue,site_visit_log +INT-000207,PER-0033,whatsapp,document_sharing,2025-04-12T00:00:00,Document Sharing via whatsapp regarding Godrej Blue,manual_entry +INT-000208,PER-0033,phone_call,price_discussion,2025-04-25T00:00:00,Price Discussion via phone_call regarding Godrej Blue,whatsapp_api +INT-000209,PER-0033,phone_call,follow_up,2025-04-29T00:00:00,Follow Up via phone_call regarding Godrej Blue,site_visit_log +INT-000210,PER-0033,phone_call,follow_up,2025-05-05T00:00:00,Follow Up via phone_call regarding Godrej Blue,email_sync +INT-000211,PER-0033,site_visit,site_visit,2025-05-18T00:00:00,Site Visit via site_visit regarding Godrej Blue,whatsapp_api +INT-000212,PER-0034,referral,initial_enquiry,2024-04-20T00:00:00,Initial Enquiry via referral regarding Shriram Grand City,site_visit_log +INT-000213,PER-0034,whatsapp,follow_up,2024-04-27T00:00:00,Follow Up via whatsapp regarding Shriram Grand City,email_sync +INT-000214,PER-0034,whatsapp,price_discussion,2024-06-24T00:00:00,Price Discussion via whatsapp regarding Shriram Grand City,whatsapp_api +INT-000215,PER-0035,walk_in,initial_enquiry,2025-11-25T00:00:00,Initial Enquiry via walk_in regarding Siddha Sky Waterfront,site_visit_log +INT-000216,PER-0035,whatsapp,site_visit,2025-12-05T00:00:00,Site Visit via whatsapp regarding Siddha Sky Waterfront,site_visit_log +INT-000217,PER-0035,email,negotiation,2025-12-25T00:00:00,Negotiation via email regarding Siddha Sky Waterfront,call_logs +INT-000218,PER-0035,whatsapp,family_discussion,2026-01-08T00:00:00,Family Discussion via whatsapp regarding Siddha Sky Waterfront,manual_entry +INT-000219,PER-0035,whatsapp,site_visit,2026-01-10T00:00:00,Site Visit via whatsapp regarding Siddha Sky Waterfront,whatsapp_api +INT-000220,PER-0035,site_visit,site_visit,2026-01-31T00:00:00,Site Visit via site_visit regarding Siddha Sky Waterfront,site_visit_log +INT-000221,PER-0035,phone_call,follow_up,2026-02-04T00:00:00,Follow Up via phone_call regarding Siddha Sky Waterfront,call_logs +INT-000222,PER-0036,walk_in,initial_enquiry,2025-09-27T00:00:00,Initial Enquiry via walk_in regarding Siddha Serena,manual_entry +INT-000223,PER-0036,whatsapp,site_visit,2025-10-11T00:00:00,Site Visit via whatsapp regarding Siddha Serena,site_visit_log +INT-000224,PER-0036,email,document_sharing,2025-10-19T00:00:00,Document Sharing via email regarding Siddha Serena,site_visit_log +INT-000225,PER-0036,whatsapp,family_discussion,2025-10-19T00:00:00,Family Discussion via whatsapp regarding Siddha Serena,call_logs +INT-000226,PER-0036,site_visit,site_visit,2025-10-23T00:00:00,Site Visit via site_visit regarding Siddha Serena,email_sync +INT-000227,PER-0036,whatsapp,negotiation,2025-10-26T00:00:00,Negotiation via whatsapp regarding Siddha Serena,whatsapp_api +INT-000228,PER-0036,site_visit,site_visit,2025-11-07T00:00:00,Site Visit via site_visit regarding Siddha Serena,email_sync +INT-000229,PER-0036,whatsapp,follow_up,2025-12-12T00:00:00,Follow Up via whatsapp regarding Siddha Serena,call_logs +INT-000230,PER-0036,phone_call,site_visit,2025-12-16T00:00:00,Site Visit via phone_call regarding Siddha Serena,manual_entry +INT-000231,PER-0036,whatsapp,family_discussion,2025-12-17T00:00:00,Family Discussion via whatsapp regarding Siddha Serena,manual_entry +INT-000232,PER-0037,walk_in,initial_enquiry,2024-10-14T00:00:00,Initial Enquiry via walk_in regarding Atri Aqua,call_logs +INT-000233,PER-0037,phone_call,family_discussion,2024-10-26T00:00:00,Family Discussion via phone_call regarding Atri Aqua,email_sync +INT-000234,PER-0037,whatsapp,family_discussion,2024-11-03T00:00:00,Family Discussion via whatsapp regarding Atri Aqua,site_visit_log +INT-000235,PER-0037,phone_call,initial_enquiry,2024-11-17T00:00:00,Initial Enquiry via phone_call regarding Atri Aqua,call_logs +INT-000236,PER-0037,whatsapp,document_sharing,2024-11-24T00:00:00,Document Sharing via whatsapp regarding Atri Aqua,email_sync +INT-000237,PER-0037,phone_call,site_visit,2024-12-01T00:00:00,Site Visit via phone_call regarding Atri Aqua,manual_entry +INT-000238,PER-0037,site_visit,site_visit,2024-12-01T00:00:00,Site Visit via site_visit regarding Atri Aqua,site_visit_log +INT-000239,PER-0037,phone_call,family_discussion,2024-12-18T00:00:00,Family Discussion via phone_call regarding Atri Aqua,whatsapp_api +INT-000240,PER-0037,whatsapp,initial_enquiry,2024-12-20T00:00:00,Initial Enquiry via whatsapp regarding Atri Aqua,site_visit_log +INT-000241,PER-0037,whatsapp,initial_enquiry,2024-12-21T00:00:00,Initial Enquiry via whatsapp regarding Atri Aqua,call_logs +INT-000242,PER-0038,referral,initial_enquiry,2025-11-13T00:00:00,Initial Enquiry via referral regarding Siddha Sky Waterfront,site_visit_log +INT-000243,PER-0038,whatsapp,site_visit,2025-11-30T00:00:00,Site Visit via whatsapp regarding Siddha Sky Waterfront,site_visit_log +INT-000244,PER-0038,email,follow_up,2025-12-24T00:00:00,Follow Up via email regarding Siddha Sky Waterfront,manual_entry +INT-000245,PER-0038,site_visit,site_visit,2026-01-03T00:00:00,Site Visit via site_visit regarding Siddha Sky Waterfront,email_sync +INT-000246,PER-0039,web_enquiry,initial_enquiry,2025-08-01T00:00:00,Initial Enquiry via web_enquiry regarding Eden Devprayag,whatsapp_api +INT-000247,PER-0039,whatsapp,initial_enquiry,2025-09-07T00:00:00,Initial Enquiry via whatsapp regarding Eden Devprayag,whatsapp_api +INT-000248,PER-0039,whatsapp,document_sharing,2025-09-27T00:00:00,Document Sharing via whatsapp regarding Eden Devprayag,whatsapp_api +INT-000249,PER-0039,phone_call,negotiation,2025-10-14T00:00:00,Negotiation via phone_call regarding Eden Devprayag,site_visit_log +INT-000250,PER-0040,referral,initial_enquiry,2024-01-30T00:00:00,Initial Enquiry via referral regarding Ambuja Utpaala,manual_entry +INT-000251,PER-0040,phone_call,negotiation,2024-02-06T00:00:00,Negotiation via phone_call regarding Ambuja Utpaala,site_visit_log +INT-000252,PER-0040,whatsapp,family_discussion,2024-02-09T00:00:00,Family Discussion via whatsapp regarding Ambuja Utpaala,call_logs +INT-000253,PER-0040,phone_call,follow_up,2024-03-03T00:00:00,Follow Up via phone_call regarding Ambuja Utpaala,site_visit_log +INT-000254,PER-0040,site_visit,site_visit,2024-03-22T00:00:00,Site Visit via site_visit regarding Ambuja Utpaala,call_logs +INT-000255,PER-0040,site_visit,site_visit,2024-03-28T00:00:00,Site Visit via site_visit regarding Ambuja Utpaala,manual_entry +INT-000256,PER-0040,whatsapp,follow_up,2024-04-06T00:00:00,Follow Up via whatsapp regarding Ambuja Utpaala,whatsapp_api +INT-000257,PER-0040,site_visit,site_visit,2024-04-07T00:00:00,Site Visit via site_visit regarding Ambuja Utpaala,email_sync +INT-000258,PER-0040,site_visit,site_visit,2024-04-08T00:00:00,Site Visit via site_visit regarding Ambuja Utpaala,manual_entry +INT-000259,PER-0040,phone_call,initial_enquiry,2024-04-14T00:00:00,Initial Enquiry via phone_call regarding Ambuja Utpaala,site_visit_log +INT-000260,PER-0040,whatsapp,site_visit,2024-04-19T00:00:00,Site Visit via whatsapp regarding Ambuja Utpaala,whatsapp_api +INT-000261,PER-0041,walk_in,initial_enquiry,2024-02-29T00:00:00,Initial Enquiry via walk_in regarding Shriram Grand City,manual_entry +INT-000262,PER-0041,whatsapp,initial_enquiry,2024-03-03T00:00:00,Initial Enquiry via whatsapp regarding Shriram Grand City,whatsapp_api +INT-000263,PER-0041,whatsapp,negotiation,2024-03-04T00:00:00,Negotiation via whatsapp regarding Shriram Grand City,email_sync +INT-000264,PER-0041,phone_call,negotiation,2024-03-07T00:00:00,Negotiation via phone_call regarding Shriram Grand City,site_visit_log +INT-000265,PER-0041,whatsapp,document_sharing,2024-03-13T00:00:00,Document Sharing via whatsapp regarding Shriram Grand City,manual_entry +INT-000266,PER-0041,site_visit,site_visit,2024-03-25T00:00:00,Site Visit via site_visit regarding Shriram Grand City,call_logs +INT-000267,PER-0041,site_visit,site_visit,2024-03-28T00:00:00,Site Visit via site_visit regarding Shriram Grand City,manual_entry +INT-000268,PER-0041,phone_call,document_sharing,2024-03-30T00:00:00,Document Sharing via phone_call regarding Shriram Grand City,site_visit_log +INT-000269,PER-0041,phone_call,family_discussion,2024-04-18T00:00:00,Family Discussion via phone_call regarding Shriram Grand City,site_visit_log +INT-000270,PER-0041,site_visit,site_visit,2024-04-20T00:00:00,Site Visit via site_visit regarding Shriram Grand City,email_sync +INT-000271,PER-0041,phone_call,document_sharing,2024-05-02T00:00:00,Document Sharing via phone_call regarding Shriram Grand City,manual_entry +INT-000272,PER-0041,site_visit,site_visit,2024-05-07T00:00:00,Site Visit via site_visit regarding Shriram Grand City,site_visit_log +INT-000273,PER-0042,walk_in,initial_enquiry,2025-08-13T00:00:00,Initial Enquiry via walk_in regarding Atri Surya Toron,email_sync +INT-000274,PER-0042,phone_call,negotiation,2025-10-02T00:00:00,Negotiation via phone_call regarding Atri Surya Toron,call_logs +INT-000275,PER-0042,whatsapp,site_visit,2025-10-03T00:00:00,Site Visit via whatsapp regarding Atri Surya Toron,manual_entry +INT-000276,PER-0042,site_visit,site_visit,2025-10-08T00:00:00,Site Visit via site_visit regarding Atri Surya Toron,whatsapp_api +INT-000277,PER-0042,whatsapp,document_sharing,2025-10-13T00:00:00,Document Sharing via whatsapp regarding Atri Surya Toron,email_sync +INT-000278,PER-0043,walk_in,initial_enquiry,2024-05-06T00:00:00,Initial Enquiry via walk_in regarding Siddha Sky Waterfront,call_logs +INT-000279,PER-0043,whatsapp,initial_enquiry,2024-05-22T00:00:00,Initial Enquiry via whatsapp regarding Siddha Sky Waterfront,whatsapp_api +INT-000280,PER-0043,email,price_discussion,2024-05-23T00:00:00,Price Discussion via email regarding Siddha Sky Waterfront,email_sync +INT-000281,PER-0043,site_visit,site_visit,2024-05-31T00:00:00,Site Visit via site_visit regarding Siddha Sky Waterfront,site_visit_log +INT-000282,PER-0043,phone_call,negotiation,2024-06-03T00:00:00,Negotiation via phone_call regarding Siddha Sky Waterfront,call_logs +INT-000283,PER-0044,web_enquiry,initial_enquiry,2024-01-20T00:00:00,Initial Enquiry via web_enquiry regarding Shriram Grand City,site_visit_log +INT-000284,PER-0044,whatsapp,document_sharing,2024-01-29T00:00:00,Document Sharing via whatsapp regarding Shriram Grand City,manual_entry +INT-000285,PER-0044,whatsapp,site_visit,2024-01-29T00:00:00,Site Visit via whatsapp regarding Shriram Grand City,whatsapp_api +INT-000286,PER-0044,site_visit,site_visit,2024-02-15T00:00:00,Site Visit via site_visit regarding Shriram Grand City,email_sync +INT-000287,PER-0044,phone_call,document_sharing,2024-02-17T00:00:00,Document Sharing via phone_call regarding Shriram Grand City,manual_entry +INT-000288,PER-0044,whatsapp,follow_up,2024-02-23T00:00:00,Follow Up via whatsapp regarding Shriram Grand City,manual_entry +INT-000289,PER-0044,phone_call,price_discussion,2024-02-25T00:00:00,Price Discussion via phone_call regarding Shriram Grand City,email_sync +INT-000290,PER-0044,whatsapp,price_discussion,2024-03-03T00:00:00,Price Discussion via whatsapp regarding Shriram Grand City,call_logs +INT-000291,PER-0044,phone_call,follow_up,2024-03-13T00:00:00,Follow Up via phone_call regarding Shriram Grand City,whatsapp_api +INT-000292,PER-0044,phone_call,family_discussion,2024-03-31T00:00:00,Family Discussion via phone_call regarding Shriram Grand City,site_visit_log +INT-000293,PER-0045,walk_in,initial_enquiry,2025-06-04T00:00:00,Initial Enquiry via walk_in regarding Siddha Serena,call_logs +INT-000294,PER-0045,phone_call,initial_enquiry,2025-06-10T00:00:00,Initial Enquiry via phone_call regarding Siddha Serena,manual_entry +INT-000295,PER-0045,whatsapp,negotiation,2025-06-30T00:00:00,Negotiation via whatsapp regarding Siddha Serena,call_logs +INT-000296,PER-0045,email,initial_enquiry,2025-07-12T00:00:00,Initial Enquiry via email regarding Siddha Serena,whatsapp_api +INT-000297,PER-0046,referral,initial_enquiry,2025-02-21T00:00:00,Initial Enquiry via referral regarding Atri Surya Toron,call_logs +INT-000298,PER-0046,phone_call,follow_up,2025-03-04T00:00:00,Follow Up via phone_call regarding Atri Surya Toron,manual_entry +INT-000299,PER-0046,email,negotiation,2025-03-17T00:00:00,Negotiation via email regarding Atri Surya Toron,whatsapp_api +INT-000300,PER-0046,site_visit,site_visit,2025-03-20T00:00:00,Site Visit via site_visit regarding Atri Surya Toron,call_logs +INT-000301,PER-0046,site_visit,site_visit,2025-03-25T00:00:00,Site Visit via site_visit regarding Atri Surya Toron,email_sync +INT-000302,PER-0046,phone_call,follow_up,2025-04-12T00:00:00,Follow Up via phone_call regarding Atri Surya Toron,site_visit_log +INT-000303,PER-0046,site_visit,site_visit,2025-04-15T00:00:00,Site Visit via site_visit regarding Atri Surya Toron,whatsapp_api +INT-000304,PER-0046,phone_call,negotiation,2025-04-18T00:00:00,Negotiation via phone_call regarding Atri Surya Toron,call_logs +INT-000305,PER-0046,phone_call,negotiation,2025-04-22T00:00:00,Negotiation via phone_call regarding Atri Surya Toron,whatsapp_api +INT-000306,PER-0046,site_visit,site_visit,2025-05-01T00:00:00,Site Visit via site_visit regarding Atri Surya Toron,call_logs +INT-000307,PER-0046,phone_call,negotiation,2025-05-07T00:00:00,Negotiation via phone_call regarding Atri Surya Toron,manual_entry +INT-000308,PER-0046,site_visit,site_visit,2025-05-11T00:00:00,Site Visit via site_visit regarding Atri Surya Toron,email_sync +INT-000309,PER-0047,web_enquiry,initial_enquiry,2026-02-27T00:00:00,Initial Enquiry via web_enquiry regarding Atri Surya Toron,whatsapp_api +INT-000310,PER-0047,whatsapp,document_sharing,2026-03-01T00:00:00,Document Sharing via whatsapp regarding Atri Surya Toron,call_logs +INT-000311,PER-0047,email,document_sharing,2026-03-12T00:00:00,Document Sharing via email regarding Atri Surya Toron,site_visit_log +INT-000312,PER-0047,phone_call,follow_up,2026-03-22T00:00:00,Follow Up via phone_call regarding Atri Surya Toron,whatsapp_api +INT-000313,PER-0047,phone_call,family_discussion,2026-03-23T00:00:00,Family Discussion via phone_call regarding Atri Surya Toron,email_sync +INT-000314,PER-0047,site_visit,site_visit,2026-03-31T00:00:00,Site Visit via site_visit regarding Atri Surya Toron,manual_entry +INT-000315,PER-0047,phone_call,negotiation,2026-04-05T00:00:00,Negotiation via phone_call regarding Atri Surya Toron,site_visit_log +INT-000316,PER-0048,referral,initial_enquiry,2025-01-07T00:00:00,Initial Enquiry via referral regarding Siddha Serena,manual_entry +INT-000317,PER-0048,whatsapp,initial_enquiry,2025-01-15T00:00:00,Initial Enquiry via whatsapp regarding Siddha Serena,email_sync +INT-000318,PER-0048,whatsapp,family_discussion,2025-01-17T00:00:00,Family Discussion via whatsapp regarding Siddha Serena,whatsapp_api +INT-000319,PER-0048,site_visit,site_visit,2025-02-02T00:00:00,Site Visit via site_visit regarding Siddha Serena,manual_entry +INT-000320,PER-0048,whatsapp,document_sharing,2025-02-27T00:00:00,Document Sharing via whatsapp regarding Siddha Serena,call_logs +INT-000321,PER-0048,site_visit,site_visit,2025-03-29T00:00:00,Site Visit via site_visit regarding Siddha Serena,site_visit_log +INT-000322,PER-0049,web_enquiry,initial_enquiry,2024-04-20T00:00:00,Initial Enquiry via web_enquiry regarding Godrej Blue,manual_entry +INT-000323,PER-0049,whatsapp,initial_enquiry,2024-04-25T00:00:00,Initial Enquiry via whatsapp regarding Godrej Blue,whatsapp_api +INT-000324,PER-0049,whatsapp,initial_enquiry,2024-04-27T00:00:00,Initial Enquiry via whatsapp regarding Godrej Blue,site_visit_log +INT-000325,PER-0049,site_visit,site_visit,2024-05-02T00:00:00,Site Visit via site_visit regarding Godrej Blue,whatsapp_api +INT-000326,PER-0049,whatsapp,price_discussion,2024-05-16T00:00:00,Price Discussion via whatsapp regarding Godrej Blue,whatsapp_api +INT-000327,PER-0049,phone_call,family_discussion,2024-05-26T00:00:00,Family Discussion via phone_call regarding Godrej Blue,call_logs +INT-000328,PER-0049,site_visit,site_visit,2024-06-01T00:00:00,Site Visit via site_visit regarding Godrej Blue,call_logs +INT-000329,PER-0049,phone_call,follow_up,2024-06-18T00:00:00,Follow Up via phone_call regarding Godrej Blue,whatsapp_api +INT-000330,PER-0049,whatsapp,follow_up,2024-06-27T00:00:00,Follow Up via whatsapp regarding Godrej Blue,call_logs +INT-000331,PER-0049,phone_call,negotiation,2024-06-27T00:00:00,Negotiation via phone_call regarding Godrej Blue,whatsapp_api +INT-000332,PER-0049,whatsapp,family_discussion,2024-07-06T00:00:00,Family Discussion via whatsapp regarding Godrej Blue,manual_entry +INT-000333,PER-0049,phone_call,initial_enquiry,2024-07-06T00:00:00,Initial Enquiry via phone_call regarding Godrej Blue,manual_entry +INT-000334,PER-0049,site_visit,site_visit,2024-07-07T00:00:00,Site Visit via site_visit regarding Godrej Blue,email_sync +INT-000335,PER-0050,referral,initial_enquiry,2025-12-30T00:00:00,Initial Enquiry via referral regarding DTC Good Earth,call_logs +INT-000336,PER-0050,phone_call,document_sharing,2026-01-08T00:00:00,Document Sharing via phone_call regarding DTC Good Earth,call_logs +INT-000337,PER-0050,email,price_discussion,2026-03-03T00:00:00,Price Discussion via email regarding DTC Good Earth,call_logs +INT-000338,PER-0050,whatsapp,initial_enquiry,2026-03-07T00:00:00,Initial Enquiry via whatsapp regarding DTC Good Earth,call_logs +INT-000339,PER-0051,walk_in,initial_enquiry,2025-09-13T00:00:00,Initial Enquiry via walk_in regarding Shriram Grand City,email_sync +INT-000340,PER-0051,whatsapp,follow_up,2025-09-14T00:00:00,Follow Up via whatsapp regarding Shriram Grand City,whatsapp_api +INT-000341,PER-0051,email,document_sharing,2025-10-01T00:00:00,Document Sharing via email regarding Shriram Grand City,manual_entry +INT-000342,PER-0051,whatsapp,price_discussion,2025-10-02T00:00:00,Price Discussion via whatsapp regarding Shriram Grand City,whatsapp_api +INT-000343,PER-0051,whatsapp,follow_up,2025-10-23T00:00:00,Follow Up via whatsapp regarding Shriram Grand City,site_visit_log +INT-000344,PER-0051,whatsapp,document_sharing,2025-11-01T00:00:00,Document Sharing via whatsapp regarding Shriram Grand City,manual_entry +INT-000345,PER-0051,site_visit,site_visit,2025-11-07T00:00:00,Site Visit via site_visit regarding Shriram Grand City,manual_entry +INT-000346,PER-0051,site_visit,site_visit,2025-11-19T00:00:00,Site Visit via site_visit regarding Shriram Grand City,site_visit_log +INT-000347,PER-0051,phone_call,site_visit,2025-11-20T00:00:00,Site Visit via phone_call regarding Shriram Grand City,call_logs +INT-000348,PER-0051,site_visit,site_visit,2025-11-28T00:00:00,Site Visit via site_visit regarding Shriram Grand City,whatsapp_api +INT-000349,PER-0051,phone_call,initial_enquiry,2025-12-01T00:00:00,Initial Enquiry via phone_call regarding Shriram Grand City,call_logs +INT-000350,PER-0051,phone_call,price_discussion,2025-12-05T00:00:00,Price Discussion via phone_call regarding Shriram Grand City,email_sync +INT-000351,PER-0051,phone_call,family_discussion,2025-12-09T00:00:00,Family Discussion via phone_call regarding Shriram Grand City,manual_entry +INT-000352,PER-0052,referral,initial_enquiry,2025-05-10T00:00:00,Initial Enquiry via referral regarding DTC Good Earth,call_logs +INT-000353,PER-0052,phone_call,site_visit,2025-05-18T00:00:00,Site Visit via phone_call regarding DTC Good Earth,call_logs +INT-000354,PER-0052,email,family_discussion,2025-05-26T00:00:00,Family Discussion via email regarding DTC Good Earth,call_logs +INT-000355,PER-0052,phone_call,document_sharing,2025-05-28T00:00:00,Document Sharing via phone_call regarding DTC Good Earth,whatsapp_api +INT-000356,PER-0052,phone_call,family_discussion,2025-06-05T00:00:00,Family Discussion via phone_call regarding DTC Good Earth,email_sync +INT-000357,PER-0052,phone_call,initial_enquiry,2025-06-13T00:00:00,Initial Enquiry via phone_call regarding DTC Good Earth,whatsapp_api +INT-000358,PER-0052,whatsapp,initial_enquiry,2025-06-15T00:00:00,Initial Enquiry via whatsapp regarding DTC Good Earth,manual_entry +INT-000359,PER-0052,whatsapp,price_discussion,2025-06-16T00:00:00,Price Discussion via whatsapp regarding DTC Good Earth,email_sync +INT-000360,PER-0052,phone_call,document_sharing,2025-07-11T00:00:00,Document Sharing via phone_call regarding DTC Good Earth,email_sync +INT-000361,PER-0052,site_visit,site_visit,2025-07-14T00:00:00,Site Visit via site_visit regarding DTC Good Earth,email_sync +INT-000362,PER-0052,phone_call,negotiation,2025-07-15T00:00:00,Negotiation via phone_call regarding DTC Good Earth,whatsapp_api +INT-000363,PER-0052,phone_call,family_discussion,2025-07-23T00:00:00,Family Discussion via phone_call regarding DTC Good Earth,email_sync +INT-000364,PER-0052,whatsapp,site_visit,2025-07-25T00:00:00,Site Visit via whatsapp regarding DTC Good Earth,call_logs +INT-000365,PER-0052,phone_call,family_discussion,2025-07-25T00:00:00,Family Discussion via phone_call regarding DTC Good Earth,email_sync +INT-000366,PER-0052,phone_call,negotiation,2025-08-01T00:00:00,Negotiation via phone_call regarding DTC Good Earth,whatsapp_api +INT-000367,PER-0053,web_enquiry,initial_enquiry,2025-12-15T00:00:00,Initial Enquiry via web_enquiry regarding Siddha Serena,manual_entry +INT-000368,PER-0053,whatsapp,document_sharing,2026-01-05T00:00:00,Document Sharing via whatsapp regarding Siddha Serena,site_visit_log +INT-000369,PER-0053,email,initial_enquiry,2026-01-16T00:00:00,Initial Enquiry via email regarding Siddha Serena,site_visit_log +INT-000370,PER-0053,phone_call,negotiation,2026-03-03T00:00:00,Negotiation via phone_call regarding Siddha Serena,email_sync +INT-000371,PER-0054,walk_in,initial_enquiry,2025-12-13T00:00:00,Initial Enquiry via walk_in regarding Siddha Serena,site_visit_log +INT-000372,PER-0054,whatsapp,follow_up,2026-01-10T00:00:00,Follow Up via whatsapp regarding Siddha Serena,site_visit_log +INT-000373,PER-0054,whatsapp,price_discussion,2026-02-01T00:00:00,Price Discussion via whatsapp regarding Siddha Serena,call_logs +INT-000374,PER-0054,phone_call,price_discussion,2026-02-14T00:00:00,Price Discussion via phone_call regarding Siddha Serena,call_logs +INT-000375,PER-0054,site_visit,site_visit,2026-02-24T00:00:00,Site Visit via site_visit regarding Siddha Serena,email_sync +INT-000376,PER-0054,site_visit,site_visit,2026-02-25T00:00:00,Site Visit via site_visit regarding Siddha Serena,whatsapp_api +INT-000377,PER-0054,phone_call,family_discussion,2026-03-01T00:00:00,Family Discussion via phone_call regarding Siddha Serena,manual_entry +INT-000378,PER-0055,web_enquiry,initial_enquiry,2025-10-11T00:00:00,Initial Enquiry via web_enquiry regarding Siddha Sky Waterfront,site_visit_log +INT-000379,PER-0055,whatsapp,price_discussion,2025-10-24T00:00:00,Price Discussion via whatsapp regarding Siddha Sky Waterfront,call_logs +INT-000380,PER-0055,email,price_discussion,2025-10-27T00:00:00,Price Discussion via email regarding Siddha Sky Waterfront,manual_entry +INT-000381,PER-0055,whatsapp,document_sharing,2025-11-17T00:00:00,Document Sharing via whatsapp regarding Siddha Sky Waterfront,manual_entry +INT-000382,PER-0055,site_visit,site_visit,2025-11-23T00:00:00,Site Visit via site_visit regarding Siddha Sky Waterfront,email_sync +INT-000383,PER-0055,whatsapp,initial_enquiry,2025-12-02T00:00:00,Initial Enquiry via whatsapp regarding Siddha Sky Waterfront,whatsapp_api +INT-000384,PER-0055,whatsapp,negotiation,2025-12-08T00:00:00,Negotiation via whatsapp regarding Siddha Sky Waterfront,email_sync +INT-000385,PER-0055,web_enquiry,family_discussion,2025-12-21T00:00:00,Family Discussion via web_enquiry regarding Siddha Sky Waterfront,call_logs +INT-000386,PER-0056,web_enquiry,initial_enquiry,2025-11-06T00:00:00,Initial Enquiry via web_enquiry regarding Siddha Sky Waterfront,email_sync +INT-000387,PER-0056,phone_call,family_discussion,2025-12-01T00:00:00,Family Discussion via phone_call regarding Siddha Sky Waterfront,site_visit_log +INT-000388,PER-0056,email,negotiation,2025-12-30T00:00:00,Negotiation via email regarding Siddha Sky Waterfront,whatsapp_api +INT-000389,PER-0057,walk_in,initial_enquiry,2025-01-13T00:00:00,Initial Enquiry via walk_in regarding DTC Good Earth,email_sync +INT-000390,PER-0057,whatsapp,price_discussion,2025-01-16T00:00:00,Price Discussion via whatsapp regarding DTC Good Earth,site_visit_log +INT-000391,PER-0057,whatsapp,price_discussion,2025-01-27T00:00:00,Price Discussion via whatsapp regarding DTC Good Earth,manual_entry +INT-000392,PER-0057,walk_in,price_discussion,2025-01-29T00:00:00,Price Discussion via walk_in regarding DTC Good Earth,call_logs +INT-000393,PER-0057,whatsapp,price_discussion,2025-03-11T00:00:00,Price Discussion via whatsapp regarding DTC Good Earth,call_logs +INT-000394,PER-0058,web_enquiry,initial_enquiry,2024-04-08T00:00:00,Initial Enquiry via web_enquiry regarding Siddha Sky Waterfront,manual_entry +INT-000395,PER-0058,phone_call,follow_up,2024-04-11T00:00:00,Follow Up via phone_call regarding Siddha Sky Waterfront,whatsapp_api +INT-000396,PER-0058,whatsapp,follow_up,2024-04-17T00:00:00,Follow Up via whatsapp regarding Siddha Sky Waterfront,whatsapp_api +INT-000397,PER-0058,site_visit,site_visit,2024-04-22T00:00:00,Site Visit via site_visit regarding Siddha Sky Waterfront,email_sync +INT-000398,PER-0058,site_visit,site_visit,2024-04-27T00:00:00,Site Visit via site_visit regarding Siddha Sky Waterfront,site_visit_log +INT-000399,PER-0058,whatsapp,follow_up,2024-04-28T00:00:00,Follow Up via whatsapp regarding Siddha Sky Waterfront,email_sync +INT-000400,PER-0058,phone_call,negotiation,2024-05-22T00:00:00,Negotiation via phone_call regarding Siddha Sky Waterfront,call_logs +INT-000401,PER-0058,phone_call,follow_up,2024-05-23T00:00:00,Follow Up via phone_call regarding Siddha Sky Waterfront,site_visit_log +INT-000402,PER-0058,phone_call,initial_enquiry,2024-06-22T00:00:00,Initial Enquiry via phone_call regarding Siddha Sky Waterfront,manual_entry +INT-000403,PER-0058,whatsapp,site_visit,2024-06-27T00:00:00,Site Visit via whatsapp regarding Siddha Sky Waterfront,manual_entry +INT-000404,PER-0058,site_visit,site_visit,2024-06-28T00:00:00,Site Visit via site_visit regarding Siddha Sky Waterfront,whatsapp_api +INT-000405,PER-0058,phone_call,price_discussion,2024-06-29T00:00:00,Price Discussion via phone_call regarding Siddha Sky Waterfront,whatsapp_api +INT-000406,PER-0059,walk_in,initial_enquiry,2025-03-29T00:00:00,Initial Enquiry via walk_in regarding Atri Surya Toron,manual_entry +INT-000407,PER-0059,phone_call,family_discussion,2025-03-29T00:00:00,Family Discussion via phone_call regarding Atri Surya Toron,manual_entry +INT-000408,PER-0059,email,price_discussion,2025-04-12T00:00:00,Price Discussion via email regarding Atri Surya Toron,manual_entry +INT-000409,PER-0059,whatsapp,initial_enquiry,2025-05-17T00:00:00,Initial Enquiry via whatsapp regarding Atri Surya Toron,site_visit_log +INT-000410,PER-0059,phone_call,price_discussion,2025-05-18T00:00:00,Price Discussion via phone_call regarding Atri Surya Toron,whatsapp_api +INT-000411,PER-0059,phone_call,family_discussion,2025-05-28T00:00:00,Family Discussion via phone_call regarding Atri Surya Toron,manual_entry +INT-000412,PER-0059,whatsapp,site_visit,2025-05-31T00:00:00,Site Visit via whatsapp regarding Atri Surya Toron,manual_entry +INT-000413,PER-0059,site_visit,site_visit,2025-06-10T00:00:00,Site Visit via site_visit regarding Atri Surya Toron,site_visit_log +INT-000414,PER-0059,phone_call,site_visit,2025-06-14T00:00:00,Site Visit via phone_call regarding Atri Surya Toron,manual_entry +INT-000415,PER-0060,web_enquiry,initial_enquiry,2024-01-23T00:00:00,Initial Enquiry via web_enquiry regarding Shriram Grand City,site_visit_log +INT-000416,PER-0060,whatsapp,site_visit,2024-01-29T00:00:00,Site Visit via whatsapp regarding Shriram Grand City,email_sync +INT-000417,PER-0060,email,document_sharing,2024-01-29T00:00:00,Document Sharing via email regarding Shriram Grand City,call_logs +INT-000418,PER-0060,site_visit,site_visit,2024-02-02T00:00:00,Site Visit via site_visit regarding Shriram Grand City,manual_entry +INT-000419,PER-0060,whatsapp,price_discussion,2024-02-20T00:00:00,Price Discussion via whatsapp regarding Shriram Grand City,manual_entry +INT-000420,PER-0060,site_visit,site_visit,2024-02-25T00:00:00,Site Visit via site_visit regarding Shriram Grand City,whatsapp_api +INT-000421,PER-0060,phone_call,price_discussion,2024-02-27T00:00:00,Price Discussion via phone_call regarding Shriram Grand City,email_sync +INT-000422,PER-0060,site_visit,site_visit,2024-02-27T00:00:00,Site Visit via site_visit regarding Shriram Grand City,call_logs +INT-000423,PER-0060,site_visit,site_visit,2024-03-02T00:00:00,Site Visit via site_visit regarding Shriram Grand City,manual_entry +INT-000424,PER-0060,site_visit,site_visit,2024-04-07T00:00:00,Site Visit via site_visit regarding Shriram Grand City,email_sync +INT-000425,PER-0060,site_visit,site_visit,2024-04-08T00:00:00,Site Visit via site_visit regarding Shriram Grand City,email_sync +INT-000426,PER-0061,web_enquiry,initial_enquiry,2024-02-11T00:00:00,Initial Enquiry via web_enquiry regarding Godrej Elevate,email_sync +INT-000427,PER-0061,phone_call,price_discussion,2024-02-19T00:00:00,Price Discussion via phone_call regarding Godrej Elevate,site_visit_log +INT-000428,PER-0061,whatsapp,negotiation,2024-02-24T00:00:00,Negotiation via whatsapp regarding Godrej Elevate,whatsapp_api +INT-000429,PER-0061,whatsapp,initial_enquiry,2024-02-29T00:00:00,Initial Enquiry via whatsapp regarding Godrej Elevate,site_visit_log +INT-000430,PER-0061,whatsapp,initial_enquiry,2024-02-29T00:00:00,Initial Enquiry via whatsapp regarding Godrej Elevate,site_visit_log +INT-000431,PER-0061,site_visit,site_visit,2024-03-09T00:00:00,Site Visit via site_visit regarding Godrej Elevate,site_visit_log +INT-000432,PER-0061,phone_call,follow_up,2024-03-13T00:00:00,Follow Up via phone_call regarding Godrej Elevate,email_sync +INT-000433,PER-0061,phone_call,family_discussion,2024-03-15T00:00:00,Family Discussion via phone_call regarding Godrej Elevate,whatsapp_api +INT-000434,PER-0061,phone_call,document_sharing,2024-03-17T00:00:00,Document Sharing via phone_call regarding Godrej Elevate,whatsapp_api +INT-000435,PER-0061,phone_call,follow_up,2024-04-09T00:00:00,Follow Up via phone_call regarding Godrej Elevate,email_sync +INT-000436,PER-0061,whatsapp,negotiation,2024-04-17T00:00:00,Negotiation via whatsapp regarding Godrej Elevate,whatsapp_api +INT-000437,PER-0061,whatsapp,follow_up,2024-04-20T00:00:00,Follow Up via whatsapp regarding Godrej Elevate,site_visit_log +INT-000438,PER-0061,phone_call,initial_enquiry,2024-04-22T00:00:00,Initial Enquiry via phone_call regarding Godrej Elevate,email_sync +INT-000439,PER-0061,whatsapp,initial_enquiry,2024-04-25T00:00:00,Initial Enquiry via whatsapp regarding Godrej Elevate,email_sync +INT-000440,PER-0061,phone_call,price_discussion,2024-04-27T00:00:00,Price Discussion via phone_call regarding Godrej Elevate,whatsapp_api +INT-000441,PER-0062,walk_in,initial_enquiry,2024-10-16T00:00:00,Initial Enquiry via walk_in regarding Siddha Sky Waterfront,manual_entry +INT-000442,PER-0062,phone_call,initial_enquiry,2024-10-22T00:00:00,Initial Enquiry via phone_call regarding Siddha Sky Waterfront,whatsapp_api +INT-000443,PER-0062,whatsapp,initial_enquiry,2024-11-22T00:00:00,Initial Enquiry via whatsapp regarding Siddha Sky Waterfront,email_sync +INT-000444,PER-0062,whatsapp,family_discussion,2024-11-24T00:00:00,Family Discussion via whatsapp regarding Siddha Sky Waterfront,email_sync +INT-000445,PER-0062,site_visit,site_visit,2024-12-02T00:00:00,Site Visit via site_visit regarding Siddha Sky Waterfront,manual_entry +INT-000446,PER-0062,whatsapp,price_discussion,2024-12-27T00:00:00,Price Discussion via whatsapp regarding Siddha Sky Waterfront,manual_entry +INT-000447,PER-0062,site_visit,site_visit,2025-01-01T00:00:00,Site Visit via site_visit regarding Siddha Sky Waterfront,call_logs +INT-000448,PER-0063,referral,initial_enquiry,2026-01-26T00:00:00,Initial Enquiry via referral regarding Atri Aqua,manual_entry +INT-000449,PER-0063,phone_call,price_discussion,2026-01-28T00:00:00,Price Discussion via phone_call regarding Atri Aqua,site_visit_log +INT-000450,PER-0063,whatsapp,family_discussion,2026-02-05T00:00:00,Family Discussion via whatsapp regarding Atri Aqua,email_sync +INT-000451,PER-0063,walk_in,initial_enquiry,2026-02-09T00:00:00,Initial Enquiry via walk_in regarding Atri Aqua,manual_entry +INT-000452,PER-0063,referral,initial_enquiry,2026-02-14T00:00:00,Initial Enquiry via referral regarding Atri Aqua,site_visit_log +INT-000453,PER-0063,email,follow_up,2026-03-03T00:00:00,Follow Up via email regarding Atri Aqua,whatsapp_api +INT-000454,PER-0063,walk_in,price_discussion,2026-03-05T00:00:00,Price Discussion via walk_in regarding Atri Aqua,whatsapp_api +INT-000455,PER-0063,email,negotiation,2026-03-05T00:00:00,Negotiation via email regarding Atri Aqua,whatsapp_api +INT-000456,PER-0064,web_enquiry,initial_enquiry,2024-09-08T00:00:00,Initial Enquiry via web_enquiry regarding Shriram Grand City,whatsapp_api +INT-000457,PER-0064,phone_call,document_sharing,2024-09-14T00:00:00,Document Sharing via phone_call regarding Shriram Grand City,whatsapp_api +INT-000458,PER-0064,whatsapp,family_discussion,2024-09-16T00:00:00,Family Discussion via whatsapp regarding Shriram Grand City,email_sync +INT-000459,PER-0064,phone_call,follow_up,2024-09-22T00:00:00,Follow Up via phone_call regarding Shriram Grand City,email_sync +INT-000460,PER-0064,phone_call,document_sharing,2024-10-08T00:00:00,Document Sharing via phone_call regarding Shriram Grand City,site_visit_log +INT-000461,PER-0064,phone_call,site_visit,2024-10-17T00:00:00,Site Visit via phone_call regarding Shriram Grand City,site_visit_log +INT-000462,PER-0064,site_visit,site_visit,2024-11-03T00:00:00,Site Visit via site_visit regarding Shriram Grand City,call_logs +INT-000463,PER-0064,phone_call,site_visit,2024-11-13T00:00:00,Site Visit via phone_call regarding Shriram Grand City,email_sync +INT-000464,PER-0064,whatsapp,negotiation,2024-11-14T00:00:00,Negotiation via whatsapp regarding Shriram Grand City,manual_entry +INT-000465,PER-0064,whatsapp,document_sharing,2024-11-15T00:00:00,Document Sharing via whatsapp regarding Shriram Grand City,email_sync +INT-000466,PER-0064,phone_call,follow_up,2024-11-17T00:00:00,Follow Up via phone_call regarding Shriram Grand City,email_sync +INT-000467,PER-0064,whatsapp,site_visit,2024-11-22T00:00:00,Site Visit via whatsapp regarding Shriram Grand City,email_sync +INT-000468,PER-0064,whatsapp,family_discussion,2024-11-22T00:00:00,Family Discussion via whatsapp regarding Shriram Grand City,whatsapp_api +INT-000469,PER-0064,phone_call,family_discussion,2024-11-23T00:00:00,Family Discussion via phone_call regarding Shriram Grand City,manual_entry +INT-000470,PER-0065,walk_in,initial_enquiry,2025-12-30T00:00:00,Initial Enquiry via walk_in regarding Shriram Grand City,whatsapp_api +INT-000471,PER-0065,phone_call,family_discussion,2025-12-31T00:00:00,Family Discussion via phone_call regarding Shriram Grand City,site_visit_log +INT-000472,PER-0065,whatsapp,follow_up,2026-01-16T00:00:00,Follow Up via whatsapp regarding Shriram Grand City,site_visit_log +INT-000473,PER-0065,site_visit,site_visit,2026-01-19T00:00:00,Site Visit via site_visit regarding Shriram Grand City,whatsapp_api +INT-000474,PER-0065,site_visit,site_visit,2026-01-19T00:00:00,Site Visit via site_visit regarding Shriram Grand City,whatsapp_api +INT-000475,PER-0065,whatsapp,negotiation,2026-01-29T00:00:00,Negotiation via whatsapp regarding Shriram Grand City,whatsapp_api +INT-000476,PER-0065,whatsapp,family_discussion,2026-02-21T00:00:00,Family Discussion via whatsapp regarding Shriram Grand City,manual_entry +INT-000477,PER-0065,phone_call,site_visit,2026-03-07T00:00:00,Site Visit via phone_call regarding Shriram Grand City,manual_entry +INT-000478,PER-0065,site_visit,site_visit,2026-03-12T00:00:00,Site Visit via site_visit regarding Shriram Grand City,site_visit_log +INT-000479,PER-0066,web_enquiry,initial_enquiry,2025-08-28T00:00:00,Initial Enquiry via web_enquiry regarding Atri Aqua,whatsapp_api +INT-000480,PER-0066,whatsapp,negotiation,2025-09-05T00:00:00,Negotiation via whatsapp regarding Atri Aqua,email_sync +INT-000481,PER-0066,email,family_discussion,2025-10-15T00:00:00,Family Discussion via email regarding Atri Aqua,manual_entry +INT-000482,PER-0067,walk_in,initial_enquiry,2025-04-09T00:00:00,Initial Enquiry via walk_in regarding Siddha Sky Waterfront,email_sync +INT-000483,PER-0067,phone_call,negotiation,2025-04-12T00:00:00,Negotiation via phone_call regarding Siddha Sky Waterfront,call_logs +INT-000484,PER-0067,whatsapp,site_visit,2025-04-20T00:00:00,Site Visit via whatsapp regarding Siddha Sky Waterfront,email_sync +INT-000485,PER-0067,whatsapp,price_discussion,2025-04-27T00:00:00,Price Discussion via whatsapp regarding Siddha Sky Waterfront,call_logs +INT-000486,PER-0067,whatsapp,site_visit,2025-05-01T00:00:00,Site Visit via whatsapp regarding Siddha Sky Waterfront,call_logs +INT-000487,PER-0067,phone_call,negotiation,2025-05-11T00:00:00,Negotiation via phone_call regarding Siddha Sky Waterfront,whatsapp_api +INT-000488,PER-0067,phone_call,family_discussion,2025-05-20T00:00:00,Family Discussion via phone_call regarding Siddha Sky Waterfront,manual_entry +INT-000489,PER-0067,whatsapp,negotiation,2025-05-26T00:00:00,Negotiation via whatsapp regarding Siddha Sky Waterfront,manual_entry +INT-000490,PER-0067,phone_call,negotiation,2025-06-09T00:00:00,Negotiation via phone_call regarding Siddha Sky Waterfront,site_visit_log +INT-000491,PER-0067,phone_call,document_sharing,2025-06-11T00:00:00,Document Sharing via phone_call regarding Siddha Sky Waterfront,site_visit_log +INT-000492,PER-0067,whatsapp,document_sharing,2025-06-14T00:00:00,Document Sharing via whatsapp regarding Siddha Sky Waterfront,call_logs +INT-000493,PER-0067,site_visit,site_visit,2025-06-25T00:00:00,Site Visit via site_visit regarding Siddha Sky Waterfront,manual_entry +INT-000494,PER-0068,walk_in,initial_enquiry,2024-10-31T00:00:00,Initial Enquiry via walk_in regarding Sugam Prakriti,site_visit_log +INT-000495,PER-0068,phone_call,price_discussion,2024-11-09T00:00:00,Price Discussion via phone_call regarding Sugam Prakriti,manual_entry +INT-000496,PER-0068,whatsapp,site_visit,2024-11-26T00:00:00,Site Visit via whatsapp regarding Sugam Prakriti,site_visit_log +INT-000497,PER-0068,whatsapp,initial_enquiry,2024-12-09T00:00:00,Initial Enquiry via whatsapp regarding Sugam Prakriti,site_visit_log +INT-000498,PER-0068,phone_call,price_discussion,2024-12-10T00:00:00,Price Discussion via phone_call regarding Sugam Prakriti,whatsapp_api +INT-000499,PER-0068,whatsapp,document_sharing,2024-12-10T00:00:00,Document Sharing via whatsapp regarding Sugam Prakriti,site_visit_log +INT-000500,PER-0068,phone_call,follow_up,2025-01-02T00:00:00,Follow Up via phone_call regarding Sugam Prakriti,manual_entry +INT-000501,PER-0068,site_visit,site_visit,2025-01-03T00:00:00,Site Visit via site_visit regarding Sugam Prakriti,site_visit_log +INT-000502,PER-0069,referral,initial_enquiry,2024-05-12T00:00:00,Initial Enquiry via referral regarding Sugam Prakriti,manual_entry +INT-000503,PER-0069,phone_call,site_visit,2024-05-24T00:00:00,Site Visit via phone_call regarding Sugam Prakriti,call_logs +INT-000504,PER-0069,whatsapp,document_sharing,2024-06-04T00:00:00,Document Sharing via whatsapp regarding Sugam Prakriti,whatsapp_api +INT-000505,PER-0069,phone_call,follow_up,2024-06-16T00:00:00,Follow Up via phone_call regarding Sugam Prakriti,call_logs +INT-000506,PER-0069,phone_call,family_discussion,2024-06-19T00:00:00,Family Discussion via phone_call regarding Sugam Prakriti,manual_entry +INT-000507,PER-0069,whatsapp,site_visit,2024-06-24T00:00:00,Site Visit via whatsapp regarding Sugam Prakriti,site_visit_log +INT-000508,PER-0069,phone_call,price_discussion,2024-07-13T00:00:00,Price Discussion via phone_call regarding Sugam Prakriti,manual_entry +INT-000509,PER-0069,site_visit,site_visit,2024-07-23T00:00:00,Site Visit via site_visit regarding Sugam Prakriti,call_logs +INT-000510,PER-0069,phone_call,family_discussion,2024-07-28T00:00:00,Family Discussion via phone_call regarding Sugam Prakriti,site_visit_log +INT-000511,PER-0070,walk_in,initial_enquiry,2024-12-28T00:00:00,Initial Enquiry via walk_in regarding Siddha Sky Waterfront,whatsapp_api +INT-000512,PER-0070,phone_call,family_discussion,2025-01-10T00:00:00,Family Discussion via phone_call regarding Siddha Sky Waterfront,email_sync +INT-000513,PER-0070,whatsapp,follow_up,2025-01-26T00:00:00,Follow Up via whatsapp regarding Siddha Sky Waterfront,call_logs +INT-000514,PER-0070,referral,document_sharing,2025-02-05T00:00:00,Document Sharing via referral regarding Siddha Sky Waterfront,site_visit_log +INT-000515,PER-0070,referral,negotiation,2025-02-11T00:00:00,Negotiation via referral regarding Siddha Sky Waterfront,email_sync +INT-000516,PER-0070,walk_in,follow_up,2025-02-22T00:00:00,Follow Up via walk_in regarding Siddha Sky Waterfront,call_logs +INT-000517,PER-0071,walk_in,initial_enquiry,2026-01-22T00:00:00,Initial Enquiry via walk_in regarding Godrej Elevate,email_sync +INT-000518,PER-0071,phone_call,site_visit,2026-02-12T00:00:00,Site Visit via phone_call regarding Godrej Elevate,whatsapp_api +INT-000519,PER-0071,email,document_sharing,2026-02-18T00:00:00,Document Sharing via email regarding Godrej Elevate,call_logs +INT-000520,PER-0071,whatsapp,document_sharing,2026-02-20T00:00:00,Document Sharing via whatsapp regarding Godrej Elevate,manual_entry +INT-000521,PER-0071,referral,initial_enquiry,2026-03-05T00:00:00,Initial Enquiry via referral regarding Godrej Elevate,call_logs +INT-000522,PER-0071,walk_in,follow_up,2026-03-17T00:00:00,Follow Up via walk_in regarding Godrej Elevate,whatsapp_api +INT-000523,PER-0071,web_enquiry,initial_enquiry,2026-03-18T00:00:00,Initial Enquiry via web_enquiry regarding Godrej Elevate,call_logs +INT-000524,PER-0071,phone_call,follow_up,2026-04-04T00:00:00,Follow Up via phone_call regarding Godrej Elevate,manual_entry +INT-000525,PER-0072,referral,initial_enquiry,2026-02-09T00:00:00,Initial Enquiry via referral regarding Godrej Elevate,site_visit_log +INT-000526,PER-0072,phone_call,family_discussion,2026-03-11T00:00:00,Family Discussion via phone_call regarding Godrej Elevate,site_visit_log +INT-000527,PER-0072,email,site_visit,2026-03-15T00:00:00,Site Visit via email regarding Godrej Elevate,call_logs +INT-000528,PER-0072,web_enquiry,initial_enquiry,2026-03-24T00:00:00,Initial Enquiry via web_enquiry regarding Godrej Elevate,site_visit_log +INT-000529,PER-0072,walk_in,initial_enquiry,2026-04-08T00:00:00,Initial Enquiry via walk_in regarding Godrej Elevate,whatsapp_api +INT-000530,PER-0073,referral,initial_enquiry,2026-01-09T00:00:00,Initial Enquiry via referral regarding Godrej Elevate,call_logs +INT-000531,PER-0073,phone_call,family_discussion,2026-01-13T00:00:00,Family Discussion via phone_call regarding Godrej Elevate,manual_entry +INT-000532,PER-0073,email,initial_enquiry,2026-01-15T00:00:00,Initial Enquiry via email regarding Godrej Elevate,whatsapp_api +INT-000533,PER-0073,site_visit,site_visit,2026-01-17T00:00:00,Site Visit via site_visit regarding Godrej Elevate,call_logs +INT-000534,PER-0073,whatsapp,document_sharing,2026-01-26T00:00:00,Document Sharing via whatsapp regarding Godrej Elevate,call_logs +INT-000535,PER-0073,phone_call,initial_enquiry,2026-02-01T00:00:00,Initial Enquiry via phone_call regarding Godrej Elevate,email_sync +INT-000536,PER-0073,phone_call,family_discussion,2026-03-11T00:00:00,Family Discussion via phone_call regarding Godrej Elevate,call_logs +INT-000537,PER-0074,referral,initial_enquiry,2024-05-08T00:00:00,Initial Enquiry via referral regarding DTC Sojon,whatsapp_api +INT-000538,PER-0074,whatsapp,initial_enquiry,2024-05-26T00:00:00,Initial Enquiry via whatsapp regarding DTC Sojon,email_sync +INT-000539,PER-0074,email,price_discussion,2024-06-14T00:00:00,Price Discussion via email regarding DTC Sojon,email_sync +INT-000540,PER-0074,phone_call,family_discussion,2024-07-07T00:00:00,Family Discussion via phone_call regarding DTC Sojon,site_visit_log +INT-000541,PER-0074,referral,negotiation,2024-07-28T00:00:00,Negotiation via referral regarding DTC Sojon,manual_entry +INT-000542,PER-0075,referral,initial_enquiry,2024-04-20T00:00:00,Initial Enquiry via referral regarding Siddha Sky Waterfront,call_logs +INT-000543,PER-0075,whatsapp,price_discussion,2024-04-21T00:00:00,Price Discussion via whatsapp regarding Siddha Sky Waterfront,whatsapp_api +INT-000544,PER-0075,whatsapp,site_visit,2024-04-29T00:00:00,Site Visit via whatsapp regarding Siddha Sky Waterfront,site_visit_log +INT-000545,PER-0075,site_visit,site_visit,2024-05-04T00:00:00,Site Visit via site_visit regarding Siddha Sky Waterfront,email_sync +INT-000546,PER-0075,phone_call,family_discussion,2024-05-15T00:00:00,Family Discussion via phone_call regarding Siddha Sky Waterfront,site_visit_log +INT-000547,PER-0075,site_visit,site_visit,2024-05-16T00:00:00,Site Visit via site_visit regarding Siddha Sky Waterfront,whatsapp_api +INT-000548,PER-0075,site_visit,site_visit,2024-05-31T00:00:00,Site Visit via site_visit regarding Siddha Sky Waterfront,manual_entry +INT-000549,PER-0075,site_visit,site_visit,2024-06-15T00:00:00,Site Visit via site_visit regarding Siddha Sky Waterfront,call_logs +INT-000550,PER-0075,site_visit,site_visit,2024-06-23T00:00:00,Site Visit via site_visit regarding Siddha Sky Waterfront,whatsapp_api +INT-000551,PER-0075,whatsapp,family_discussion,2024-07-01T00:00:00,Family Discussion via whatsapp regarding Siddha Sky Waterfront,whatsapp_api +INT-000552,PER-0075,site_visit,site_visit,2024-07-06T00:00:00,Site Visit via site_visit regarding Siddha Sky Waterfront,whatsapp_api +INT-000553,PER-0075,phone_call,negotiation,2024-07-13T00:00:00,Negotiation via phone_call regarding Siddha Sky Waterfront,email_sync +INT-000554,PER-0076,walk_in,initial_enquiry,2024-05-01T00:00:00,Initial Enquiry via walk_in regarding Merlin Avana,email_sync +INT-000555,PER-0076,whatsapp,price_discussion,2024-05-07T00:00:00,Price Discussion via whatsapp regarding Merlin Avana,email_sync +INT-000556,PER-0076,email,negotiation,2024-05-10T00:00:00,Negotiation via email regarding Merlin Avana,call_logs +INT-000557,PER-0076,site_visit,site_visit,2024-05-13T00:00:00,Site Visit via site_visit regarding Merlin Avana,call_logs +INT-000558,PER-0076,whatsapp,negotiation,2024-05-17T00:00:00,Negotiation via whatsapp regarding Merlin Avana,email_sync +INT-000559,PER-0076,whatsapp,site_visit,2024-05-23T00:00:00,Site Visit via whatsapp regarding Merlin Avana,site_visit_log +INT-000560,PER-0076,whatsapp,initial_enquiry,2024-06-08T00:00:00,Initial Enquiry via whatsapp regarding Merlin Avana,site_visit_log +INT-000561,PER-0076,whatsapp,follow_up,2024-06-12T00:00:00,Follow Up via whatsapp regarding Merlin Avana,call_logs +INT-000562,PER-0077,web_enquiry,initial_enquiry,2024-04-22T00:00:00,Initial Enquiry via web_enquiry regarding Siddha Suburbia Bungalow,call_logs +INT-000563,PER-0077,phone_call,price_discussion,2024-05-02T00:00:00,Price Discussion via phone_call regarding Siddha Suburbia Bungalow,site_visit_log +INT-000564,PER-0077,email,price_discussion,2024-05-20T00:00:00,Price Discussion via email regarding Siddha Suburbia Bungalow,site_visit_log +INT-000565,PER-0077,phone_call,family_discussion,2024-05-20T00:00:00,Family Discussion via phone_call regarding Siddha Suburbia Bungalow,manual_entry +INT-000566,PER-0077,site_visit,site_visit,2024-05-30T00:00:00,Site Visit via site_visit regarding Siddha Suburbia Bungalow,call_logs +INT-000567,PER-0077,site_visit,site_visit,2024-06-04T00:00:00,Site Visit via site_visit regarding Siddha Suburbia Bungalow,email_sync +INT-000568,PER-0077,site_visit,site_visit,2024-06-16T00:00:00,Site Visit via site_visit regarding Siddha Suburbia Bungalow,manual_entry +INT-000569,PER-0077,whatsapp,follow_up,2024-06-25T00:00:00,Follow Up via whatsapp regarding Siddha Suburbia Bungalow,call_logs +INT-000570,PER-0077,site_visit,site_visit,2024-07-06T00:00:00,Site Visit via site_visit regarding Siddha Suburbia Bungalow,whatsapp_api +INT-000571,PER-0077,phone_call,initial_enquiry,2024-07-08T00:00:00,Initial Enquiry via phone_call regarding Siddha Suburbia Bungalow,manual_entry +INT-000572,PER-0078,walk_in,initial_enquiry,2024-11-20T00:00:00,Initial Enquiry via walk_in regarding Atri Surya Toron,whatsapp_api +INT-000573,PER-0078,phone_call,family_discussion,2024-11-21T00:00:00,Family Discussion via phone_call regarding Atri Surya Toron,site_visit_log +INT-000574,PER-0078,email,negotiation,2024-11-26T00:00:00,Negotiation via email regarding Atri Surya Toron,whatsapp_api +INT-000575,PER-0078,site_visit,site_visit,2024-11-27T00:00:00,Site Visit via site_visit regarding Atri Surya Toron,whatsapp_api +INT-000576,PER-0078,whatsapp,negotiation,2024-12-07T00:00:00,Negotiation via whatsapp regarding Atri Surya Toron,site_visit_log +INT-000577,PER-0078,whatsapp,initial_enquiry,2024-12-14T00:00:00,Initial Enquiry via whatsapp regarding Atri Surya Toron,site_visit_log +INT-000578,PER-0078,whatsapp,price_discussion,2025-01-06T00:00:00,Price Discussion via whatsapp regarding Atri Surya Toron,site_visit_log +INT-000579,PER-0078,site_visit,site_visit,2025-01-06T00:00:00,Site Visit via site_visit regarding Atri Surya Toron,whatsapp_api +INT-000580,PER-0079,referral,initial_enquiry,2025-04-17T00:00:00,Initial Enquiry via referral regarding Atri Aqua,site_visit_log +INT-000581,PER-0079,whatsapp,family_discussion,2025-04-22T00:00:00,Family Discussion via whatsapp regarding Atri Aqua,site_visit_log +INT-000582,PER-0079,email,negotiation,2025-05-10T00:00:00,Negotiation via email regarding Atri Aqua,email_sync +INT-000583,PER-0079,web_enquiry,follow_up,2025-05-26T00:00:00,Follow Up via web_enquiry regarding Atri Aqua,manual_entry +INT-000584,PER-0080,web_enquiry,initial_enquiry,2025-08-29T00:00:00,Initial Enquiry via web_enquiry regarding DTC Sojon,call_logs +INT-000585,PER-0080,phone_call,family_discussion,2025-09-12T00:00:00,Family Discussion via phone_call regarding DTC Sojon,manual_entry +INT-000586,PER-0080,whatsapp,family_discussion,2025-10-01T00:00:00,Family Discussion via whatsapp regarding DTC Sojon,email_sync +INT-000587,PER-0080,site_visit,site_visit,2025-10-03T00:00:00,Site Visit via site_visit regarding DTC Sojon,whatsapp_api +INT-000588,PER-0080,phone_call,document_sharing,2025-10-06T00:00:00,Document Sharing via phone_call regarding DTC Sojon,site_visit_log +INT-000589,PER-0080,whatsapp,site_visit,2025-10-11T00:00:00,Site Visit via whatsapp regarding DTC Sojon,whatsapp_api +INT-000590,PER-0080,phone_call,document_sharing,2025-11-05T00:00:00,Document Sharing via phone_call regarding DTC Sojon,site_visit_log +INT-000591,PER-0080,site_visit,site_visit,2025-11-06T00:00:00,Site Visit via site_visit regarding DTC Sojon,email_sync +INT-000592,PER-0081,web_enquiry,initial_enquiry,2024-02-25T00:00:00,Initial Enquiry via web_enquiry regarding Godrej Blue,email_sync +INT-000593,PER-0081,phone_call,document_sharing,2024-03-07T00:00:00,Document Sharing via phone_call regarding Godrej Blue,call_logs +INT-000594,PER-0081,email,document_sharing,2024-03-10T00:00:00,Document Sharing via email regarding Godrej Blue,whatsapp_api +INT-000595,PER-0081,phone_call,family_discussion,2024-03-20T00:00:00,Family Discussion via phone_call regarding Godrej Blue,whatsapp_api +INT-000596,PER-0081,phone_call,site_visit,2024-03-26T00:00:00,Site Visit via phone_call regarding Godrej Blue,email_sync +INT-000597,PER-0081,whatsapp,family_discussion,2024-04-01T00:00:00,Family Discussion via whatsapp regarding Godrej Blue,email_sync +INT-000598,PER-0081,whatsapp,family_discussion,2024-04-17T00:00:00,Family Discussion via whatsapp regarding Godrej Blue,email_sync +INT-000599,PER-0081,phone_call,negotiation,2024-05-01T00:00:00,Negotiation via phone_call regarding Godrej Blue,site_visit_log +INT-000600,PER-0081,whatsapp,initial_enquiry,2024-05-01T00:00:00,Initial Enquiry via whatsapp regarding Godrej Blue,email_sync +INT-000601,PER-0082,web_enquiry,initial_enquiry,2025-07-01T00:00:00,Initial Enquiry via web_enquiry regarding Siddha Sky Waterfront,call_logs +INT-000602,PER-0082,whatsapp,negotiation,2025-07-01T00:00:00,Negotiation via whatsapp regarding Siddha Sky Waterfront,call_logs +INT-000603,PER-0082,whatsapp,family_discussion,2025-07-08T00:00:00,Family Discussion via whatsapp regarding Siddha Sky Waterfront,call_logs +INT-000604,PER-0082,phone_call,family_discussion,2025-07-16T00:00:00,Family Discussion via phone_call regarding Siddha Sky Waterfront,whatsapp_api +INT-000605,PER-0082,whatsapp,initial_enquiry,2025-08-03T00:00:00,Initial Enquiry via whatsapp regarding Siddha Sky Waterfront,whatsapp_api +INT-000606,PER-0082,whatsapp,initial_enquiry,2025-09-04T00:00:00,Initial Enquiry via whatsapp regarding Siddha Sky Waterfront,call_logs +INT-000607,PER-0082,site_visit,site_visit,2025-09-11T00:00:00,Site Visit via site_visit regarding Siddha Sky Waterfront,email_sync +INT-000608,PER-0082,phone_call,family_discussion,2025-09-19T00:00:00,Family Discussion via phone_call regarding Siddha Sky Waterfront,whatsapp_api +INT-000609,PER-0083,web_enquiry,initial_enquiry,2024-11-12T00:00:00,Initial Enquiry via web_enquiry regarding Atri Surya Toron,site_visit_log +INT-000610,PER-0083,whatsapp,negotiation,2024-11-20T00:00:00,Negotiation via whatsapp regarding Atri Surya Toron,site_visit_log +INT-000611,PER-0083,email,initial_enquiry,2024-11-22T00:00:00,Initial Enquiry via email regarding Atri Surya Toron,call_logs +INT-000612,PER-0083,phone_call,negotiation,2024-12-04T00:00:00,Negotiation via phone_call regarding Atri Surya Toron,call_logs +INT-000613,PER-0083,whatsapp,initial_enquiry,2024-12-13T00:00:00,Initial Enquiry via whatsapp regarding Atri Surya Toron,whatsapp_api +INT-000614,PER-0083,whatsapp,initial_enquiry,2024-12-28T00:00:00,Initial Enquiry via whatsapp regarding Atri Surya Toron,manual_entry +INT-000615,PER-0083,site_visit,site_visit,2025-01-11T00:00:00,Site Visit via site_visit regarding Atri Surya Toron,manual_entry +INT-000616,PER-0083,site_visit,site_visit,2025-01-15T00:00:00,Site Visit via site_visit regarding Atri Surya Toron,whatsapp_api +INT-000617,PER-0083,phone_call,negotiation,2025-01-18T00:00:00,Negotiation via phone_call regarding Atri Surya Toron,manual_entry +INT-000618,PER-0083,phone_call,follow_up,2025-01-23T00:00:00,Follow Up via phone_call regarding Atri Surya Toron,email_sync +INT-000619,PER-0083,whatsapp,price_discussion,2025-01-31T00:00:00,Price Discussion via whatsapp regarding Atri Surya Toron,manual_entry +INT-000620,PER-0084,web_enquiry,initial_enquiry,2025-04-18T00:00:00,Initial Enquiry via web_enquiry regarding Merlin Avana,call_logs +INT-000621,PER-0084,phone_call,follow_up,2025-04-21T00:00:00,Follow Up via phone_call regarding Merlin Avana,site_visit_log +INT-000622,PER-0084,whatsapp,family_discussion,2025-05-06T00:00:00,Family Discussion via whatsapp regarding Merlin Avana,email_sync +INT-000623,PER-0084,site_visit,site_visit,2025-05-13T00:00:00,Site Visit via site_visit regarding Merlin Avana,site_visit_log +INT-000624,PER-0084,phone_call,family_discussion,2025-05-30T00:00:00,Family Discussion via phone_call regarding Merlin Avana,manual_entry +INT-000625,PER-0084,phone_call,site_visit,2025-06-01T00:00:00,Site Visit via phone_call regarding Merlin Avana,call_logs +INT-000626,PER-0084,site_visit,site_visit,2025-06-17T00:00:00,Site Visit via site_visit regarding Merlin Avana,site_visit_log +INT-000627,PER-0084,phone_call,price_discussion,2025-06-25T00:00:00,Price Discussion via phone_call regarding Merlin Avana,call_logs +INT-000628,PER-0085,referral,initial_enquiry,2024-05-21T00:00:00,Initial Enquiry via referral regarding Siddha Suburbia Bungalow,whatsapp_api +INT-000629,PER-0085,phone_call,price_discussion,2024-05-28T00:00:00,Price Discussion via phone_call regarding Siddha Suburbia Bungalow,site_visit_log +INT-000630,PER-0085,email,price_discussion,2024-06-21T00:00:00,Price Discussion via email regarding Siddha Suburbia Bungalow,whatsapp_api +INT-000631,PER-0085,phone_call,family_discussion,2024-06-29T00:00:00,Family Discussion via phone_call regarding Siddha Suburbia Bungalow,site_visit_log +INT-000632,PER-0085,email,price_discussion,2024-07-06T00:00:00,Price Discussion via email regarding Siddha Suburbia Bungalow,whatsapp_api +INT-000633,PER-0085,referral,follow_up,2024-08-08T00:00:00,Follow Up via referral regarding Siddha Suburbia Bungalow,call_logs +INT-000634,PER-0086,web_enquiry,initial_enquiry,2024-05-09T00:00:00,Initial Enquiry via web_enquiry regarding Siddha Sky Waterfront,manual_entry +INT-000635,PER-0086,whatsapp,follow_up,2024-05-13T00:00:00,Follow Up via whatsapp regarding Siddha Sky Waterfront,site_visit_log +INT-000636,PER-0086,whatsapp,follow_up,2024-07-27T00:00:00,Follow Up via whatsapp regarding Siddha Sky Waterfront,manual_entry +INT-000637,PER-0087,walk_in,initial_enquiry,2024-05-08T00:00:00,Initial Enquiry via walk_in regarding Atri Aqua,call_logs +INT-000638,PER-0087,phone_call,price_discussion,2024-06-09T00:00:00,Price Discussion via phone_call regarding Atri Aqua,whatsapp_api +INT-000639,PER-0087,email,family_discussion,2024-06-21T00:00:00,Family Discussion via email regarding Atri Aqua,email_sync +INT-000640,PER-0087,referral,family_discussion,2024-07-14T00:00:00,Family Discussion via referral regarding Atri Aqua,site_visit_log +INT-000641,PER-0087,web_enquiry,family_discussion,2024-07-17T00:00:00,Family Discussion via web_enquiry regarding Atri Aqua,whatsapp_api +INT-000642,PER-0087,email,follow_up,2024-07-19T00:00:00,Follow Up via email regarding Atri Aqua,site_visit_log +INT-000643,PER-0088,referral,initial_enquiry,2025-06-05T00:00:00,Initial Enquiry via referral regarding Sugam Prakriti,email_sync +INT-000644,PER-0088,whatsapp,price_discussion,2025-06-05T00:00:00,Price Discussion via whatsapp regarding Sugam Prakriti,whatsapp_api +INT-000645,PER-0088,email,family_discussion,2025-06-07T00:00:00,Family Discussion via email regarding Sugam Prakriti,site_visit_log +INT-000646,PER-0088,whatsapp,initial_enquiry,2025-06-11T00:00:00,Initial Enquiry via whatsapp regarding Sugam Prakriti,manual_entry +INT-000647,PER-0088,whatsapp,follow_up,2025-06-16T00:00:00,Follow Up via whatsapp regarding Sugam Prakriti,manual_entry +INT-000648,PER-0088,whatsapp,price_discussion,2025-06-16T00:00:00,Price Discussion via whatsapp regarding Sugam Prakriti,email_sync +INT-000649,PER-0088,site_visit,site_visit,2025-06-30T00:00:00,Site Visit via site_visit regarding Sugam Prakriti,site_visit_log +INT-000650,PER-0088,phone_call,site_visit,2025-06-30T00:00:00,Site Visit via phone_call regarding Sugam Prakriti,whatsapp_api +INT-000651,PER-0088,phone_call,follow_up,2025-07-04T00:00:00,Follow Up via phone_call regarding Sugam Prakriti,manual_entry +INT-000652,PER-0088,phone_call,initial_enquiry,2025-07-11T00:00:00,Initial Enquiry via phone_call regarding Sugam Prakriti,whatsapp_api +INT-000653,PER-0088,phone_call,document_sharing,2025-07-26T00:00:00,Document Sharing via phone_call regarding Sugam Prakriti,site_visit_log +INT-000654,PER-0088,phone_call,price_discussion,2025-07-27T00:00:00,Price Discussion via phone_call regarding Sugam Prakriti,whatsapp_api +INT-000655,PER-0088,whatsapp,family_discussion,2025-08-05T00:00:00,Family Discussion via whatsapp regarding Sugam Prakriti,manual_entry +INT-000656,PER-0088,phone_call,initial_enquiry,2025-08-07T00:00:00,Initial Enquiry via phone_call regarding Sugam Prakriti,manual_entry +INT-000657,PER-0088,site_visit,site_visit,2025-08-18T00:00:00,Site Visit via site_visit regarding Sugam Prakriti,site_visit_log +INT-000658,PER-0089,web_enquiry,initial_enquiry,2024-05-17T00:00:00,Initial Enquiry via web_enquiry regarding Sugam Prakriti,manual_entry +INT-000659,PER-0089,phone_call,price_discussion,2024-05-24T00:00:00,Price Discussion via phone_call regarding Sugam Prakriti,email_sync +INT-000660,PER-0089,email,initial_enquiry,2024-05-25T00:00:00,Initial Enquiry via email regarding Sugam Prakriti,call_logs +INT-000661,PER-0089,walk_in,price_discussion,2024-06-13T00:00:00,Price Discussion via walk_in regarding Sugam Prakriti,site_visit_log +INT-000662,PER-0089,site_visit,site_visit,2024-07-06T00:00:00,Site Visit via site_visit regarding Sugam Prakriti,site_visit_log +INT-000663,PER-0089,walk_in,negotiation,2024-07-08T00:00:00,Negotiation via walk_in regarding Sugam Prakriti,call_logs +INT-000664,PER-0089,web_enquiry,document_sharing,2024-07-11T00:00:00,Document Sharing via web_enquiry regarding Sugam Prakriti,manual_entry +INT-000665,PER-0090,referral,initial_enquiry,2025-03-24T00:00:00,Initial Enquiry via referral regarding Shriram Grand City,email_sync +INT-000666,PER-0090,phone_call,price_discussion,2025-05-12T00:00:00,Price Discussion via phone_call regarding Shriram Grand City,whatsapp_api +INT-000667,PER-0090,whatsapp,negotiation,2025-06-08T00:00:00,Negotiation via whatsapp regarding Shriram Grand City,manual_entry +INT-000668,PER-0090,web_enquiry,negotiation,2025-06-10T00:00:00,Negotiation via web_enquiry regarding Shriram Grand City,call_logs +INT-000669,PER-0091,referral,initial_enquiry,2024-12-23T00:00:00,Initial Enquiry via referral regarding Siddha Suburbia Bungalow,call_logs +INT-000670,PER-0091,whatsapp,follow_up,2025-01-25T00:00:00,Follow Up via whatsapp regarding Siddha Suburbia Bungalow,call_logs +INT-000671,PER-0091,email,price_discussion,2025-01-26T00:00:00,Price Discussion via email regarding Siddha Suburbia Bungalow,manual_entry +INT-000672,PER-0091,site_visit,site_visit,2025-02-03T00:00:00,Site Visit via site_visit regarding Siddha Suburbia Bungalow,manual_entry +INT-000673,PER-0091,site_visit,site_visit,2025-02-04T00:00:00,Site Visit via site_visit regarding Siddha Suburbia Bungalow,whatsapp_api +INT-000674,PER-0091,site_visit,site_visit,2025-02-07T00:00:00,Site Visit via site_visit regarding Siddha Suburbia Bungalow,whatsapp_api +INT-000675,PER-0091,whatsapp,follow_up,2025-02-11T00:00:00,Follow Up via whatsapp regarding Siddha Suburbia Bungalow,whatsapp_api +INT-000676,PER-0091,whatsapp,price_discussion,2025-03-01T00:00:00,Price Discussion via whatsapp regarding Siddha Suburbia Bungalow,manual_entry +INT-000677,PER-0091,whatsapp,site_visit,2025-03-10T00:00:00,Site Visit via whatsapp regarding Siddha Suburbia Bungalow,manual_entry +INT-000678,PER-0091,whatsapp,initial_enquiry,2025-03-13T00:00:00,Initial Enquiry via whatsapp regarding Siddha Suburbia Bungalow,whatsapp_api +INT-000679,PER-0091,whatsapp,family_discussion,2025-03-18T00:00:00,Family Discussion via whatsapp regarding Siddha Suburbia Bungalow,email_sync +INT-000680,PER-0092,walk_in,initial_enquiry,2024-04-08T00:00:00,Initial Enquiry via walk_in regarding Ambuja Utpaala,whatsapp_api +INT-000681,PER-0092,phone_call,initial_enquiry,2024-04-27T00:00:00,Initial Enquiry via phone_call regarding Ambuja Utpaala,manual_entry +INT-000682,PER-0092,email,price_discussion,2024-05-21T00:00:00,Price Discussion via email regarding Ambuja Utpaala,whatsapp_api +INT-000683,PER-0092,whatsapp,price_discussion,2024-06-15T00:00:00,Price Discussion via whatsapp regarding Ambuja Utpaala,site_visit_log +INT-000684,PER-0093,web_enquiry,initial_enquiry,2024-11-22T00:00:00,Initial Enquiry via web_enquiry regarding Atri Surya Toron,call_logs +INT-000685,PER-0093,whatsapp,price_discussion,2024-11-28T00:00:00,Price Discussion via whatsapp regarding Atri Surya Toron,manual_entry +INT-000686,PER-0093,whatsapp,family_discussion,2024-12-22T00:00:00,Family Discussion via whatsapp regarding Atri Surya Toron,whatsapp_api +INT-000687,PER-0093,whatsapp,family_discussion,2024-12-23T00:00:00,Family Discussion via whatsapp regarding Atri Surya Toron,manual_entry +INT-000688,PER-0093,phone_call,negotiation,2025-01-07T00:00:00,Negotiation via phone_call regarding Atri Surya Toron,manual_entry +INT-000689,PER-0093,site_visit,site_visit,2025-01-22T00:00:00,Site Visit via site_visit regarding Atri Surya Toron,whatsapp_api +INT-000690,PER-0093,phone_call,document_sharing,2025-01-22T00:00:00,Document Sharing via phone_call regarding Atri Surya Toron,site_visit_log +INT-000691,PER-0093,phone_call,site_visit,2025-01-23T00:00:00,Site Visit via phone_call regarding Atri Surya Toron,call_logs +INT-000692,PER-0093,phone_call,initial_enquiry,2025-02-01T00:00:00,Initial Enquiry via phone_call regarding Atri Surya Toron,manual_entry +INT-000693,PER-0093,phone_call,initial_enquiry,2025-02-04T00:00:00,Initial Enquiry via phone_call regarding Atri Surya Toron,call_logs +INT-000694,PER-0093,whatsapp,price_discussion,2025-02-04T00:00:00,Price Discussion via whatsapp regarding Atri Surya Toron,email_sync +INT-000695,PER-0094,web_enquiry,initial_enquiry,2024-11-22T00:00:00,Initial Enquiry via web_enquiry regarding Shriram Grand City,site_visit_log +INT-000696,PER-0094,whatsapp,document_sharing,2024-11-23T00:00:00,Document Sharing via whatsapp regarding Shriram Grand City,manual_entry +INT-000697,PER-0094,whatsapp,price_discussion,2024-12-14T00:00:00,Price Discussion via whatsapp regarding Shriram Grand City,whatsapp_api +INT-000698,PER-0094,web_enquiry,family_discussion,2025-01-06T00:00:00,Family Discussion via web_enquiry regarding Shriram Grand City,call_logs +INT-000699,PER-0094,email,negotiation,2025-01-10T00:00:00,Negotiation via email regarding Shriram Grand City,whatsapp_api +INT-000700,PER-0094,walk_in,document_sharing,2025-01-20T00:00:00,Document Sharing via walk_in regarding Shriram Grand City,email_sync +INT-000701,PER-0094,phone_call,document_sharing,2025-01-27T00:00:00,Document Sharing via phone_call regarding Shriram Grand City,call_logs +INT-000702,PER-0095,walk_in,initial_enquiry,2025-08-09T00:00:00,Initial Enquiry via walk_in regarding Merlin Avana,site_visit_log +INT-000703,PER-0095,phone_call,negotiation,2025-08-11T00:00:00,Negotiation via phone_call regarding Merlin Avana,call_logs +INT-000704,PER-0095,whatsapp,initial_enquiry,2025-08-28T00:00:00,Initial Enquiry via whatsapp regarding Merlin Avana,whatsapp_api +INT-000705,PER-0095,whatsapp,site_visit,2025-09-07T00:00:00,Site Visit via whatsapp regarding Merlin Avana,whatsapp_api +INT-000706,PER-0095,email,price_discussion,2025-10-01T00:00:00,Price Discussion via email regarding Merlin Avana,whatsapp_api +INT-000707,PER-0095,referral,site_visit,2025-10-03T00:00:00,Site Visit via referral regarding Merlin Avana,whatsapp_api +INT-000708,PER-0095,phone_call,price_discussion,2025-10-25T00:00:00,Price Discussion via phone_call regarding Merlin Avana,call_logs +INT-000709,PER-0095,walk_in,document_sharing,2025-10-31T00:00:00,Document Sharing via walk_in regarding Merlin Avana,whatsapp_api +INT-000710,PER-0095,whatsapp,negotiation,2025-11-02T00:00:00,Negotiation via whatsapp regarding Merlin Avana,call_logs +INT-000711,PER-0095,phone_call,site_visit,2025-11-04T00:00:00,Site Visit via phone_call regarding Merlin Avana,manual_entry +INT-000712,PER-0096,referral,initial_enquiry,2024-05-20T00:00:00,Initial Enquiry via referral regarding Siddha Sky Waterfront,whatsapp_api +INT-000713,PER-0096,phone_call,follow_up,2024-05-24T00:00:00,Follow Up via phone_call regarding Siddha Sky Waterfront,call_logs +INT-000714,PER-0096,whatsapp,negotiation,2024-05-28T00:00:00,Negotiation via whatsapp regarding Siddha Sky Waterfront,email_sync +INT-000715,PER-0096,whatsapp,document_sharing,2024-06-18T00:00:00,Document Sharing via whatsapp regarding Siddha Sky Waterfront,manual_entry +INT-000716,PER-0096,whatsapp,initial_enquiry,2024-06-22T00:00:00,Initial Enquiry via whatsapp regarding Siddha Sky Waterfront,site_visit_log +INT-000717,PER-0096,whatsapp,negotiation,2024-06-26T00:00:00,Negotiation via whatsapp regarding Siddha Sky Waterfront,email_sync +INT-000718,PER-0096,whatsapp,negotiation,2024-07-17T00:00:00,Negotiation via whatsapp regarding Siddha Sky Waterfront,whatsapp_api +INT-000719,PER-0096,whatsapp,family_discussion,2024-07-28T00:00:00,Family Discussion via whatsapp regarding Siddha Sky Waterfront,email_sync +INT-000720,PER-0096,phone_call,price_discussion,2024-07-30T00:00:00,Price Discussion via phone_call regarding Siddha Sky Waterfront,whatsapp_api +INT-000721,PER-0096,phone_call,document_sharing,2024-08-02T00:00:00,Document Sharing via phone_call regarding Siddha Sky Waterfront,email_sync +INT-000722,PER-0097,referral,initial_enquiry,2024-09-30T00:00:00,Initial Enquiry via referral regarding Sugam Prakriti,call_logs +INT-000723,PER-0097,phone_call,initial_enquiry,2024-10-08T00:00:00,Initial Enquiry via phone_call regarding Sugam Prakriti,manual_entry +INT-000724,PER-0097,email,follow_up,2024-10-22T00:00:00,Follow Up via email regarding Sugam Prakriti,email_sync +INT-000725,PER-0097,whatsapp,price_discussion,2024-10-26T00:00:00,Price Discussion via whatsapp regarding Sugam Prakriti,site_visit_log +INT-000726,PER-0097,site_visit,site_visit,2024-10-29T00:00:00,Site Visit via site_visit regarding Sugam Prakriti,email_sync +INT-000727,PER-0097,phone_call,price_discussion,2024-10-31T00:00:00,Price Discussion via phone_call regarding Sugam Prakriti,manual_entry +INT-000728,PER-0097,phone_call,price_discussion,2024-11-03T00:00:00,Price Discussion via phone_call regarding Sugam Prakriti,site_visit_log +INT-000729,PER-0097,site_visit,site_visit,2024-11-23T00:00:00,Site Visit via site_visit regarding Sugam Prakriti,email_sync +INT-000730,PER-0097,site_visit,site_visit,2024-11-29T00:00:00,Site Visit via site_visit regarding Sugam Prakriti,site_visit_log +INT-000731,PER-0098,referral,initial_enquiry,2024-08-10T00:00:00,Initial Enquiry via referral regarding Godrej Elevate,site_visit_log +INT-000732,PER-0098,whatsapp,family_discussion,2024-08-14T00:00:00,Family Discussion via whatsapp regarding Godrej Elevate,whatsapp_api +INT-000733,PER-0098,whatsapp,initial_enquiry,2024-09-04T00:00:00,Initial Enquiry via whatsapp regarding Godrej Elevate,site_visit_log +INT-000734,PER-0098,phone_call,follow_up,2024-09-08T00:00:00,Follow Up via phone_call regarding Godrej Elevate,email_sync +INT-000735,PER-0099,web_enquiry,initial_enquiry,2024-03-30T00:00:00,Initial Enquiry via web_enquiry regarding Shriram Grand City,manual_entry +INT-000736,PER-0099,phone_call,document_sharing,2024-04-07T00:00:00,Document Sharing via phone_call regarding Shriram Grand City,whatsapp_api +INT-000737,PER-0099,email,price_discussion,2024-04-10T00:00:00,Price Discussion via email regarding Shriram Grand City,email_sync +INT-000738,PER-0099,site_visit,site_visit,2024-04-14T00:00:00,Site Visit via site_visit regarding Shriram Grand City,whatsapp_api +INT-000739,PER-0099,phone_call,negotiation,2024-04-23T00:00:00,Negotiation via phone_call regarding Shriram Grand City,site_visit_log +INT-000740,PER-0099,phone_call,price_discussion,2024-05-05T00:00:00,Price Discussion via phone_call regarding Shriram Grand City,call_logs +INT-000741,PER-0099,whatsapp,document_sharing,2024-05-22T00:00:00,Document Sharing via whatsapp regarding Shriram Grand City,manual_entry +INT-000742,PER-0099,site_visit,site_visit,2024-06-02T00:00:00,Site Visit via site_visit regarding Shriram Grand City,whatsapp_api +INT-000743,PER-0099,site_visit,site_visit,2024-06-02T00:00:00,Site Visit via site_visit regarding Shriram Grand City,email_sync +INT-000744,PER-0099,site_visit,site_visit,2024-06-11T00:00:00,Site Visit via site_visit regarding Shriram Grand City,email_sync +INT-000745,PER-0100,referral,initial_enquiry,2024-05-19T00:00:00,Initial Enquiry via referral regarding Atri Surya Toron,manual_entry +INT-000746,PER-0100,phone_call,negotiation,2024-05-25T00:00:00,Negotiation via phone_call regarding Atri Surya Toron,email_sync +INT-000747,PER-0100,email,site_visit,2024-06-24T00:00:00,Site Visit via email regarding Atri Surya Toron,call_logs +INT-000748,PER-0100,site_visit,site_visit,2024-06-24T00:00:00,Site Visit via site_visit regarding Atri Surya Toron,manual_entry +INT-000749,PER-0100,referral,document_sharing,2024-06-29T00:00:00,Document Sharing via referral regarding Atri Surya Toron,call_logs +INT-000750,PER-0100,email,price_discussion,2024-07-29T00:00:00,Price Discussion via email regarding Atri Surya Toron,whatsapp_api +INT-000751,PER-0100,referral,negotiation,2024-07-30T00:00:00,Negotiation via referral regarding Atri Surya Toron,site_visit_log +INT-000752,PER-0101,referral,initial_enquiry,2025-09-21T00:00:00,Initial Enquiry via referral regarding Atri Surya Toron,site_visit_log +INT-000753,PER-0101,whatsapp,family_discussion,2025-10-01T00:00:00,Family Discussion via whatsapp regarding Atri Surya Toron,call_logs +INT-000754,PER-0101,email,price_discussion,2025-10-10T00:00:00,Price Discussion via email regarding Atri Surya Toron,site_visit_log +INT-000755,PER-0101,phone_call,site_visit,2025-10-19T00:00:00,Site Visit via phone_call regarding Atri Surya Toron,site_visit_log +INT-000756,PER-0102,walk_in,initial_enquiry,2025-07-25T00:00:00,Initial Enquiry via walk_in regarding DTC Sojon,manual_entry +INT-000757,PER-0102,whatsapp,follow_up,2025-08-19T00:00:00,Follow Up via whatsapp regarding DTC Sojon,manual_entry +INT-000758,PER-0102,email,family_discussion,2025-08-30T00:00:00,Family Discussion via email regarding DTC Sojon,site_visit_log +INT-000759,PER-0102,site_visit,site_visit,2025-09-04T00:00:00,Site Visit via site_visit regarding DTC Sojon,manual_entry +INT-000760,PER-0102,phone_call,family_discussion,2025-09-07T00:00:00,Family Discussion via phone_call regarding DTC Sojon,email_sync +INT-000761,PER-0102,whatsapp,negotiation,2025-09-09T00:00:00,Negotiation via whatsapp regarding DTC Sojon,call_logs +INT-000762,PER-0102,site_visit,site_visit,2025-09-16T00:00:00,Site Visit via site_visit regarding DTC Sojon,call_logs +INT-000763,PER-0102,whatsapp,document_sharing,2025-09-18T00:00:00,Document Sharing via whatsapp regarding DTC Sojon,email_sync +INT-000764,PER-0102,phone_call,follow_up,2025-10-04T00:00:00,Follow Up via phone_call regarding DTC Sojon,site_visit_log +INT-000765,PER-0102,site_visit,site_visit,2025-10-05T00:00:00,Site Visit via site_visit regarding DTC Sojon,site_visit_log +INT-000766,PER-0102,phone_call,price_discussion,2025-10-17T00:00:00,Price Discussion via phone_call regarding DTC Sojon,call_logs +INT-000767,PER-0103,walk_in,initial_enquiry,2024-02-01T00:00:00,Initial Enquiry via walk_in regarding Ambuja Utpaala,whatsapp_api +INT-000768,PER-0103,phone_call,family_discussion,2024-02-02T00:00:00,Family Discussion via phone_call regarding Ambuja Utpaala,site_visit_log +INT-000769,PER-0103,email,initial_enquiry,2024-02-10T00:00:00,Initial Enquiry via email regarding Ambuja Utpaala,whatsapp_api +INT-000770,PER-0103,site_visit,site_visit,2024-02-11T00:00:00,Site Visit via site_visit regarding Ambuja Utpaala,site_visit_log +INT-000771,PER-0103,phone_call,site_visit,2024-03-27T00:00:00,Site Visit via phone_call regarding Ambuja Utpaala,site_visit_log +INT-000772,PER-0103,site_visit,site_visit,2024-03-28T00:00:00,Site Visit via site_visit regarding Ambuja Utpaala,whatsapp_api +INT-000773,PER-0103,phone_call,document_sharing,2024-04-02T00:00:00,Document Sharing via phone_call regarding Ambuja Utpaala,call_logs +INT-000774,PER-0103,site_visit,site_visit,2024-04-04T00:00:00,Site Visit via site_visit regarding Ambuja Utpaala,whatsapp_api +INT-000775,PER-0103,whatsapp,follow_up,2024-04-05T00:00:00,Follow Up via whatsapp regarding Ambuja Utpaala,whatsapp_api +INT-000776,PER-0103,site_visit,site_visit,2024-04-09T00:00:00,Site Visit via site_visit regarding Ambuja Utpaala,whatsapp_api +INT-000777,PER-0103,site_visit,site_visit,2024-04-09T00:00:00,Site Visit via site_visit regarding Ambuja Utpaala,call_logs +INT-000778,PER-0103,site_visit,site_visit,2024-04-25T00:00:00,Site Visit via site_visit regarding Ambuja Utpaala,call_logs +INT-000779,PER-0104,walk_in,initial_enquiry,2026-01-18T00:00:00,Initial Enquiry via walk_in regarding Merlin Avana,site_visit_log +INT-000780,PER-0104,whatsapp,family_discussion,2026-01-27T00:00:00,Family Discussion via whatsapp regarding Merlin Avana,site_visit_log +INT-000781,PER-0104,email,document_sharing,2026-02-13T00:00:00,Document Sharing via email regarding Merlin Avana,call_logs +INT-000782,PER-0104,whatsapp,document_sharing,2026-02-15T00:00:00,Document Sharing via whatsapp regarding Merlin Avana,call_logs +INT-000783,PER-0104,whatsapp,document_sharing,2026-02-16T00:00:00,Document Sharing via whatsapp regarding Merlin Avana,whatsapp_api +INT-000784,PER-0104,phone_call,initial_enquiry,2026-02-17T00:00:00,Initial Enquiry via phone_call regarding Merlin Avana,email_sync +INT-000785,PER-0104,site_visit,site_visit,2026-02-18T00:00:00,Site Visit via site_visit regarding Merlin Avana,manual_entry +INT-000786,PER-0104,phone_call,site_visit,2026-02-24T00:00:00,Site Visit via phone_call regarding Merlin Avana,email_sync +INT-000787,PER-0104,whatsapp,price_discussion,2026-02-28T00:00:00,Price Discussion via whatsapp regarding Merlin Avana,manual_entry +INT-000788,PER-0104,whatsapp,family_discussion,2026-03-09T00:00:00,Family Discussion via whatsapp regarding Merlin Avana,whatsapp_api +INT-000789,PER-0104,phone_call,family_discussion,2026-03-18T00:00:00,Family Discussion via phone_call regarding Merlin Avana,whatsapp_api +INT-000790,PER-0104,whatsapp,negotiation,2026-03-25T00:00:00,Negotiation via whatsapp regarding Merlin Avana,call_logs +INT-000791,PER-0104,site_visit,site_visit,2026-03-27T00:00:00,Site Visit via site_visit regarding Merlin Avana,whatsapp_api +INT-000792,PER-0104,site_visit,site_visit,2026-03-27T00:00:00,Site Visit via site_visit regarding Merlin Avana,email_sync +INT-000793,PER-0105,referral,initial_enquiry,2025-04-03T00:00:00,Initial Enquiry via referral regarding Siddha Suburbia Bungalow,email_sync +INT-000794,PER-0105,phone_call,family_discussion,2025-04-04T00:00:00,Family Discussion via phone_call regarding Siddha Suburbia Bungalow,email_sync +INT-000795,PER-0105,whatsapp,site_visit,2025-04-21T00:00:00,Site Visit via whatsapp regarding Siddha Suburbia Bungalow,site_visit_log +INT-000796,PER-0105,phone_call,negotiation,2025-04-27T00:00:00,Negotiation via phone_call regarding Siddha Suburbia Bungalow,email_sync +INT-000797,PER-0105,site_visit,site_visit,2025-05-04T00:00:00,Site Visit via site_visit regarding Siddha Suburbia Bungalow,whatsapp_api +INT-000798,PER-0105,site_visit,site_visit,2025-05-04T00:00:00,Site Visit via site_visit regarding Siddha Suburbia Bungalow,site_visit_log +INT-000799,PER-0105,site_visit,site_visit,2025-05-17T00:00:00,Site Visit via site_visit regarding Siddha Suburbia Bungalow,site_visit_log +INT-000800,PER-0106,referral,initial_enquiry,2025-06-04T00:00:00,Initial Enquiry via referral regarding Eden Devprayag,email_sync +INT-000801,PER-0106,whatsapp,document_sharing,2025-06-16T00:00:00,Document Sharing via whatsapp regarding Eden Devprayag,whatsapp_api +INT-000802,PER-0106,email,site_visit,2025-06-20T00:00:00,Site Visit via email regarding Eden Devprayag,site_visit_log +INT-000803,PER-0106,whatsapp,initial_enquiry,2025-06-24T00:00:00,Initial Enquiry via whatsapp regarding Eden Devprayag,email_sync +INT-000804,PER-0106,phone_call,family_discussion,2025-07-01T00:00:00,Family Discussion via phone_call regarding Eden Devprayag,email_sync +INT-000805,PER-0106,whatsapp,initial_enquiry,2025-07-04T00:00:00,Initial Enquiry via whatsapp regarding Eden Devprayag,call_logs +INT-000806,PER-0106,phone_call,negotiation,2025-07-20T00:00:00,Negotiation via phone_call regarding Eden Devprayag,manual_entry +INT-000807,PER-0106,whatsapp,site_visit,2025-07-30T00:00:00,Site Visit via whatsapp regarding Eden Devprayag,site_visit_log +INT-000808,PER-0107,referral,initial_enquiry,2024-09-25T00:00:00,Initial Enquiry via referral regarding Sugam Prakriti,manual_entry +INT-000809,PER-0107,phone_call,site_visit,2024-10-22T00:00:00,Site Visit via phone_call regarding Sugam Prakriti,whatsapp_api +INT-000810,PER-0107,whatsapp,follow_up,2024-10-25T00:00:00,Follow Up via whatsapp regarding Sugam Prakriti,site_visit_log +INT-000811,PER-0107,whatsapp,document_sharing,2024-11-03T00:00:00,Document Sharing via whatsapp regarding Sugam Prakriti,email_sync +INT-000812,PER-0107,whatsapp,negotiation,2024-11-05T00:00:00,Negotiation via whatsapp regarding Sugam Prakriti,email_sync +INT-000813,PER-0107,whatsapp,negotiation,2024-11-17T00:00:00,Negotiation via whatsapp regarding Sugam Prakriti,call_logs +INT-000814,PER-0108,web_enquiry,initial_enquiry,2025-10-14T00:00:00,Initial Enquiry via web_enquiry regarding Shriram Grand City,email_sync +INT-000815,PER-0108,phone_call,initial_enquiry,2025-10-14T00:00:00,Initial Enquiry via phone_call regarding Shriram Grand City,email_sync +INT-000816,PER-0108,email,negotiation,2025-10-21T00:00:00,Negotiation via email regarding Shriram Grand City,site_visit_log +INT-000817,PER-0108,phone_call,negotiation,2025-11-24T00:00:00,Negotiation via phone_call regarding Shriram Grand City,whatsapp_api +INT-000818,PER-0108,whatsapp,initial_enquiry,2025-12-09T00:00:00,Initial Enquiry via whatsapp regarding Shriram Grand City,site_visit_log +INT-000819,PER-0108,phone_call,site_visit,2025-12-14T00:00:00,Site Visit via phone_call regarding Shriram Grand City,manual_entry +INT-000820,PER-0108,site_visit,site_visit,2025-12-16T00:00:00,Site Visit via site_visit regarding Shriram Grand City,call_logs +INT-000821,PER-0108,site_visit,site_visit,2025-12-16T00:00:00,Site Visit via site_visit regarding Shriram Grand City,call_logs +INT-000822,PER-0108,site_visit,site_visit,2025-12-26T00:00:00,Site Visit via site_visit regarding Shriram Grand City,manual_entry +INT-000823,PER-0108,phone_call,site_visit,2026-01-09T00:00:00,Site Visit via phone_call regarding Shriram Grand City,call_logs +INT-000824,PER-0109,referral,initial_enquiry,2025-10-19T00:00:00,Initial Enquiry via referral regarding Ambuja Utpaala,call_logs +INT-000825,PER-0109,phone_call,initial_enquiry,2025-10-31T00:00:00,Initial Enquiry via phone_call regarding Ambuja Utpaala,site_visit_log +INT-000826,PER-0109,whatsapp,document_sharing,2025-11-05T00:00:00,Document Sharing via whatsapp regarding Ambuja Utpaala,whatsapp_api +INT-000827,PER-0109,site_visit,site_visit,2025-11-08T00:00:00,Site Visit via site_visit regarding Ambuja Utpaala,call_logs +INT-000828,PER-0109,phone_call,site_visit,2025-11-11T00:00:00,Site Visit via phone_call regarding Ambuja Utpaala,email_sync +INT-000829,PER-0109,phone_call,site_visit,2025-12-14T00:00:00,Site Visit via phone_call regarding Ambuja Utpaala,site_visit_log +INT-000830,PER-0109,whatsapp,family_discussion,2026-01-11T00:00:00,Family Discussion via whatsapp regarding Ambuja Utpaala,site_visit_log +INT-000831,PER-0110,web_enquiry,initial_enquiry,2024-10-10T00:00:00,Initial Enquiry via web_enquiry regarding Eden Devprayag,whatsapp_api +INT-000832,PER-0110,whatsapp,family_discussion,2024-10-26T00:00:00,Family Discussion via whatsapp regarding Eden Devprayag,call_logs +INT-000833,PER-0110,email,price_discussion,2024-10-28T00:00:00,Price Discussion via email regarding Eden Devprayag,manual_entry +INT-000834,PER-0110,site_visit,site_visit,2024-10-29T00:00:00,Site Visit via site_visit regarding Eden Devprayag,whatsapp_api +INT-000835,PER-0110,site_visit,site_visit,2024-10-31T00:00:00,Site Visit via site_visit regarding Eden Devprayag,call_logs +INT-000836,PER-0110,walk_in,negotiation,2024-11-18T00:00:00,Negotiation via walk_in regarding Eden Devprayag,email_sync +INT-000837,PER-0110,walk_in,price_discussion,2024-11-18T00:00:00,Price Discussion via walk_in regarding Eden Devprayag,whatsapp_api +INT-000838,PER-0110,email,site_visit,2024-11-29T00:00:00,Site Visit via email regarding Eden Devprayag,site_visit_log +INT-000839,PER-0110,web_enquiry,follow_up,2024-12-12T00:00:00,Follow Up via web_enquiry regarding Eden Devprayag,manual_entry +INT-000840,PER-0111,referral,initial_enquiry,2025-10-27T00:00:00,Initial Enquiry via referral regarding Shriram Grand City,email_sync +INT-000841,PER-0111,whatsapp,family_discussion,2025-11-17T00:00:00,Family Discussion via whatsapp regarding Shriram Grand City,manual_entry +INT-000842,PER-0111,whatsapp,follow_up,2025-12-24T00:00:00,Follow Up via whatsapp regarding Shriram Grand City,email_sync +INT-000843,PER-0112,referral,initial_enquiry,2025-11-10T00:00:00,Initial Enquiry via referral regarding Shriram Grand City,whatsapp_api +INT-000844,PER-0112,phone_call,price_discussion,2025-11-11T00:00:00,Price Discussion via phone_call regarding Shriram Grand City,whatsapp_api +INT-000845,PER-0112,whatsapp,price_discussion,2025-11-25T00:00:00,Price Discussion via whatsapp regarding Shriram Grand City,manual_entry +INT-000846,PER-0112,phone_call,family_discussion,2025-11-27T00:00:00,Family Discussion via phone_call regarding Shriram Grand City,email_sync +INT-000847,PER-0112,phone_call,price_discussion,2025-12-11T00:00:00,Price Discussion via phone_call regarding Shriram Grand City,whatsapp_api +INT-000848,PER-0112,walk_in,site_visit,2025-12-26T00:00:00,Site Visit via walk_in regarding Shriram Grand City,site_visit_log +INT-000849,PER-0113,web_enquiry,initial_enquiry,2025-10-14T00:00:00,Initial Enquiry via web_enquiry regarding Godrej Blue,site_visit_log +INT-000850,PER-0113,whatsapp,price_discussion,2025-10-16T00:00:00,Price Discussion via whatsapp regarding Godrej Blue,manual_entry +INT-000851,PER-0113,email,initial_enquiry,2025-10-31T00:00:00,Initial Enquiry via email regarding Godrej Blue,site_visit_log +INT-000852,PER-0113,phone_call,negotiation,2025-11-02T00:00:00,Negotiation via phone_call regarding Godrej Blue,email_sync +INT-000853,PER-0113,whatsapp,site_visit,2025-11-10T00:00:00,Site Visit via whatsapp regarding Godrej Blue,manual_entry +INT-000854,PER-0113,phone_call,site_visit,2025-11-10T00:00:00,Site Visit via phone_call regarding Godrej Blue,site_visit_log +INT-000855,PER-0113,site_visit,site_visit,2025-11-10T00:00:00,Site Visit via site_visit regarding Godrej Blue,site_visit_log +INT-000856,PER-0113,phone_call,follow_up,2025-11-23T00:00:00,Follow Up via phone_call regarding Godrej Blue,email_sync +INT-000857,PER-0113,whatsapp,initial_enquiry,2025-12-03T00:00:00,Initial Enquiry via whatsapp regarding Godrej Blue,call_logs +INT-000858,PER-0114,web_enquiry,initial_enquiry,2025-04-22T00:00:00,Initial Enquiry via web_enquiry regarding Atri Surya Toron,whatsapp_api +INT-000859,PER-0114,phone_call,price_discussion,2025-04-25T00:00:00,Price Discussion via phone_call regarding Atri Surya Toron,site_visit_log +INT-000860,PER-0114,email,document_sharing,2025-05-03T00:00:00,Document Sharing via email regarding Atri Surya Toron,manual_entry +INT-000861,PER-0114,site_visit,site_visit,2025-05-09T00:00:00,Site Visit via site_visit regarding Atri Surya Toron,whatsapp_api +INT-000862,PER-0114,walk_in,site_visit,2025-05-25T00:00:00,Site Visit via walk_in regarding Atri Surya Toron,site_visit_log +INT-000863,PER-0114,site_visit,site_visit,2025-06-19T00:00:00,Site Visit via site_visit regarding Atri Surya Toron,whatsapp_api +INT-000864,PER-0114,walk_in,site_visit,2025-07-11T00:00:00,Site Visit via walk_in regarding Atri Surya Toron,manual_entry +INT-000865,PER-0114,referral,follow_up,2025-07-12T00:00:00,Follow Up via referral regarding Atri Surya Toron,call_logs +INT-000866,PER-0115,walk_in,initial_enquiry,2024-10-29T00:00:00,Initial Enquiry via walk_in regarding Ambuja Utpaala,whatsapp_api +INT-000867,PER-0115,phone_call,negotiation,2024-10-30T00:00:00,Negotiation via phone_call regarding Ambuja Utpaala,manual_entry +INT-000868,PER-0115,whatsapp,initial_enquiry,2024-11-21T00:00:00,Initial Enquiry via whatsapp regarding Ambuja Utpaala,site_visit_log +INT-000869,PER-0115,site_visit,site_visit,2024-12-01T00:00:00,Site Visit via site_visit regarding Ambuja Utpaala,manual_entry +INT-000870,PER-0115,whatsapp,price_discussion,2024-12-15T00:00:00,Price Discussion via whatsapp regarding Ambuja Utpaala,site_visit_log +INT-000871,PER-0115,site_visit,site_visit,2024-12-18T00:00:00,Site Visit via site_visit regarding Ambuja Utpaala,manual_entry +INT-000872,PER-0115,site_visit,site_visit,2024-12-28T00:00:00,Site Visit via site_visit regarding Ambuja Utpaala,email_sync +INT-000873,PER-0115,phone_call,document_sharing,2025-01-05T00:00:00,Document Sharing via phone_call regarding Ambuja Utpaala,manual_entry +INT-000874,PER-0115,site_visit,site_visit,2025-01-10T00:00:00,Site Visit via site_visit regarding Ambuja Utpaala,call_logs +INT-000875,PER-0115,whatsapp,negotiation,2025-01-19T00:00:00,Negotiation via whatsapp regarding Ambuja Utpaala,call_logs +INT-000876,PER-0116,referral,initial_enquiry,2024-06-14T00:00:00,Initial Enquiry via referral regarding Atri Aqua,email_sync +INT-000877,PER-0116,phone_call,negotiation,2024-07-12T00:00:00,Negotiation via phone_call regarding Atri Aqua,call_logs +INT-000878,PER-0116,whatsapp,initial_enquiry,2024-07-17T00:00:00,Initial Enquiry via whatsapp regarding Atri Aqua,call_logs +INT-000879,PER-0116,whatsapp,negotiation,2024-07-18T00:00:00,Negotiation via whatsapp regarding Atri Aqua,email_sync +INT-000880,PER-0116,whatsapp,site_visit,2024-07-24T00:00:00,Site Visit via whatsapp regarding Atri Aqua,site_visit_log +INT-000881,PER-0116,site_visit,site_visit,2024-08-02T00:00:00,Site Visit via site_visit regarding Atri Aqua,whatsapp_api +INT-000882,PER-0116,phone_call,document_sharing,2024-08-07T00:00:00,Document Sharing via phone_call regarding Atri Aqua,whatsapp_api +INT-000883,PER-0116,phone_call,initial_enquiry,2024-08-18T00:00:00,Initial Enquiry via phone_call regarding Atri Aqua,whatsapp_api +INT-000884,PER-0116,whatsapp,initial_enquiry,2024-08-28T00:00:00,Initial Enquiry via whatsapp regarding Atri Aqua,manual_entry +INT-000885,PER-0116,site_visit,site_visit,2024-08-28T00:00:00,Site Visit via site_visit regarding Atri Aqua,site_visit_log +INT-000886,PER-0116,phone_call,site_visit,2024-08-29T00:00:00,Site Visit via phone_call regarding Atri Aqua,site_visit_log +INT-000887,PER-0116,site_visit,site_visit,2024-09-02T00:00:00,Site Visit via site_visit regarding Atri Aqua,site_visit_log +INT-000888,PER-0117,walk_in,initial_enquiry,2024-06-17T00:00:00,Initial Enquiry via walk_in regarding Atri Aqua,manual_entry +INT-000889,PER-0117,whatsapp,follow_up,2024-06-18T00:00:00,Follow Up via whatsapp regarding Atri Aqua,call_logs +INT-000890,PER-0117,whatsapp,negotiation,2024-06-21T00:00:00,Negotiation via whatsapp regarding Atri Aqua,whatsapp_api +INT-000891,PER-0117,site_visit,site_visit,2024-06-29T00:00:00,Site Visit via site_visit regarding Atri Aqua,site_visit_log +INT-000892,PER-0117,whatsapp,document_sharing,2024-07-04T00:00:00,Document Sharing via whatsapp regarding Atri Aqua,site_visit_log +INT-000893,PER-0117,phone_call,follow_up,2024-07-20T00:00:00,Follow Up via phone_call regarding Atri Aqua,call_logs +INT-000894,PER-0117,phone_call,price_discussion,2024-07-25T00:00:00,Price Discussion via phone_call regarding Atri Aqua,call_logs +INT-000895,PER-0117,site_visit,site_visit,2024-08-08T00:00:00,Site Visit via site_visit regarding Atri Aqua,call_logs +INT-000896,PER-0117,site_visit,site_visit,2024-08-11T00:00:00,Site Visit via site_visit regarding Atri Aqua,email_sync +INT-000897,PER-0117,phone_call,price_discussion,2024-08-13T00:00:00,Price Discussion via phone_call regarding Atri Aqua,manual_entry +INT-000898,PER-0117,site_visit,site_visit,2024-08-14T00:00:00,Site Visit via site_visit regarding Atri Aqua,email_sync +INT-000899,PER-0117,whatsapp,initial_enquiry,2024-08-20T00:00:00,Initial Enquiry via whatsapp regarding Atri Aqua,manual_entry +INT-000900,PER-0117,whatsapp,follow_up,2024-09-03T00:00:00,Follow Up via whatsapp regarding Atri Aqua,whatsapp_api +INT-000901,PER-0117,site_visit,site_visit,2024-09-09T00:00:00,Site Visit via site_visit regarding Atri Aqua,call_logs +INT-000902,PER-0118,referral,initial_enquiry,2024-06-27T00:00:00,Initial Enquiry via referral regarding Siddha Sky Waterfront,email_sync +INT-000903,PER-0118,whatsapp,site_visit,2024-06-28T00:00:00,Site Visit via whatsapp regarding Siddha Sky Waterfront,manual_entry +INT-000904,PER-0118,email,initial_enquiry,2024-08-05T00:00:00,Initial Enquiry via email regarding Siddha Sky Waterfront,site_visit_log +INT-000905,PER-0118,site_visit,site_visit,2024-08-19T00:00:00,Site Visit via site_visit regarding Siddha Sky Waterfront,manual_entry +INT-000906,PER-0118,phone_call,document_sharing,2024-08-23T00:00:00,Document Sharing via phone_call regarding Siddha Sky Waterfront,call_logs +INT-000907,PER-0118,phone_call,price_discussion,2024-08-27T00:00:00,Price Discussion via phone_call regarding Siddha Sky Waterfront,site_visit_log +INT-000908,PER-0118,site_visit,site_visit,2024-08-28T00:00:00,Site Visit via site_visit regarding Siddha Sky Waterfront,manual_entry +INT-000909,PER-0118,site_visit,site_visit,2024-08-31T00:00:00,Site Visit via site_visit regarding Siddha Sky Waterfront,email_sync +INT-000910,PER-0118,whatsapp,negotiation,2024-09-02T00:00:00,Negotiation via whatsapp regarding Siddha Sky Waterfront,site_visit_log +INT-000911,PER-0118,site_visit,site_visit,2024-09-10T00:00:00,Site Visit via site_visit regarding Siddha Sky Waterfront,email_sync +INT-000912,PER-0119,referral,initial_enquiry,2024-02-02T00:00:00,Initial Enquiry via referral regarding Atri Surya Toron,site_visit_log +INT-000913,PER-0119,whatsapp,document_sharing,2024-02-16T00:00:00,Document Sharing via whatsapp regarding Atri Surya Toron,manual_entry +INT-000914,PER-0119,email,initial_enquiry,2024-02-24T00:00:00,Initial Enquiry via email regarding Atri Surya Toron,site_visit_log +INT-000915,PER-0119,whatsapp,family_discussion,2024-03-04T00:00:00,Family Discussion via whatsapp regarding Atri Surya Toron,whatsapp_api +INT-000916,PER-0119,site_visit,site_visit,2024-03-15T00:00:00,Site Visit via site_visit regarding Atri Surya Toron,call_logs +INT-000917,PER-0119,phone_call,price_discussion,2024-04-09T00:00:00,Price Discussion via phone_call regarding Atri Surya Toron,site_visit_log +INT-000918,PER-0120,walk_in,initial_enquiry,2024-05-01T00:00:00,Initial Enquiry via walk_in regarding Atri Surya Toron,site_visit_log +INT-000919,PER-0120,phone_call,negotiation,2024-05-08T00:00:00,Negotiation via phone_call regarding Atri Surya Toron,site_visit_log +INT-000920,PER-0120,email,document_sharing,2024-05-17T00:00:00,Document Sharing via email regarding Atri Surya Toron,whatsapp_api +INT-000921,PER-0120,site_visit,site_visit,2024-05-18T00:00:00,Site Visit via site_visit regarding Atri Surya Toron,call_logs +INT-000922,PER-0120,phone_call,site_visit,2024-05-20T00:00:00,Site Visit via phone_call regarding Atri Surya Toron,call_logs +INT-000923,PER-0120,whatsapp,price_discussion,2024-05-20T00:00:00,Price Discussion via whatsapp regarding Atri Surya Toron,call_logs +INT-000924,PER-0120,phone_call,negotiation,2024-05-21T00:00:00,Negotiation via phone_call regarding Atri Surya Toron,call_logs +INT-000925,PER-0120,whatsapp,negotiation,2024-05-22T00:00:00,Negotiation via whatsapp regarding Atri Surya Toron,site_visit_log +INT-000926,PER-0120,site_visit,site_visit,2024-05-30T00:00:00,Site Visit via site_visit regarding Atri Surya Toron,site_visit_log +INT-000927,PER-0120,site_visit,site_visit,2024-05-31T00:00:00,Site Visit via site_visit regarding Atri Surya Toron,whatsapp_api +INT-000928,PER-0120,site_visit,site_visit,2024-06-14T00:00:00,Site Visit via site_visit regarding Atri Surya Toron,call_logs +INT-000929,PER-0120,whatsapp,family_discussion,2024-06-15T00:00:00,Family Discussion via whatsapp regarding Atri Surya Toron,manual_entry +INT-000930,PER-0120,whatsapp,price_discussion,2024-06-16T00:00:00,Price Discussion via whatsapp regarding Atri Surya Toron,email_sync +INT-000931,PER-0120,phone_call,price_discussion,2024-06-17T00:00:00,Price Discussion via phone_call regarding Atri Surya Toron,site_visit_log +INT-000932,PER-0120,site_visit,site_visit,2024-07-13T00:00:00,Site Visit via site_visit regarding Atri Surya Toron,email_sync +INT-000933,PER-0121,web_enquiry,initial_enquiry,2025-03-06T00:00:00,Initial Enquiry via web_enquiry regarding Sugam Prakriti,site_visit_log +INT-000934,PER-0121,phone_call,initial_enquiry,2025-03-14T00:00:00,Initial Enquiry via phone_call regarding Sugam Prakriti,email_sync +INT-000935,PER-0121,email,initial_enquiry,2025-03-16T00:00:00,Initial Enquiry via email regarding Sugam Prakriti,email_sync +INT-000936,PER-0121,whatsapp,family_discussion,2025-03-18T00:00:00,Family Discussion via whatsapp regarding Sugam Prakriti,call_logs +INT-000937,PER-0121,site_visit,site_visit,2025-04-06T00:00:00,Site Visit via site_visit regarding Sugam Prakriti,email_sync +INT-000938,PER-0121,whatsapp,family_discussion,2025-04-13T00:00:00,Family Discussion via whatsapp regarding Sugam Prakriti,email_sync +INT-000939,PER-0121,phone_call,negotiation,2025-04-24T00:00:00,Negotiation via phone_call regarding Sugam Prakriti,site_visit_log +INT-000940,PER-0121,phone_call,follow_up,2025-05-04T00:00:00,Follow Up via phone_call regarding Sugam Prakriti,site_visit_log +INT-000941,PER-0121,whatsapp,negotiation,2025-05-09T00:00:00,Negotiation via whatsapp regarding Sugam Prakriti,call_logs +INT-000942,PER-0121,site_visit,site_visit,2025-05-28T00:00:00,Site Visit via site_visit regarding Sugam Prakriti,whatsapp_api +INT-000943,PER-0122,walk_in,initial_enquiry,2024-02-24T00:00:00,Initial Enquiry via walk_in regarding Eden Devprayag,email_sync +INT-000944,PER-0122,whatsapp,negotiation,2024-02-25T00:00:00,Negotiation via whatsapp regarding Eden Devprayag,manual_entry +INT-000945,PER-0122,email,site_visit,2024-02-28T00:00:00,Site Visit via email regarding Eden Devprayag,call_logs +INT-000946,PER-0122,whatsapp,negotiation,2024-03-06T00:00:00,Negotiation via whatsapp regarding Eden Devprayag,site_visit_log +INT-000947,PER-0122,site_visit,site_visit,2024-03-27T00:00:00,Site Visit via site_visit regarding Eden Devprayag,whatsapp_api +INT-000948,PER-0123,web_enquiry,initial_enquiry,2025-10-11T00:00:00,Initial Enquiry via web_enquiry regarding DTC Sojon,site_visit_log +INT-000949,PER-0123,whatsapp,site_visit,2025-10-19T00:00:00,Site Visit via whatsapp regarding DTC Sojon,call_logs +INT-000950,PER-0123,email,follow_up,2025-11-08T00:00:00,Follow Up via email regarding DTC Sojon,whatsapp_api +INT-000951,PER-0124,referral,initial_enquiry,2024-03-17T00:00:00,Initial Enquiry via referral regarding Atri Aqua,whatsapp_api +INT-000952,PER-0124,phone_call,negotiation,2024-03-19T00:00:00,Negotiation via phone_call regarding Atri Aqua,site_visit_log +INT-000953,PER-0124,email,follow_up,2024-03-21T00:00:00,Follow Up via email regarding Atri Aqua,email_sync +INT-000954,PER-0125,referral,initial_enquiry,2025-05-12T00:00:00,Initial Enquiry via referral regarding DTC Good Earth,whatsapp_api +INT-000955,PER-0125,whatsapp,follow_up,2025-05-14T00:00:00,Follow Up via whatsapp regarding DTC Good Earth,manual_entry +INT-000956,PER-0125,whatsapp,site_visit,2025-07-21T00:00:00,Site Visit via whatsapp regarding DTC Good Earth,manual_entry +INT-000957,PER-0125,whatsapp,follow_up,2025-07-23T00:00:00,Follow Up via whatsapp regarding DTC Good Earth,email_sync +INT-000958,PER-0125,whatsapp,initial_enquiry,2025-07-30T00:00:00,Initial Enquiry via whatsapp regarding DTC Good Earth,whatsapp_api +INT-000959,PER-0126,walk_in,initial_enquiry,2025-09-14T00:00:00,Initial Enquiry via walk_in regarding Atri Surya Toron,call_logs +INT-000960,PER-0126,phone_call,follow_up,2025-09-19T00:00:00,Follow Up via phone_call regarding Atri Surya Toron,manual_entry +INT-000961,PER-0126,email,family_discussion,2025-10-08T00:00:00,Family Discussion via email regarding Atri Surya Toron,manual_entry +INT-000962,PER-0126,web_enquiry,document_sharing,2025-10-16T00:00:00,Document Sharing via web_enquiry regarding Atri Surya Toron,call_logs +INT-000963,PER-0126,email,price_discussion,2025-10-16T00:00:00,Price Discussion via email regarding Atri Surya Toron,site_visit_log +INT-000964,PER-0126,walk_in,family_discussion,2025-10-19T00:00:00,Family Discussion via walk_in regarding Atri Surya Toron,whatsapp_api +INT-000965,PER-0126,site_visit,site_visit,2025-11-03T00:00:00,Site Visit via site_visit regarding Atri Surya Toron,call_logs +INT-000966,PER-0127,web_enquiry,initial_enquiry,2026-01-29T00:00:00,Initial Enquiry via web_enquiry regarding Ambuja Utpaala,call_logs +INT-000967,PER-0127,whatsapp,negotiation,2026-02-02T00:00:00,Negotiation via whatsapp regarding Ambuja Utpaala,email_sync +INT-000968,PER-0127,whatsapp,document_sharing,2026-02-05T00:00:00,Document Sharing via whatsapp regarding Ambuja Utpaala,whatsapp_api +INT-000969,PER-0127,site_visit,site_visit,2026-03-26T00:00:00,Site Visit via site_visit regarding Ambuja Utpaala,site_visit_log +INT-000970,PER-0128,referral,initial_enquiry,2026-01-13T00:00:00,Initial Enquiry via referral regarding Siddha Sky Waterfront,whatsapp_api +INT-000971,PER-0128,phone_call,negotiation,2026-02-01T00:00:00,Negotiation via phone_call regarding Siddha Sky Waterfront,email_sync +INT-000972,PER-0128,email,document_sharing,2026-03-05T00:00:00,Document Sharing via email regarding Siddha Sky Waterfront,site_visit_log +INT-000973,PER-0129,walk_in,initial_enquiry,2024-08-08T00:00:00,Initial Enquiry via walk_in regarding Eden Devprayag,site_visit_log +INT-000974,PER-0129,phone_call,site_visit,2024-08-14T00:00:00,Site Visit via phone_call regarding Eden Devprayag,call_logs +INT-000975,PER-0129,email,initial_enquiry,2024-08-15T00:00:00,Initial Enquiry via email regarding Eden Devprayag,site_visit_log +INT-000976,PER-0129,email,initial_enquiry,2024-08-16T00:00:00,Initial Enquiry via email regarding Eden Devprayag,site_visit_log +INT-000977,PER-0129,referral,initial_enquiry,2024-09-10T00:00:00,Initial Enquiry via referral regarding Eden Devprayag,whatsapp_api +INT-000978,PER-0129,web_enquiry,follow_up,2024-09-17T00:00:00,Follow Up via web_enquiry regarding Eden Devprayag,email_sync +INT-000979,PER-0129,referral,family_discussion,2024-09-21T00:00:00,Family Discussion via referral regarding Eden Devprayag,whatsapp_api +INT-000980,PER-0129,referral,document_sharing,2024-10-11T00:00:00,Document Sharing via referral regarding Eden Devprayag,manual_entry +INT-000981,PER-0129,site_visit,site_visit,2024-10-18T00:00:00,Site Visit via site_visit regarding Eden Devprayag,manual_entry +INT-000982,PER-0130,referral,initial_enquiry,2025-09-09T00:00:00,Initial Enquiry via referral regarding DTC Sojon,manual_entry +INT-000983,PER-0130,phone_call,follow_up,2025-09-24T00:00:00,Follow Up via phone_call regarding DTC Sojon,manual_entry +INT-000984,PER-0130,email,initial_enquiry,2025-10-01T00:00:00,Initial Enquiry via email regarding DTC Sojon,manual_entry +INT-000985,PER-0130,whatsapp,negotiation,2025-10-20T00:00:00,Negotiation via whatsapp regarding DTC Sojon,manual_entry +INT-000986,PER-0130,referral,initial_enquiry,2025-11-20T00:00:00,Initial Enquiry via referral regarding DTC Sojon,manual_entry +INT-000987,PER-0131,walk_in,initial_enquiry,2025-06-16T00:00:00,Initial Enquiry via walk_in regarding Atri Aqua,manual_entry +INT-000988,PER-0131,phone_call,site_visit,2025-06-28T00:00:00,Site Visit via phone_call regarding Atri Aqua,manual_entry +INT-000989,PER-0131,email,initial_enquiry,2025-07-03T00:00:00,Initial Enquiry via email regarding Atri Aqua,email_sync +INT-000990,PER-0131,phone_call,negotiation,2025-07-07T00:00:00,Negotiation via phone_call regarding Atri Aqua,manual_entry +INT-000991,PER-0131,whatsapp,family_discussion,2025-07-08T00:00:00,Family Discussion via whatsapp regarding Atri Aqua,call_logs +INT-000992,PER-0131,phone_call,negotiation,2025-07-10T00:00:00,Negotiation via phone_call regarding Atri Aqua,email_sync +INT-000993,PER-0131,phone_call,initial_enquiry,2025-07-18T00:00:00,Initial Enquiry via phone_call regarding Atri Aqua,site_visit_log +INT-000994,PER-0131,site_visit,site_visit,2025-07-26T00:00:00,Site Visit via site_visit regarding Atri Aqua,site_visit_log +INT-000995,PER-0131,whatsapp,document_sharing,2025-07-28T00:00:00,Document Sharing via whatsapp regarding Atri Aqua,site_visit_log +INT-000996,PER-0131,site_visit,site_visit,2025-08-05T00:00:00,Site Visit via site_visit regarding Atri Aqua,whatsapp_api +INT-000997,PER-0131,whatsapp,follow_up,2025-08-07T00:00:00,Follow Up via whatsapp regarding Atri Aqua,manual_entry +INT-000998,PER-0131,phone_call,family_discussion,2025-08-19T00:00:00,Family Discussion via phone_call regarding Atri Aqua,call_logs +INT-000999,PER-0131,phone_call,site_visit,2025-08-31T00:00:00,Site Visit via phone_call regarding Atri Aqua,manual_entry +INT-001000,PER-0132,referral,initial_enquiry,2025-01-13T00:00:00,Initial Enquiry via referral regarding Siddha Suburbia Bungalow,call_logs +INT-001001,PER-0132,whatsapp,negotiation,2025-01-29T00:00:00,Negotiation via whatsapp regarding Siddha Suburbia Bungalow,call_logs +INT-001002,PER-0132,whatsapp,initial_enquiry,2025-02-06T00:00:00,Initial Enquiry via whatsapp regarding Siddha Suburbia Bungalow,manual_entry +INT-001003,PER-0132,whatsapp,follow_up,2025-02-19T00:00:00,Follow Up via whatsapp regarding Siddha Suburbia Bungalow,whatsapp_api +INT-001004,PER-0132,whatsapp,site_visit,2025-03-07T00:00:00,Site Visit via whatsapp regarding Siddha Suburbia Bungalow,whatsapp_api +INT-001005,PER-0132,whatsapp,price_discussion,2025-03-20T00:00:00,Price Discussion via whatsapp regarding Siddha Suburbia Bungalow,site_visit_log +INT-001006,PER-0132,whatsapp,negotiation,2025-04-04T00:00:00,Negotiation via whatsapp regarding Siddha Suburbia Bungalow,whatsapp_api +INT-001007,PER-0133,walk_in,initial_enquiry,2024-04-09T00:00:00,Initial Enquiry via walk_in regarding Siddha Serena,site_visit_log +INT-001008,PER-0133,phone_call,price_discussion,2024-04-19T00:00:00,Price Discussion via phone_call regarding Siddha Serena,email_sync +INT-001009,PER-0133,whatsapp,document_sharing,2024-04-21T00:00:00,Document Sharing via whatsapp regarding Siddha Serena,call_logs +INT-001010,PER-0133,whatsapp,document_sharing,2024-04-21T00:00:00,Document Sharing via whatsapp regarding Siddha Serena,call_logs +INT-001011,PER-0133,site_visit,site_visit,2024-05-07T00:00:00,Site Visit via site_visit regarding Siddha Serena,whatsapp_api +INT-001012,PER-0133,phone_call,site_visit,2024-05-12T00:00:00,Site Visit via phone_call regarding Siddha Serena,manual_entry +INT-001013,PER-0133,whatsapp,follow_up,2024-05-12T00:00:00,Follow Up via whatsapp regarding Siddha Serena,manual_entry +INT-001014,PER-0133,phone_call,site_visit,2024-05-15T00:00:00,Site Visit via phone_call regarding Siddha Serena,call_logs +INT-001015,PER-0133,phone_call,document_sharing,2024-06-09T00:00:00,Document Sharing via phone_call regarding Siddha Serena,whatsapp_api +INT-001016,PER-0133,phone_call,family_discussion,2024-06-10T00:00:00,Family Discussion via phone_call regarding Siddha Serena,call_logs +INT-001017,PER-0134,referral,initial_enquiry,2024-12-25T00:00:00,Initial Enquiry via referral regarding Merlin Avana,manual_entry +INT-001018,PER-0134,phone_call,family_discussion,2024-12-26T00:00:00,Family Discussion via phone_call regarding Merlin Avana,manual_entry +INT-001019,PER-0134,whatsapp,follow_up,2025-02-03T00:00:00,Follow Up via whatsapp regarding Merlin Avana,whatsapp_api +INT-001020,PER-0135,web_enquiry,initial_enquiry,2025-02-19T00:00:00,Initial Enquiry via web_enquiry regarding Siddha Suburbia Bungalow,call_logs +INT-001021,PER-0135,phone_call,follow_up,2025-03-06T00:00:00,Follow Up via phone_call regarding Siddha Suburbia Bungalow,call_logs +INT-001022,PER-0135,whatsapp,site_visit,2025-03-19T00:00:00,Site Visit via whatsapp regarding Siddha Suburbia Bungalow,site_visit_log +INT-001023,PER-0135,whatsapp,follow_up,2025-04-02T00:00:00,Follow Up via whatsapp regarding Siddha Suburbia Bungalow,site_visit_log +INT-001024,PER-0135,site_visit,site_visit,2025-04-11T00:00:00,Site Visit via site_visit regarding Siddha Suburbia Bungalow,call_logs +INT-001025,PER-0135,whatsapp,site_visit,2025-04-14T00:00:00,Site Visit via whatsapp regarding Siddha Suburbia Bungalow,call_logs +INT-001026,PER-0135,site_visit,site_visit,2025-04-17T00:00:00,Site Visit via site_visit regarding Siddha Suburbia Bungalow,email_sync +INT-001027,PER-0135,phone_call,negotiation,2025-04-20T00:00:00,Negotiation via phone_call regarding Siddha Suburbia Bungalow,call_logs +INT-001028,PER-0135,site_visit,site_visit,2025-04-23T00:00:00,Site Visit via site_visit regarding Siddha Suburbia Bungalow,site_visit_log +INT-001029,PER-0135,whatsapp,price_discussion,2025-04-23T00:00:00,Price Discussion via whatsapp regarding Siddha Suburbia Bungalow,manual_entry +INT-001030,PER-0135,site_visit,site_visit,2025-04-27T00:00:00,Site Visit via site_visit regarding Siddha Suburbia Bungalow,whatsapp_api +INT-001031,PER-0135,whatsapp,family_discussion,2025-04-30T00:00:00,Family Discussion via whatsapp regarding Siddha Suburbia Bungalow,whatsapp_api +INT-001032,PER-0136,web_enquiry,initial_enquiry,2025-05-09T00:00:00,Initial Enquiry via web_enquiry regarding Shriram Grand City,whatsapp_api +INT-001033,PER-0136,phone_call,initial_enquiry,2025-05-23T00:00:00,Initial Enquiry via phone_call regarding Shriram Grand City,whatsapp_api +INT-001034,PER-0136,whatsapp,initial_enquiry,2025-07-30T00:00:00,Initial Enquiry via whatsapp regarding Shriram Grand City,whatsapp_api +INT-001035,PER-0137,web_enquiry,initial_enquiry,2026-01-31T00:00:00,Initial Enquiry via web_enquiry regarding DTC Good Earth,whatsapp_api +INT-001036,PER-0137,whatsapp,negotiation,2026-02-02T00:00:00,Negotiation via whatsapp regarding DTC Good Earth,email_sync +INT-001037,PER-0137,email,family_discussion,2026-02-04T00:00:00,Family Discussion via email regarding DTC Good Earth,manual_entry +INT-001038,PER-0137,whatsapp,price_discussion,2026-02-08T00:00:00,Price Discussion via whatsapp regarding DTC Good Earth,email_sync +INT-001039,PER-0137,site_visit,site_visit,2026-03-11T00:00:00,Site Visit via site_visit regarding DTC Good Earth,email_sync +INT-001040,PER-0137,whatsapp,initial_enquiry,2026-03-30T00:00:00,Initial Enquiry via whatsapp regarding DTC Good Earth,site_visit_log +INT-001041,PER-0137,site_visit,site_visit,2026-04-14T00:00:00,Site Visit via site_visit regarding DTC Good Earth,email_sync +INT-001042,PER-0137,site_visit,site_visit,2026-04-17T00:00:00,Site Visit via site_visit regarding DTC Good Earth,site_visit_log +INT-001043,PER-0137,phone_call,negotiation,2026-04-25T00:00:00,Negotiation via phone_call regarding DTC Good Earth,site_visit_log +INT-001044,PER-0138,walk_in,initial_enquiry,2024-08-08T00:00:00,Initial Enquiry via walk_in regarding Ambuja Utpaala,call_logs +INT-001045,PER-0138,whatsapp,family_discussion,2024-08-24T00:00:00,Family Discussion via whatsapp regarding Ambuja Utpaala,call_logs +INT-001046,PER-0138,whatsapp,initial_enquiry,2024-09-02T00:00:00,Initial Enquiry via whatsapp regarding Ambuja Utpaala,site_visit_log +INT-001047,PER-0138,walk_in,follow_up,2024-09-05T00:00:00,Follow Up via walk_in regarding Ambuja Utpaala,email_sync +INT-001048,PER-0138,walk_in,price_discussion,2024-09-20T00:00:00,Price Discussion via walk_in regarding Ambuja Utpaala,whatsapp_api +INT-001049,PER-0138,site_visit,site_visit,2024-09-22T00:00:00,Site Visit via site_visit regarding Ambuja Utpaala,site_visit_log +INT-001050,PER-0138,walk_in,price_discussion,2024-09-30T00:00:00,Price Discussion via walk_in regarding Ambuja Utpaala,site_visit_log +INT-001051,PER-0138,site_visit,site_visit,2024-10-12T00:00:00,Site Visit via site_visit regarding Ambuja Utpaala,email_sync +INT-001052,PER-0139,walk_in,initial_enquiry,2025-02-26T00:00:00,Initial Enquiry via walk_in regarding Siddha Serena,email_sync +INT-001053,PER-0139,phone_call,negotiation,2025-03-21T00:00:00,Negotiation via phone_call regarding Siddha Serena,site_visit_log +INT-001054,PER-0139,whatsapp,follow_up,2025-04-08T00:00:00,Follow Up via whatsapp regarding Siddha Serena,site_visit_log +INT-001055,PER-0139,whatsapp,site_visit,2025-05-05T00:00:00,Site Visit via whatsapp regarding Siddha Serena,site_visit_log +INT-001056,PER-0139,whatsapp,follow_up,2025-05-17T00:00:00,Follow Up via whatsapp regarding Siddha Serena,whatsapp_api +INT-001057,PER-0139,whatsapp,family_discussion,2025-05-21T00:00:00,Family Discussion via whatsapp regarding Siddha Serena,manual_entry +INT-001058,PER-0140,referral,initial_enquiry,2024-04-22T00:00:00,Initial Enquiry via referral regarding Siddha Suburbia Bungalow,site_visit_log +INT-001059,PER-0140,whatsapp,price_discussion,2024-04-26T00:00:00,Price Discussion via whatsapp regarding Siddha Suburbia Bungalow,email_sync +INT-001060,PER-0140,whatsapp,site_visit,2024-05-28T00:00:00,Site Visit via whatsapp regarding Siddha Suburbia Bungalow,call_logs +INT-001061,PER-0140,phone_call,negotiation,2024-06-25T00:00:00,Negotiation via phone_call regarding Siddha Suburbia Bungalow,email_sync +INT-001062,PER-0140,whatsapp,document_sharing,2024-07-03T00:00:00,Document Sharing via whatsapp regarding Siddha Suburbia Bungalow,manual_entry +INT-001063,PER-0141,web_enquiry,initial_enquiry,2024-11-17T00:00:00,Initial Enquiry via web_enquiry regarding Siddha Serena,site_visit_log +INT-001064,PER-0141,phone_call,document_sharing,2024-12-07T00:00:00,Document Sharing via phone_call regarding Siddha Serena,manual_entry +INT-001065,PER-0141,whatsapp,document_sharing,2025-01-05T00:00:00,Document Sharing via whatsapp regarding Siddha Serena,manual_entry +INT-001066,PER-0142,walk_in,initial_enquiry,2025-05-30T00:00:00,Initial Enquiry via walk_in regarding Atri Surya Toron,site_visit_log +INT-001067,PER-0142,phone_call,family_discussion,2025-06-22T00:00:00,Family Discussion via phone_call regarding Atri Surya Toron,site_visit_log +INT-001068,PER-0142,email,follow_up,2025-06-22T00:00:00,Follow Up via email regarding Atri Surya Toron,email_sync +INT-001069,PER-0142,phone_call,follow_up,2025-06-24T00:00:00,Follow Up via phone_call regarding Atri Surya Toron,call_logs +INT-001070,PER-0142,phone_call,document_sharing,2025-07-04T00:00:00,Document Sharing via phone_call regarding Atri Surya Toron,call_logs +INT-001071,PER-0142,whatsapp,initial_enquiry,2025-07-23T00:00:00,Initial Enquiry via whatsapp regarding Atri Surya Toron,email_sync +INT-001072,PER-0142,phone_call,initial_enquiry,2025-07-31T00:00:00,Initial Enquiry via phone_call regarding Atri Surya Toron,site_visit_log +INT-001073,PER-0142,phone_call,price_discussion,2025-08-12T00:00:00,Price Discussion via phone_call regarding Atri Surya Toron,call_logs +INT-001074,PER-0143,referral,initial_enquiry,2024-02-25T00:00:00,Initial Enquiry via referral regarding Eden Devprayag,call_logs +INT-001075,PER-0143,whatsapp,document_sharing,2024-03-24T00:00:00,Document Sharing via whatsapp regarding Eden Devprayag,email_sync +INT-001076,PER-0143,email,initial_enquiry,2024-04-02T00:00:00,Initial Enquiry via email regarding Eden Devprayag,whatsapp_api +INT-001077,PER-0143,phone_call,price_discussion,2024-04-29T00:00:00,Price Discussion via phone_call regarding Eden Devprayag,call_logs +INT-001078,PER-0144,web_enquiry,initial_enquiry,2024-04-29T00:00:00,Initial Enquiry via web_enquiry regarding Godrej Elevate,whatsapp_api +INT-001079,PER-0144,phone_call,follow_up,2024-06-08T00:00:00,Follow Up via phone_call regarding Godrej Elevate,call_logs +INT-001080,PER-0144,email,follow_up,2024-06-15T00:00:00,Follow Up via email regarding Godrej Elevate,whatsapp_api +INT-001081,PER-0144,whatsapp,follow_up,2024-06-18T00:00:00,Follow Up via whatsapp regarding Godrej Elevate,site_visit_log +INT-001082,PER-0144,web_enquiry,site_visit,2024-06-26T00:00:00,Site Visit via web_enquiry regarding Godrej Elevate,call_logs +INT-001083,PER-0144,walk_in,follow_up,2024-07-06T00:00:00,Follow Up via walk_in regarding Godrej Elevate,call_logs +INT-001084,PER-0145,walk_in,initial_enquiry,2024-08-12T00:00:00,Initial Enquiry via walk_in regarding Eden Devprayag,call_logs +INT-001085,PER-0145,phone_call,negotiation,2024-08-13T00:00:00,Negotiation via phone_call regarding Eden Devprayag,site_visit_log +INT-001086,PER-0145,whatsapp,price_discussion,2024-09-18T00:00:00,Price Discussion via whatsapp regarding Eden Devprayag,manual_entry +INT-001087,PER-0145,referral,document_sharing,2024-09-27T00:00:00,Document Sharing via referral regarding Eden Devprayag,site_visit_log +INT-001088,PER-0145,referral,price_discussion,2024-10-03T00:00:00,Price Discussion via referral regarding Eden Devprayag,manual_entry +INT-001089,PER-0145,site_visit,site_visit,2024-10-30T00:00:00,Site Visit via site_visit regarding Eden Devprayag,manual_entry +INT-001090,PER-0146,referral,initial_enquiry,2024-05-26T00:00:00,Initial Enquiry via referral regarding Ambuja Utpaala,site_visit_log +INT-001091,PER-0146,whatsapp,family_discussion,2024-07-04T00:00:00,Family Discussion via whatsapp regarding Ambuja Utpaala,site_visit_log +INT-001092,PER-0146,whatsapp,initial_enquiry,2024-07-29T00:00:00,Initial Enquiry via whatsapp regarding Ambuja Utpaala,whatsapp_api +INT-001093,PER-0147,web_enquiry,initial_enquiry,2024-03-29T00:00:00,Initial Enquiry via web_enquiry regarding Siddha Serena,call_logs +INT-001094,PER-0147,whatsapp,price_discussion,2024-04-17T00:00:00,Price Discussion via whatsapp regarding Siddha Serena,call_logs +INT-001095,PER-0147,email,price_discussion,2024-04-29T00:00:00,Price Discussion via email regarding Siddha Serena,site_visit_log +INT-001096,PER-0148,referral,initial_enquiry,2024-11-03T00:00:00,Initial Enquiry via referral regarding Shriram Grand City,call_logs +INT-001097,PER-0148,whatsapp,document_sharing,2024-11-17T00:00:00,Document Sharing via whatsapp regarding Shriram Grand City,site_visit_log +INT-001098,PER-0148,whatsapp,document_sharing,2024-11-27T00:00:00,Document Sharing via whatsapp regarding Shriram Grand City,manual_entry +INT-001099,PER-0148,whatsapp,price_discussion,2024-12-03T00:00:00,Price Discussion via whatsapp regarding Shriram Grand City,email_sync +INT-001100,PER-0148,site_visit,site_visit,2024-12-04T00:00:00,Site Visit via site_visit regarding Shriram Grand City,call_logs +INT-001101,PER-0148,phone_call,site_visit,2024-12-11T00:00:00,Site Visit via phone_call regarding Shriram Grand City,call_logs +INT-001102,PER-0148,whatsapp,site_visit,2024-12-13T00:00:00,Site Visit via whatsapp regarding Shriram Grand City,whatsapp_api +INT-001103,PER-0148,whatsapp,document_sharing,2024-12-13T00:00:00,Document Sharing via whatsapp regarding Shriram Grand City,site_visit_log +INT-001104,PER-0148,phone_call,follow_up,2024-12-22T00:00:00,Follow Up via phone_call regarding Shriram Grand City,email_sync +INT-001105,PER-0148,site_visit,site_visit,2025-01-03T00:00:00,Site Visit via site_visit regarding Shriram Grand City,site_visit_log +INT-001106,PER-0148,site_visit,site_visit,2025-01-05T00:00:00,Site Visit via site_visit regarding Shriram Grand City,call_logs +INT-001107,PER-0148,phone_call,follow_up,2025-01-05T00:00:00,Follow Up via phone_call regarding Shriram Grand City,email_sync +INT-001108,PER-0148,phone_call,document_sharing,2025-01-10T00:00:00,Document Sharing via phone_call regarding Shriram Grand City,manual_entry +INT-001109,PER-0148,site_visit,site_visit,2025-01-14T00:00:00,Site Visit via site_visit regarding Shriram Grand City,manual_entry +INT-001110,PER-0148,phone_call,document_sharing,2025-01-29T00:00:00,Document Sharing via phone_call regarding Shriram Grand City,manual_entry +INT-001111,PER-0149,walk_in,initial_enquiry,2025-01-08T00:00:00,Initial Enquiry via walk_in regarding Merlin Avana,email_sync +INT-001112,PER-0149,phone_call,site_visit,2025-01-19T00:00:00,Site Visit via phone_call regarding Merlin Avana,manual_entry +INT-001113,PER-0149,whatsapp,family_discussion,2025-01-24T00:00:00,Family Discussion via whatsapp regarding Merlin Avana,email_sync +INT-001114,PER-0149,site_visit,site_visit,2025-02-17T00:00:00,Site Visit via site_visit regarding Merlin Avana,whatsapp_api +INT-001115,PER-0149,site_visit,site_visit,2025-02-18T00:00:00,Site Visit via site_visit regarding Merlin Avana,manual_entry +INT-001116,PER-0149,phone_call,document_sharing,2025-02-22T00:00:00,Document Sharing via phone_call regarding Merlin Avana,whatsapp_api +INT-001117,PER-0149,whatsapp,site_visit,2025-02-24T00:00:00,Site Visit via whatsapp regarding Merlin Avana,site_visit_log +INT-001118,PER-0149,whatsapp,price_discussion,2025-03-19T00:00:00,Price Discussion via whatsapp regarding Merlin Avana,email_sync +INT-001119,PER-0149,email,family_discussion,2025-03-20T00:00:00,Family Discussion via email regarding Merlin Avana,whatsapp_api +INT-001120,PER-0150,web_enquiry,initial_enquiry,2025-11-19T00:00:00,Initial Enquiry via web_enquiry regarding Siddha Suburbia Bungalow,site_visit_log +INT-001121,PER-0150,phone_call,site_visit,2025-11-22T00:00:00,Site Visit via phone_call regarding Siddha Suburbia Bungalow,call_logs +INT-001122,PER-0150,whatsapp,follow_up,2025-12-23T00:00:00,Follow Up via whatsapp regarding Siddha Suburbia Bungalow,whatsapp_api +INT-001123,PER-0150,site_visit,site_visit,2025-12-27T00:00:00,Site Visit via site_visit regarding Siddha Suburbia Bungalow,site_visit_log +INT-001124,PER-0150,site_visit,site_visit,2025-12-31T00:00:00,Site Visit via site_visit regarding Siddha Suburbia Bungalow,email_sync +INT-001125,PER-0150,site_visit,site_visit,2026-01-14T00:00:00,Site Visit via site_visit regarding Siddha Suburbia Bungalow,whatsapp_api +INT-001126,PER-0150,phone_call,document_sharing,2026-01-20T00:00:00,Document Sharing via phone_call regarding Siddha Suburbia Bungalow,site_visit_log +INT-001127,PER-0150,whatsapp,price_discussion,2026-01-28T00:00:00,Price Discussion via whatsapp regarding Siddha Suburbia Bungalow,call_logs +INT-001128,PER-0150,whatsapp,initial_enquiry,2026-01-29T00:00:00,Initial Enquiry via whatsapp regarding Siddha Suburbia Bungalow,manual_entry +INT-001129,PER-0150,phone_call,negotiation,2026-02-12T00:00:00,Negotiation via phone_call regarding Siddha Suburbia Bungalow,whatsapp_api +INT-001130,PER-0151,referral,initial_enquiry,2025-06-03T00:00:00,Initial Enquiry via referral regarding DTC Sojon,manual_entry +INT-001131,PER-0151,whatsapp,price_discussion,2025-07-11T00:00:00,Price Discussion via whatsapp regarding DTC Sojon,whatsapp_api +INT-001132,PER-0151,email,follow_up,2025-07-19T00:00:00,Follow Up via email regarding DTC Sojon,call_logs +INT-001133,PER-0151,phone_call,initial_enquiry,2025-08-08T00:00:00,Initial Enquiry via phone_call regarding DTC Sojon,whatsapp_api +INT-001134,PER-0151,email,family_discussion,2025-08-13T00:00:00,Family Discussion via email regarding DTC Sojon,site_visit_log +INT-001135,PER-0151,whatsapp,document_sharing,2025-08-14T00:00:00,Document Sharing via whatsapp regarding DTC Sojon,email_sync +INT-001136,PER-0152,web_enquiry,initial_enquiry,2024-05-13T00:00:00,Initial Enquiry via web_enquiry regarding Siddha Serena,call_logs +INT-001137,PER-0152,phone_call,site_visit,2024-05-19T00:00:00,Site Visit via phone_call regarding Siddha Serena,site_visit_log +INT-001138,PER-0152,whatsapp,initial_enquiry,2024-07-07T00:00:00,Initial Enquiry via whatsapp regarding Siddha Serena,whatsapp_api +INT-001139,PER-0153,walk_in,initial_enquiry,2025-06-19T00:00:00,Initial Enquiry via walk_in regarding Merlin Avana,site_visit_log +INT-001140,PER-0153,whatsapp,follow_up,2025-07-11T00:00:00,Follow Up via whatsapp regarding Merlin Avana,whatsapp_api +INT-001141,PER-0153,whatsapp,initial_enquiry,2025-07-12T00:00:00,Initial Enquiry via whatsapp regarding Merlin Avana,site_visit_log +INT-001142,PER-0153,site_visit,site_visit,2025-07-18T00:00:00,Site Visit via site_visit regarding Merlin Avana,call_logs +INT-001143,PER-0153,whatsapp,document_sharing,2025-08-06T00:00:00,Document Sharing via whatsapp regarding Merlin Avana,site_visit_log +INT-001144,PER-0153,whatsapp,price_discussion,2025-08-18T00:00:00,Price Discussion via whatsapp regarding Merlin Avana,whatsapp_api +INT-001145,PER-0153,whatsapp,initial_enquiry,2025-08-25T00:00:00,Initial Enquiry via whatsapp regarding Merlin Avana,email_sync +INT-001146,PER-0153,whatsapp,site_visit,2025-09-10T00:00:00,Site Visit via whatsapp regarding Merlin Avana,email_sync +INT-001147,PER-0154,web_enquiry,initial_enquiry,2025-08-02T00:00:00,Initial Enquiry via web_enquiry regarding Godrej Blue,whatsapp_api +INT-001148,PER-0154,whatsapp,price_discussion,2025-08-09T00:00:00,Price Discussion via whatsapp regarding Godrej Blue,site_visit_log +INT-001149,PER-0154,email,initial_enquiry,2025-08-30T00:00:00,Initial Enquiry via email regarding Godrej Blue,whatsapp_api +INT-001150,PER-0154,phone_call,price_discussion,2025-08-31T00:00:00,Price Discussion via phone_call regarding Godrej Blue,whatsapp_api +INT-001151,PER-0154,phone_call,initial_enquiry,2025-08-31T00:00:00,Initial Enquiry via phone_call regarding Godrej Blue,manual_entry +INT-001152,PER-0154,phone_call,price_discussion,2025-08-31T00:00:00,Price Discussion via phone_call regarding Godrej Blue,email_sync +INT-001153,PER-0154,site_visit,site_visit,2025-09-09T00:00:00,Site Visit via site_visit regarding Godrej Blue,whatsapp_api +INT-001154,PER-0154,site_visit,site_visit,2025-09-20T00:00:00,Site Visit via site_visit regarding Godrej Blue,call_logs +INT-001155,PER-0154,site_visit,site_visit,2025-09-24T00:00:00,Site Visit via site_visit regarding Godrej Blue,email_sync +INT-001156,PER-0155,walk_in,initial_enquiry,2024-01-13T00:00:00,Initial Enquiry via walk_in regarding Sugam Prakriti,manual_entry +INT-001157,PER-0155,phone_call,family_discussion,2024-02-04T00:00:00,Family Discussion via phone_call regarding Sugam Prakriti,whatsapp_api +INT-001158,PER-0155,email,price_discussion,2024-02-11T00:00:00,Price Discussion via email regarding Sugam Prakriti,manual_entry +INT-001159,PER-0155,web_enquiry,document_sharing,2024-02-26T00:00:00,Document Sharing via web_enquiry regarding Sugam Prakriti,site_visit_log +INT-001160,PER-0155,walk_in,initial_enquiry,2024-02-29T00:00:00,Initial Enquiry via walk_in regarding Sugam Prakriti,email_sync +INT-001161,PER-0155,walk_in,site_visit,2024-03-05T00:00:00,Site Visit via walk_in regarding Sugam Prakriti,whatsapp_api +INT-001162,PER-0155,site_visit,site_visit,2024-03-06T00:00:00,Site Visit via site_visit regarding Sugam Prakriti,email_sync +INT-001163,PER-0155,whatsapp,document_sharing,2024-03-16T00:00:00,Document Sharing via whatsapp regarding Sugam Prakriti,whatsapp_api +INT-001164,PER-0156,web_enquiry,initial_enquiry,2025-01-19T00:00:00,Initial Enquiry via web_enquiry regarding DTC Good Earth,manual_entry +INT-001165,PER-0156,whatsapp,negotiation,2025-02-16T00:00:00,Negotiation via whatsapp regarding DTC Good Earth,call_logs +INT-001166,PER-0156,email,family_discussion,2025-03-23T00:00:00,Family Discussion via email regarding DTC Good Earth,email_sync +INT-001167,PER-0157,referral,initial_enquiry,2024-10-01T00:00:00,Initial Enquiry via referral regarding DTC Good Earth,call_logs +INT-001168,PER-0157,phone_call,initial_enquiry,2024-11-03T00:00:00,Initial Enquiry via phone_call regarding DTC Good Earth,email_sync +INT-001169,PER-0157,email,document_sharing,2024-11-11T00:00:00,Document Sharing via email regarding DTC Good Earth,site_visit_log +INT-001170,PER-0157,referral,negotiation,2024-12-07T00:00:00,Negotiation via referral regarding DTC Good Earth,call_logs +INT-001171,PER-0157,whatsapp,document_sharing,2024-12-20T00:00:00,Document Sharing via whatsapp regarding DTC Good Earth,whatsapp_api +INT-001172,PER-0158,referral,initial_enquiry,2025-12-15T00:00:00,Initial Enquiry via referral regarding Atri Aqua,site_visit_log +INT-001173,PER-0158,phone_call,family_discussion,2025-12-24T00:00:00,Family Discussion via phone_call regarding Atri Aqua,call_logs +INT-001174,PER-0158,email,initial_enquiry,2026-01-11T00:00:00,Initial Enquiry via email regarding Atri Aqua,call_logs +INT-001175,PER-0158,site_visit,site_visit,2026-01-16T00:00:00,Site Visit via site_visit regarding Atri Aqua,email_sync +INT-001176,PER-0158,phone_call,initial_enquiry,2026-01-19T00:00:00,Initial Enquiry via phone_call regarding Atri Aqua,whatsapp_api +INT-001177,PER-0158,site_visit,site_visit,2026-01-21T00:00:00,Site Visit via site_visit regarding Atri Aqua,whatsapp_api +INT-001178,PER-0158,phone_call,negotiation,2026-01-25T00:00:00,Negotiation via phone_call regarding Atri Aqua,site_visit_log +INT-001179,PER-0158,site_visit,site_visit,2026-02-07T00:00:00,Site Visit via site_visit regarding Atri Aqua,call_logs +INT-001180,PER-0158,site_visit,site_visit,2026-02-21T00:00:00,Site Visit via site_visit regarding Atri Aqua,email_sync +INT-001181,PER-0158,phone_call,negotiation,2026-02-25T00:00:00,Negotiation via phone_call regarding Atri Aqua,whatsapp_api +INT-001182,PER-0158,site_visit,site_visit,2026-03-01T00:00:00,Site Visit via site_visit regarding Atri Aqua,site_visit_log +INT-001183,PER-0158,whatsapp,family_discussion,2026-03-05T00:00:00,Family Discussion via whatsapp regarding Atri Aqua,site_visit_log +INT-001184,PER-0159,referral,initial_enquiry,2024-06-27T00:00:00,Initial Enquiry via referral regarding Siddha Suburbia Bungalow,site_visit_log +INT-001185,PER-0159,whatsapp,price_discussion,2024-08-01T00:00:00,Price Discussion via whatsapp regarding Siddha Suburbia Bungalow,call_logs +INT-001186,PER-0159,email,document_sharing,2024-08-08T00:00:00,Document Sharing via email regarding Siddha Suburbia Bungalow,email_sync +INT-001187,PER-0159,email,price_discussion,2024-08-14T00:00:00,Price Discussion via email regarding Siddha Suburbia Bungalow,call_logs +INT-001188,PER-0159,site_visit,site_visit,2024-08-17T00:00:00,Site Visit via site_visit regarding Siddha Suburbia Bungalow,whatsapp_api +INT-001189,PER-0159,email,initial_enquiry,2024-08-28T00:00:00,Initial Enquiry via email regarding Siddha Suburbia Bungalow,email_sync +INT-001190,PER-0159,site_visit,site_visit,2024-09-02T00:00:00,Site Visit via site_visit regarding Siddha Suburbia Bungalow,whatsapp_api +INT-001191,PER-0159,phone_call,price_discussion,2024-09-16T00:00:00,Price Discussion via phone_call regarding Siddha Suburbia Bungalow,manual_entry +INT-001192,PER-0160,walk_in,initial_enquiry,2025-10-04T00:00:00,Initial Enquiry via walk_in regarding Godrej Blue,email_sync +INT-001193,PER-0160,whatsapp,family_discussion,2025-10-21T00:00:00,Family Discussion via whatsapp regarding Godrej Blue,whatsapp_api +INT-001194,PER-0160,whatsapp,document_sharing,2025-10-31T00:00:00,Document Sharing via whatsapp regarding Godrej Blue,site_visit_log +INT-001195,PER-0160,site_visit,site_visit,2025-11-17T00:00:00,Site Visit via site_visit regarding Godrej Blue,manual_entry +INT-001196,PER-0160,site_visit,site_visit,2025-12-05T00:00:00,Site Visit via site_visit regarding Godrej Blue,site_visit_log +INT-001197,PER-0160,whatsapp,follow_up,2025-12-06T00:00:00,Follow Up via whatsapp regarding Godrej Blue,manual_entry +INT-001198,PER-0160,whatsapp,site_visit,2025-12-09T00:00:00,Site Visit via whatsapp regarding Godrej Blue,whatsapp_api +INT-001199,PER-0160,site_visit,site_visit,2025-12-31T00:00:00,Site Visit via site_visit regarding Godrej Blue,manual_entry +INT-001200,PER-0161,web_enquiry,initial_enquiry,2024-08-19T00:00:00,Initial Enquiry via web_enquiry regarding DTC Good Earth,whatsapp_api +INT-001201,PER-0161,whatsapp,document_sharing,2024-08-25T00:00:00,Document Sharing via whatsapp regarding DTC Good Earth,call_logs +INT-001202,PER-0161,whatsapp,price_discussion,2024-09-15T00:00:00,Price Discussion via whatsapp regarding DTC Good Earth,site_visit_log +INT-001203,PER-0161,whatsapp,negotiation,2024-09-28T00:00:00,Negotiation via whatsapp regarding DTC Good Earth,manual_entry +INT-001204,PER-0161,phone_call,site_visit,2024-10-10T00:00:00,Site Visit via phone_call regarding DTC Good Earth,site_visit_log +INT-001205,PER-0161,phone_call,negotiation,2024-10-12T00:00:00,Negotiation via phone_call regarding DTC Good Earth,site_visit_log +INT-001206,PER-0162,walk_in,initial_enquiry,2024-09-10T00:00:00,Initial Enquiry via walk_in regarding Siddha Sky Waterfront,call_logs +INT-001207,PER-0162,whatsapp,family_discussion,2024-09-13T00:00:00,Family Discussion via whatsapp regarding Siddha Sky Waterfront,call_logs +INT-001208,PER-0162,email,negotiation,2024-09-16T00:00:00,Negotiation via email regarding Siddha Sky Waterfront,email_sync +INT-001209,PER-0162,phone_call,document_sharing,2024-09-29T00:00:00,Document Sharing via phone_call regarding Siddha Sky Waterfront,call_logs +INT-001210,PER-0162,whatsapp,price_discussion,2024-10-09T00:00:00,Price Discussion via whatsapp regarding Siddha Sky Waterfront,manual_entry +INT-001211,PER-0162,site_visit,site_visit,2024-10-09T00:00:00,Site Visit via site_visit regarding Siddha Sky Waterfront,whatsapp_api +INT-001212,PER-0162,phone_call,initial_enquiry,2024-10-13T00:00:00,Initial Enquiry via phone_call regarding Siddha Sky Waterfront,whatsapp_api +INT-001213,PER-0162,phone_call,family_discussion,2024-10-16T00:00:00,Family Discussion via phone_call regarding Siddha Sky Waterfront,site_visit_log +INT-001214,PER-0162,whatsapp,site_visit,2024-10-17T00:00:00,Site Visit via whatsapp regarding Siddha Sky Waterfront,site_visit_log +INT-001215,PER-0162,whatsapp,negotiation,2024-10-22T00:00:00,Negotiation via whatsapp regarding Siddha Sky Waterfront,manual_entry +INT-001216,PER-0162,whatsapp,family_discussion,2024-10-23T00:00:00,Family Discussion via whatsapp regarding Siddha Sky Waterfront,call_logs +INT-001217,PER-0162,site_visit,site_visit,2024-11-26T00:00:00,Site Visit via site_visit regarding Siddha Sky Waterfront,manual_entry +INT-001218,PER-0162,whatsapp,price_discussion,2024-11-30T00:00:00,Price Discussion via whatsapp regarding Siddha Sky Waterfront,site_visit_log +INT-001219,PER-0162,phone_call,price_discussion,2024-12-03T00:00:00,Price Discussion via phone_call regarding Siddha Sky Waterfront,email_sync +INT-001220,PER-0163,referral,initial_enquiry,2025-08-03T00:00:00,Initial Enquiry via referral regarding Siddha Suburbia Bungalow,email_sync +INT-001221,PER-0163,phone_call,family_discussion,2025-08-17T00:00:00,Family Discussion via phone_call regarding Siddha Suburbia Bungalow,email_sync +INT-001222,PER-0163,whatsapp,follow_up,2025-09-26T00:00:00,Follow Up via whatsapp regarding Siddha Suburbia Bungalow,whatsapp_api +INT-001223,PER-0164,walk_in,initial_enquiry,2024-05-29T00:00:00,Initial Enquiry via walk_in regarding Siddha Serena,call_logs +INT-001224,PER-0164,phone_call,price_discussion,2024-06-01T00:00:00,Price Discussion via phone_call regarding Siddha Serena,whatsapp_api +INT-001225,PER-0164,email,document_sharing,2024-06-06T00:00:00,Document Sharing via email regarding Siddha Serena,email_sync +INT-001226,PER-0164,phone_call,site_visit,2024-06-12T00:00:00,Site Visit via phone_call regarding Siddha Serena,call_logs +INT-001227,PER-0164,phone_call,negotiation,2024-06-24T00:00:00,Negotiation via phone_call regarding Siddha Serena,site_visit_log +INT-001228,PER-0164,site_visit,site_visit,2024-07-22T00:00:00,Site Visit via site_visit regarding Siddha Serena,whatsapp_api +INT-001229,PER-0164,phone_call,site_visit,2024-08-01T00:00:00,Site Visit via phone_call regarding Siddha Serena,email_sync +INT-001230,PER-0164,site_visit,site_visit,2024-08-02T00:00:00,Site Visit via site_visit regarding Siddha Serena,manual_entry +INT-001231,PER-0164,phone_call,document_sharing,2024-08-08T00:00:00,Document Sharing via phone_call regarding Siddha Serena,email_sync +INT-001232,PER-0165,web_enquiry,initial_enquiry,2025-11-08T00:00:00,Initial Enquiry via web_enquiry regarding DTC Sojon,email_sync +INT-001233,PER-0165,whatsapp,family_discussion,2025-11-18T00:00:00,Family Discussion via whatsapp regarding DTC Sojon,manual_entry +INT-001234,PER-0165,email,site_visit,2025-12-10T00:00:00,Site Visit via email regarding DTC Sojon,email_sync +INT-001235,PER-0166,walk_in,initial_enquiry,2024-08-29T00:00:00,Initial Enquiry via walk_in regarding Godrej Blue,manual_entry +INT-001236,PER-0166,whatsapp,family_discussion,2024-09-04T00:00:00,Family Discussion via whatsapp regarding Godrej Blue,manual_entry +INT-001237,PER-0166,email,follow_up,2024-09-05T00:00:00,Follow Up via email regarding Godrej Blue,manual_entry +INT-001238,PER-0166,whatsapp,negotiation,2024-09-20T00:00:00,Negotiation via whatsapp regarding Godrej Blue,whatsapp_api +INT-001239,PER-0166,phone_call,negotiation,2024-09-22T00:00:00,Negotiation via phone_call regarding Godrej Blue,whatsapp_api +INT-001240,PER-0166,whatsapp,document_sharing,2024-09-25T00:00:00,Document Sharing via whatsapp regarding Godrej Blue,manual_entry +INT-001241,PER-0166,site_visit,site_visit,2024-11-05T00:00:00,Site Visit via site_visit regarding Godrej Blue,call_logs +INT-001242,PER-0167,web_enquiry,initial_enquiry,2025-09-24T00:00:00,Initial Enquiry via web_enquiry regarding Siddha Suburbia Bungalow,call_logs +INT-001243,PER-0167,whatsapp,document_sharing,2025-10-05T00:00:00,Document Sharing via whatsapp regarding Siddha Suburbia Bungalow,email_sync +INT-001244,PER-0167,email,initial_enquiry,2025-10-11T00:00:00,Initial Enquiry via email regarding Siddha Suburbia Bungalow,email_sync +INT-001245,PER-0167,referral,initial_enquiry,2025-12-05T00:00:00,Initial Enquiry via referral regarding Siddha Suburbia Bungalow,call_logs +INT-001246,PER-0168,referral,initial_enquiry,2025-08-27T00:00:00,Initial Enquiry via referral regarding Ambuja Utpaala,site_visit_log +INT-001247,PER-0168,phone_call,initial_enquiry,2025-09-11T00:00:00,Initial Enquiry via phone_call regarding Ambuja Utpaala,manual_entry +INT-001248,PER-0168,whatsapp,family_discussion,2025-10-25T00:00:00,Family Discussion via whatsapp regarding Ambuja Utpaala,call_logs +INT-001249,PER-0169,walk_in,initial_enquiry,2025-01-06T00:00:00,Initial Enquiry via walk_in regarding Merlin Avana,whatsapp_api +INT-001250,PER-0169,phone_call,site_visit,2025-01-20T00:00:00,Site Visit via phone_call regarding Merlin Avana,email_sync +INT-001251,PER-0169,whatsapp,price_discussion,2025-01-26T00:00:00,Price Discussion via whatsapp regarding Merlin Avana,manual_entry +INT-001252,PER-0169,walk_in,follow_up,2025-03-01T00:00:00,Follow Up via walk_in regarding Merlin Avana,email_sync +INT-001253,PER-0169,site_visit,site_visit,2025-03-14T00:00:00,Site Visit via site_visit regarding Merlin Avana,site_visit_log +INT-001254,PER-0169,web_enquiry,negotiation,2025-03-20T00:00:00,Negotiation via web_enquiry regarding Merlin Avana,whatsapp_api +INT-001255,PER-0170,referral,initial_enquiry,2026-02-15T00:00:00,Initial Enquiry via referral regarding Atri Aqua,site_visit_log +INT-001256,PER-0170,phone_call,follow_up,2026-02-19T00:00:00,Follow Up via phone_call regarding Atri Aqua,manual_entry +INT-001257,PER-0170,whatsapp,site_visit,2026-03-08T00:00:00,Site Visit via whatsapp regarding Atri Aqua,email_sync +INT-001258,PER-0170,phone_call,document_sharing,2026-03-10T00:00:00,Document Sharing via phone_call regarding Atri Aqua,manual_entry +INT-001259,PER-0170,phone_call,initial_enquiry,2026-03-29T00:00:00,Initial Enquiry via phone_call regarding Atri Aqua,whatsapp_api +INT-001260,PER-0170,phone_call,site_visit,2026-04-05T00:00:00,Site Visit via phone_call regarding Atri Aqua,site_visit_log +INT-001261,PER-0170,phone_call,document_sharing,2026-04-15T00:00:00,Document Sharing via phone_call regarding Atri Aqua,email_sync +INT-001262,PER-0170,whatsapp,negotiation,2026-04-17T00:00:00,Negotiation via whatsapp regarding Atri Aqua,email_sync +INT-001263,PER-0170,site_visit,site_visit,2026-04-20T00:00:00,Site Visit via site_visit regarding Atri Aqua,manual_entry +INT-001264,PER-0171,web_enquiry,initial_enquiry,2024-01-23T00:00:00,Initial Enquiry via web_enquiry regarding Godrej Blue,email_sync +INT-001265,PER-0171,phone_call,site_visit,2024-01-26T00:00:00,Site Visit via phone_call regarding Godrej Blue,email_sync +INT-001266,PER-0171,whatsapp,price_discussion,2024-02-08T00:00:00,Price Discussion via whatsapp regarding Godrej Blue,email_sync +INT-001267,PER-0171,site_visit,site_visit,2024-02-13T00:00:00,Site Visit via site_visit regarding Godrej Blue,site_visit_log +INT-001268,PER-0171,email,negotiation,2024-03-10T00:00:00,Negotiation via email regarding Godrej Blue,call_logs +INT-001269,PER-0171,whatsapp,price_discussion,2024-04-03T00:00:00,Price Discussion via whatsapp regarding Godrej Blue,call_logs +INT-001270,PER-0171,whatsapp,negotiation,2024-04-04T00:00:00,Negotiation via whatsapp regarding Godrej Blue,site_visit_log +INT-001271,PER-0172,web_enquiry,initial_enquiry,2024-03-31T00:00:00,Initial Enquiry via web_enquiry regarding Merlin Avana,email_sync +INT-001272,PER-0172,phone_call,price_discussion,2024-04-03T00:00:00,Price Discussion via phone_call regarding Merlin Avana,call_logs +INT-001273,PER-0172,whatsapp,negotiation,2024-04-04T00:00:00,Negotiation via whatsapp regarding Merlin Avana,email_sync +INT-001274,PER-0172,whatsapp,price_discussion,2024-04-05T00:00:00,Price Discussion via whatsapp regarding Merlin Avana,email_sync +INT-001275,PER-0172,whatsapp,site_visit,2024-04-25T00:00:00,Site Visit via whatsapp regarding Merlin Avana,call_logs +INT-001276,PER-0173,walk_in,initial_enquiry,2024-08-17T00:00:00,Initial Enquiry via walk_in regarding Siddha Suburbia Bungalow,email_sync +INT-001277,PER-0173,phone_call,site_visit,2024-08-24T00:00:00,Site Visit via phone_call regarding Siddha Suburbia Bungalow,site_visit_log +INT-001278,PER-0173,whatsapp,site_visit,2024-08-25T00:00:00,Site Visit via whatsapp regarding Siddha Suburbia Bungalow,site_visit_log +INT-001279,PER-0173,whatsapp,family_discussion,2024-08-25T00:00:00,Family Discussion via whatsapp regarding Siddha Suburbia Bungalow,call_logs +INT-001280,PER-0173,phone_call,site_visit,2024-08-25T00:00:00,Site Visit via phone_call regarding Siddha Suburbia Bungalow,email_sync +INT-001281,PER-0173,site_visit,site_visit,2024-09-09T00:00:00,Site Visit via site_visit regarding Siddha Suburbia Bungalow,manual_entry +INT-001282,PER-0173,site_visit,site_visit,2024-09-11T00:00:00,Site Visit via site_visit regarding Siddha Suburbia Bungalow,email_sync +INT-001283,PER-0173,site_visit,site_visit,2024-09-23T00:00:00,Site Visit via site_visit regarding Siddha Suburbia Bungalow,email_sync +INT-001284,PER-0173,whatsapp,document_sharing,2024-09-26T00:00:00,Document Sharing via whatsapp regarding Siddha Suburbia Bungalow,email_sync +INT-001285,PER-0173,phone_call,price_discussion,2024-10-02T00:00:00,Price Discussion via phone_call regarding Siddha Suburbia Bungalow,site_visit_log +INT-001286,PER-0173,whatsapp,price_discussion,2024-10-12T00:00:00,Price Discussion via whatsapp regarding Siddha Suburbia Bungalow,email_sync +INT-001287,PER-0173,site_visit,site_visit,2024-10-29T00:00:00,Site Visit via site_visit regarding Siddha Suburbia Bungalow,email_sync +INT-001288,PER-0174,walk_in,initial_enquiry,2024-05-12T00:00:00,Initial Enquiry via walk_in regarding Ambuja Utpaala,site_visit_log +INT-001289,PER-0174,whatsapp,site_visit,2024-05-21T00:00:00,Site Visit via whatsapp regarding Ambuja Utpaala,site_visit_log +INT-001290,PER-0174,email,price_discussion,2024-05-26T00:00:00,Price Discussion via email regarding Ambuja Utpaala,manual_entry +INT-001291,PER-0174,phone_call,document_sharing,2024-06-02T00:00:00,Document Sharing via phone_call regarding Ambuja Utpaala,manual_entry +INT-001292,PER-0174,phone_call,price_discussion,2024-06-17T00:00:00,Price Discussion via phone_call regarding Ambuja Utpaala,manual_entry +INT-001293,PER-0174,phone_call,follow_up,2024-06-19T00:00:00,Follow Up via phone_call regarding Ambuja Utpaala,site_visit_log +INT-001294,PER-0174,whatsapp,family_discussion,2024-07-04T00:00:00,Family Discussion via whatsapp regarding Ambuja Utpaala,email_sync +INT-001295,PER-0174,whatsapp,family_discussion,2024-07-05T00:00:00,Family Discussion via whatsapp regarding Ambuja Utpaala,email_sync +INT-001296,PER-0174,whatsapp,negotiation,2024-07-25T00:00:00,Negotiation via whatsapp regarding Ambuja Utpaala,site_visit_log +INT-001297,PER-0174,whatsapp,initial_enquiry,2024-07-31T00:00:00,Initial Enquiry via whatsapp regarding Ambuja Utpaala,manual_entry +INT-001298,PER-0174,whatsapp,follow_up,2024-08-01T00:00:00,Follow Up via whatsapp regarding Ambuja Utpaala,email_sync +INT-001299,PER-0175,referral,initial_enquiry,2024-11-02T00:00:00,Initial Enquiry via referral regarding Godrej Blue,manual_entry +INT-001300,PER-0175,phone_call,family_discussion,2024-11-04T00:00:00,Family Discussion via phone_call regarding Godrej Blue,call_logs +INT-001301,PER-0175,whatsapp,initial_enquiry,2024-11-12T00:00:00,Initial Enquiry via whatsapp regarding Godrej Blue,email_sync +INT-001302,PER-0175,phone_call,follow_up,2024-11-13T00:00:00,Follow Up via phone_call regarding Godrej Blue,whatsapp_api +INT-001303,PER-0175,whatsapp,initial_enquiry,2024-11-25T00:00:00,Initial Enquiry via whatsapp regarding Godrej Blue,site_visit_log +INT-001304,PER-0175,phone_call,site_visit,2024-12-26T00:00:00,Site Visit via phone_call regarding Godrej Blue,site_visit_log +INT-001305,PER-0175,phone_call,family_discussion,2025-01-03T00:00:00,Family Discussion via phone_call regarding Godrej Blue,manual_entry +INT-001306,PER-0175,whatsapp,site_visit,2025-01-04T00:00:00,Site Visit via whatsapp regarding Godrej Blue,site_visit_log +INT-001307,PER-0175,phone_call,site_visit,2025-01-10T00:00:00,Site Visit via phone_call regarding Godrej Blue,email_sync +INT-001308,PER-0175,site_visit,site_visit,2025-01-11T00:00:00,Site Visit via site_visit regarding Godrej Blue,email_sync +INT-001309,PER-0175,whatsapp,document_sharing,2025-01-12T00:00:00,Document Sharing via whatsapp regarding Godrej Blue,whatsapp_api +INT-001310,PER-0175,site_visit,site_visit,2025-01-19T00:00:00,Site Visit via site_visit regarding Godrej Blue,email_sync +INT-001311,PER-0176,walk_in,initial_enquiry,2025-11-18T00:00:00,Initial Enquiry via walk_in regarding Siddha Suburbia Bungalow,whatsapp_api +INT-001312,PER-0176,phone_call,document_sharing,2026-01-02T00:00:00,Document Sharing via phone_call regarding Siddha Suburbia Bungalow,manual_entry +INT-001313,PER-0176,email,site_visit,2026-01-27T00:00:00,Site Visit via email regarding Siddha Suburbia Bungalow,email_sync +INT-001314,PER-0176,phone_call,initial_enquiry,2026-02-02T00:00:00,Initial Enquiry via phone_call regarding Siddha Suburbia Bungalow,whatsapp_api +INT-001315,PER-0176,site_visit,site_visit,2026-02-09T00:00:00,Site Visit via site_visit regarding Siddha Suburbia Bungalow,site_visit_log +INT-001316,PER-0177,web_enquiry,initial_enquiry,2025-11-08T00:00:00,Initial Enquiry via web_enquiry regarding DTC Good Earth,whatsapp_api +INT-001317,PER-0177,whatsapp,negotiation,2025-11-22T00:00:00,Negotiation via whatsapp regarding DTC Good Earth,whatsapp_api +INT-001318,PER-0177,whatsapp,initial_enquiry,2025-12-21T00:00:00,Initial Enquiry via whatsapp regarding DTC Good Earth,call_logs +INT-001319,PER-0178,web_enquiry,initial_enquiry,2025-05-19T00:00:00,Initial Enquiry via web_enquiry regarding DTC Good Earth,site_visit_log +INT-001320,PER-0178,phone_call,price_discussion,2025-05-29T00:00:00,Price Discussion via phone_call regarding DTC Good Earth,call_logs +INT-001321,PER-0178,email,initial_enquiry,2025-06-11T00:00:00,Initial Enquiry via email regarding DTC Good Earth,email_sync +INT-001322,PER-0178,phone_call,site_visit,2025-06-14T00:00:00,Site Visit via phone_call regarding DTC Good Earth,email_sync +INT-001323,PER-0178,whatsapp,follow_up,2025-06-14T00:00:00,Follow Up via whatsapp regarding DTC Good Earth,call_logs +INT-001324,PER-0178,site_visit,site_visit,2025-06-21T00:00:00,Site Visit via site_visit regarding DTC Good Earth,whatsapp_api +INT-001325,PER-0178,whatsapp,negotiation,2025-06-26T00:00:00,Negotiation via whatsapp regarding DTC Good Earth,site_visit_log +INT-001326,PER-0178,phone_call,negotiation,2025-07-02T00:00:00,Negotiation via phone_call regarding DTC Good Earth,call_logs +INT-001327,PER-0178,site_visit,site_visit,2025-07-17T00:00:00,Site Visit via site_visit regarding DTC Good Earth,call_logs +INT-001328,PER-0178,whatsapp,family_discussion,2025-07-20T00:00:00,Family Discussion via whatsapp regarding DTC Good Earth,manual_entry +INT-001329,PER-0178,site_visit,site_visit,2025-07-22T00:00:00,Site Visit via site_visit regarding DTC Good Earth,manual_entry +INT-001330,PER-0178,site_visit,site_visit,2025-07-31T00:00:00,Site Visit via site_visit regarding DTC Good Earth,email_sync +INT-001331,PER-0178,whatsapp,site_visit,2025-08-02T00:00:00,Site Visit via whatsapp regarding DTC Good Earth,email_sync +INT-001332,PER-0178,site_visit,site_visit,2025-08-09T00:00:00,Site Visit via site_visit regarding DTC Good Earth,whatsapp_api +INT-001333,PER-0178,whatsapp,family_discussion,2025-08-14T00:00:00,Family Discussion via whatsapp regarding DTC Good Earth,site_visit_log +INT-001334,PER-0179,referral,initial_enquiry,2024-02-01T00:00:00,Initial Enquiry via referral regarding Ambuja Utpaala,manual_entry +INT-001335,PER-0179,phone_call,negotiation,2024-02-16T00:00:00,Negotiation via phone_call regarding Ambuja Utpaala,manual_entry +INT-001336,PER-0179,email,initial_enquiry,2024-02-16T00:00:00,Initial Enquiry via email regarding Ambuja Utpaala,site_visit_log +INT-001337,PER-0179,site_visit,site_visit,2024-02-25T00:00:00,Site Visit via site_visit regarding Ambuja Utpaala,manual_entry +INT-001338,PER-0179,phone_call,family_discussion,2024-02-28T00:00:00,Family Discussion via phone_call regarding Ambuja Utpaala,whatsapp_api +INT-001339,PER-0179,phone_call,follow_up,2024-03-30T00:00:00,Follow Up via phone_call regarding Ambuja Utpaala,whatsapp_api +INT-001340,PER-0180,walk_in,initial_enquiry,2024-04-18T00:00:00,Initial Enquiry via walk_in regarding Godrej Blue,manual_entry +INT-001341,PER-0180,whatsapp,family_discussion,2024-05-01T00:00:00,Family Discussion via whatsapp regarding Godrej Blue,site_visit_log +INT-001342,PER-0180,email,initial_enquiry,2024-05-03T00:00:00,Initial Enquiry via email regarding Godrej Blue,email_sync +INT-001343,PER-0180,phone_call,follow_up,2024-05-10T00:00:00,Follow Up via phone_call regarding Godrej Blue,email_sync +INT-001344,PER-0180,site_visit,site_visit,2024-05-14T00:00:00,Site Visit via site_visit regarding Godrej Blue,manual_entry +INT-001345,PER-0180,site_visit,site_visit,2024-05-29T00:00:00,Site Visit via site_visit regarding Godrej Blue,site_visit_log +INT-001346,PER-0180,site_visit,site_visit,2024-05-30T00:00:00,Site Visit via site_visit regarding Godrej Blue,manual_entry +INT-001347,PER-0180,phone_call,follow_up,2024-06-08T00:00:00,Follow Up via phone_call regarding Godrej Blue,call_logs +INT-001348,PER-0180,whatsapp,site_visit,2024-06-09T00:00:00,Site Visit via whatsapp regarding Godrej Blue,site_visit_log +INT-001349,PER-0180,whatsapp,initial_enquiry,2024-06-18T00:00:00,Initial Enquiry via whatsapp regarding Godrej Blue,whatsapp_api +INT-001350,PER-0180,whatsapp,family_discussion,2024-06-21T00:00:00,Family Discussion via whatsapp regarding Godrej Blue,site_visit_log +INT-001351,PER-0180,whatsapp,price_discussion,2024-06-30T00:00:00,Price Discussion via whatsapp regarding Godrej Blue,manual_entry +INT-001352,PER-0181,walk_in,initial_enquiry,2025-09-08T00:00:00,Initial Enquiry via walk_in regarding Godrej Elevate,email_sync +INT-001353,PER-0181,phone_call,site_visit,2025-09-16T00:00:00,Site Visit via phone_call regarding Godrej Elevate,whatsapp_api +INT-001354,PER-0181,whatsapp,site_visit,2025-09-27T00:00:00,Site Visit via whatsapp regarding Godrej Elevate,whatsapp_api +INT-001355,PER-0181,phone_call,follow_up,2025-09-30T00:00:00,Follow Up via phone_call regarding Godrej Elevate,call_logs +INT-001356,PER-0181,phone_call,initial_enquiry,2025-10-13T00:00:00,Initial Enquiry via phone_call regarding Godrej Elevate,whatsapp_api +INT-001357,PER-0181,phone_call,family_discussion,2025-10-13T00:00:00,Family Discussion via phone_call regarding Godrej Elevate,site_visit_log +INT-001358,PER-0181,whatsapp,negotiation,2025-10-19T00:00:00,Negotiation via whatsapp regarding Godrej Elevate,email_sync +INT-001359,PER-0181,phone_call,document_sharing,2025-10-24T00:00:00,Document Sharing via phone_call regarding Godrej Elevate,manual_entry +INT-001360,PER-0181,whatsapp,initial_enquiry,2025-10-27T00:00:00,Initial Enquiry via whatsapp regarding Godrej Elevate,site_visit_log +INT-001361,PER-0181,site_visit,site_visit,2025-11-01T00:00:00,Site Visit via site_visit regarding Godrej Elevate,whatsapp_api +INT-001362,PER-0181,site_visit,site_visit,2025-11-29T00:00:00,Site Visit via site_visit regarding Godrej Elevate,site_visit_log +INT-001363,PER-0181,whatsapp,document_sharing,2025-12-03T00:00:00,Document Sharing via whatsapp regarding Godrej Elevate,email_sync +INT-001364,PER-0181,site_visit,site_visit,2025-12-03T00:00:00,Site Visit via site_visit regarding Godrej Elevate,whatsapp_api +INT-001365,PER-0182,web_enquiry,initial_enquiry,2024-12-09T00:00:00,Initial Enquiry via web_enquiry regarding Atri Surya Toron,call_logs +INT-001366,PER-0182,whatsapp,site_visit,2024-12-15T00:00:00,Site Visit via whatsapp regarding Atri Surya Toron,site_visit_log +INT-001367,PER-0182,whatsapp,price_discussion,2024-12-26T00:00:00,Price Discussion via whatsapp regarding Atri Surya Toron,email_sync +INT-001368,PER-0182,email,price_discussion,2025-01-01T00:00:00,Price Discussion via email regarding Atri Surya Toron,whatsapp_api +INT-001369,PER-0182,web_enquiry,price_discussion,2025-02-19T00:00:00,Price Discussion via web_enquiry regarding Atri Surya Toron,manual_entry +INT-001370,PER-0183,walk_in,initial_enquiry,2025-08-03T00:00:00,Initial Enquiry via walk_in regarding Atri Aqua,site_visit_log +INT-001371,PER-0183,whatsapp,initial_enquiry,2025-08-07T00:00:00,Initial Enquiry via whatsapp regarding Atri Aqua,call_logs +INT-001372,PER-0183,email,site_visit,2025-08-09T00:00:00,Site Visit via email regarding Atri Aqua,manual_entry +INT-001373,PER-0183,phone_call,document_sharing,2025-08-29T00:00:00,Document Sharing via phone_call regarding Atri Aqua,email_sync +INT-001374,PER-0183,whatsapp,family_discussion,2025-08-30T00:00:00,Family Discussion via whatsapp regarding Atri Aqua,manual_entry +INT-001375,PER-0183,phone_call,initial_enquiry,2025-09-01T00:00:00,Initial Enquiry via phone_call regarding Atri Aqua,whatsapp_api +INT-001376,PER-0183,phone_call,document_sharing,2025-09-03T00:00:00,Document Sharing via phone_call regarding Atri Aqua,email_sync +INT-001377,PER-0183,phone_call,negotiation,2025-09-07T00:00:00,Negotiation via phone_call regarding Atri Aqua,site_visit_log +INT-001378,PER-0183,phone_call,site_visit,2025-09-09T00:00:00,Site Visit via phone_call regarding Atri Aqua,whatsapp_api +INT-001379,PER-0183,site_visit,site_visit,2025-09-25T00:00:00,Site Visit via site_visit regarding Atri Aqua,manual_entry +INT-001380,PER-0183,whatsapp,family_discussion,2025-09-26T00:00:00,Family Discussion via whatsapp regarding Atri Aqua,site_visit_log +INT-001381,PER-0183,phone_call,follow_up,2025-10-01T00:00:00,Follow Up via phone_call regarding Atri Aqua,whatsapp_api +INT-001382,PER-0183,site_visit,site_visit,2025-10-01T00:00:00,Site Visit via site_visit regarding Atri Aqua,whatsapp_api +INT-001383,PER-0183,phone_call,price_discussion,2025-10-16T00:00:00,Price Discussion via phone_call regarding Atri Aqua,whatsapp_api +INT-001384,PER-0183,site_visit,site_visit,2025-10-23T00:00:00,Site Visit via site_visit regarding Atri Aqua,manual_entry +INT-001385,PER-0184,walk_in,initial_enquiry,2025-11-18T00:00:00,Initial Enquiry via walk_in regarding Godrej Blue,email_sync +INT-001386,PER-0184,whatsapp,initial_enquiry,2025-11-30T00:00:00,Initial Enquiry via whatsapp regarding Godrej Blue,manual_entry +INT-001387,PER-0184,email,site_visit,2025-12-04T00:00:00,Site Visit via email regarding Godrej Blue,whatsapp_api +INT-001388,PER-0184,site_visit,site_visit,2025-12-17T00:00:00,Site Visit via site_visit regarding Godrej Blue,site_visit_log +INT-001389,PER-0184,whatsapp,follow_up,2026-01-04T00:00:00,Follow Up via whatsapp regarding Godrej Blue,email_sync +INT-001390,PER-0184,whatsapp,price_discussion,2026-01-10T00:00:00,Price Discussion via whatsapp regarding Godrej Blue,whatsapp_api +INT-001391,PER-0184,site_visit,site_visit,2026-01-11T00:00:00,Site Visit via site_visit regarding Godrej Blue,site_visit_log +INT-001392,PER-0184,whatsapp,price_discussion,2026-01-15T00:00:00,Price Discussion via whatsapp regarding Godrej Blue,email_sync +INT-001393,PER-0184,phone_call,document_sharing,2026-01-24T00:00:00,Document Sharing via phone_call regarding Godrej Blue,email_sync +INT-001394,PER-0184,phone_call,price_discussion,2026-01-29T00:00:00,Price Discussion via phone_call regarding Godrej Blue,whatsapp_api +INT-001395,PER-0184,phone_call,site_visit,2026-02-10T00:00:00,Site Visit via phone_call regarding Godrej Blue,call_logs +INT-001396,PER-0185,walk_in,initial_enquiry,2025-11-03T00:00:00,Initial Enquiry via walk_in regarding Merlin Avana,whatsapp_api +INT-001397,PER-0185,phone_call,site_visit,2025-11-14T00:00:00,Site Visit via phone_call regarding Merlin Avana,email_sync +INT-001398,PER-0185,email,initial_enquiry,2025-11-19T00:00:00,Initial Enquiry via email regarding Merlin Avana,site_visit_log +INT-001399,PER-0185,phone_call,site_visit,2025-12-02T00:00:00,Site Visit via phone_call regarding Merlin Avana,manual_entry +INT-001400,PER-0185,site_visit,site_visit,2025-12-04T00:00:00,Site Visit via site_visit regarding Merlin Avana,email_sync +INT-001401,PER-0185,whatsapp,initial_enquiry,2025-12-08T00:00:00,Initial Enquiry via whatsapp regarding Merlin Avana,whatsapp_api +INT-001402,PER-0185,whatsapp,initial_enquiry,2025-12-12T00:00:00,Initial Enquiry via whatsapp regarding Merlin Avana,email_sync +INT-001403,PER-0185,whatsapp,negotiation,2026-01-05T00:00:00,Negotiation via whatsapp regarding Merlin Avana,whatsapp_api +INT-001404,PER-0185,phone_call,price_discussion,2026-01-07T00:00:00,Price Discussion via phone_call regarding Merlin Avana,whatsapp_api +INT-001405,PER-0185,whatsapp,family_discussion,2026-01-12T00:00:00,Family Discussion via whatsapp regarding Merlin Avana,site_visit_log +INT-001406,PER-0185,site_visit,site_visit,2026-01-14T00:00:00,Site Visit via site_visit regarding Merlin Avana,whatsapp_api +INT-001407,PER-0185,whatsapp,follow_up,2026-01-24T00:00:00,Follow Up via whatsapp regarding Merlin Avana,call_logs +INT-001408,PER-0185,whatsapp,price_discussion,2026-01-27T00:00:00,Price Discussion via whatsapp regarding Merlin Avana,email_sync +INT-001409,PER-0186,walk_in,initial_enquiry,2025-01-04T00:00:00,Initial Enquiry via walk_in regarding DTC Sojon,whatsapp_api +INT-001410,PER-0186,whatsapp,site_visit,2025-01-05T00:00:00,Site Visit via whatsapp regarding DTC Sojon,email_sync +INT-001411,PER-0186,email,price_discussion,2025-01-05T00:00:00,Price Discussion via email regarding DTC Sojon,site_visit_log +INT-001412,PER-0186,whatsapp,follow_up,2025-01-13T00:00:00,Follow Up via whatsapp regarding DTC Sojon,call_logs +INT-001413,PER-0186,whatsapp,price_discussion,2025-01-21T00:00:00,Price Discussion via whatsapp regarding DTC Sojon,email_sync +INT-001414,PER-0186,phone_call,initial_enquiry,2025-01-27T00:00:00,Initial Enquiry via phone_call regarding DTC Sojon,whatsapp_api +INT-001415,PER-0186,phone_call,document_sharing,2025-02-01T00:00:00,Document Sharing via phone_call regarding DTC Sojon,call_logs +INT-001416,PER-0186,site_visit,site_visit,2025-02-07T00:00:00,Site Visit via site_visit regarding DTC Sojon,manual_entry +INT-001417,PER-0186,whatsapp,family_discussion,2025-02-11T00:00:00,Family Discussion via whatsapp regarding DTC Sojon,email_sync +INT-001418,PER-0186,phone_call,price_discussion,2025-02-13T00:00:00,Price Discussion via phone_call regarding DTC Sojon,whatsapp_api +INT-001419,PER-0186,phone_call,initial_enquiry,2025-02-19T00:00:00,Initial Enquiry via phone_call regarding DTC Sojon,call_logs +INT-001420,PER-0186,whatsapp,initial_enquiry,2025-02-28T00:00:00,Initial Enquiry via whatsapp regarding DTC Sojon,manual_entry +INT-001421,PER-0186,site_visit,site_visit,2025-03-05T00:00:00,Site Visit via site_visit regarding DTC Sojon,email_sync +INT-001422,PER-0187,referral,initial_enquiry,2024-08-30T00:00:00,Initial Enquiry via referral regarding DTC Sojon,site_visit_log +INT-001423,PER-0187,phone_call,negotiation,2024-09-02T00:00:00,Negotiation via phone_call regarding DTC Sojon,whatsapp_api +INT-001424,PER-0187,whatsapp,family_discussion,2024-09-04T00:00:00,Family Discussion via whatsapp regarding DTC Sojon,whatsapp_api +INT-001425,PER-0187,phone_call,document_sharing,2024-09-14T00:00:00,Document Sharing via phone_call regarding DTC Sojon,manual_entry +INT-001426,PER-0187,site_visit,site_visit,2024-09-17T00:00:00,Site Visit via site_visit regarding DTC Sojon,email_sync +INT-001427,PER-0187,phone_call,site_visit,2024-09-18T00:00:00,Site Visit via phone_call regarding DTC Sojon,manual_entry +INT-001428,PER-0187,whatsapp,negotiation,2024-09-20T00:00:00,Negotiation via whatsapp regarding DTC Sojon,manual_entry +INT-001429,PER-0187,phone_call,follow_up,2024-09-22T00:00:00,Follow Up via phone_call regarding DTC Sojon,site_visit_log +INT-001430,PER-0187,site_visit,site_visit,2024-09-27T00:00:00,Site Visit via site_visit regarding DTC Sojon,whatsapp_api +INT-001431,PER-0187,whatsapp,family_discussion,2024-09-29T00:00:00,Family Discussion via whatsapp regarding DTC Sojon,whatsapp_api +INT-001432,PER-0187,phone_call,family_discussion,2024-10-04T00:00:00,Family Discussion via phone_call regarding DTC Sojon,manual_entry +INT-001433,PER-0187,whatsapp,initial_enquiry,2024-10-18T00:00:00,Initial Enquiry via whatsapp regarding DTC Sojon,site_visit_log +INT-001434,PER-0188,referral,initial_enquiry,2024-12-31T00:00:00,Initial Enquiry via referral regarding Siddha Suburbia Bungalow,manual_entry +INT-001435,PER-0188,whatsapp,site_visit,2025-01-11T00:00:00,Site Visit via whatsapp regarding Siddha Suburbia Bungalow,call_logs +INT-001436,PER-0188,whatsapp,price_discussion,2025-01-11T00:00:00,Price Discussion via whatsapp regarding Siddha Suburbia Bungalow,whatsapp_api +INT-001437,PER-0188,phone_call,price_discussion,2025-01-14T00:00:00,Price Discussion via phone_call regarding Siddha Suburbia Bungalow,whatsapp_api +INT-001438,PER-0188,whatsapp,negotiation,2025-01-21T00:00:00,Negotiation via whatsapp regarding Siddha Suburbia Bungalow,site_visit_log +INT-001439,PER-0188,whatsapp,family_discussion,2025-01-26T00:00:00,Family Discussion via whatsapp regarding Siddha Suburbia Bungalow,whatsapp_api +INT-001440,PER-0188,site_visit,site_visit,2025-01-27T00:00:00,Site Visit via site_visit regarding Siddha Suburbia Bungalow,email_sync +INT-001441,PER-0188,whatsapp,follow_up,2025-02-06T00:00:00,Follow Up via whatsapp regarding Siddha Suburbia Bungalow,email_sync +INT-001442,PER-0188,site_visit,site_visit,2025-02-06T00:00:00,Site Visit via site_visit regarding Siddha Suburbia Bungalow,email_sync +INT-001443,PER-0188,phone_call,document_sharing,2025-02-11T00:00:00,Document Sharing via phone_call regarding Siddha Suburbia Bungalow,email_sync +INT-001444,PER-0188,whatsapp,follow_up,2025-02-16T00:00:00,Follow Up via whatsapp regarding Siddha Suburbia Bungalow,email_sync +INT-001445,PER-0188,whatsapp,initial_enquiry,2025-03-07T00:00:00,Initial Enquiry via whatsapp regarding Siddha Suburbia Bungalow,call_logs +INT-001446,PER-0188,whatsapp,price_discussion,2025-03-11T00:00:00,Price Discussion via whatsapp regarding Siddha Suburbia Bungalow,call_logs +INT-001447,PER-0189,walk_in,initial_enquiry,2025-11-20T00:00:00,Initial Enquiry via walk_in regarding Shriram Grand City,whatsapp_api +INT-001448,PER-0189,whatsapp,initial_enquiry,2025-11-23T00:00:00,Initial Enquiry via whatsapp regarding Shriram Grand City,site_visit_log +INT-001449,PER-0189,email,document_sharing,2025-12-01T00:00:00,Document Sharing via email regarding Shriram Grand City,manual_entry +INT-001450,PER-0189,site_visit,site_visit,2025-12-12T00:00:00,Site Visit via site_visit regarding Shriram Grand City,manual_entry +INT-001451,PER-0189,whatsapp,document_sharing,2025-12-13T00:00:00,Document Sharing via whatsapp regarding Shriram Grand City,site_visit_log +INT-001452,PER-0189,whatsapp,negotiation,2025-12-23T00:00:00,Negotiation via whatsapp regarding Shriram Grand City,manual_entry +INT-001453,PER-0189,whatsapp,price_discussion,2025-12-30T00:00:00,Price Discussion via whatsapp regarding Shriram Grand City,manual_entry +INT-001454,PER-0189,whatsapp,initial_enquiry,2025-12-31T00:00:00,Initial Enquiry via whatsapp regarding Shriram Grand City,site_visit_log +INT-001455,PER-0189,whatsapp,family_discussion,2026-01-04T00:00:00,Family Discussion via whatsapp regarding Shriram Grand City,call_logs +INT-001456,PER-0189,site_visit,site_visit,2026-01-12T00:00:00,Site Visit via site_visit regarding Shriram Grand City,call_logs +INT-001457,PER-0189,site_visit,site_visit,2026-01-13T00:00:00,Site Visit via site_visit regarding Shriram Grand City,manual_entry +INT-001458,PER-0189,phone_call,family_discussion,2026-01-20T00:00:00,Family Discussion via phone_call regarding Shriram Grand City,call_logs +INT-001459,PER-0189,phone_call,family_discussion,2026-02-08T00:00:00,Family Discussion via phone_call regarding Shriram Grand City,manual_entry +INT-001460,PER-0189,phone_call,negotiation,2026-02-11T00:00:00,Negotiation via phone_call regarding Shriram Grand City,email_sync +INT-001461,PER-0189,whatsapp,family_discussion,2026-02-14T00:00:00,Family Discussion via whatsapp regarding Shriram Grand City,manual_entry +INT-001462,PER-0190,walk_in,initial_enquiry,2025-07-12T00:00:00,Initial Enquiry via walk_in regarding Atri Aqua,site_visit_log +INT-001463,PER-0190,phone_call,site_visit,2025-07-20T00:00:00,Site Visit via phone_call regarding Atri Aqua,email_sync +INT-001464,PER-0190,whatsapp,site_visit,2025-07-21T00:00:00,Site Visit via whatsapp regarding Atri Aqua,manual_entry +INT-001465,PER-0190,whatsapp,negotiation,2025-07-31T00:00:00,Negotiation via whatsapp regarding Atri Aqua,email_sync +INT-001466,PER-0190,phone_call,negotiation,2025-08-07T00:00:00,Negotiation via phone_call regarding Atri Aqua,manual_entry +INT-001467,PER-0190,phone_call,initial_enquiry,2025-08-24T00:00:00,Initial Enquiry via phone_call regarding Atri Aqua,site_visit_log +INT-001468,PER-0190,phone_call,document_sharing,2025-08-27T00:00:00,Document Sharing via phone_call regarding Atri Aqua,whatsapp_api +INT-001469,PER-0190,phone_call,negotiation,2025-08-30T00:00:00,Negotiation via phone_call regarding Atri Aqua,call_logs +INT-001470,PER-0190,site_visit,site_visit,2025-09-21T00:00:00,Site Visit via site_visit regarding Atri Aqua,site_visit_log +INT-001471,PER-0191,referral,initial_enquiry,2024-01-22T00:00:00,Initial Enquiry via referral regarding Siddha Serena,site_visit_log +INT-001472,PER-0191,phone_call,initial_enquiry,2024-02-06T00:00:00,Initial Enquiry via phone_call regarding Siddha Serena,call_logs +INT-001473,PER-0191,whatsapp,negotiation,2024-02-16T00:00:00,Negotiation via whatsapp regarding Siddha Serena,site_visit_log +INT-001474,PER-0191,site_visit,site_visit,2024-03-25T00:00:00,Site Visit via site_visit regarding Siddha Serena,email_sync +INT-001475,PER-0192,walk_in,initial_enquiry,2026-01-25T00:00:00,Initial Enquiry via walk_in regarding Siddha Suburbia Bungalow,call_logs +INT-001476,PER-0192,whatsapp,initial_enquiry,2026-01-31T00:00:00,Initial Enquiry via whatsapp regarding Siddha Suburbia Bungalow,site_visit_log +INT-001477,PER-0192,email,price_discussion,2026-02-08T00:00:00,Price Discussion via email regarding Siddha Suburbia Bungalow,whatsapp_api +INT-001478,PER-0192,site_visit,site_visit,2026-02-22T00:00:00,Site Visit via site_visit regarding Siddha Suburbia Bungalow,email_sync +INT-001479,PER-0192,phone_call,site_visit,2026-03-01T00:00:00,Site Visit via phone_call regarding Siddha Suburbia Bungalow,call_logs +INT-001480,PER-0192,whatsapp,family_discussion,2026-03-04T00:00:00,Family Discussion via whatsapp regarding Siddha Suburbia Bungalow,site_visit_log +INT-001481,PER-0192,site_visit,site_visit,2026-03-12T00:00:00,Site Visit via site_visit regarding Siddha Suburbia Bungalow,email_sync +INT-001482,PER-0192,site_visit,site_visit,2026-03-17T00:00:00,Site Visit via site_visit regarding Siddha Suburbia Bungalow,call_logs +INT-001483,PER-0192,phone_call,document_sharing,2026-03-26T00:00:00,Document Sharing via phone_call regarding Siddha Suburbia Bungalow,manual_entry +INT-001484,PER-0192,whatsapp,follow_up,2026-04-05T00:00:00,Follow Up via whatsapp regarding Siddha Suburbia Bungalow,whatsapp_api +INT-001485,PER-0192,whatsapp,initial_enquiry,2026-04-15T00:00:00,Initial Enquiry via whatsapp regarding Siddha Suburbia Bungalow,email_sync +INT-001486,PER-0192,phone_call,site_visit,2026-04-22T00:00:00,Site Visit via phone_call regarding Siddha Suburbia Bungalow,call_logs +INT-001487,PER-0193,walk_in,initial_enquiry,2024-08-05T00:00:00,Initial Enquiry via walk_in regarding Eden Devprayag,site_visit_log +INT-001488,PER-0193,phone_call,document_sharing,2024-08-09T00:00:00,Document Sharing via phone_call regarding Eden Devprayag,site_visit_log +INT-001489,PER-0193,whatsapp,price_discussion,2024-08-10T00:00:00,Price Discussion via whatsapp regarding Eden Devprayag,call_logs +INT-001490,PER-0193,phone_call,initial_enquiry,2024-08-10T00:00:00,Initial Enquiry via phone_call regarding Eden Devprayag,manual_entry +INT-001491,PER-0193,phone_call,initial_enquiry,2024-08-18T00:00:00,Initial Enquiry via phone_call regarding Eden Devprayag,call_logs +INT-001492,PER-0193,site_visit,site_visit,2024-08-24T00:00:00,Site Visit via site_visit regarding Eden Devprayag,call_logs +INT-001493,PER-0193,whatsapp,site_visit,2024-08-25T00:00:00,Site Visit via whatsapp regarding Eden Devprayag,email_sync +INT-001494,PER-0193,phone_call,site_visit,2024-09-01T00:00:00,Site Visit via phone_call regarding Eden Devprayag,whatsapp_api +INT-001495,PER-0193,whatsapp,negotiation,2024-09-02T00:00:00,Negotiation via whatsapp regarding Eden Devprayag,site_visit_log +INT-001496,PER-0193,site_visit,site_visit,2024-09-23T00:00:00,Site Visit via site_visit regarding Eden Devprayag,manual_entry +INT-001497,PER-0193,whatsapp,site_visit,2024-10-02T00:00:00,Site Visit via whatsapp regarding Eden Devprayag,email_sync +INT-001498,PER-0193,phone_call,price_discussion,2024-10-12T00:00:00,Price Discussion via phone_call regarding Eden Devprayag,site_visit_log +INT-001499,PER-0194,referral,initial_enquiry,2024-10-27T00:00:00,Initial Enquiry via referral regarding Siddha Suburbia Bungalow,call_logs +INT-001500,PER-0194,whatsapp,site_visit,2024-11-19T00:00:00,Site Visit via whatsapp regarding Siddha Suburbia Bungalow,call_logs +INT-001501,PER-0194,whatsapp,site_visit,2024-11-27T00:00:00,Site Visit via whatsapp regarding Siddha Suburbia Bungalow,site_visit_log +INT-001502,PER-0195,referral,initial_enquiry,2024-12-21T00:00:00,Initial Enquiry via referral regarding Atri Surya Toron,site_visit_log +INT-001503,PER-0195,phone_call,follow_up,2024-12-27T00:00:00,Follow Up via phone_call regarding Atri Surya Toron,site_visit_log +INT-001504,PER-0195,email,site_visit,2025-02-05T00:00:00,Site Visit via email regarding Atri Surya Toron,call_logs +INT-001505,PER-0195,whatsapp,follow_up,2025-02-12T00:00:00,Follow Up via whatsapp regarding Atri Surya Toron,site_visit_log +INT-001506,PER-0195,web_enquiry,initial_enquiry,2025-02-15T00:00:00,Initial Enquiry via web_enquiry regarding Atri Surya Toron,manual_entry +INT-001507,PER-0195,referral,site_visit,2025-02-17T00:00:00,Site Visit via referral regarding Atri Surya Toron,manual_entry +INT-001508,PER-0195,site_visit,site_visit,2025-02-22T00:00:00,Site Visit via site_visit regarding Atri Surya Toron,call_logs +INT-001509,PER-0195,phone_call,family_discussion,2025-03-09T00:00:00,Family Discussion via phone_call regarding Atri Surya Toron,site_visit_log +INT-001510,PER-0195,referral,follow_up,2025-03-12T00:00:00,Follow Up via referral regarding Atri Surya Toron,email_sync +INT-001511,PER-0195,whatsapp,site_visit,2025-03-15T00:00:00,Site Visit via whatsapp regarding Atri Surya Toron,email_sync +INT-001512,PER-0196,web_enquiry,initial_enquiry,2024-01-18T00:00:00,Initial Enquiry via web_enquiry regarding DTC Sojon,call_logs +INT-001513,PER-0196,phone_call,price_discussion,2024-01-22T00:00:00,Price Discussion via phone_call regarding DTC Sojon,email_sync +INT-001514,PER-0196,whatsapp,site_visit,2024-02-02T00:00:00,Site Visit via whatsapp regarding DTC Sojon,manual_entry +INT-001515,PER-0196,phone_call,initial_enquiry,2024-02-02T00:00:00,Initial Enquiry via phone_call regarding DTC Sojon,manual_entry +INT-001516,PER-0196,site_visit,site_visit,2024-02-04T00:00:00,Site Visit via site_visit regarding DTC Sojon,email_sync +INT-001517,PER-0196,whatsapp,family_discussion,2024-02-21T00:00:00,Family Discussion via whatsapp regarding DTC Sojon,site_visit_log +INT-001518,PER-0196,phone_call,follow_up,2024-02-24T00:00:00,Follow Up via phone_call regarding DTC Sojon,email_sync +INT-001519,PER-0196,site_visit,site_visit,2024-03-05T00:00:00,Site Visit via site_visit regarding DTC Sojon,whatsapp_api +INT-001520,PER-0196,whatsapp,price_discussion,2024-03-07T00:00:00,Price Discussion via whatsapp regarding DTC Sojon,site_visit_log +INT-001521,PER-0196,whatsapp,price_discussion,2024-03-15T00:00:00,Price Discussion via whatsapp regarding DTC Sojon,site_visit_log +INT-001522,PER-0196,phone_call,follow_up,2024-03-20T00:00:00,Follow Up via phone_call regarding DTC Sojon,manual_entry +INT-001523,PER-0197,walk_in,initial_enquiry,2024-08-24T00:00:00,Initial Enquiry via walk_in regarding Merlin Avana,whatsapp_api +INT-001524,PER-0197,phone_call,document_sharing,2024-10-03T00:00:00,Document Sharing via phone_call regarding Merlin Avana,email_sync +INT-001525,PER-0197,email,price_discussion,2024-10-25T00:00:00,Price Discussion via email regarding Merlin Avana,call_logs +INT-001526,PER-0198,walk_in,initial_enquiry,2025-04-19T00:00:00,Initial Enquiry via walk_in regarding Sugam Prakriti,email_sync +INT-001527,PER-0198,whatsapp,negotiation,2025-04-27T00:00:00,Negotiation via whatsapp regarding Sugam Prakriti,email_sync +INT-001528,PER-0198,email,negotiation,2025-05-12T00:00:00,Negotiation via email regarding Sugam Prakriti,whatsapp_api +INT-001529,PER-0198,phone_call,negotiation,2025-05-12T00:00:00,Negotiation via phone_call regarding Sugam Prakriti,whatsapp_api +INT-001530,PER-0198,phone_call,follow_up,2025-05-17T00:00:00,Follow Up via phone_call regarding Sugam Prakriti,call_logs +INT-001531,PER-0198,site_visit,site_visit,2025-05-20T00:00:00,Site Visit via site_visit regarding Sugam Prakriti,whatsapp_api +INT-001532,PER-0198,whatsapp,price_discussion,2025-06-07T00:00:00,Price Discussion via whatsapp regarding Sugam Prakriti,call_logs +INT-001533,PER-0198,site_visit,site_visit,2025-06-21T00:00:00,Site Visit via site_visit regarding Sugam Prakriti,manual_entry +INT-001534,PER-0198,phone_call,price_discussion,2025-06-29T00:00:00,Price Discussion via phone_call regarding Sugam Prakriti,call_logs +INT-001535,PER-0199,referral,initial_enquiry,2025-12-08T00:00:00,Initial Enquiry via referral regarding Atri Aqua,call_logs +INT-001536,PER-0199,phone_call,family_discussion,2025-12-25T00:00:00,Family Discussion via phone_call regarding Atri Aqua,call_logs +INT-001537,PER-0199,whatsapp,family_discussion,2026-02-07T00:00:00,Family Discussion via whatsapp regarding Atri Aqua,call_logs +INT-001538,PER-0199,walk_in,site_visit,2026-03-04T00:00:00,Site Visit via walk_in regarding Atri Aqua,call_logs +INT-001539,PER-0199,whatsapp,negotiation,2026-03-05T00:00:00,Negotiation via whatsapp regarding Atri Aqua,call_logs +INT-001540,PER-0200,walk_in,initial_enquiry,2024-12-07T00:00:00,Initial Enquiry via walk_in regarding Siddha Sky Waterfront,site_visit_log +INT-001541,PER-0200,phone_call,family_discussion,2024-12-14T00:00:00,Family Discussion via phone_call regarding Siddha Sky Waterfront,site_visit_log +INT-001542,PER-0200,whatsapp,follow_up,2024-12-30T00:00:00,Follow Up via whatsapp regarding Siddha Sky Waterfront,email_sync +INT-001543,PER-0200,whatsapp,follow_up,2025-01-05T00:00:00,Follow Up via whatsapp regarding Siddha Sky Waterfront,manual_entry +INT-001544,PER-0200,phone_call,negotiation,2025-02-27T00:00:00,Negotiation via phone_call regarding Siddha Sky Waterfront,whatsapp_api +INT-001545,PER-0201,referral,initial_enquiry,2024-09-01T00:00:00,Initial Enquiry via referral regarding Atri Surya Toron,call_logs +INT-001546,PER-0201,phone_call,site_visit,2024-09-03T00:00:00,Site Visit via phone_call regarding Atri Surya Toron,manual_entry +INT-001547,PER-0201,email,document_sharing,2024-09-09T00:00:00,Document Sharing via email regarding Atri Surya Toron,manual_entry +INT-001548,PER-0201,phone_call,document_sharing,2024-09-18T00:00:00,Document Sharing via phone_call regarding Atri Surya Toron,call_logs +INT-001549,PER-0201,whatsapp,initial_enquiry,2024-09-19T00:00:00,Initial Enquiry via whatsapp regarding Atri Surya Toron,whatsapp_api +INT-001550,PER-0201,whatsapp,price_discussion,2024-09-27T00:00:00,Price Discussion via whatsapp regarding Atri Surya Toron,manual_entry +INT-001551,PER-0201,site_visit,site_visit,2024-09-29T00:00:00,Site Visit via site_visit regarding Atri Surya Toron,manual_entry +INT-001552,PER-0201,phone_call,document_sharing,2024-10-03T00:00:00,Document Sharing via phone_call regarding Atri Surya Toron,email_sync +INT-001553,PER-0202,walk_in,initial_enquiry,2024-04-11T00:00:00,Initial Enquiry via walk_in regarding Atri Surya Toron,manual_entry +INT-001554,PER-0202,whatsapp,family_discussion,2024-04-24T00:00:00,Family Discussion via whatsapp regarding Atri Surya Toron,call_logs +INT-001555,PER-0202,whatsapp,site_visit,2024-05-02T00:00:00,Site Visit via whatsapp regarding Atri Surya Toron,email_sync +INT-001556,PER-0202,site_visit,site_visit,2024-06-11T00:00:00,Site Visit via site_visit regarding Atri Surya Toron,manual_entry +INT-001557,PER-0203,referral,initial_enquiry,2025-08-03T00:00:00,Initial Enquiry via referral regarding Shriram Grand City,email_sync +INT-001558,PER-0203,phone_call,family_discussion,2025-08-26T00:00:00,Family Discussion via phone_call regarding Shriram Grand City,site_visit_log +INT-001559,PER-0203,email,price_discussion,2025-09-04T00:00:00,Price Discussion via email regarding Shriram Grand City,whatsapp_api +INT-001560,PER-0203,phone_call,negotiation,2025-09-06T00:00:00,Negotiation via phone_call regarding Shriram Grand City,manual_entry +INT-001561,PER-0203,whatsapp,document_sharing,2025-09-19T00:00:00,Document Sharing via whatsapp regarding Shriram Grand City,manual_entry +INT-001562,PER-0204,web_enquiry,initial_enquiry,2024-07-13T00:00:00,Initial Enquiry via web_enquiry regarding Siddha Sky Waterfront,whatsapp_api +INT-001563,PER-0204,phone_call,site_visit,2024-07-18T00:00:00,Site Visit via phone_call regarding Siddha Sky Waterfront,manual_entry +INT-001564,PER-0204,whatsapp,negotiation,2024-07-22T00:00:00,Negotiation via whatsapp regarding Siddha Sky Waterfront,whatsapp_api +INT-001565,PER-0204,phone_call,price_discussion,2024-07-23T00:00:00,Price Discussion via phone_call regarding Siddha Sky Waterfront,site_visit_log +INT-001566,PER-0204,site_visit,site_visit,2024-08-03T00:00:00,Site Visit via site_visit regarding Siddha Sky Waterfront,email_sync +INT-001567,PER-0204,phone_call,follow_up,2024-08-17T00:00:00,Follow Up via phone_call regarding Siddha Sky Waterfront,email_sync +INT-001568,PER-0204,whatsapp,document_sharing,2024-08-30T00:00:00,Document Sharing via whatsapp regarding Siddha Sky Waterfront,whatsapp_api +INT-001569,PER-0204,whatsapp,document_sharing,2024-09-01T00:00:00,Document Sharing via whatsapp regarding Siddha Sky Waterfront,whatsapp_api +INT-001570,PER-0204,site_visit,site_visit,2024-09-03T00:00:00,Site Visit via site_visit regarding Siddha Sky Waterfront,call_logs +INT-001571,PER-0204,whatsapp,price_discussion,2024-09-07T00:00:00,Price Discussion via whatsapp regarding Siddha Sky Waterfront,manual_entry +INT-001572,PER-0204,site_visit,site_visit,2024-10-01T00:00:00,Site Visit via site_visit regarding Siddha Sky Waterfront,email_sync +INT-001573,PER-0205,walk_in,initial_enquiry,2025-05-09T00:00:00,Initial Enquiry via walk_in regarding Atri Surya Toron,whatsapp_api +INT-001574,PER-0205,phone_call,initial_enquiry,2025-05-09T00:00:00,Initial Enquiry via phone_call regarding Atri Surya Toron,whatsapp_api +INT-001575,PER-0205,email,initial_enquiry,2025-05-10T00:00:00,Initial Enquiry via email regarding Atri Surya Toron,email_sync +INT-001576,PER-0205,whatsapp,price_discussion,2025-05-16T00:00:00,Price Discussion via whatsapp regarding Atri Surya Toron,call_logs +INT-001577,PER-0205,site_visit,site_visit,2025-05-16T00:00:00,Site Visit via site_visit regarding Atri Surya Toron,email_sync +INT-001578,PER-0205,phone_call,family_discussion,2025-06-17T00:00:00,Family Discussion via phone_call regarding Atri Surya Toron,call_logs +INT-001579,PER-0205,whatsapp,family_discussion,2025-06-17T00:00:00,Family Discussion via whatsapp regarding Atri Surya Toron,email_sync +INT-001580,PER-0205,site_visit,site_visit,2025-06-19T00:00:00,Site Visit via site_visit regarding Atri Surya Toron,call_logs +INT-001581,PER-0205,site_visit,site_visit,2025-06-23T00:00:00,Site Visit via site_visit regarding Atri Surya Toron,email_sync +INT-001582,PER-0205,whatsapp,initial_enquiry,2025-06-26T00:00:00,Initial Enquiry via whatsapp regarding Atri Surya Toron,site_visit_log +INT-001583,PER-0205,phone_call,follow_up,2025-07-10T00:00:00,Follow Up via phone_call regarding Atri Surya Toron,email_sync +INT-001584,PER-0206,referral,initial_enquiry,2024-06-16T00:00:00,Initial Enquiry via referral regarding DTC Sojon,email_sync +INT-001585,PER-0206,phone_call,negotiation,2024-07-01T00:00:00,Negotiation via phone_call regarding DTC Sojon,manual_entry +INT-001586,PER-0206,email,site_visit,2024-07-17T00:00:00,Site Visit via email regarding DTC Sojon,site_visit_log +INT-001587,PER-0206,whatsapp,document_sharing,2024-07-24T00:00:00,Document Sharing via whatsapp regarding DTC Sojon,email_sync +INT-001588,PER-0206,referral,initial_enquiry,2024-07-26T00:00:00,Initial Enquiry via referral regarding DTC Sojon,email_sync +INT-001589,PER-0206,web_enquiry,site_visit,2024-08-24T00:00:00,Site Visit via web_enquiry regarding DTC Sojon,site_visit_log +INT-001590,PER-0206,web_enquiry,initial_enquiry,2024-08-28T00:00:00,Initial Enquiry via web_enquiry regarding DTC Sojon,manual_entry +INT-001591,PER-0207,referral,initial_enquiry,2025-09-21T00:00:00,Initial Enquiry via referral regarding Ambuja Utpaala,call_logs +INT-001592,PER-0207,whatsapp,initial_enquiry,2025-09-21T00:00:00,Initial Enquiry via whatsapp regarding Ambuja Utpaala,email_sync +INT-001593,PER-0207,email,price_discussion,2025-10-03T00:00:00,Price Discussion via email regarding Ambuja Utpaala,site_visit_log +INT-001594,PER-0207,phone_call,follow_up,2025-10-10T00:00:00,Follow Up via phone_call regarding Ambuja Utpaala,call_logs +INT-001595,PER-0207,phone_call,family_discussion,2025-10-20T00:00:00,Family Discussion via phone_call regarding Ambuja Utpaala,site_visit_log +INT-001596,PER-0207,whatsapp,site_visit,2025-11-04T00:00:00,Site Visit via whatsapp regarding Ambuja Utpaala,call_logs +INT-001597,PER-0207,phone_call,site_visit,2025-11-21T00:00:00,Site Visit via phone_call regarding Ambuja Utpaala,site_visit_log +INT-001598,PER-0208,web_enquiry,initial_enquiry,2025-01-09T00:00:00,Initial Enquiry via web_enquiry regarding DTC Good Earth,manual_entry +INT-001599,PER-0208,whatsapp,negotiation,2025-01-13T00:00:00,Negotiation via whatsapp regarding DTC Good Earth,call_logs +INT-001600,PER-0208,whatsapp,family_discussion,2025-01-30T00:00:00,Family Discussion via whatsapp regarding DTC Good Earth,site_visit_log +INT-001601,PER-0208,email,price_discussion,2025-02-10T00:00:00,Price Discussion via email regarding DTC Good Earth,site_visit_log +INT-001602,PER-0208,whatsapp,site_visit,2025-02-18T00:00:00,Site Visit via whatsapp regarding DTC Good Earth,site_visit_log +INT-001603,PER-0208,walk_in,negotiation,2025-03-27T00:00:00,Negotiation via walk_in regarding DTC Good Earth,call_logs +INT-001604,PER-0208,walk_in,follow_up,2025-03-29T00:00:00,Follow Up via walk_in regarding DTC Good Earth,site_visit_log +INT-001605,PER-0209,walk_in,initial_enquiry,2024-02-19T00:00:00,Initial Enquiry via walk_in regarding Ambuja Utpaala,site_visit_log +INT-001606,PER-0209,whatsapp,initial_enquiry,2024-02-22T00:00:00,Initial Enquiry via whatsapp regarding Ambuja Utpaala,call_logs +INT-001607,PER-0209,whatsapp,site_visit,2024-02-23T00:00:00,Site Visit via whatsapp regarding Ambuja Utpaala,site_visit_log +INT-001608,PER-0209,email,follow_up,2024-02-24T00:00:00,Follow Up via email regarding Ambuja Utpaala,manual_entry +INT-001609,PER-0209,web_enquiry,site_visit,2024-03-11T00:00:00,Site Visit via web_enquiry regarding Ambuja Utpaala,call_logs +INT-001610,PER-0209,site_visit,site_visit,2024-03-14T00:00:00,Site Visit via site_visit regarding Ambuja Utpaala,email_sync +INT-001611,PER-0209,phone_call,follow_up,2024-03-22T00:00:00,Follow Up via phone_call regarding Ambuja Utpaala,site_visit_log +INT-001612,PER-0209,phone_call,document_sharing,2024-04-05T00:00:00,Document Sharing via phone_call regarding Ambuja Utpaala,call_logs +INT-001613,PER-0209,site_visit,site_visit,2024-05-04T00:00:00,Site Visit via site_visit regarding Ambuja Utpaala,email_sync +INT-001614,PER-0209,web_enquiry,site_visit,2024-05-10T00:00:00,Site Visit via web_enquiry regarding Ambuja Utpaala,whatsapp_api +INT-001615,PER-0210,referral,initial_enquiry,2025-09-11T00:00:00,Initial Enquiry via referral regarding Siddha Sky Waterfront,site_visit_log +INT-001616,PER-0210,whatsapp,document_sharing,2025-09-21T00:00:00,Document Sharing via whatsapp regarding Siddha Sky Waterfront,call_logs +INT-001617,PER-0210,whatsapp,initial_enquiry,2025-09-30T00:00:00,Initial Enquiry via whatsapp regarding Siddha Sky Waterfront,manual_entry +INT-001618,PER-0210,whatsapp,price_discussion,2025-12-02T00:00:00,Price Discussion via whatsapp regarding Siddha Sky Waterfront,call_logs +INT-001619,PER-0211,web_enquiry,initial_enquiry,2025-08-26T00:00:00,Initial Enquiry via web_enquiry regarding Merlin Avana,email_sync +INT-001620,PER-0211,whatsapp,site_visit,2025-09-11T00:00:00,Site Visit via whatsapp regarding Merlin Avana,whatsapp_api +INT-001621,PER-0211,whatsapp,document_sharing,2025-10-08T00:00:00,Document Sharing via whatsapp regarding Merlin Avana,site_visit_log +INT-001622,PER-0211,phone_call,price_discussion,2025-10-09T00:00:00,Price Discussion via phone_call regarding Merlin Avana,call_logs +INT-001623,PER-0211,phone_call,negotiation,2025-10-12T00:00:00,Negotiation via phone_call regarding Merlin Avana,email_sync +INT-001624,PER-0211,phone_call,family_discussion,2025-10-28T00:00:00,Family Discussion via phone_call regarding Merlin Avana,manual_entry +INT-001625,PER-0211,whatsapp,price_discussion,2025-11-05T00:00:00,Price Discussion via whatsapp regarding Merlin Avana,email_sync +INT-001626,PER-0211,phone_call,price_discussion,2025-11-14T00:00:00,Price Discussion via phone_call regarding Merlin Avana,manual_entry +INT-001627,PER-0211,whatsapp,negotiation,2025-11-18T00:00:00,Negotiation via whatsapp regarding Merlin Avana,site_visit_log +INT-001628,PER-0212,walk_in,initial_enquiry,2024-05-27T00:00:00,Initial Enquiry via walk_in regarding Godrej Blue,site_visit_log +INT-001629,PER-0212,phone_call,initial_enquiry,2024-05-27T00:00:00,Initial Enquiry via phone_call regarding Godrej Blue,manual_entry +INT-001630,PER-0212,whatsapp,initial_enquiry,2024-06-12T00:00:00,Initial Enquiry via whatsapp regarding Godrej Blue,call_logs +INT-001631,PER-0212,site_visit,site_visit,2024-06-12T00:00:00,Site Visit via site_visit regarding Godrej Blue,whatsapp_api +INT-001632,PER-0212,site_visit,site_visit,2024-07-01T00:00:00,Site Visit via site_visit regarding Godrej Blue,manual_entry +INT-001633,PER-0213,web_enquiry,initial_enquiry,2024-05-03T00:00:00,Initial Enquiry via web_enquiry regarding Siddha Suburbia Bungalow,email_sync +INT-001634,PER-0213,phone_call,follow_up,2024-05-04T00:00:00,Follow Up via phone_call regarding Siddha Suburbia Bungalow,call_logs +INT-001635,PER-0213,email,initial_enquiry,2024-05-06T00:00:00,Initial Enquiry via email regarding Siddha Suburbia Bungalow,site_visit_log +INT-001636,PER-0213,phone_call,price_discussion,2024-05-13T00:00:00,Price Discussion via phone_call regarding Siddha Suburbia Bungalow,site_visit_log +INT-001637,PER-0213,whatsapp,price_discussion,2024-05-22T00:00:00,Price Discussion via whatsapp regarding Siddha Suburbia Bungalow,call_logs +INT-001638,PER-0213,whatsapp,negotiation,2024-05-27T00:00:00,Negotiation via whatsapp regarding Siddha Suburbia Bungalow,call_logs +INT-001639,PER-0213,site_visit,site_visit,2024-06-01T00:00:00,Site Visit via site_visit regarding Siddha Suburbia Bungalow,whatsapp_api +INT-001640,PER-0213,whatsapp,follow_up,2024-06-04T00:00:00,Follow Up via whatsapp regarding Siddha Suburbia Bungalow,site_visit_log +INT-001641,PER-0213,whatsapp,document_sharing,2024-06-08T00:00:00,Document Sharing via whatsapp regarding Siddha Suburbia Bungalow,site_visit_log +INT-001642,PER-0213,phone_call,negotiation,2024-06-20T00:00:00,Negotiation via phone_call regarding Siddha Suburbia Bungalow,whatsapp_api +INT-001643,PER-0213,phone_call,price_discussion,2024-06-26T00:00:00,Price Discussion via phone_call regarding Siddha Suburbia Bungalow,site_visit_log +INT-001644,PER-0213,site_visit,site_visit,2024-07-25T00:00:00,Site Visit via site_visit regarding Siddha Suburbia Bungalow,manual_entry +INT-001645,PER-0214,referral,initial_enquiry,2025-08-15T00:00:00,Initial Enquiry via referral regarding Godrej Blue,email_sync +INT-001646,PER-0214,phone_call,document_sharing,2025-08-23T00:00:00,Document Sharing via phone_call regarding Godrej Blue,site_visit_log +INT-001647,PER-0214,whatsapp,site_visit,2025-08-27T00:00:00,Site Visit via whatsapp regarding Godrej Blue,site_visit_log +INT-001648,PER-0214,site_visit,site_visit,2025-09-07T00:00:00,Site Visit via site_visit regarding Godrej Blue,manual_entry +INT-001649,PER-0214,phone_call,family_discussion,2025-09-07T00:00:00,Family Discussion via phone_call regarding Godrej Blue,email_sync +INT-001650,PER-0214,whatsapp,price_discussion,2025-09-12T00:00:00,Price Discussion via whatsapp regarding Godrej Blue,manual_entry +INT-001651,PER-0214,whatsapp,price_discussion,2025-09-26T00:00:00,Price Discussion via whatsapp regarding Godrej Blue,whatsapp_api +INT-001652,PER-0215,walk_in,initial_enquiry,2025-05-16T00:00:00,Initial Enquiry via walk_in regarding Shriram Grand City,manual_entry +INT-001653,PER-0215,phone_call,document_sharing,2025-05-20T00:00:00,Document Sharing via phone_call regarding Shriram Grand City,email_sync +INT-001654,PER-0215,whatsapp,family_discussion,2025-06-25T00:00:00,Family Discussion via whatsapp regarding Shriram Grand City,site_visit_log +INT-001655,PER-0215,site_visit,site_visit,2025-06-28T00:00:00,Site Visit via site_visit regarding Shriram Grand City,manual_entry +INT-001656,PER-0215,phone_call,price_discussion,2025-07-09T00:00:00,Price Discussion via phone_call regarding Shriram Grand City,site_visit_log +INT-001657,PER-0215,phone_call,site_visit,2025-07-15T00:00:00,Site Visit via phone_call regarding Shriram Grand City,manual_entry +INT-001658,PER-0215,phone_call,initial_enquiry,2025-07-29T00:00:00,Initial Enquiry via phone_call regarding Shriram Grand City,site_visit_log +INT-001659,PER-0215,phone_call,site_visit,2025-08-07T00:00:00,Site Visit via phone_call regarding Shriram Grand City,site_visit_log +INT-001660,PER-0215,site_visit,site_visit,2025-08-09T00:00:00,Site Visit via site_visit regarding Shriram Grand City,site_visit_log +INT-001661,PER-0216,web_enquiry,initial_enquiry,2025-01-17T00:00:00,Initial Enquiry via web_enquiry regarding DTC Sojon,email_sync +INT-001662,PER-0216,whatsapp,negotiation,2025-03-05T00:00:00,Negotiation via whatsapp regarding DTC Sojon,manual_entry +INT-001663,PER-0216,email,negotiation,2025-03-28T00:00:00,Negotiation via email regarding DTC Sojon,whatsapp_api +INT-001664,PER-0216,phone_call,negotiation,2025-03-31T00:00:00,Negotiation via phone_call regarding DTC Sojon,call_logs +INT-001665,PER-0216,whatsapp,initial_enquiry,2025-04-13T00:00:00,Initial Enquiry via whatsapp regarding DTC Sojon,manual_entry +INT-001666,PER-0217,referral,initial_enquiry,2024-08-29T00:00:00,Initial Enquiry via referral regarding Godrej Blue,call_logs +INT-001667,PER-0217,whatsapp,family_discussion,2024-10-09T00:00:00,Family Discussion via whatsapp regarding Godrej Blue,whatsapp_api +INT-001668,PER-0217,email,initial_enquiry,2024-10-11T00:00:00,Initial Enquiry via email regarding Godrej Blue,call_logs +INT-001669,PER-0218,web_enquiry,initial_enquiry,2026-01-20T00:00:00,Initial Enquiry via web_enquiry regarding Atri Aqua,manual_entry +INT-001670,PER-0218,whatsapp,family_discussion,2026-01-21T00:00:00,Family Discussion via whatsapp regarding Atri Aqua,site_visit_log +INT-001671,PER-0218,email,site_visit,2026-01-22T00:00:00,Site Visit via email regarding Atri Aqua,email_sync +INT-001672,PER-0218,site_visit,site_visit,2026-02-05T00:00:00,Site Visit via site_visit regarding Atri Aqua,email_sync +INT-001673,PER-0218,phone_call,document_sharing,2026-02-05T00:00:00,Document Sharing via phone_call regarding Atri Aqua,site_visit_log +INT-001674,PER-0218,whatsapp,initial_enquiry,2026-02-05T00:00:00,Initial Enquiry via whatsapp regarding Atri Aqua,site_visit_log +INT-001675,PER-0218,whatsapp,site_visit,2026-02-06T00:00:00,Site Visit via whatsapp regarding Atri Aqua,whatsapp_api +INT-001676,PER-0218,site_visit,site_visit,2026-02-24T00:00:00,Site Visit via site_visit regarding Atri Aqua,site_visit_log +INT-001677,PER-0218,phone_call,family_discussion,2026-02-26T00:00:00,Family Discussion via phone_call regarding Atri Aqua,whatsapp_api +INT-001678,PER-0218,phone_call,follow_up,2026-03-07T00:00:00,Follow Up via phone_call regarding Atri Aqua,whatsapp_api +INT-001679,PER-0218,phone_call,site_visit,2026-04-01T00:00:00,Site Visit via phone_call regarding Atri Aqua,manual_entry +INT-001680,PER-0218,phone_call,negotiation,2026-04-05T00:00:00,Negotiation via phone_call regarding Atri Aqua,call_logs +INT-001681,PER-0218,phone_call,follow_up,2026-04-07T00:00:00,Follow Up via phone_call regarding Atri Aqua,site_visit_log +INT-001682,PER-0219,referral,initial_enquiry,2025-07-08T00:00:00,Initial Enquiry via referral regarding Sugam Prakriti,site_visit_log +INT-001683,PER-0219,whatsapp,site_visit,2025-07-19T00:00:00,Site Visit via whatsapp regarding Sugam Prakriti,call_logs +INT-001684,PER-0219,email,document_sharing,2025-07-21T00:00:00,Document Sharing via email regarding Sugam Prakriti,whatsapp_api +INT-001685,PER-0219,phone_call,price_discussion,2025-08-04T00:00:00,Price Discussion via phone_call regarding Sugam Prakriti,whatsapp_api +INT-001686,PER-0219,whatsapp,price_discussion,2025-08-10T00:00:00,Price Discussion via whatsapp regarding Sugam Prakriti,whatsapp_api +INT-001687,PER-0219,site_visit,site_visit,2025-08-10T00:00:00,Site Visit via site_visit regarding Sugam Prakriti,email_sync +INT-001688,PER-0219,site_visit,site_visit,2025-08-16T00:00:00,Site Visit via site_visit regarding Sugam Prakriti,email_sync +INT-001689,PER-0219,site_visit,site_visit,2025-08-30T00:00:00,Site Visit via site_visit regarding Sugam Prakriti,site_visit_log +INT-001690,PER-0219,whatsapp,family_discussion,2025-08-31T00:00:00,Family Discussion via whatsapp regarding Sugam Prakriti,whatsapp_api +INT-001691,PER-0219,phone_call,price_discussion,2025-09-09T00:00:00,Price Discussion via phone_call regarding Sugam Prakriti,site_visit_log +INT-001692,PER-0219,whatsapp,follow_up,2025-09-10T00:00:00,Follow Up via whatsapp regarding Sugam Prakriti,site_visit_log +INT-001693,PER-0219,site_visit,site_visit,2025-09-20T00:00:00,Site Visit via site_visit regarding Sugam Prakriti,email_sync +INT-001694,PER-0220,walk_in,initial_enquiry,2024-09-26T00:00:00,Initial Enquiry via walk_in regarding Siddha Serena,call_logs +INT-001695,PER-0220,phone_call,site_visit,2024-10-12T00:00:00,Site Visit via phone_call regarding Siddha Serena,call_logs +INT-001696,PER-0220,email,initial_enquiry,2024-10-18T00:00:00,Initial Enquiry via email regarding Siddha Serena,call_logs +INT-001697,PER-0220,walk_in,follow_up,2024-10-25T00:00:00,Follow Up via walk_in regarding Siddha Serena,call_logs +INT-001698,PER-0220,email,price_discussion,2024-10-31T00:00:00,Price Discussion via email regarding Siddha Serena,whatsapp_api +INT-001699,PER-0220,walk_in,site_visit,2024-11-06T00:00:00,Site Visit via walk_in regarding Siddha Serena,whatsapp_api +INT-001700,PER-0220,walk_in,family_discussion,2024-11-14T00:00:00,Family Discussion via walk_in regarding Siddha Serena,whatsapp_api +INT-001701,PER-0220,email,initial_enquiry,2024-12-03T00:00:00,Initial Enquiry via email regarding Siddha Serena,site_visit_log +INT-001702,PER-0220,web_enquiry,price_discussion,2024-12-03T00:00:00,Price Discussion via web_enquiry regarding Siddha Serena,whatsapp_api +INT-001703,PER-0220,web_enquiry,negotiation,2024-12-14T00:00:00,Negotiation via web_enquiry regarding Siddha Serena,site_visit_log +INT-001704,PER-0221,web_enquiry,initial_enquiry,2024-03-21T00:00:00,Initial Enquiry via web_enquiry regarding Godrej Elevate,call_logs +INT-001705,PER-0221,whatsapp,negotiation,2024-03-21T00:00:00,Negotiation via whatsapp regarding Godrej Elevate,manual_entry +INT-001706,PER-0221,email,follow_up,2024-04-02T00:00:00,Follow Up via email regarding Godrej Elevate,email_sync +INT-001707,PER-0222,web_enquiry,initial_enquiry,2025-12-26T00:00:00,Initial Enquiry via web_enquiry regarding Godrej Elevate,manual_entry +INT-001708,PER-0222,phone_call,document_sharing,2026-01-11T00:00:00,Document Sharing via phone_call regarding Godrej Elevate,call_logs +INT-001709,PER-0222,email,negotiation,2026-01-17T00:00:00,Negotiation via email regarding Godrej Elevate,email_sync +INT-001710,PER-0222,email,initial_enquiry,2026-01-19T00:00:00,Initial Enquiry via email regarding Godrej Elevate,email_sync +INT-001711,PER-0222,whatsapp,negotiation,2026-01-21T00:00:00,Negotiation via whatsapp regarding Godrej Elevate,call_logs +INT-001712,PER-0222,site_visit,site_visit,2026-02-09T00:00:00,Site Visit via site_visit regarding Godrej Elevate,email_sync +INT-001713,PER-0222,site_visit,site_visit,2026-02-12T00:00:00,Site Visit via site_visit regarding Godrej Elevate,whatsapp_api +INT-001714,PER-0223,web_enquiry,initial_enquiry,2025-05-16T00:00:00,Initial Enquiry via web_enquiry regarding Sugam Prakriti,email_sync +INT-001715,PER-0223,whatsapp,family_discussion,2025-05-27T00:00:00,Family Discussion via whatsapp regarding Sugam Prakriti,site_visit_log +INT-001716,PER-0223,email,document_sharing,2025-06-01T00:00:00,Document Sharing via email regarding Sugam Prakriti,call_logs +INT-001717,PER-0223,whatsapp,site_visit,2025-06-02T00:00:00,Site Visit via whatsapp regarding Sugam Prakriti,email_sync +INT-001718,PER-0223,whatsapp,follow_up,2025-06-11T00:00:00,Follow Up via whatsapp regarding Sugam Prakriti,whatsapp_api +INT-001719,PER-0223,site_visit,site_visit,2025-06-13T00:00:00,Site Visit via site_visit regarding Sugam Prakriti,email_sync +INT-001720,PER-0223,phone_call,follow_up,2025-06-14T00:00:00,Follow Up via phone_call regarding Sugam Prakriti,whatsapp_api +INT-001721,PER-0223,site_visit,site_visit,2025-07-17T00:00:00,Site Visit via site_visit regarding Sugam Prakriti,call_logs +INT-001722,PER-0223,phone_call,negotiation,2025-07-25T00:00:00,Negotiation via phone_call regarding Sugam Prakriti,call_logs +INT-001723,PER-0223,whatsapp,document_sharing,2025-07-26T00:00:00,Document Sharing via whatsapp regarding Sugam Prakriti,call_logs +INT-001724,PER-0223,site_visit,site_visit,2025-08-02T00:00:00,Site Visit via site_visit regarding Sugam Prakriti,site_visit_log +INT-001725,PER-0223,site_visit,site_visit,2025-08-12T00:00:00,Site Visit via site_visit regarding Sugam Prakriti,email_sync +INT-001726,PER-0224,web_enquiry,initial_enquiry,2025-09-30T00:00:00,Initial Enquiry via web_enquiry regarding Siddha Suburbia Bungalow,email_sync +INT-001727,PER-0224,whatsapp,price_discussion,2025-10-01T00:00:00,Price Discussion via whatsapp regarding Siddha Suburbia Bungalow,email_sync +INT-001728,PER-0224,email,document_sharing,2025-10-11T00:00:00,Document Sharing via email regarding Siddha Suburbia Bungalow,whatsapp_api +INT-001729,PER-0224,phone_call,follow_up,2025-10-19T00:00:00,Follow Up via phone_call regarding Siddha Suburbia Bungalow,manual_entry +INT-001730,PER-0224,site_visit,site_visit,2025-10-26T00:00:00,Site Visit via site_visit regarding Siddha Suburbia Bungalow,call_logs +INT-001731,PER-0224,phone_call,document_sharing,2025-10-31T00:00:00,Document Sharing via phone_call regarding Siddha Suburbia Bungalow,email_sync +INT-001732,PER-0224,whatsapp,price_discussion,2025-11-21T00:00:00,Price Discussion via whatsapp regarding Siddha Suburbia Bungalow,site_visit_log +INT-001733,PER-0224,site_visit,site_visit,2025-11-22T00:00:00,Site Visit via site_visit regarding Siddha Suburbia Bungalow,manual_entry +INT-001734,PER-0224,phone_call,document_sharing,2025-11-30T00:00:00,Document Sharing via phone_call regarding Siddha Suburbia Bungalow,whatsapp_api +INT-001735,PER-0225,walk_in,initial_enquiry,2024-11-28T00:00:00,Initial Enquiry via walk_in regarding Godrej Elevate,manual_entry +INT-001736,PER-0225,whatsapp,initial_enquiry,2024-11-29T00:00:00,Initial Enquiry via whatsapp regarding Godrej Elevate,manual_entry +INT-001737,PER-0225,whatsapp,family_discussion,2024-12-07T00:00:00,Family Discussion via whatsapp regarding Godrej Elevate,call_logs +INT-001738,PER-0225,whatsapp,price_discussion,2024-12-22T00:00:00,Price Discussion via whatsapp regarding Godrej Elevate,site_visit_log +INT-001739,PER-0225,whatsapp,negotiation,2024-12-27T00:00:00,Negotiation via whatsapp regarding Godrej Elevate,site_visit_log +INT-001740,PER-0225,whatsapp,negotiation,2024-12-27T00:00:00,Negotiation via whatsapp regarding Godrej Elevate,call_logs +INT-001741,PER-0225,phone_call,site_visit,2024-12-31T00:00:00,Site Visit via phone_call regarding Godrej Elevate,manual_entry +INT-001742,PER-0225,site_visit,site_visit,2025-01-05T00:00:00,Site Visit via site_visit regarding Godrej Elevate,site_visit_log +INT-001743,PER-0225,site_visit,site_visit,2025-01-05T00:00:00,Site Visit via site_visit regarding Godrej Elevate,whatsapp_api +INT-001744,PER-0225,whatsapp,site_visit,2025-01-06T00:00:00,Site Visit via whatsapp regarding Godrej Elevate,call_logs +INT-001745,PER-0225,site_visit,site_visit,2025-01-09T00:00:00,Site Visit via site_visit regarding Godrej Elevate,email_sync +INT-001746,PER-0225,phone_call,negotiation,2025-01-10T00:00:00,Negotiation via phone_call regarding Godrej Elevate,email_sync +INT-001747,PER-0225,phone_call,site_visit,2025-02-12T00:00:00,Site Visit via phone_call regarding Godrej Elevate,email_sync +INT-001748,PER-0225,site_visit,site_visit,2025-02-13T00:00:00,Site Visit via site_visit regarding Godrej Elevate,email_sync +INT-001749,PER-0226,referral,initial_enquiry,2024-07-09T00:00:00,Initial Enquiry via referral regarding Godrej Blue,whatsapp_api +INT-001750,PER-0226,whatsapp,initial_enquiry,2024-07-14T00:00:00,Initial Enquiry via whatsapp regarding Godrej Blue,email_sync +INT-001751,PER-0226,whatsapp,initial_enquiry,2024-07-17T00:00:00,Initial Enquiry via whatsapp regarding Godrej Blue,whatsapp_api +INT-001752,PER-0226,site_visit,site_visit,2024-07-18T00:00:00,Site Visit via site_visit regarding Godrej Blue,whatsapp_api +INT-001753,PER-0226,whatsapp,document_sharing,2024-07-21T00:00:00,Document Sharing via whatsapp regarding Godrej Blue,email_sync +INT-001754,PER-0226,whatsapp,site_visit,2024-07-27T00:00:00,Site Visit via whatsapp regarding Godrej Blue,email_sync +INT-001755,PER-0226,phone_call,negotiation,2024-08-07T00:00:00,Negotiation via phone_call regarding Godrej Blue,call_logs +INT-001756,PER-0226,whatsapp,initial_enquiry,2024-08-10T00:00:00,Initial Enquiry via whatsapp regarding Godrej Blue,whatsapp_api +INT-001757,PER-0226,phone_call,site_visit,2024-08-26T00:00:00,Site Visit via phone_call regarding Godrej Blue,site_visit_log +INT-001758,PER-0227,web_enquiry,initial_enquiry,2025-07-17T00:00:00,Initial Enquiry via web_enquiry regarding Sugam Prakriti,email_sync +INT-001759,PER-0227,phone_call,negotiation,2025-08-17T00:00:00,Negotiation via phone_call regarding Sugam Prakriti,manual_entry +INT-001760,PER-0227,whatsapp,price_discussion,2025-08-23T00:00:00,Price Discussion via whatsapp regarding Sugam Prakriti,site_visit_log +INT-001761,PER-0227,walk_in,family_discussion,2025-09-16T00:00:00,Family Discussion via walk_in regarding Sugam Prakriti,whatsapp_api +INT-001762,PER-0228,web_enquiry,initial_enquiry,2025-02-19T00:00:00,Initial Enquiry via web_enquiry regarding DTC Good Earth,manual_entry +INT-001763,PER-0228,phone_call,follow_up,2025-03-21T00:00:00,Follow Up via phone_call regarding DTC Good Earth,call_logs +INT-001764,PER-0228,whatsapp,document_sharing,2025-03-24T00:00:00,Document Sharing via whatsapp regarding DTC Good Earth,email_sync +INT-001765,PER-0228,whatsapp,document_sharing,2025-04-08T00:00:00,Document Sharing via whatsapp regarding DTC Good Earth,site_visit_log +INT-001766,PER-0228,walk_in,site_visit,2025-04-12T00:00:00,Site Visit via walk_in regarding DTC Good Earth,call_logs +INT-001767,PER-0228,web_enquiry,family_discussion,2025-04-29T00:00:00,Family Discussion via web_enquiry regarding DTC Good Earth,manual_entry +INT-001768,PER-0228,walk_in,price_discussion,2025-05-05T00:00:00,Price Discussion via walk_in regarding DTC Good Earth,call_logs +INT-001769,PER-0229,referral,initial_enquiry,2025-12-17T00:00:00,Initial Enquiry via referral regarding Merlin Avana,manual_entry +INT-001770,PER-0229,phone_call,family_discussion,2026-01-02T00:00:00,Family Discussion via phone_call regarding Merlin Avana,manual_entry +INT-001771,PER-0229,whatsapp,price_discussion,2026-01-02T00:00:00,Price Discussion via whatsapp regarding Merlin Avana,whatsapp_api +INT-001772,PER-0229,walk_in,document_sharing,2026-01-04T00:00:00,Document Sharing via walk_in regarding Merlin Avana,manual_entry +INT-001773,PER-0229,phone_call,document_sharing,2026-01-07T00:00:00,Document Sharing via phone_call regarding Merlin Avana,whatsapp_api +INT-001774,PER-0229,whatsapp,negotiation,2026-01-13T00:00:00,Negotiation via whatsapp regarding Merlin Avana,email_sync +INT-001775,PER-0229,referral,site_visit,2026-01-22T00:00:00,Site Visit via referral regarding Merlin Avana,email_sync +INT-001776,PER-0229,web_enquiry,initial_enquiry,2026-02-04T00:00:00,Initial Enquiry via web_enquiry regarding Merlin Avana,manual_entry +INT-001777,PER-0229,web_enquiry,document_sharing,2026-02-07T00:00:00,Document Sharing via web_enquiry regarding Merlin Avana,whatsapp_api +INT-001778,PER-0230,web_enquiry,initial_enquiry,2025-06-12T00:00:00,Initial Enquiry via web_enquiry regarding Shriram Grand City,site_visit_log +INT-001779,PER-0230,whatsapp,site_visit,2025-06-27T00:00:00,Site Visit via whatsapp regarding Shriram Grand City,whatsapp_api +INT-001780,PER-0230,email,price_discussion,2025-07-03T00:00:00,Price Discussion via email regarding Shriram Grand City,whatsapp_api +INT-001781,PER-0230,referral,family_discussion,2025-07-06T00:00:00,Family Discussion via referral regarding Shriram Grand City,whatsapp_api +INT-001782,PER-0231,referral,initial_enquiry,2025-10-22T00:00:00,Initial Enquiry via referral regarding Ambuja Utpaala,whatsapp_api +INT-001783,PER-0231,phone_call,negotiation,2025-10-29T00:00:00,Negotiation via phone_call regarding Ambuja Utpaala,whatsapp_api +INT-001784,PER-0231,whatsapp,initial_enquiry,2025-11-15T00:00:00,Initial Enquiry via whatsapp regarding Ambuja Utpaala,call_logs +INT-001785,PER-0231,whatsapp,negotiation,2025-11-18T00:00:00,Negotiation via whatsapp regarding Ambuja Utpaala,call_logs +INT-001786,PER-0231,phone_call,negotiation,2025-11-23T00:00:00,Negotiation via phone_call regarding Ambuja Utpaala,email_sync +INT-001787,PER-0231,whatsapp,family_discussion,2025-11-30T00:00:00,Family Discussion via whatsapp regarding Ambuja Utpaala,whatsapp_api +INT-001788,PER-0231,site_visit,site_visit,2025-12-20T00:00:00,Site Visit via site_visit regarding Ambuja Utpaala,email_sync +INT-001789,PER-0231,site_visit,site_visit,2025-12-22T00:00:00,Site Visit via site_visit regarding Ambuja Utpaala,site_visit_log +INT-001790,PER-0231,phone_call,initial_enquiry,2026-01-03T00:00:00,Initial Enquiry via phone_call regarding Ambuja Utpaala,manual_entry +INT-001791,PER-0232,walk_in,initial_enquiry,2025-06-02T00:00:00,Initial Enquiry via walk_in regarding Sugam Prakriti,call_logs +INT-001792,PER-0232,phone_call,site_visit,2025-06-05T00:00:00,Site Visit via phone_call regarding Sugam Prakriti,manual_entry +INT-001793,PER-0232,whatsapp,family_discussion,2025-06-23T00:00:00,Family Discussion via whatsapp regarding Sugam Prakriti,whatsapp_api +INT-001794,PER-0232,email,price_discussion,2025-08-02T00:00:00,Price Discussion via email regarding Sugam Prakriti,email_sync +INT-001795,PER-0232,web_enquiry,follow_up,2025-08-05T00:00:00,Follow Up via web_enquiry regarding Sugam Prakriti,email_sync +INT-001796,PER-0233,web_enquiry,initial_enquiry,2025-10-03T00:00:00,Initial Enquiry via web_enquiry regarding Eden Devprayag,site_visit_log +INT-001797,PER-0233,phone_call,price_discussion,2025-10-30T00:00:00,Price Discussion via phone_call regarding Eden Devprayag,manual_entry +INT-001798,PER-0233,whatsapp,follow_up,2025-11-05T00:00:00,Follow Up via whatsapp regarding Eden Devprayag,whatsapp_api +INT-001799,PER-0234,referral,initial_enquiry,2025-06-19T00:00:00,Initial Enquiry via referral regarding Atri Aqua,manual_entry +INT-001800,PER-0234,phone_call,document_sharing,2025-07-09T00:00:00,Document Sharing via phone_call regarding Atri Aqua,email_sync +INT-001801,PER-0234,whatsapp,follow_up,2025-07-10T00:00:00,Follow Up via whatsapp regarding Atri Aqua,call_logs +INT-001802,PER-0234,phone_call,site_visit,2025-08-25T00:00:00,Site Visit via phone_call regarding Atri Aqua,manual_entry +INT-001803,PER-0235,walk_in,initial_enquiry,2024-06-06T00:00:00,Initial Enquiry via walk_in regarding Atri Surya Toron,site_visit_log +INT-001804,PER-0235,phone_call,initial_enquiry,2024-06-22T00:00:00,Initial Enquiry via phone_call regarding Atri Surya Toron,call_logs +INT-001805,PER-0235,whatsapp,document_sharing,2024-07-14T00:00:00,Document Sharing via whatsapp regarding Atri Surya Toron,whatsapp_api +INT-001806,PER-0235,web_enquiry,follow_up,2024-07-26T00:00:00,Follow Up via web_enquiry regarding Atri Surya Toron,call_logs +INT-001807,PER-0235,referral,family_discussion,2024-08-03T00:00:00,Family Discussion via referral regarding Atri Surya Toron,site_visit_log +INT-001808,PER-0236,web_enquiry,initial_enquiry,2025-08-07T00:00:00,Initial Enquiry via web_enquiry regarding DTC Sojon,manual_entry +INT-001809,PER-0236,whatsapp,negotiation,2025-08-24T00:00:00,Negotiation via whatsapp regarding DTC Sojon,manual_entry +INT-001810,PER-0236,whatsapp,family_discussion,2025-08-30T00:00:00,Family Discussion via whatsapp regarding DTC Sojon,email_sync +INT-001811,PER-0236,web_enquiry,document_sharing,2025-09-01T00:00:00,Document Sharing via web_enquiry regarding DTC Sojon,call_logs +INT-001812,PER-0236,referral,family_discussion,2025-09-04T00:00:00,Family Discussion via referral regarding DTC Sojon,call_logs +INT-001813,PER-0236,whatsapp,family_discussion,2025-09-27T00:00:00,Family Discussion via whatsapp regarding DTC Sojon,site_visit_log +INT-001814,PER-0236,referral,site_visit,2025-10-27T00:00:00,Site Visit via referral regarding DTC Sojon,site_visit_log +INT-001815,PER-0236,whatsapp,document_sharing,2025-10-30T00:00:00,Document Sharing via whatsapp regarding DTC Sojon,whatsapp_api +INT-001816,PER-0237,referral,initial_enquiry,2025-01-05T00:00:00,Initial Enquiry via referral regarding Siddha Sky Waterfront,site_visit_log +INT-001817,PER-0237,phone_call,price_discussion,2025-01-15T00:00:00,Price Discussion via phone_call regarding Siddha Sky Waterfront,site_visit_log +INT-001818,PER-0237,whatsapp,initial_enquiry,2025-01-18T00:00:00,Initial Enquiry via whatsapp regarding Siddha Sky Waterfront,email_sync +INT-001819,PER-0237,site_visit,site_visit,2025-01-25T00:00:00,Site Visit via site_visit regarding Siddha Sky Waterfront,site_visit_log +INT-001820,PER-0237,phone_call,negotiation,2025-01-29T00:00:00,Negotiation via phone_call regarding Siddha Sky Waterfront,call_logs +INT-001821,PER-0237,whatsapp,family_discussion,2025-02-03T00:00:00,Family Discussion via whatsapp regarding Siddha Sky Waterfront,manual_entry +INT-001822,PER-0237,phone_call,negotiation,2025-02-26T00:00:00,Negotiation via phone_call regarding Siddha Sky Waterfront,email_sync +INT-001823,PER-0238,referral,initial_enquiry,2025-02-01T00:00:00,Initial Enquiry via referral regarding Sugam Prakriti,manual_entry +INT-001824,PER-0238,phone_call,initial_enquiry,2025-03-01T00:00:00,Initial Enquiry via phone_call regarding Sugam Prakriti,whatsapp_api +INT-001825,PER-0238,email,follow_up,2025-03-21T00:00:00,Follow Up via email regarding Sugam Prakriti,call_logs +INT-001826,PER-0239,web_enquiry,initial_enquiry,2024-10-23T00:00:00,Initial Enquiry via web_enquiry regarding Atri Surya Toron,whatsapp_api +INT-001827,PER-0239,phone_call,negotiation,2024-10-28T00:00:00,Negotiation via phone_call regarding Atri Surya Toron,email_sync +INT-001828,PER-0239,whatsapp,family_discussion,2024-11-24T00:00:00,Family Discussion via whatsapp regarding Atri Surya Toron,email_sync +INT-001829,PER-0239,referral,family_discussion,2024-11-24T00:00:00,Family Discussion via referral regarding Atri Surya Toron,call_logs +INT-001830,PER-0239,walk_in,document_sharing,2024-12-18T00:00:00,Document Sharing via walk_in regarding Atri Surya Toron,whatsapp_api +INT-001831,PER-0240,web_enquiry,initial_enquiry,2024-11-16T00:00:00,Initial Enquiry via web_enquiry regarding Ambuja Utpaala,email_sync +INT-001832,PER-0240,whatsapp,document_sharing,2024-12-18T00:00:00,Document Sharing via whatsapp regarding Ambuja Utpaala,email_sync +INT-001833,PER-0240,whatsapp,site_visit,2024-12-22T00:00:00,Site Visit via whatsapp regarding Ambuja Utpaala,manual_entry +INT-001834,PER-0241,walk_in,initial_enquiry,2026-01-02T00:00:00,Initial Enquiry via walk_in regarding Atri Surya Toron,whatsapp_api +INT-001835,PER-0241,phone_call,price_discussion,2026-01-07T00:00:00,Price Discussion via phone_call regarding Atri Surya Toron,call_logs +INT-001836,PER-0241,email,family_discussion,2026-01-13T00:00:00,Family Discussion via email regarding Atri Surya Toron,site_visit_log +INT-001837,PER-0241,site_visit,site_visit,2026-01-20T00:00:00,Site Visit via site_visit regarding Atri Surya Toron,email_sync +INT-001838,PER-0241,referral,site_visit,2026-02-17T00:00:00,Site Visit via referral regarding Atri Surya Toron,site_visit_log +INT-001839,PER-0242,walk_in,initial_enquiry,2025-04-18T00:00:00,Initial Enquiry via walk_in regarding Godrej Blue,call_logs +INT-001840,PER-0242,phone_call,initial_enquiry,2025-04-30T00:00:00,Initial Enquiry via phone_call regarding Godrej Blue,email_sync +INT-001841,PER-0242,whatsapp,site_visit,2025-05-09T00:00:00,Site Visit via whatsapp regarding Godrej Blue,site_visit_log +INT-001842,PER-0242,phone_call,document_sharing,2025-05-16T00:00:00,Document Sharing via phone_call regarding Godrej Blue,site_visit_log +INT-001843,PER-0242,email,initial_enquiry,2025-05-22T00:00:00,Initial Enquiry via email regarding Godrej Blue,call_logs +INT-001844,PER-0242,web_enquiry,price_discussion,2025-07-01T00:00:00,Price Discussion via web_enquiry regarding Godrej Blue,email_sync +INT-001845,PER-0242,walk_in,follow_up,2025-07-05T00:00:00,Follow Up via walk_in regarding Godrej Blue,call_logs +INT-001846,PER-0243,walk_in,initial_enquiry,2024-02-24T00:00:00,Initial Enquiry via walk_in regarding DTC Good Earth,email_sync +INT-001847,PER-0243,whatsapp,site_visit,2024-03-17T00:00:00,Site Visit via whatsapp regarding DTC Good Earth,call_logs +INT-001848,PER-0243,whatsapp,follow_up,2024-03-25T00:00:00,Follow Up via whatsapp regarding DTC Good Earth,manual_entry +INT-001849,PER-0243,site_visit,site_visit,2024-04-03T00:00:00,Site Visit via site_visit regarding DTC Good Earth,manual_entry +INT-001850,PER-0243,phone_call,negotiation,2024-04-17T00:00:00,Negotiation via phone_call regarding DTC Good Earth,whatsapp_api +INT-001851,PER-0243,phone_call,family_discussion,2024-05-05T00:00:00,Family Discussion via phone_call regarding DTC Good Earth,call_logs +INT-001852,PER-0243,phone_call,initial_enquiry,2024-05-07T00:00:00,Initial Enquiry via phone_call regarding DTC Good Earth,call_logs +INT-001853,PER-0243,whatsapp,family_discussion,2024-05-13T00:00:00,Family Discussion via whatsapp regarding DTC Good Earth,call_logs +INT-001854,PER-0244,web_enquiry,initial_enquiry,2025-05-31T00:00:00,Initial Enquiry via web_enquiry regarding Siddha Sky Waterfront,site_visit_log +INT-001855,PER-0244,phone_call,negotiation,2025-06-10T00:00:00,Negotiation via phone_call regarding Siddha Sky Waterfront,site_visit_log +INT-001856,PER-0244,whatsapp,site_visit,2025-07-04T00:00:00,Site Visit via whatsapp regarding Siddha Sky Waterfront,manual_entry +INT-001857,PER-0244,walk_in,document_sharing,2025-07-07T00:00:00,Document Sharing via walk_in regarding Siddha Sky Waterfront,manual_entry +INT-001858,PER-0244,walk_in,negotiation,2025-07-18T00:00:00,Negotiation via walk_in regarding Siddha Sky Waterfront,site_visit_log +INT-001859,PER-0245,walk_in,initial_enquiry,2024-02-15T00:00:00,Initial Enquiry via walk_in regarding Eden Devprayag,site_visit_log +INT-001860,PER-0245,whatsapp,initial_enquiry,2024-02-16T00:00:00,Initial Enquiry via whatsapp regarding Eden Devprayag,site_visit_log +INT-001861,PER-0245,email,initial_enquiry,2024-03-01T00:00:00,Initial Enquiry via email regarding Eden Devprayag,site_visit_log +INT-001862,PER-0245,whatsapp,initial_enquiry,2024-03-02T00:00:00,Initial Enquiry via whatsapp regarding Eden Devprayag,whatsapp_api +INT-001863,PER-0245,phone_call,price_discussion,2024-04-12T00:00:00,Price Discussion via phone_call regarding Eden Devprayag,manual_entry +INT-001864,PER-0246,web_enquiry,initial_enquiry,2025-03-22T00:00:00,Initial Enquiry via web_enquiry regarding Siddha Suburbia Bungalow,email_sync +INT-001865,PER-0246,whatsapp,price_discussion,2025-03-22T00:00:00,Price Discussion via whatsapp regarding Siddha Suburbia Bungalow,site_visit_log +INT-001866,PER-0246,whatsapp,site_visit,2025-03-23T00:00:00,Site Visit via whatsapp regarding Siddha Suburbia Bungalow,site_visit_log +INT-001867,PER-0246,whatsapp,site_visit,2025-04-08T00:00:00,Site Visit via whatsapp regarding Siddha Suburbia Bungalow,whatsapp_api +INT-001868,PER-0246,phone_call,price_discussion,2025-06-16T00:00:00,Price Discussion via phone_call regarding Siddha Suburbia Bungalow,manual_entry +INT-001869,PER-0246,whatsapp,document_sharing,2025-06-16T00:00:00,Document Sharing via whatsapp regarding Siddha Suburbia Bungalow,manual_entry +INT-001870,PER-0247,referral,initial_enquiry,2024-08-13T00:00:00,Initial Enquiry via referral regarding Siddha Serena,site_visit_log +INT-001871,PER-0247,whatsapp,initial_enquiry,2024-08-22T00:00:00,Initial Enquiry via whatsapp regarding Siddha Serena,email_sync +INT-001872,PER-0247,whatsapp,price_discussion,2024-09-10T00:00:00,Price Discussion via whatsapp regarding Siddha Serena,site_visit_log +INT-001873,PER-0247,whatsapp,negotiation,2024-09-15T00:00:00,Negotiation via whatsapp regarding Siddha Serena,whatsapp_api +INT-001874,PER-0247,phone_call,follow_up,2024-09-15T00:00:00,Follow Up via phone_call regarding Siddha Serena,call_logs +INT-001875,PER-0247,whatsapp,negotiation,2024-09-24T00:00:00,Negotiation via whatsapp regarding Siddha Serena,site_visit_log +INT-001876,PER-0247,phone_call,initial_enquiry,2024-09-30T00:00:00,Initial Enquiry via phone_call regarding Siddha Serena,site_visit_log +INT-001877,PER-0247,whatsapp,site_visit,2024-10-05T00:00:00,Site Visit via whatsapp regarding Siddha Serena,call_logs +INT-001878,PER-0247,phone_call,follow_up,2024-10-24T00:00:00,Follow Up via phone_call regarding Siddha Serena,manual_entry +INT-001879,PER-0247,whatsapp,follow_up,2024-11-04T00:00:00,Follow Up via whatsapp regarding Siddha Serena,site_visit_log +INT-001880,PER-0248,referral,initial_enquiry,2025-08-10T00:00:00,Initial Enquiry via referral regarding Siddha Sky Waterfront,manual_entry +INT-001881,PER-0248,whatsapp,initial_enquiry,2025-08-25T00:00:00,Initial Enquiry via whatsapp regarding Siddha Sky Waterfront,site_visit_log +INT-001882,PER-0248,whatsapp,follow_up,2025-09-07T00:00:00,Follow Up via whatsapp regarding Siddha Sky Waterfront,whatsapp_api +INT-001883,PER-0249,web_enquiry,initial_enquiry,2024-07-17T00:00:00,Initial Enquiry via web_enquiry regarding DTC Good Earth,email_sync +INT-001884,PER-0249,phone_call,negotiation,2024-07-26T00:00:00,Negotiation via phone_call regarding DTC Good Earth,whatsapp_api +INT-001885,PER-0249,whatsapp,site_visit,2024-08-09T00:00:00,Site Visit via whatsapp regarding DTC Good Earth,call_logs +INT-001886,PER-0249,whatsapp,follow_up,2024-08-10T00:00:00,Follow Up via whatsapp regarding DTC Good Earth,whatsapp_api +INT-001887,PER-0249,site_visit,site_visit,2024-08-25T00:00:00,Site Visit via site_visit regarding DTC Good Earth,site_visit_log +INT-001888,PER-0249,site_visit,site_visit,2024-09-06T00:00:00,Site Visit via site_visit regarding DTC Good Earth,call_logs +INT-001889,PER-0249,whatsapp,document_sharing,2024-09-10T00:00:00,Document Sharing via whatsapp regarding DTC Good Earth,email_sync +INT-001890,PER-0249,site_visit,site_visit,2024-09-10T00:00:00,Site Visit via site_visit regarding DTC Good Earth,call_logs +INT-001891,PER-0249,whatsapp,follow_up,2024-09-16T00:00:00,Follow Up via whatsapp regarding DTC Good Earth,call_logs +INT-001892,PER-0249,site_visit,site_visit,2024-09-20T00:00:00,Site Visit via site_visit regarding DTC Good Earth,call_logs +INT-001893,PER-0249,phone_call,initial_enquiry,2024-09-26T00:00:00,Initial Enquiry via phone_call regarding DTC Good Earth,email_sync +INT-001894,PER-0249,whatsapp,follow_up,2024-10-09T00:00:00,Follow Up via whatsapp regarding DTC Good Earth,site_visit_log +INT-001895,PER-0250,referral,initial_enquiry,2025-04-30T00:00:00,Initial Enquiry via referral regarding Merlin Avana,email_sync +INT-001896,PER-0250,whatsapp,price_discussion,2025-06-09T00:00:00,Price Discussion via whatsapp regarding Merlin Avana,email_sync +INT-001897,PER-0250,email,price_discussion,2025-06-18T00:00:00,Price Discussion via email regarding Merlin Avana,email_sync diff --git a/db assets/synthetic_crm_v1/csv/intel_messages.csv b/db assets/synthetic_crm_v1/csv/intel_messages.csv new file mode 100644 index 00000000..49d140ff --- /dev/null +++ b/db assets/synthetic_crm_v1/csv/intel_messages.csv @@ -0,0 +1,3368 @@ +message_id,interaction_id,sender_role,message_text,delivered_at,metadata_json +MSG-0000001,INT-000002,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2025-09-24T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00001""}" +MSG-0000002,INT-000002,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2025-09-24T00:47:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00001""}" +MSG-0000003,INT-000002,agent,Of course. I'll arrange a dedicated viewing.,2025-09-24T01:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00001""}" +MSG-0000004,INT-000002,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2025-09-24T00:15:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00001""}" +MSG-0000005,INT-000002,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2025-09-24T02:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00001""}" +MSG-0000006,INT-000002,client,"Hi, I saw the listing for DTC Sojon. Is the 3 BHK still available?",2025-09-24T01:15:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00001""}" +MSG-0000007,INT-000002,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2025-09-24T03:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00001""}" +MSG-0000008,INT-000003,client,Can we schedule for this Saturday around 11 AM?,2025-10-17T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00002""}" +MSG-0000009,INT-000003,client,We visited the site today. The location is excellent but the approach road is narrow.,2025-10-17T00:37:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00002""}" +MSG-0000010,INT-000003,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2025-10-17T00:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00002""}" +MSG-0000011,INT-000003,agent,Sending it now. Also attaching the project brochure.,2025-10-17T02:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00002""}" +MSG-0000012,INT-000005,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2025-10-18T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00003""}" +MSG-0000013,INT-000005,agent,"Rs 8 per sqft per month. Includes housekeeping, security, and common area maintenance.",2025-10-18T00:09:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00003""}" +MSG-0000014,INT-000005,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2025-10-18T01:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00003""}" +MSG-0000015,INT-000005,client,We visited the site today. The location is excellent but the approach road is narrow.,2025-10-18T00:21:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00003""}" +MSG-0000016,INT-000005,agent,"Yes sir, we have a few units available. When would you like to visit?",2025-10-18T00:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00003""}" +MSG-0000017,INT-000005,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2025-10-18T04:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00003""}" +MSG-0000018,INT-000007,client,I'm ready to book. What's the token amount?,2025-10-21T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00004""}" +MSG-0000019,INT-000007,client,Received. The layout looks good. Is there a east facing option?,2025-10-21T00:10:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00004""}" +MSG-0000020,INT-000007,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2025-10-21T00:18:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00004""}" +MSG-0000021,INT-000007,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2025-10-21T01:45:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00004""}" +MSG-0000022,INT-000007,agent,"Yes sir, we have a few units available. When would you like to visit?",2025-10-21T00:44:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00004""}" +MSG-0000023,INT-000007,client,Home loan. Pre-approved up to 10-15 Cr.,2025-10-21T02:10:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00004""}" +MSG-0000024,INT-000007,agent,It's approximately 9296 per sqft all-inclusive. Best price in Rajarhat right now.,2025-10-21T04:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00004""}" +MSG-0000025,INT-000009,client,My wife wants to see the sample flat again. Can we come tomorrow?,2025-11-08T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00005""}" +MSG-0000026,INT-000009,client,That's slightly above my budget. Any flexibility?,2025-11-08T00:18:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00005""}" +MSG-0000027,INT-000009,agent,"Rs 7 per sqft per month. Includes housekeeping, security, and common area maintenance.",2025-11-08T00:54:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00005""}" +MSG-0000028,INT-000009,client,Thank you. What's the current price per sqft?,2025-11-08T01:09:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00005""}" +MSG-0000029,INT-000009,client,Home loan. Pre-approved up to 1.5-2.5 Cr.,2025-11-08T01:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00005""}" +MSG-0000030,INT-000009,client,We're comparing this with DTC Good Earth. What makes this better?,2025-11-08T03:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00005""}" +MSG-0000031,INT-000009,client,That's slightly above my budget. Any flexibility?,2025-11-08T01:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00005""}" +MSG-0000032,INT-000009,client,We're comparing this with Atri Aqua. What makes this better?,2025-11-08T05:50:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00005""}" +MSG-0000033,INT-000013,client,Home loan. Pre-approved up to 4-6 Cr.,2025-12-13T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00006""}" +MSG-0000034,INT-000013,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2025-12-13T00:11:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00006""}" +MSG-0000035,INT-000013,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2025-12-13T01:34:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00006""}" +MSG-0000036,INT-000013,agent,Of course. I'll arrange a dedicated viewing.,2025-12-13T02:15:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00006""}" +MSG-0000037,INT-000013,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2025-12-13T01:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00006""}" +MSG-0000038,INT-000013,client,Can you hold the unit for 2 days? I need to finalize with my father.,2025-12-13T02:10:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00006""}" +MSG-0000039,INT-000013,client,"Hi, I saw the listing for DTC Sojon. Is the 3 BHK still available?",2025-12-13T02:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00006""}" +MSG-0000040,INT-000017,agent,It's approximately 13756 per sqft all-inclusive. Best price in Rajarhat right now.,2025-02-08T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00007""}" +MSG-0000041,INT-000017,agent,It's approximately 9371 per sqft all-inclusive. Best price in Rajarhat right now.,2025-02-08T00:23:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00007""}" +MSG-0000042,INT-000017,client,We visited the site today. The location is excellent but the approach road is narrow.,2025-02-08T00:26:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00007""}" +MSG-0000043,INT-000017,agent,"Yes sir, we have a few units available. When would you like to visit?",2025-02-08T02:15:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00007""}" +MSG-0000044,INT-000019,client,We're comparing this with Eden Devprayag. What makes this better?,2025-02-13T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00008""}" +MSG-0000045,INT-000019,agent,It's approximately 11773 per sqft all-inclusive. Best price in Rajarhat right now.,2025-02-13T00:08:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00008""}" +MSG-0000046,INT-000019,client,My wife wants to see the sample flat again. Can we come tomorrow?,2025-02-13T01:18:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00008""}" +MSG-0000047,INT-000019,agent,Of course. I'll arrange a dedicated viewing.,2025-02-13T01:03:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00008""}" +MSG-0000048,INT-000019,client,Home loan. Pre-approved up to 2.5-4 Cr.,2025-02-13T02:08:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00008""}" +MSG-0000049,INT-000019,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2025-02-13T04:35:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00008""}" +MSG-0000050,INT-000023,client,We're comparing this with Atri Aqua. What makes this better?,2025-02-27T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00009""}" +MSG-0000051,INT-000023,agent,Of course. I'll arrange a dedicated viewing.,2025-02-27T00:39:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00009""}" +MSG-0000052,INT-000023,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2025-02-27T00:32:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00009""}" +MSG-0000053,INT-000023,client,Can you hold the unit for 2 days? I need to finalize with my father.,2025-02-27T01:27:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00009""}" +MSG-0000054,INT-000023,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2025-02-27T00:28:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00009""}" +MSG-0000055,INT-000023,agent,"Rs 5 per sqft per month. Includes housekeeping, security, and common area maintenance.",2025-02-27T02:25:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00009""}" +MSG-0000056,INT-000023,agent,Sending it now. Also attaching the project brochure.,2025-02-27T03:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00009""}" +MSG-0000057,INT-000026,agent,Of course. I'll arrange a dedicated viewing.,2025-05-17T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00010""}" +MSG-0000058,INT-000026,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2025-05-17T00:35:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00010""}" +MSG-0000059,INT-000026,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2025-05-17T00:58:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00010""}" +MSG-0000060,INT-000027,client,Thank you. What's the current price per sqft?,2025-05-22T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00011""}" +MSG-0000061,INT-000027,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2025-05-22T00:46:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00011""}" +MSG-0000062,INT-000027,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2025-05-22T00:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00011""}" +MSG-0000063,INT-000027,client,"Hi, I saw the listing for Ambuja Utpaala. Is the 3 BHK still available?",2025-05-22T01:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00011""}" +MSG-0000064,INT-000028,client,Can we schedule for this Saturday around 11 AM?,2025-05-24T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00012""}" +MSG-0000065,INT-000028,client,Received. The layout looks good. Is there a east facing option?,2025-05-24T00:16:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00012""}" +MSG-0000066,INT-000028,client,Received. The layout looks good. Is there a east facing option?,2025-05-24T00:52:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00012""}" +MSG-0000067,INT-000028,agent,Of course. I'll arrange a dedicated viewing.,2025-05-24T00:18:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00012""}" +MSG-0000068,INT-000028,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2025-05-24T03:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00012""}" +MSG-0000069,INT-000031,client,That's slightly above my budget. Any flexibility?,2025-06-17T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00013""}" +MSG-0000070,INT-000031,client,Can you hold the unit for 2 days? I need to finalize with my father.,2025-06-17T00:38:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00013""}" +MSG-0000071,INT-000031,client,"Hi, I saw the listing for Ambuja Utpaala. Is the 3 BHK still available?",2025-06-17T01:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00013""}" +MSG-0000072,INT-000031,client,I'm ready to book. What's the token amount?,2025-06-17T00:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00013""}" +MSG-0000073,INT-000034,agent,"Rs 3 per sqft per month. Includes housekeeping, security, and common area maintenance.",2024-06-08T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00014""}" +MSG-0000074,INT-000034,client,Home loan. Pre-approved up to 6-10 Cr.,2024-06-08T00:21:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00014""}" +MSG-0000075,INT-000034,agent,"Yes sir, we have a few units available. When would you like to visit?",2024-06-08T01:16:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00014""}" +MSG-0000076,INT-000034,agent,Of course. I'll arrange a dedicated viewing.,2024-06-08T02:15:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00014""}" +MSG-0000077,INT-000038,client,Can you hold the unit for 2 days? I need to finalize with my father.,2024-06-30T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00015""}" +MSG-0000078,INT-000038,client,Can you hold the unit for 2 days? I need to finalize with my father.,2024-06-30T00:58:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00015""}" +MSG-0000079,INT-000038,agent,Of course. I'll arrange a dedicated viewing.,2024-06-30T01:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00015""}" +MSG-0000080,INT-000038,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2024-06-30T01:09:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00015""}" +MSG-0000081,INT-000038,client,Thank you. What's the current price per sqft?,2024-06-30T03:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00015""}" +MSG-0000082,INT-000038,client,What about the maintenance charges?,2024-06-30T01:55:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00015""}" +MSG-0000083,INT-000040,client,Received. The layout looks good. Is there a east facing option?,2024-07-30T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00016""}" +MSG-0000084,INT-000040,client,We visited the site today. The location is excellent but the approach road is narrow.,2024-07-30T00:51:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00016""}" +MSG-0000085,INT-000040,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2024-07-30T01:34:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00016""}" +MSG-0000086,INT-000040,agent,"Rs 4 per sqft per month. Includes housekeeping, security, and common area maintenance.",2024-07-30T00:39:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00016""}" +MSG-0000087,INT-000042,agent,"Yes, Tower B has east facing units on floors 8-15.",2024-08-01T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00017""}" +MSG-0000088,INT-000042,client,Can you hold the unit for 2 days? I need to finalize with my father.,2024-08-01T00:47:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00017""}" +MSG-0000089,INT-000042,client,Home loan. Pre-approved up to 10-15 Cr.,2024-08-01T00:58:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00017""}" +MSG-0000090,INT-000042,agent,Sending it now. Also attaching the project brochure.,2024-08-01T02:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00017""}" +MSG-0000091,INT-000042,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2024-08-01T00:56:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00017""}" +MSG-0000092,INT-000042,client,Can you hold the unit for 2 days? I need to finalize with my father.,2024-08-01T02:10:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00017""}" +MSG-0000093,INT-000042,client,Can you hold the unit for 2 days? I need to finalize with my father.,2024-08-01T03:54:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00017""}" +MSG-0000094,INT-000049,agent,Sending it now. Also attaching the project brochure.,2024-08-07T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00018""}" +MSG-0000095,INT-000049,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2024-08-07T00:08:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00018""}" +MSG-0000096,INT-000049,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2024-08-07T00:28:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00018""}" +MSG-0000097,INT-000049,client,Received. The layout looks good. Is there a east facing option?,2024-08-07T01:06:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00018""}" +MSG-0000098,INT-000049,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2024-08-07T03:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00018""}" +MSG-0000099,INT-000049,client,Home loan. Pre-approved up to 6-10 Cr.,2024-08-07T00:55:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00018""}" +MSG-0000100,INT-000049,client,Thank you. What's the current price per sqft?,2024-08-07T03:42:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00018""}" +MSG-0000101,INT-000050,agent,It's approximately 12008 per sqft all-inclusive. Best price in Rajarhat right now.,2024-08-10T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00019""}" +MSG-0000102,INT-000050,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2024-08-10T00:32:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00019""}" +MSG-0000103,INT-000050,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2024-08-10T01:58:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00019""}" +MSG-0000104,INT-000050,client,My wife wants to see the sample flat again. Can we come tomorrow?,2024-08-10T00:18:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00019""}" +MSG-0000105,INT-000050,client,Can you share the floor plan?,2024-08-10T02:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00019""}" +MSG-0000106,INT-000050,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2024-08-10T02:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00019""}" +MSG-0000107,INT-000053,client,Thank you. What's the current price per sqft?,2024-09-25T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00020""}" +MSG-0000108,INT-000053,client,My wife wants to see the sample flat again. Can we come tomorrow?,2024-09-25T00:23:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00020""}" +MSG-0000109,INT-000053,agent,Sending it now. Also attaching the project brochure.,2024-09-25T01:52:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00020""}" +MSG-0000110,INT-000053,client,Can you hold the unit for 2 days? I need to finalize with my father.,2024-09-25T00:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00020""}" +MSG-0000111,INT-000053,agent,Sending it now. Also attaching the project brochure.,2024-09-25T02:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00020""}" +MSG-0000112,INT-000053,client,Received. The layout looks good. Is there a east facing option?,2024-09-25T00:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00020""}" +MSG-0000113,INT-000053,agent,"Rs 3 per sqft per month. Includes housekeeping, security, and common area maintenance.",2024-09-25T00:54:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00020""}" +MSG-0000114,INT-000053,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2024-09-25T04:33:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00020""}" +MSG-0000115,INT-000057,agent,"Yes sir, we have a few units available. When would you like to visit?",2025-09-11T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00021""}" +MSG-0000116,INT-000057,agent,It's approximately 13449 per sqft all-inclusive. Best price in Rajarhat right now.,2025-09-11T00:21:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00021""}" +MSG-0000117,INT-000057,agent,It's approximately 14540 per sqft all-inclusive. Best price in Rajarhat right now.,2025-09-11T01:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00021""}" +MSG-0000118,INT-000057,client,That's slightly above my budget. Any flexibility?,2025-09-11T02:15:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00021""}" +MSG-0000119,INT-000057,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2025-09-11T03:28:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00021""}" +MSG-0000120,INT-000057,client,What about the maintenance charges?,2025-09-11T03:15:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00021""}" +MSG-0000121,INT-000057,client,What about the maintenance charges?,2025-09-11T02:06:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00021""}" +MSG-0000122,INT-000060,client,We're comparing this with Siddha Sky Waterfront. What makes this better?,2025-10-09T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00022""}" +MSG-0000123,INT-000060,client,"Hi, I saw the listing for DTC Sojon. Is the 3 BHK still available?",2025-10-09T00:57:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00022""}" +MSG-0000124,INT-000060,client,Home loan. Pre-approved up to 2.5-4 Cr.,2025-10-09T01:28:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00022""}" +MSG-0000125,INT-000064,agent,It's approximately 11514 per sqft all-inclusive. Best price in New Town right now.,2026-03-28T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00023""}" +MSG-0000126,INT-000064,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2026-03-28T00:59:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00023""}" +MSG-0000127,INT-000064,client,"Hi, I saw the listing for Atri Aqua. Is the 3 BHK still available?",2026-03-28T00:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00023""}" +MSG-0000128,INT-000064,agent,Sending it now. Also attaching the project brochure.,2026-03-28T00:27:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00023""}" +MSG-0000129,INT-000064,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2026-03-28T00:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00023""}" +MSG-0000130,INT-000071,client,Can we schedule for this Saturday around 11 AM?,2024-05-05T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00024""}" +MSG-0000131,INT-000071,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2024-05-05T00:50:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00024""}" +MSG-0000132,INT-000071,agent,Of course. I'll arrange a dedicated viewing.,2024-05-05T01:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00024""}" +MSG-0000133,INT-000071,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2024-05-05T01:42:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00024""}" +MSG-0000134,INT-000071,agent,It's approximately 13508 per sqft all-inclusive. Best price in Madanpur right now.,2024-05-05T01:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00024""}" +MSG-0000135,INT-000071,client,Home loan. Pre-approved up to 4-6 Cr.,2024-05-05T01:50:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00024""}" +MSG-0000136,INT-000071,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2024-05-05T02:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00024""}" +MSG-0000137,INT-000075,agent,"Yes, Tower B has east facing units on floors 8-15.",2025-07-01T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00025""}" +MSG-0000138,INT-000075,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2025-07-01T00:15:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00025""}" +MSG-0000139,INT-000075,client,Can you share the floor plan?,2025-07-01T01:22:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00025""}" +MSG-0000140,INT-000075,agent,Of course. I'll arrange a dedicated viewing.,2025-07-01T01:33:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00025""}" +MSG-0000141,INT-000075,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2025-07-01T03:28:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00025""}" +MSG-0000142,INT-000075,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2025-07-01T00:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00025""}" +MSG-0000143,INT-000075,client,What about the maintenance charges?,2025-07-01T05:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00025""}" +MSG-0000144,INT-000075,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2025-07-01T03:51:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00025""}" +MSG-0000145,INT-000076,client,We visited the site today. The location is excellent but the approach road is narrow.,2025-08-01T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00026""}" +MSG-0000146,INT-000076,agent,"Rs 6 per sqft per month. Includes housekeeping, security, and common area maintenance.",2025-08-01T00:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00026""}" +MSG-0000147,INT-000076,client,That's slightly above my budget. Any flexibility?,2025-08-01T01:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00026""}" +MSG-0000148,INT-000076,client,My wife wants to see the sample flat again. Can we come tomorrow?,2025-08-01T02:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00026""}" +MSG-0000149,INT-000078,agent,Sending it now. Also attaching the project brochure.,2024-04-20T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00027""}" +MSG-0000150,INT-000078,agent,Sending it now. Also attaching the project brochure.,2024-04-20T00:45:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00027""}" +MSG-0000151,INT-000078,agent,Of course. I'll arrange a dedicated viewing.,2024-04-20T00:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00027""}" +MSG-0000152,INT-000078,client,Home loan. Pre-approved up to 2.5-4 Cr.,2024-04-20T00:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00027""}" +MSG-0000153,INT-000078,client,What about the maintenance charges?,2024-04-20T02:16:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00027""}" +MSG-0000154,INT-000078,client,Can we schedule for this Saturday around 11 AM?,2024-04-20T03:25:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00027""}" +MSG-0000155,INT-000079,client,Can you hold the unit for 2 days? I need to finalize with my father.,2024-04-22T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00028""}" +MSG-0000156,INT-000079,client,"Hi, I saw the listing for Sugam Prakriti. Is the 3 BHK still available?",2024-04-22T00:46:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00028""}" +MSG-0000157,INT-000079,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2024-04-22T00:10:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00028""}" +MSG-0000158,INT-000079,client,What about the maintenance charges?,2024-04-22T02:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00028""}" +MSG-0000159,INT-000080,client,We're comparing this with Siddha Suburbia Bungalow. What makes this better?,2024-05-18T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00029""}" +MSG-0000160,INT-000080,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2024-05-18T00:34:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00029""}" +MSG-0000161,INT-000080,client,Can you hold the unit for 2 days? I need to finalize with my father.,2024-05-18T01:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00029""}" +MSG-0000162,INT-000081,client,Thank you. What's the current price per sqft?,2024-06-07T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00030""}" +MSG-0000163,INT-000081,agent,"Yes sir, we have a few units available. When would you like to visit?",2024-06-07T00:52:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00030""}" +MSG-0000164,INT-000081,client,My wife wants to see the sample flat again. Can we come tomorrow?,2024-06-07T01:44:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00030""}" +MSG-0000165,INT-000084,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2025-03-17T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00031""}" +MSG-0000166,INT-000084,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2025-03-17T00:08:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00031""}" +MSG-0000167,INT-000084,client,We visited the site today. The location is excellent but the approach road is narrow.,2025-03-17T02:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00031""}" +MSG-0000168,INT-000084,client,What about the maintenance charges?,2025-03-17T03:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00031""}" +MSG-0000169,INT-000084,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2025-03-17T01:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00031""}" +MSG-0000170,INT-000084,agent,It's approximately 13794 per sqft all-inclusive. Best price in Rajarhat right now.,2025-03-17T00:25:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00031""}" +MSG-0000171,INT-000085,client,What about the maintenance charges?,2025-04-03T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00032""}" +MSG-0000172,INT-000085,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2025-04-03T00:42:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00032""}" +MSG-0000173,INT-000085,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2025-04-03T01:04:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00032""}" +MSG-0000174,INT-000085,agent,It's approximately 14620 per sqft all-inclusive. Best price in Rajarhat right now.,2025-04-03T00:39:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00032""}" +MSG-0000175,INT-000085,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2025-04-03T00:28:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00032""}" +MSG-0000176,INT-000085,agent,Of course. I'll arrange a dedicated viewing.,2025-04-03T00:35:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00032""}" +MSG-0000177,INT-000090,client,Home loan. Pre-approved up to 2.5-4 Cr.,2025-12-31T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00033""}" +MSG-0000178,INT-000090,client,I'm ready to book. What's the token amount?,2025-12-31T00:16:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00033""}" +MSG-0000179,INT-000090,agent,Sending it now. Also attaching the project brochure.,2025-12-31T01:06:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00033""}" +MSG-0000180,INT-000090,agent,"Yes, Tower B has east facing units on floors 8-15.",2025-12-31T00:18:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00033""}" +MSG-0000181,INT-000090,client,That's slightly above my budget. Any flexibility?,2025-12-31T03:08:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00033""}" +MSG-0000182,INT-000090,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2025-12-31T01:15:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00033""}" +MSG-0000183,INT-000090,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2025-12-31T03:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00033""}" +MSG-0000184,INT-000091,client,Thank you. What's the current price per sqft?,2026-01-03T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00034""}" +MSG-0000185,INT-000091,client,Home loan. Pre-approved up to 6-10 Cr.,2026-01-03T00:26:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00034""}" +MSG-0000186,INT-000091,client,We're comparing this with Eden Devprayag. What makes this better?,2026-01-03T01:06:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00034""}" +MSG-0000187,INT-000091,client,What about the maintenance charges?,2026-01-03T00:21:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00034""}" +MSG-0000188,INT-000092,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2026-01-06T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00035""}" +MSG-0000189,INT-000092,agent,It's approximately 8296 per sqft all-inclusive. Best price in New Town right now.,2026-01-06T00:07:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00035""}" +MSG-0000190,INT-000092,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2026-01-06T01:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00035""}" +MSG-0000191,INT-000092,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2026-01-06T02:18:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00035""}" +MSG-0000192,INT-000092,client,Can we schedule for this Saturday around 11 AM?,2026-01-06T00:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00035""}" +MSG-0000193,INT-000093,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2026-01-18T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00036""}" +MSG-0000194,INT-000093,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2026-01-18T00:53:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00036""}" +MSG-0000195,INT-000093,client,Can you share the floor plan?,2026-01-18T01:14:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00036""}" +MSG-0000196,INT-000093,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2026-01-18T00:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00036""}" +MSG-0000197,INT-000093,agent,"Rs 3 per sqft per month. Includes housekeeping, security, and common area maintenance.",2026-01-18T03:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00036""}" +MSG-0000198,INT-000093,client,Home loan. Pre-approved up to 6-10 Cr.,2026-01-18T00:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00036""}" +MSG-0000199,INT-000096,client,Can we schedule for this Saturday around 11 AM?,2026-02-21T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00037""}" +MSG-0000200,INT-000096,client,Thank you. What's the current price per sqft?,2026-02-21T00:38:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00037""}" +MSG-0000201,INT-000096,client,My wife wants to see the sample flat again. Can we come tomorrow?,2026-02-21T01:14:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00037""}" +MSG-0000202,INT-000099,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2025-05-22T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00038""}" +MSG-0000203,INT-000099,client,Can you hold the unit for 2 days? I need to finalize with my father.,2025-05-22T00:45:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00038""}" +MSG-0000204,INT-000099,agent,"Yes sir, we have a few units available. When would you like to visit?",2025-05-22T01:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00038""}" +MSG-0000205,INT-000099,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2025-05-22T00:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00038""}" +MSG-0000206,INT-000099,agent,Sending it now. Also attaching the project brochure.,2025-05-22T01:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00038""}" +MSG-0000207,INT-000099,agent,It's approximately 11413 per sqft all-inclusive. Best price in New Town right now.,2025-05-22T03:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00038""}" +MSG-0000208,INT-000099,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2025-05-22T05:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00038""}" +MSG-0000209,INT-000104,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2024-05-08T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00039""}" +MSG-0000210,INT-000104,client,That's slightly above my budget. Any flexibility?,2024-05-08T00:41:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00039""}" +MSG-0000211,INT-000104,agent,"Yes, Tower B has east facing units on floors 8-15.",2024-05-08T01:44:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00039""}" +MSG-0000212,INT-000104,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2024-05-08T01:54:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00039""}" +MSG-0000213,INT-000104,client,Thank you. What's the current price per sqft?,2024-05-08T03:32:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00039""}" +MSG-0000214,INT-000105,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2024-05-17T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00040""}" +MSG-0000215,INT-000105,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2024-05-17T00:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00040""}" +MSG-0000216,INT-000105,client,We're comparing this with DTC Good Earth. What makes this better?,2024-05-17T01:28:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00040""}" +MSG-0000217,INT-000105,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2024-05-17T01:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00040""}" +MSG-0000218,INT-000109,client,Home loan. Pre-approved up to 10-15 Cr.,2026-01-29T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00041""}" +MSG-0000219,INT-000109,client,"Hi, I saw the listing for Godrej Blue. Is the 3 BHK still available?",2026-01-29T00:41:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00041""}" +MSG-0000220,INT-000109,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2026-01-29T00:42:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00041""}" +MSG-0000221,INT-000109,agent,It's approximately 8329 per sqft all-inclusive. Best price in New Town right now.,2026-01-29T03:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00041""}" +MSG-0000222,INT-000109,client,Home loan. Pre-approved up to 15-25 Cr.,2026-01-29T02:08:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00041""}" +MSG-0000223,INT-000109,agent,"Yes, Tower B has east facing units on floors 8-15.",2026-01-29T02:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00041""}" +MSG-0000224,INT-000109,client,Home loan. Pre-approved up to 4-6 Cr.,2026-01-29T06:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00041""}" +MSG-0000225,INT-000112,agent,It's approximately 8829 per sqft all-inclusive. Best price in Rajarhat right now.,2024-12-22T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00042""}" +MSG-0000226,INT-000112,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2024-12-22T00:35:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00042""}" +MSG-0000227,INT-000112,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2024-12-22T00:58:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00042""}" +MSG-0000228,INT-000112,client,"Hi, I saw the listing for Eden Devprayag. Is the 3 BHK still available?",2024-12-22T00:33:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00042""}" +MSG-0000229,INT-000113,client,What about the maintenance charges?,2025-01-27T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00043""}" +MSG-0000230,INT-000113,agent,Of course. I'll arrange a dedicated viewing.,2025-01-27T00:43:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00043""}" +MSG-0000231,INT-000113,agent,Sending it now. Also attaching the project brochure.,2025-01-27T00:26:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00043""}" +MSG-0000232,INT-000113,client,I'm ready to book. What's the token amount?,2025-01-27T02:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00043""}" +MSG-0000233,INT-000113,agent,"Yes, Tower B has east facing units on floors 8-15.",2025-01-27T00:32:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00043""}" +MSG-0000234,INT-000113,client,That's slightly above my budget. Any flexibility?,2025-01-27T02:55:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00043""}" +MSG-0000235,INT-000115,agent,"Yes, Tower B has east facing units on floors 8-15.",2026-02-03T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00044""}" +MSG-0000236,INT-000115,client,We visited the site today. The location is excellent but the approach road is narrow.,2026-02-03T00:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00044""}" +MSG-0000237,INT-000115,client,Thank you. What's the current price per sqft?,2026-02-03T00:46:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00044""}" +MSG-0000238,INT-000115,client,Can you hold the unit for 2 days? I need to finalize with my father.,2026-02-03T02:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00044""}" +MSG-0000239,INT-000115,agent,"Rs 6 per sqft per month. Includes housekeeping, security, and common area maintenance.",2026-02-03T03:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00044""}" +MSG-0000240,INT-000115,client,Received. The layout looks good. Is there a east facing option?,2026-02-03T03:50:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00044""}" +MSG-0000241,INT-000115,client,We're comparing this with Atri Surya Toron. What makes this better?,2026-02-03T00:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00044""}" +MSG-0000242,INT-000115,client,That's slightly above my budget. Any flexibility?,2026-02-03T05:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00044""}" +MSG-0000243,INT-000116,agent,"Yes sir, we have a few units available. When would you like to visit?",2026-02-08T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00045""}" +MSG-0000244,INT-000116,client,Received. The layout looks good. Is there a east facing option?,2026-02-08T00:39:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00045""}" +MSG-0000245,INT-000116,client,My wife wants to see the sample flat again. Can we come tomorrow?,2026-02-08T00:52:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00045""}" +MSG-0000246,INT-000116,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2026-02-08T02:45:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00045""}" +MSG-0000247,INT-000117,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2026-02-09T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00046""}" +MSG-0000248,INT-000117,agent,It's approximately 9952 per sqft all-inclusive. Best price in New Town right now.,2026-02-09T00:21:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00046""}" +MSG-0000249,INT-000117,client,Home loan. Pre-approved up to 10-15 Cr.,2026-02-09T00:56:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00046""}" +MSG-0000250,INT-000117,client,I'm ready to book. What's the token amount?,2026-02-09T01:39:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00046""}" +MSG-0000251,INT-000117,client,I'm ready to book. What's the token amount?,2026-02-09T03:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00046""}" +MSG-0000252,INT-000117,client,We're comparing this with DTC Good Earth. What makes this better?,2026-02-09T01:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00046""}" +MSG-0000253,INT-000118,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2026-02-20T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00047""}" +MSG-0000254,INT-000118,agent,"Rs 7 per sqft per month. Includes housekeeping, security, and common area maintenance.",2026-02-20T00:37:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00047""}" +MSG-0000255,INT-000118,client,Can you hold the unit for 2 days? I need to finalize with my father.,2026-02-20T00:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00047""}" +MSG-0000256,INT-000118,client,Can you share the floor plan?,2026-02-20T00:33:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00047""}" +MSG-0000257,INT-000118,client,Home loan. Pre-approved up to 15-25 Cr.,2026-02-20T01:56:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00047""}" +MSG-0000258,INT-000118,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2026-02-20T03:15:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00047""}" +MSG-0000259,INT-000118,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2026-02-20T02:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00047""}" +MSG-0000260,INT-000120,client,"Hi, I saw the listing for Atri Aqua. Is the 3 BHK still available?",2026-03-03T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00048""}" +MSG-0000261,INT-000120,client,My wife wants to see the sample flat again. Can we come tomorrow?,2026-03-03T00:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00048""}" +MSG-0000262,INT-000120,client,That's slightly above my budget. Any flexibility?,2026-03-03T00:10:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00048""}" +MSG-0000263,INT-000120,agent,It's approximately 9610 per sqft all-inclusive. Best price in New Town right now.,2026-03-03T02:27:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00048""}" +MSG-0000264,INT-000120,client,My wife wants to see the sample flat again. Can we come tomorrow?,2026-03-03T00:28:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00048""}" +MSG-0000265,INT-000120,client,"Hi, I saw the listing for Atri Aqua. Is the 3 BHK still available?",2026-03-03T05:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00048""}" +MSG-0000266,INT-000122,agent,Sending it now. Also attaching the project brochure.,2026-03-24T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00049""}" +MSG-0000267,INT-000122,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2026-03-24T00:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00049""}" +MSG-0000268,INT-000122,client,We're comparing this with Ambuja Utpaala. What makes this better?,2026-03-24T00:16:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00049""}" +MSG-0000269,INT-000122,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2026-03-24T00:39:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00049""}" +MSG-0000270,INT-000123,client,Can you hold the unit for 2 days? I need to finalize with my father.,2026-04-09T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00050""}" +MSG-0000271,INT-000123,client,Home loan. Pre-approved up to 15-25 Cr.,2026-04-09T00:33:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00050""}" +MSG-0000272,INT-000123,client,Can we schedule for this Saturday around 11 AM?,2026-04-09T01:04:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00050""}" +MSG-0000273,INT-000123,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2026-04-09T00:15:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00050""}" +MSG-0000274,INT-000123,client,We're comparing this with Sugam Prakriti. What makes this better?,2026-04-09T03:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00050""}" +MSG-0000275,INT-000123,client,Can we schedule for this Saturday around 11 AM?,2026-04-09T04:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00050""}" +MSG-0000276,INT-000126,client,We're comparing this with Shriram Grand City. What makes this better?,2024-12-06T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00051""}" +MSG-0000277,INT-000126,client,We're comparing this with DTC Good Earth. What makes this better?,2024-12-06T00:06:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00051""}" +MSG-0000278,INT-000126,agent,Sending it now. Also attaching the project brochure.,2024-12-06T01:08:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00051""}" +MSG-0000279,INT-000126,client,Can we schedule for this Saturday around 11 AM?,2024-12-06T02:09:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00051""}" +MSG-0000280,INT-000126,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2024-12-06T03:16:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00051""}" +MSG-0000281,INT-000126,client,Can you hold the unit for 2 days? I need to finalize with my father.,2024-12-06T03:25:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00051""}" +MSG-0000282,INT-000126,agent,Of course. I'll arrange a dedicated viewing.,2024-12-06T02:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00051""}" +MSG-0000283,INT-000129,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2024-08-04T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00052""}" +MSG-0000284,INT-000129,client,Can we schedule for this Saturday around 11 AM?,2024-08-04T00:32:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00052""}" +MSG-0000285,INT-000129,client,Home loan. Pre-approved up to 2.5-4 Cr.,2024-08-04T00:52:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00052""}" +MSG-0000286,INT-000131,client,I'm ready to book. What's the token amount?,2024-08-31T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00053""}" +MSG-0000287,INT-000131,client,Received. The layout looks good. Is there a east facing option?,2024-08-31T00:22:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00053""}" +MSG-0000288,INT-000131,agent,"Yes sir, we have a few units available. When would you like to visit?",2024-08-31T01:58:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00053""}" +MSG-0000289,INT-000132,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2024-09-04T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00054""}" +MSG-0000290,INT-000132,client,We're comparing this with Atri Aqua. What makes this better?,2024-09-04T00:49:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00054""}" +MSG-0000291,INT-000132,client,Home loan. Pre-approved up to 2.5-4 Cr.,2024-09-04T01:02:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00054""}" +MSG-0000292,INT-000132,client,Can we schedule for this Saturday around 11 AM?,2024-09-04T01:45:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00054""}" +MSG-0000293,INT-000132,client,Can we schedule for this Saturday around 11 AM?,2024-09-04T03:16:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00054""}" +MSG-0000294,INT-000132,client,Can you hold the unit for 2 days? I need to finalize with my father.,2024-09-04T02:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00054""}" +MSG-0000295,INT-000132,client,"Hi, I saw the listing for Atri Surya Toron. Is the 3 BHK still available?",2024-09-04T01:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00054""}" +MSG-0000296,INT-000132,client,Can you share the floor plan?,2024-09-04T06:04:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00054""}" +MSG-0000297,INT-000135,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2024-09-23T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00055""}" +MSG-0000298,INT-000135,client,My wife wants to see the sample flat again. Can we come tomorrow?,2024-09-23T00:18:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00055""}" +MSG-0000299,INT-000135,agent,"Yes, Tower B has east facing units on floors 8-15.",2024-09-23T01:10:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00055""}" +MSG-0000300,INT-000135,client,Can you hold the unit for 2 days? I need to finalize with my father.,2024-09-23T02:45:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00055""}" +MSG-0000301,INT-000135,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2024-09-23T03:44:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00055""}" +MSG-0000302,INT-000135,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2024-09-23T04:15:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00055""}" +MSG-0000303,INT-000135,client,Can you hold the unit for 2 days? I need to finalize with my father.,2024-09-23T01:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00055""}" +MSG-0000304,INT-000135,agent,Sending it now. Also attaching the project brochure.,2024-09-23T02:13:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00055""}" +MSG-0000305,INT-000137,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2024-06-25T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00056""}" +MSG-0000306,INT-000137,client,I'm ready to book. What's the token amount?,2024-06-25T00:17:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00056""}" +MSG-0000307,INT-000137,agent,Of course. I'll arrange a dedicated viewing.,2024-06-25T00:38:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00056""}" +MSG-0000308,INT-000144,client,I'm ready to book. What's the token amount?,2025-02-16T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00057""}" +MSG-0000309,INT-000144,client,Thank you. What's the current price per sqft?,2025-02-16T00:37:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00057""}" +MSG-0000310,INT-000144,agent,"Rs 3 per sqft per month. Includes housekeeping, security, and common area maintenance.",2025-02-16T01:18:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00057""}" +MSG-0000311,INT-000144,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2025-02-16T01:18:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00057""}" +MSG-0000312,INT-000148,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2026-01-26T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00058""}" +MSG-0000313,INT-000148,client,"Hi, I saw the listing for Merlin Avana. Is the 3 BHK still available?",2026-01-26T00:59:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00058""}" +MSG-0000314,INT-000148,agent,It's approximately 10339 per sqft all-inclusive. Best price in Tangra right now.,2026-01-26T01:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00058""}" +MSG-0000315,INT-000148,agent,Sending it now. Also attaching the project brochure.,2026-01-26T01:27:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00058""}" +MSG-0000316,INT-000148,client,Can you share the floor plan?,2026-01-26T00:44:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00058""}" +MSG-0000317,INT-000148,client,We visited the site today. The location is excellent but the approach road is narrow.,2026-01-26T03:45:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00058""}" +MSG-0000318,INT-000148,agent,It's approximately 12630 per sqft all-inclusive. Best price in Tangra right now.,2026-01-26T01:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00058""}" +MSG-0000319,INT-000149,agent,"Yes, Tower B has east facing units on floors 8-15.",2026-02-07T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00059""}" +MSG-0000320,INT-000149,client,We're comparing this with Siddha Serena. What makes this better?,2026-02-07T00:37:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00059""}" +MSG-0000321,INT-000149,client,Home loan. Pre-approved up to 2.5-4 Cr.,2026-02-07T00:58:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00059""}" +MSG-0000322,INT-000149,client,Received. The layout looks good. Is there a east facing option?,2026-02-07T01:09:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00059""}" +MSG-0000323,INT-000149,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2026-02-07T02:44:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00059""}" +MSG-0000324,INT-000149,agent,Of course. I'll arrange a dedicated viewing.,2026-02-07T04:55:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00059""}" +MSG-0000325,INT-000149,client,What about the maintenance charges?,2026-02-07T05:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00059""}" +MSG-0000326,INT-000149,client,What about the maintenance charges?,2026-02-07T00:49:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00059""}" +MSG-0000327,INT-000152,agent,"Yes, Tower B has east facing units on floors 8-15.",2026-02-11T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00060""}" +MSG-0000328,INT-000152,agent,"Rs 3 per sqft per month. Includes housekeeping, security, and common area maintenance.",2026-02-11T00:38:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00060""}" +MSG-0000329,INT-000152,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2026-02-11T00:10:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00060""}" +MSG-0000330,INT-000152,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2026-02-11T02:42:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00060""}" +MSG-0000331,INT-000153,client,We visited the site today. The location is excellent but the approach road is narrow.,2026-02-13T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00061""}" +MSG-0000332,INT-000153,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2026-02-13T00:08:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00061""}" +MSG-0000333,INT-000153,client,Can you hold the unit for 2 days? I need to finalize with my father.,2026-02-13T01:18:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00061""}" +MSG-0000334,INT-000153,client,Can you hold the unit for 2 days? I need to finalize with my father.,2026-02-13T02:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00061""}" +MSG-0000335,INT-000153,client,Received. The layout looks good. Is there a east facing option?,2026-02-13T02:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00061""}" +MSG-0000336,INT-000153,agent,It's approximately 13626 per sqft all-inclusive. Best price in Tangra right now.,2026-02-13T05:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00061""}" +MSG-0000337,INT-000153,agent,"Yes sir, we have a few units available. When would you like to visit?",2026-02-13T05:06:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00061""}" +MSG-0000338,INT-000153,client,Can you hold the unit for 2 days? I need to finalize with my father.,2026-02-13T04:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00061""}" +MSG-0000339,INT-000155,client,What about the maintenance charges?,2026-03-23T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00062""}" +MSG-0000340,INT-000155,client,Thank you. What's the current price per sqft?,2026-03-23T00:07:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00062""}" +MSG-0000341,INT-000155,client,We're comparing this with Godrej Elevate. What makes this better?,2026-03-23T01:38:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00062""}" +MSG-0000342,INT-000155,client,Thank you. What's the current price per sqft?,2026-03-23T01:39:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00062""}" +MSG-0000343,INT-000155,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2026-03-23T01:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00062""}" +MSG-0000344,INT-000157,client,Thank you. What's the current price per sqft?,2024-08-03T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00063""}" +MSG-0000345,INT-000157,agent,"Rs 8 per sqft per month. Includes housekeeping, security, and common area maintenance.",2024-08-03T00:09:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00063""}" +MSG-0000346,INT-000157,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2024-08-03T01:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00063""}" +MSG-0000347,INT-000157,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2024-08-03T00:18:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00063""}" +MSG-0000348,INT-000158,agent,"Yes, Tower B has east facing units on floors 8-15.",2024-08-05T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00064""}" +MSG-0000349,INT-000158,agent,Of course. I'll arrange a dedicated viewing.,2024-08-05T00:53:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00064""}" +MSG-0000350,INT-000158,agent,"Yes sir, we have a few units available. When would you like to visit?",2024-08-05T00:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00064""}" +MSG-0000351,INT-000160,agent,"Yes, Tower B has east facing units on floors 8-15.",2025-03-05T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00065""}" +MSG-0000352,INT-000160,agent,It's approximately 11175 per sqft all-inclusive. Best price in Dum Dum right now.,2025-03-05T00:13:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00065""}" +MSG-0000353,INT-000160,agent,"Yes, Tower B has east facing units on floors 8-15.",2025-03-05T00:28:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00065""}" +MSG-0000354,INT-000160,client,Home loan. Pre-approved up to 6-10 Cr.,2025-03-05T02:54:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00065""}" +MSG-0000355,INT-000160,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2025-03-05T01:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00065""}" +MSG-0000356,INT-000160,client,Home loan. Pre-approved up to 1.5-2.5 Cr.,2025-03-05T04:55:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00065""}" +MSG-0000357,INT-000160,client,My wife wants to see the sample flat again. Can we come tomorrow?,2025-03-05T03:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00065""}" +MSG-0000358,INT-000161,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2025-03-09T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00066""}" +MSG-0000359,INT-000161,client,What about the maintenance charges?,2025-03-09T00:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00066""}" +MSG-0000360,INT-000161,client,Can you share the floor plan?,2025-03-09T01:08:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00066""}" +MSG-0000361,INT-000161,agent,It's approximately 14223 per sqft all-inclusive. Best price in Dum Dum right now.,2025-03-09T01:57:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00066""}" +MSG-0000362,INT-000161,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2025-03-09T03:44:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00066""}" +MSG-0000363,INT-000161,client,I'm ready to book. What's the token amount?,2025-03-09T04:55:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00066""}" +MSG-0000364,INT-000161,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2025-03-09T05:06:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00066""}" +MSG-0000365,INT-000161,client,Home loan. Pre-approved up to 6-10 Cr.,2025-03-09T05:43:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00066""}" +MSG-0000366,INT-000168,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2024-07-14T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00067""}" +MSG-0000367,INT-000168,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2024-07-14T00:06:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00067""}" +MSG-0000368,INT-000168,client,I'm ready to book. What's the token amount?,2024-07-14T00:38:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00067""}" +MSG-0000369,INT-000168,client,We visited the site today. The location is excellent but the approach road is narrow.,2024-07-14T01:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00067""}" +MSG-0000370,INT-000168,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2024-07-14T00:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00067""}" +MSG-0000371,INT-000171,client,That's slightly above my budget. Any flexibility?,2024-08-07T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00068""}" +MSG-0000372,INT-000171,client,What about the maintenance charges?,2024-08-07T00:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00068""}" +MSG-0000373,INT-000171,client,My wife wants to see the sample flat again. Can we come tomorrow?,2024-08-07T00:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00068""}" +MSG-0000374,INT-000171,agent,"Yes sir, we have a few units available. When would you like to visit?",2024-08-07T01:21:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00068""}" +MSG-0000375,INT-000171,agent,Sending it now. Also attaching the project brochure.,2024-08-07T03:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00068""}" +MSG-0000376,INT-000171,client,"Hi, I saw the listing for Atri Aqua. Is the 3 BHK still available?",2024-08-07T03:45:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00068""}" +MSG-0000377,INT-000171,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2024-08-07T02:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00068""}" +MSG-0000378,INT-000171,agent,"Rs 8 per sqft per month. Includes housekeeping, security, and common area maintenance.",2024-08-07T02:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00068""}" +MSG-0000379,INT-000174,client,We visited the site today. The location is excellent but the approach road is narrow.,2024-09-05T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00069""}" +MSG-0000380,INT-000174,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2024-09-05T00:29:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00069""}" +MSG-0000381,INT-000174,agent,"Yes sir, we have a few units available. When would you like to visit?",2024-09-05T01:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00069""}" +MSG-0000382,INT-000174,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2024-09-05T02:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00069""}" +MSG-0000383,INT-000174,agent,Of course. I'll arrange a dedicated viewing.,2024-09-05T03:56:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00069""}" +MSG-0000384,INT-000174,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2024-09-05T04:25:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00069""}" +MSG-0000385,INT-000174,client,Home loan. Pre-approved up to 4-6 Cr.,2024-09-05T01:42:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00069""}" +MSG-0000386,INT-000177,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2024-09-09T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00070""}" +MSG-0000387,INT-000177,client,Can you share the floor plan?,2024-09-09T00:47:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00070""}" +MSG-0000388,INT-000177,client,Can we schedule for this Saturday around 11 AM?,2024-09-09T01:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00070""}" +MSG-0000389,INT-000177,client,Can you share the floor plan?,2024-09-09T00:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00070""}" +MSG-0000390,INT-000177,agent,"Yes sir, we have a few units available. When would you like to visit?",2024-09-09T01:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00070""}" +MSG-0000391,INT-000177,agent,It's approximately 11042 per sqft all-inclusive. Best price in New Town right now.,2024-09-09T00:45:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00070""}" +MSG-0000392,INT-000182,client,We're comparing this with DTC Sojon. What makes this better?,2025-05-30T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00071""}" +MSG-0000393,INT-000182,client,I'm ready to book. What's the token amount?,2025-05-30T00:45:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00071""}" +MSG-0000394,INT-000182,client,Can you hold the unit for 2 days? I need to finalize with my father.,2025-05-30T01:14:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00071""}" +MSG-0000395,INT-000182,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2025-05-30T00:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00071""}" +MSG-0000396,INT-000183,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2025-06-24T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00072""}" +MSG-0000397,INT-000183,client,I'm ready to book. What's the token amount?,2025-06-24T00:34:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00072""}" +MSG-0000398,INT-000183,client,Received. The layout looks good. Is there a east facing option?,2025-06-24T01:04:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00072""}" +MSG-0000399,INT-000183,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2025-06-24T01:39:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00072""}" +MSG-0000400,INT-000183,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2025-06-24T01:56:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00072""}" +MSG-0000401,INT-000185,client,I'm ready to book. What's the token amount?,2025-07-02T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00073""}" +MSG-0000402,INT-000185,client,Received. The layout looks good. Is there a east facing option?,2025-07-02T00:16:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00073""}" +MSG-0000403,INT-000185,client,We visited the site today. The location is excellent but the approach road is narrow.,2025-07-02T01:32:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00073""}" +MSG-0000404,INT-000185,agent,Sending it now. Also attaching the project brochure.,2025-07-02T01:15:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00073""}" +MSG-0000405,INT-000185,client,That's slightly above my budget. Any flexibility?,2025-07-02T03:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00073""}" +MSG-0000406,INT-000187,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2024-11-29T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00074""}" +MSG-0000407,INT-000187,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2024-11-29T00:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00074""}" +MSG-0000408,INT-000187,client,Received. The layout looks good. Is there a east facing option?,2024-11-29T01:46:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00074""}" +MSG-0000409,INT-000187,agent,"Rs 5 per sqft per month. Includes housekeeping, security, and common area maintenance.",2024-11-29T02:06:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00074""}" +MSG-0000410,INT-000189,client,Can you hold the unit for 2 days? I need to finalize with my father.,2024-12-07T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00075""}" +MSG-0000411,INT-000189,agent,It's approximately 8725 per sqft all-inclusive. Best price in Barasat right now.,2024-12-07T00:13:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00075""}" +MSG-0000412,INT-000189,agent,"Yes sir, we have a few units available. When would you like to visit?",2024-12-07T00:14:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00075""}" +MSG-0000413,INT-000189,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2024-12-07T01:09:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00075""}" +MSG-0000414,INT-000189,client,We're comparing this with DTC Good Earth. What makes this better?,2024-12-07T02:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00075""}" +MSG-0000415,INT-000189,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2024-12-07T00:25:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00075""}" +MSG-0000416,INT-000189,agent,"Yes sir, we have a few units available. When would you like to visit?",2024-12-07T02:54:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00075""}" +MSG-0000417,INT-000189,client,Can we schedule for this Saturday around 11 AM?,2024-12-07T00:56:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00075""}" +MSG-0000418,INT-000190,client,That's slightly above my budget. Any flexibility?,2024-12-09T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00076""}" +MSG-0000419,INT-000190,agent,Sending it now. Also attaching the project brochure.,2024-12-09T00:26:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00076""}" +MSG-0000420,INT-000190,client,What about the maintenance charges?,2024-12-09T01:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00076""}" +MSG-0000421,INT-000192,client,I'm ready to book. What's the token amount?,2025-01-05T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00077""}" +MSG-0000422,INT-000192,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2025-01-05T00:18:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00077""}" +MSG-0000423,INT-000192,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2025-01-05T01:34:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00077""}" +MSG-0000424,INT-000192,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2025-01-05T01:42:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00077""}" +MSG-0000425,INT-000192,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2025-01-05T00:44:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00077""}" +MSG-0000426,INT-000193,client,Can you share the floor plan?,2025-01-16T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00078""}" +MSG-0000427,INT-000193,client,Can you hold the unit for 2 days? I need to finalize with my father.,2025-01-16T00:46:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00078""}" +MSG-0000428,INT-000193,client,Can we schedule for this Saturday around 11 AM?,2025-01-16T00:18:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00078""}" +MSG-0000429,INT-000193,client,We visited the site today. The location is excellent but the approach road is narrow.,2025-01-16T02:54:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00078""}" +MSG-0000430,INT-000193,client,Can you share the floor plan?,2025-01-16T03:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00078""}" +MSG-0000431,INT-000193,agent,Sending it now. Also attaching the project brochure.,2025-01-16T03:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00078""}" +MSG-0000432,INT-000193,client,Home loan. Pre-approved up to 4-6 Cr.,2025-01-16T05:18:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00078""}" +MSG-0000433,INT-000193,client,Can you share the floor plan?,2025-01-16T01:31:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00078""}" +MSG-0000434,INT-000194,client,Thank you. What's the current price per sqft?,2025-01-17T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00079""}" +MSG-0000435,INT-000194,client,"Hi, I saw the listing for Sugam Prakriti. Is the 3 BHK still available?",2025-01-17T00:31:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00079""}" +MSG-0000436,INT-000194,client,We visited the site today. The location is excellent but the approach road is narrow.,2025-01-17T01:34:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00079""}" +MSG-0000437,INT-000196,agent,It's approximately 14372 per sqft all-inclusive. Best price in Tangra right now.,2025-11-21T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00080""}" +MSG-0000438,INT-000196,client,Home loan. Pre-approved up to 2.5-4 Cr.,2025-11-21T00:18:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00080""}" +MSG-0000439,INT-000196,client,Home loan. Pre-approved up to 2.5-4 Cr.,2025-11-21T01:18:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00080""}" +MSG-0000440,INT-000197,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2025-11-23T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00081""}" +MSG-0000441,INT-000197,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2025-11-23T00:45:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00081""}" +MSG-0000442,INT-000197,client,I'm ready to book. What's the token amount?,2025-11-23T01:28:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00081""}" +MSG-0000443,INT-000197,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2025-11-23T01:27:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00081""}" +MSG-0000444,INT-000197,agent,Sending it now. Also attaching the project brochure.,2025-11-23T00:56:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00081""}" +MSG-0000445,INT-000197,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2025-11-23T03:05:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00081""}" +MSG-0000446,INT-000204,client,"Hi, I saw the listing for Godrej Blue. Is the 3 BHK still available?",2025-03-26T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00082""}" +MSG-0000447,INT-000204,client,What about the maintenance charges?,2025-03-26T00:31:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00082""}" +MSG-0000448,INT-000204,client,That's slightly above my budget. Any flexibility?,2025-03-26T01:46:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00082""}" +MSG-0000449,INT-000204,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2025-03-26T01:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00082""}" +MSG-0000450,INT-000205,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2025-04-01T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00083""}" +MSG-0000451,INT-000205,client,Can we schedule for this Saturday around 11 AM?,2025-04-01T00:06:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00083""}" +MSG-0000452,INT-000205,client,We're comparing this with Atri Surya Toron. What makes this better?,2025-04-01T00:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00083""}" +MSG-0000453,INT-000205,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2025-04-01T02:57:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00083""}" +MSG-0000454,INT-000205,agent,"Yes sir, we have a few units available. When would you like to visit?",2025-04-01T03:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00083""}" +MSG-0000455,INT-000205,agent,It's approximately 8450 per sqft all-inclusive. Best price in New Town right now.,2025-04-01T04:55:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00083""}" +MSG-0000456,INT-000205,client,Thank you. What's the current price per sqft?,2025-04-01T05:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00083""}" +MSG-0000457,INT-000205,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2025-04-01T04:33:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00083""}" +MSG-0000458,INT-000207,client,Can you hold the unit for 2 days? I need to finalize with my father.,2025-04-12T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00084""}" +MSG-0000459,INT-000207,client,Received. The layout looks good. Is there a east facing option?,2025-04-12T00:45:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00084""}" +MSG-0000460,INT-000207,client,My wife wants to see the sample flat again. Can we come tomorrow?,2025-04-12T01:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00084""}" +MSG-0000461,INT-000207,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2025-04-12T03:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00084""}" +MSG-0000462,INT-000207,client,Received. The layout looks good. Is there a east facing option?,2025-04-12T02:08:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00084""}" +MSG-0000463,INT-000213,client,Can we schedule for this Saturday around 11 AM?,2024-04-27T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00085""}" +MSG-0000464,INT-000213,client,I'm ready to book. What's the token amount?,2024-04-27T00:11:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00085""}" +MSG-0000465,INT-000213,client,We're comparing this with Merlin Avana. What makes this better?,2024-04-27T01:54:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00085""}" +MSG-0000466,INT-000213,client,What about the maintenance charges?,2024-04-27T00:33:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00085""}" +MSG-0000467,INT-000213,client,We're comparing this with Godrej Blue. What makes this better?,2024-04-27T00:52:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00085""}" +MSG-0000468,INT-000213,client,We visited the site today. The location is excellent but the approach road is narrow.,2024-04-27T03:05:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00085""}" +MSG-0000469,INT-000213,client,I'm ready to book. What's the token amount?,2024-04-27T05:54:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00085""}" +MSG-0000470,INT-000213,agent,Of course. I'll arrange a dedicated viewing.,2024-04-27T03:09:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00085""}" +MSG-0000471,INT-000214,agent,Sending it now. Also attaching the project brochure.,2024-06-24T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00086""}" +MSG-0000472,INT-000214,agent,It's approximately 12281 per sqft all-inclusive. Best price in Howrah right now.,2024-06-24T00:13:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00086""}" +MSG-0000473,INT-000214,client,Can you share the floor plan?,2024-06-24T01:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00086""}" +MSG-0000474,INT-000214,client,What about the maintenance charges?,2024-06-24T00:57:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00086""}" +MSG-0000475,INT-000214,agent,"Rs 8 per sqft per month. Includes housekeeping, security, and common area maintenance.",2024-06-24T00:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00086""}" +MSG-0000476,INT-000214,client,Can you hold the unit for 2 days? I need to finalize with my father.,2024-06-24T05:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00086""}" +MSG-0000477,INT-000216,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2025-12-05T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00087""}" +MSG-0000478,INT-000216,agent,"Rs 3 per sqft per month. Includes housekeeping, security, and common area maintenance.",2025-12-05T00:34:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00087""}" +MSG-0000479,INT-000216,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2025-12-05T00:52:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00087""}" +MSG-0000480,INT-000216,client,That's slightly above my budget. Any flexibility?,2025-12-05T01:57:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00087""}" +MSG-0000481,INT-000216,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2025-12-05T00:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00087""}" +MSG-0000482,INT-000216,client,Home loan. Pre-approved up to 1.5-2.5 Cr.,2025-12-05T03:55:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00087""}" +MSG-0000483,INT-000216,client,We're comparing this with Merlin Avana. What makes this better?,2025-12-05T01:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00087""}" +MSG-0000484,INT-000218,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2026-01-08T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00088""}" +MSG-0000485,INT-000218,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2026-01-08T00:27:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00088""}" +MSG-0000486,INT-000218,agent,"Yes, Tower B has east facing units on floors 8-15.",2026-01-08T01:06:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00088""}" +MSG-0000487,INT-000218,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2026-01-08T00:54:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00088""}" +MSG-0000488,INT-000218,agent,"Yes sir, we have a few units available. When would you like to visit?",2026-01-08T03:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00088""}" +MSG-0000489,INT-000219,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2026-01-10T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00089""}" +MSG-0000490,INT-000219,client,We visited the site today. The location is excellent but the approach road is narrow.,2026-01-10T00:33:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00089""}" +MSG-0000491,INT-000219,client,What about the maintenance charges?,2026-01-10T01:32:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00089""}" +MSG-0000492,INT-000219,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2026-01-10T02:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00089""}" +MSG-0000493,INT-000219,agent,"Yes sir, we have a few units available. When would you like to visit?",2026-01-10T01:52:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00089""}" +MSG-0000494,INT-000219,client,I'm ready to book. What's the token amount?,2026-01-10T02:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00089""}" +MSG-0000495,INT-000223,client,Can you share the floor plan?,2025-10-11T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00090""}" +MSG-0000496,INT-000223,client,"Hi, I saw the listing for Siddha Serena. Is the 3 BHK still available?",2025-10-11T00:26:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00090""}" +MSG-0000497,INT-000223,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2025-10-11T01:56:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00090""}" +MSG-0000498,INT-000223,agent,"Rs 4 per sqft per month. Includes housekeeping, security, and common area maintenance.",2025-10-11T00:39:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00090""}" +MSG-0000499,INT-000223,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2025-10-11T03:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00090""}" +MSG-0000500,INT-000223,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2025-10-11T02:50:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00090""}" +MSG-0000501,INT-000225,client,My wife wants to see the sample flat again. Can we come tomorrow?,2025-10-19T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00091""}" +MSG-0000502,INT-000225,client,Can we schedule for this Saturday around 11 AM?,2025-10-19T00:08:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00091""}" +MSG-0000503,INT-000225,agent,Sending it now. Also attaching the project brochure.,2025-10-19T01:08:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00091""}" +MSG-0000504,INT-000227,client,That's slightly above my budget. Any flexibility?,2025-10-26T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00092""}" +MSG-0000505,INT-000227,client,"Hi, I saw the listing for Siddha Serena. Is the 3 BHK still available?",2025-10-26T00:31:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00092""}" +MSG-0000506,INT-000227,client,Can we schedule for this Saturday around 11 AM?,2025-10-26T00:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00092""}" +MSG-0000507,INT-000227,client,We're comparing this with DTC Good Earth. What makes this better?,2025-10-26T00:21:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00092""}" +MSG-0000508,INT-000227,client,My wife wants to see the sample flat again. Can we come tomorrow?,2025-10-26T02:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00092""}" +MSG-0000509,INT-000227,client,Can we schedule for this Saturday around 11 AM?,2025-10-26T02:55:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00092""}" +MSG-0000510,INT-000227,client,That's slightly above my budget. Any flexibility?,2025-10-26T02:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00092""}" +MSG-0000511,INT-000229,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2025-12-12T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00093""}" +MSG-0000512,INT-000229,client,What about the maintenance charges?,2025-12-12T00:35:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00093""}" +MSG-0000513,INT-000229,client,That's slightly above my budget. Any flexibility?,2025-12-12T01:44:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00093""}" +MSG-0000514,INT-000229,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2025-12-12T02:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00093""}" +MSG-0000515,INT-000229,client,Received. The layout looks good. Is there a east facing option?,2025-12-12T01:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00093""}" +MSG-0000516,INT-000229,client,Received. The layout looks good. Is there a east facing option?,2025-12-12T02:25:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00093""}" +MSG-0000517,INT-000231,agent,Of course. I'll arrange a dedicated viewing.,2025-12-17T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00094""}" +MSG-0000518,INT-000231,client,"Hi, I saw the listing for Siddha Serena. Is the 3 BHK still available?",2025-12-17T00:21:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00094""}" +MSG-0000519,INT-000231,client,Can you share the floor plan?,2025-12-17T01:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00094""}" +MSG-0000520,INT-000231,client,Can you hold the unit for 2 days? I need to finalize with my father.,2025-12-17T00:33:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00094""}" +MSG-0000521,INT-000231,client,Can we schedule for this Saturday around 11 AM?,2025-12-17T01:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00094""}" +MSG-0000522,INT-000231,client,My wife wants to see the sample flat again. Can we come tomorrow?,2025-12-17T04:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00094""}" +MSG-0000523,INT-000231,client,Can we schedule for this Saturday around 11 AM?,2025-12-17T01:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00094""}" +MSG-0000524,INT-000234,agent,Of course. I'll arrange a dedicated viewing.,2024-11-03T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00095""}" +MSG-0000525,INT-000234,client,We're comparing this with Siddha Suburbia Bungalow. What makes this better?,2024-11-03T00:51:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00095""}" +MSG-0000526,INT-000234,agent,"Yes, Tower B has east facing units on floors 8-15.",2024-11-03T00:50:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00095""}" +MSG-0000527,INT-000234,agent,Of course. I'll arrange a dedicated viewing.,2024-11-03T00:21:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00095""}" +MSG-0000528,INT-000236,agent,Sending it now. Also attaching the project brochure.,2024-11-24T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00096""}" +MSG-0000529,INT-000236,client,We're comparing this with Sugam Prakriti. What makes this better?,2024-11-24T00:28:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00096""}" +MSG-0000530,INT-000236,client,We're comparing this with Siddha Suburbia Bungalow. What makes this better?,2024-11-24T00:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00096""}" +MSG-0000531,INT-000236,client,We're comparing this with Siddha Suburbia Bungalow. What makes this better?,2024-11-24T02:06:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00096""}" +MSG-0000532,INT-000240,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2024-12-20T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00097""}" +MSG-0000533,INT-000240,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2024-12-20T00:35:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00097""}" +MSG-0000534,INT-000240,client,We visited the site today. The location is excellent but the approach road is narrow.,2024-12-20T01:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00097""}" +MSG-0000535,INT-000240,client,"Hi, I saw the listing for Atri Aqua. Is the 3 BHK still available?",2024-12-20T00:51:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00097""}" +MSG-0000536,INT-000240,client,My wife wants to see the sample flat again. Can we come tomorrow?,2024-12-20T02:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00097""}" +MSG-0000537,INT-000240,client,Thank you. What's the current price per sqft?,2024-12-20T01:15:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00097""}" +MSG-0000538,INT-000240,agent,"Yes sir, we have a few units available. When would you like to visit?",2024-12-20T06:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00097""}" +MSG-0000539,INT-000241,client,"Hi, I saw the listing for Atri Aqua. Is the 3 BHK still available?",2024-12-21T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00098""}" +MSG-0000540,INT-000241,client,I'm ready to book. What's the token amount?,2024-12-21T00:22:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00098""}" +MSG-0000541,INT-000241,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2024-12-21T01:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00098""}" +MSG-0000542,INT-000241,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2024-12-21T02:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00098""}" +MSG-0000543,INT-000243,agent,It's approximately 10612 per sqft all-inclusive. Best price in Beliaghata right now.,2025-11-30T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00099""}" +MSG-0000544,INT-000243,agent,It's approximately 10027 per sqft all-inclusive. Best price in Beliaghata right now.,2025-11-30T00:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00099""}" +MSG-0000545,INT-000243,client,That's slightly above my budget. Any flexibility?,2025-11-30T01:56:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00099""}" +MSG-0000546,INT-000243,agent,"Rs 5 per sqft per month. Includes housekeeping, security, and common area maintenance.",2025-11-30T01:54:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00099""}" +MSG-0000547,INT-000247,agent,It's approximately 8655 per sqft all-inclusive. Best price in Rajarhat right now.,2025-09-07T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00100""}" +MSG-0000548,INT-000247,agent,"Yes sir, we have a few units available. When would you like to visit?",2025-09-07T00:29:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00100""}" +MSG-0000549,INT-000247,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2025-09-07T01:54:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00100""}" +MSG-0000550,INT-000247,client,Home loan. Pre-approved up to 15-25 Cr.,2025-09-07T01:33:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00100""}" +MSG-0000551,INT-000248,client,"Hi, I saw the listing for Eden Devprayag. Is the 3 BHK still available?",2025-09-27T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00101""}" +MSG-0000552,INT-000248,client,Thank you. What's the current price per sqft?,2025-09-27T00:13:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00101""}" +MSG-0000553,INT-000248,agent,It's approximately 10524 per sqft all-inclusive. Best price in Rajarhat right now.,2025-09-27T00:10:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00101""}" +MSG-0000554,INT-000248,client,Thank you. What's the current price per sqft?,2025-09-27T02:39:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00101""}" +MSG-0000555,INT-000248,client,Can we schedule for this Saturday around 11 AM?,2025-09-27T00:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00101""}" +MSG-0000556,INT-000248,client,What about the maintenance charges?,2025-09-27T04:50:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00101""}" +MSG-0000557,INT-000252,client,Home loan. Pre-approved up to 4-6 Cr.,2024-02-09T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00102""}" +MSG-0000558,INT-000252,agent,It's approximately 8821 per sqft all-inclusive. Best price in Tollygunge right now.,2024-02-09T00:25:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00102""}" +MSG-0000559,INT-000252,client,Home loan. Pre-approved up to 2.5-4 Cr.,2024-02-09T00:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00102""}" +MSG-0000560,INT-000252,client,Can we schedule for this Saturday around 11 AM?,2024-02-09T01:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00102""}" +MSG-0000561,INT-000252,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2024-02-09T01:44:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00102""}" +MSG-0000562,INT-000252,client,"Hi, I saw the listing for Ambuja Utpaala. Is the 3 BHK still available?",2024-02-09T00:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00102""}" +MSG-0000563,INT-000252,client,"Hi, I saw the listing for Ambuja Utpaala. Is the 3 BHK still available?",2024-02-09T02:18:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00102""}" +MSG-0000564,INT-000256,client,We visited the site today. The location is excellent but the approach road is narrow.,2024-04-06T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00103""}" +MSG-0000565,INT-000256,client,What about the maintenance charges?,2024-04-06T00:07:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00103""}" +MSG-0000566,INT-000256,client,Received. The layout looks good. Is there a east facing option?,2024-04-06T01:18:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00103""}" +MSG-0000567,INT-000256,client,Can we schedule for this Saturday around 11 AM?,2024-04-06T01:03:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00103""}" +MSG-0000568,INT-000260,client,We're comparing this with Atri Aqua. What makes this better?,2024-04-19T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00104""}" +MSG-0000569,INT-000260,agent,Sending it now. Also attaching the project brochure.,2024-04-19T00:10:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00104""}" +MSG-0000570,INT-000260,agent,It's approximately 12338 per sqft all-inclusive. Best price in Tollygunge right now.,2024-04-19T01:38:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00104""}" +MSG-0000571,INT-000260,client,Can you share the floor plan?,2024-04-19T00:27:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00104""}" +MSG-0000572,INT-000260,client,We're comparing this with Merlin Avana. What makes this better?,2024-04-19T02:44:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00104""}" +MSG-0000573,INT-000262,client,I'm ready to book. What's the token amount?,2024-03-03T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00105""}" +MSG-0000574,INT-000262,client,Can you hold the unit for 2 days? I need to finalize with my father.,2024-03-03T00:29:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00105""}" +MSG-0000575,INT-000262,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2024-03-03T00:28:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00105""}" +MSG-0000576,INT-000262,client,We visited the site today. The location is excellent but the approach road is narrow.,2024-03-03T01:27:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00105""}" +MSG-0000577,INT-000262,client,"Hi, I saw the listing for Shriram Grand City. Is the 3 BHK still available?",2024-03-03T00:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00105""}" +MSG-0000578,INT-000262,agent,Sending it now. Also attaching the project brochure.,2024-03-03T04:15:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00105""}" +MSG-0000579,INT-000262,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2024-03-03T02:42:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00105""}" +MSG-0000580,INT-000263,client,Can you share the floor plan?,2024-03-04T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00106""}" +MSG-0000581,INT-000263,client,We visited the site today. The location is excellent but the approach road is narrow.,2024-03-04T00:05:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00106""}" +MSG-0000582,INT-000263,client,My wife wants to see the sample flat again. Can we come tomorrow?,2024-03-04T00:58:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00106""}" +MSG-0000583,INT-000263,agent,Sending it now. Also attaching the project brochure.,2024-03-04T01:06:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00106""}" +MSG-0000584,INT-000265,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2024-03-13T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00107""}" +MSG-0000585,INT-000265,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2024-03-13T01:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00107""}" +MSG-0000586,INT-000265,client,My wife wants to see the sample flat again. Can we come tomorrow?,2024-03-13T01:16:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00107""}" +MSG-0000587,INT-000265,client,Home loan. Pre-approved up to 6-10 Cr.,2024-03-13T01:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00107""}" +MSG-0000588,INT-000265,client,Received. The layout looks good. Is there a east facing option?,2024-03-13T03:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00107""}" +MSG-0000589,INT-000265,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2024-03-13T04:45:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00107""}" +MSG-0000590,INT-000275,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2025-10-03T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00108""}" +MSG-0000591,INT-000275,client,"Hi, I saw the listing for Atri Surya Toron. Is the 3 BHK still available?",2025-10-03T00:38:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00108""}" +MSG-0000592,INT-000275,client,Can you hold the unit for 2 days? I need to finalize with my father.,2025-10-03T01:38:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00108""}" +MSG-0000593,INT-000275,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2025-10-03T02:03:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00108""}" +MSG-0000594,INT-000275,client,Thank you. What's the current price per sqft?,2025-10-03T01:16:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00108""}" +MSG-0000595,INT-000275,client,"Hi, I saw the listing for Atri Surya Toron. Is the 3 BHK still available?",2025-10-03T03:35:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00108""}" +MSG-0000596,INT-000277,client,I'm ready to book. What's the token amount?,2025-10-13T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00109""}" +MSG-0000597,INT-000277,client,Can you share the floor plan?,2025-10-13T00:05:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00109""}" +MSG-0000598,INT-000277,client,Can you share the floor plan?,2025-10-13T01:02:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00109""}" +MSG-0000599,INT-000277,client,Home loan. Pre-approved up to 2.5-4 Cr.,2025-10-13T02:51:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00109""}" +MSG-0000600,INT-000277,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2025-10-13T02:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00109""}" +MSG-0000601,INT-000277,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2025-10-13T05:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00109""}" +MSG-0000602,INT-000279,client,Can you hold the unit for 2 days? I need to finalize with my father.,2024-05-22T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00110""}" +MSG-0000603,INT-000279,client,We visited the site today. The location is excellent but the approach road is narrow.,2024-05-22T00:33:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00110""}" +MSG-0000604,INT-000279,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2024-05-22T01:08:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00110""}" +MSG-0000605,INT-000279,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2024-05-22T01:57:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00110""}" +MSG-0000606,INT-000279,client,We're comparing this with Godrej Elevate. What makes this better?,2024-05-22T00:32:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00110""}" +MSG-0000607,INT-000279,client,That's slightly above my budget. Any flexibility?,2024-05-22T03:10:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00110""}" +MSG-0000608,INT-000284,client,My wife wants to see the sample flat again. Can we come tomorrow?,2024-01-29T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00111""}" +MSG-0000609,INT-000284,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2024-01-29T00:28:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00111""}" +MSG-0000610,INT-000284,client,Can you hold the unit for 2 days? I need to finalize with my father.,2024-01-29T00:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00111""}" +MSG-0000611,INT-000284,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2024-01-29T00:51:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00111""}" +MSG-0000612,INT-000284,client,What about the maintenance charges?,2024-01-29T03:56:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00111""}" +MSG-0000613,INT-000285,client,We visited the site today. The location is excellent but the approach road is narrow.,2024-01-29T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00112""}" +MSG-0000614,INT-000285,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2024-01-29T00:32:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00112""}" +MSG-0000615,INT-000285,client,Can we schedule for this Saturday around 11 AM?,2024-01-29T01:16:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00112""}" +MSG-0000616,INT-000285,client,Home loan. Pre-approved up to 2.5-4 Cr.,2024-01-29T03:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00112""}" +MSG-0000617,INT-000285,client,Received. The layout looks good. Is there a east facing option?,2024-01-29T01:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00112""}" +MSG-0000618,INT-000285,agent,It's approximately 8417 per sqft all-inclusive. Best price in Howrah right now.,2024-01-29T01:10:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00112""}" +MSG-0000619,INT-000288,client,Home loan. Pre-approved up to 6-10 Cr.,2024-02-23T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00113""}" +MSG-0000620,INT-000288,agent,Of course. I'll arrange a dedicated viewing.,2024-02-23T00:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00113""}" +MSG-0000621,INT-000288,client,Can you hold the unit for 2 days? I need to finalize with my father.,2024-02-23T00:54:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00113""}" +MSG-0000622,INT-000288,agent,"Rs 5 per sqft per month. Includes housekeeping, security, and common area maintenance.",2024-02-23T02:27:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00113""}" +MSG-0000623,INT-000288,agent,"Rs 4 per sqft per month. Includes housekeeping, security, and common area maintenance.",2024-02-23T02:16:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00113""}" +MSG-0000624,INT-000288,client,I'm ready to book. What's the token amount?,2024-02-23T05:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00113""}" +MSG-0000625,INT-000288,client,Can we schedule for this Saturday around 11 AM?,2024-02-23T01:54:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00113""}" +MSG-0000626,INT-000290,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2024-03-03T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00114""}" +MSG-0000627,INT-000290,client,"Hi, I saw the listing for Shriram Grand City. Is the 3 BHK still available?",2024-03-03T00:32:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00114""}" +MSG-0000628,INT-000290,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2024-03-03T00:56:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00114""}" +MSG-0000629,INT-000290,client,Can you hold the unit for 2 days? I need to finalize with my father.,2024-03-03T01:57:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00114""}" +MSG-0000630,INT-000290,client,"Hi, I saw the listing for Shriram Grand City. Is the 3 BHK still available?",2024-03-03T02:52:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00114""}" +MSG-0000631,INT-000290,agent,"Yes sir, we have a few units available. When would you like to visit?",2024-03-03T04:45:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00114""}" +MSG-0000632,INT-000290,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2024-03-03T02:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00114""}" +MSG-0000633,INT-000295,client,Thank you. What's the current price per sqft?,2025-06-30T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00115""}" +MSG-0000634,INT-000295,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2025-06-30T00:13:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00115""}" +MSG-0000635,INT-000295,agent,"Yes, Tower B has east facing units on floors 8-15.",2025-06-30T00:28:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00115""}" +MSG-0000636,INT-000295,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2025-06-30T01:27:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00115""}" +MSG-0000637,INT-000295,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2025-06-30T02:56:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00115""}" +MSG-0000638,INT-000295,agent,"Yes, Tower B has east facing units on floors 8-15.",2025-06-30T03:25:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00115""}" +MSG-0000639,INT-000295,client,What about the maintenance charges?,2025-06-30T02:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00115""}" +MSG-0000640,INT-000310,agent,"Yes, Tower B has east facing units on floors 8-15.",2026-03-01T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00116""}" +MSG-0000641,INT-000310,agent,It's approximately 12366 per sqft all-inclusive. Best price in Rajarhat right now.,2026-03-01T00:56:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00116""}" +MSG-0000642,INT-000310,client,Can we schedule for this Saturday around 11 AM?,2026-03-01T01:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00116""}" +MSG-0000643,INT-000317,agent,"Yes sir, we have a few units available. When would you like to visit?",2025-01-15T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00117""}" +MSG-0000644,INT-000317,client,"Hi, I saw the listing for Siddha Serena. Is the 3 BHK still available?",2025-01-15T00:54:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00117""}" +MSG-0000645,INT-000317,client,My wife wants to see the sample flat again. Can we come tomorrow?,2025-01-15T01:54:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00117""}" +MSG-0000646,INT-000317,agent,Of course. I'll arrange a dedicated viewing.,2025-01-15T00:42:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00117""}" +MSG-0000647,INT-000318,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2025-01-17T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00118""}" +MSG-0000648,INT-000318,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2025-01-17T00:23:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00118""}" +MSG-0000649,INT-000318,agent,It's approximately 8211 per sqft all-inclusive. Best price in New Town right now.,2025-01-17T01:18:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00118""}" +MSG-0000650,INT-000318,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2025-01-17T02:42:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00118""}" +MSG-0000651,INT-000318,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2025-01-17T02:52:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00118""}" +MSG-0000652,INT-000318,client,I'm ready to book. What's the token amount?,2025-01-17T03:25:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00118""}" +MSG-0000653,INT-000320,client,"Hi, I saw the listing for Siddha Serena. Is the 3 BHK still available?",2025-02-27T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00119""}" +MSG-0000654,INT-000320,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2025-02-27T00:22:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00119""}" +MSG-0000655,INT-000320,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2025-02-27T01:50:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00119""}" +MSG-0000656,INT-000320,client,I'm ready to book. What's the token amount?,2025-02-27T02:33:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00119""}" +MSG-0000657,INT-000323,agent,Of course. I'll arrange a dedicated viewing.,2024-04-25T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00120""}" +MSG-0000658,INT-000323,client,Received. The layout looks good. Is there a east facing option?,2024-04-25T00:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00120""}" +MSG-0000659,INT-000323,agent,It's approximately 12559 per sqft all-inclusive. Best price in New Town right now.,2024-04-25T00:50:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00120""}" +MSG-0000660,INT-000323,client,Can you hold the unit for 2 days? I need to finalize with my father.,2024-04-25T00:42:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00120""}" +MSG-0000661,INT-000323,client,My wife wants to see the sample flat again. Can we come tomorrow?,2024-04-25T01:04:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00120""}" +MSG-0000662,INT-000323,client,We're comparing this with Sugam Prakriti. What makes this better?,2024-04-25T00:45:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00120""}" +MSG-0000663,INT-000323,agent,"Yes, Tower B has east facing units on floors 8-15.",2024-04-25T01:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00120""}" +MSG-0000664,INT-000323,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2024-04-25T06:32:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00120""}" +MSG-0000665,INT-000324,client,"Hi, I saw the listing for Godrej Blue. Is the 3 BHK still available?",2024-04-27T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00121""}" +MSG-0000666,INT-000324,client,Can you hold the unit for 2 days? I need to finalize with my father.,2024-04-27T00:21:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00121""}" +MSG-0000667,INT-000324,client,Home loan. Pre-approved up to 4-6 Cr.,2024-04-27T01:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00121""}" +MSG-0000668,INT-000324,client,We're comparing this with Siddha Sky Waterfront. What makes this better?,2024-04-27T02:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00121""}" +MSG-0000669,INT-000326,agent,Sending it now. Also attaching the project brochure.,2024-05-16T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00122""}" +MSG-0000670,INT-000326,client,Thank you. What's the current price per sqft?,2024-05-16T00:05:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00122""}" +MSG-0000671,INT-000326,agent,It's approximately 11859 per sqft all-inclusive. Best price in New Town right now.,2024-05-16T01:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00122""}" +MSG-0000672,INT-000326,client,I'm ready to book. What's the token amount?,2024-05-16T02:39:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00122""}" +MSG-0000673,INT-000326,client,We visited the site today. The location is excellent but the approach road is narrow.,2024-05-16T01:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00122""}" +MSG-0000674,INT-000326,client,Thank you. What's the current price per sqft?,2024-05-16T02:15:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00122""}" +MSG-0000675,INT-000326,agent,Sending it now. Also attaching the project brochure.,2024-05-16T05:18:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00122""}" +MSG-0000676,INT-000326,client,Can we schedule for this Saturday around 11 AM?,2024-05-16T02:34:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00122""}" +MSG-0000677,INT-000330,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2024-06-27T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00123""}" +MSG-0000678,INT-000330,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2024-06-27T00:25:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00123""}" +MSG-0000679,INT-000330,client,That's slightly above my budget. Any flexibility?,2024-06-27T01:26:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00123""}" +MSG-0000680,INT-000330,client,Can we schedule for this Saturday around 11 AM?,2024-06-27T00:18:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00123""}" +MSG-0000681,INT-000330,client,"Hi, I saw the listing for Godrej Blue. Is the 3 BHK still available?",2024-06-27T03:04:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00123""}" +MSG-0000682,INT-000332,agent,Of course. I'll arrange a dedicated viewing.,2024-07-06T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00124""}" +MSG-0000683,INT-000332,agent,Sending it now. Also attaching the project brochure.,2024-07-06T00:31:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00124""}" +MSG-0000684,INT-000332,agent,"Yes, Tower B has east facing units on floors 8-15.",2024-07-06T00:52:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00124""}" +MSG-0000685,INT-000332,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2024-07-06T02:42:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00124""}" +MSG-0000686,INT-000332,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2024-07-06T03:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00124""}" +MSG-0000687,INT-000332,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2024-07-06T02:05:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00124""}" +MSG-0000688,INT-000338,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2026-03-07T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00125""}" +MSG-0000689,INT-000338,agent,Of course. I'll arrange a dedicated viewing.,2026-03-07T00:55:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00125""}" +MSG-0000690,INT-000338,client,I'm ready to book. What's the token amount?,2026-03-07T01:18:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00125""}" +MSG-0000691,INT-000338,client,"Hi, I saw the listing for DTC Good Earth. Is the 3 BHK still available?",2026-03-07T02:42:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00125""}" +MSG-0000692,INT-000340,client,We visited the site today. The location is excellent but the approach road is narrow.,2025-09-14T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00126""}" +MSG-0000693,INT-000340,client,Can you hold the unit for 2 days? I need to finalize with my father.,2025-09-14T00:37:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00126""}" +MSG-0000694,INT-000340,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2025-09-14T01:26:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00126""}" +MSG-0000695,INT-000340,agent,It's approximately 8287 per sqft all-inclusive. Best price in Howrah right now.,2025-09-14T02:09:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00126""}" +MSG-0000696,INT-000340,client,I'm ready to book. What's the token amount?,2025-09-14T03:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00126""}" +MSG-0000697,INT-000340,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2025-09-14T04:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00126""}" +MSG-0000698,INT-000340,client,Thank you. What's the current price per sqft?,2025-09-14T02:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00126""}" +MSG-0000699,INT-000342,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2025-10-02T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00127""}" +MSG-0000700,INT-000342,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2025-10-02T00:23:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00127""}" +MSG-0000701,INT-000342,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2025-10-02T01:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00127""}" +MSG-0000702,INT-000342,client,Can you hold the unit for 2 days? I need to finalize with my father.,2025-10-02T01:39:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00127""}" +MSG-0000703,INT-000342,client,Can you hold the unit for 2 days? I need to finalize with my father.,2025-10-02T03:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00127""}" +MSG-0000704,INT-000343,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2025-10-23T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00128""}" +MSG-0000705,INT-000343,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2025-10-23T00:28:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00128""}" +MSG-0000706,INT-000343,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2025-10-23T00:18:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00128""}" +MSG-0000707,INT-000343,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2025-10-23T01:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00128""}" +MSG-0000708,INT-000343,agent,Of course. I'll arrange a dedicated viewing.,2025-10-23T02:32:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00128""}" +MSG-0000709,INT-000343,client,Received. The layout looks good. Is there a east facing option?,2025-10-23T00:35:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00128""}" +MSG-0000710,INT-000344,client,"Hi, I saw the listing for Shriram Grand City. Is the 3 BHK still available?",2025-11-01T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00129""}" +MSG-0000711,INT-000344,client,That's slightly above my budget. Any flexibility?,2025-11-01T00:08:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00129""}" +MSG-0000712,INT-000344,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2025-11-01T00:56:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00129""}" +MSG-0000713,INT-000344,client,Thank you. What's the current price per sqft?,2025-11-01T02:27:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00129""}" +MSG-0000714,INT-000344,client,That's slightly above my budget. Any flexibility?,2025-11-01T02:16:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00129""}" +MSG-0000715,INT-000358,agent,Of course. I'll arrange a dedicated viewing.,2025-06-15T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00130""}" +MSG-0000716,INT-000358,client,I'm ready to book. What's the token amount?,2025-06-15T00:52:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00130""}" +MSG-0000717,INT-000358,client,I'm ready to book. What's the token amount?,2025-06-15T01:54:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00130""}" +MSG-0000718,INT-000358,client,What about the maintenance charges?,2025-06-15T01:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00130""}" +MSG-0000719,INT-000358,agent,It's approximately 13787 per sqft all-inclusive. Best price in New Town right now.,2025-06-15T02:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00130""}" +MSG-0000720,INT-000359,client,My wife wants to see the sample flat again. Can we come tomorrow?,2025-06-16T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00131""}" +MSG-0000721,INT-000359,client,We're comparing this with Merlin Avana. What makes this better?,2025-06-16T00:47:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00131""}" +MSG-0000722,INT-000359,agent,Of course. I'll arrange a dedicated viewing.,2025-06-16T01:16:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00131""}" +MSG-0000723,INT-000359,agent,"Yes sir, we have a few units available. When would you like to visit?",2025-06-16T02:27:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00131""}" +MSG-0000724,INT-000359,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2025-06-16T01:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00131""}" +MSG-0000725,INT-000359,client,We visited the site today. The location is excellent but the approach road is narrow.,2025-06-16T05:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00131""}" +MSG-0000726,INT-000359,client,Home loan. Pre-approved up to 15-25 Cr.,2025-06-16T03:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00131""}" +MSG-0000727,INT-000364,client,We're comparing this with Ambuja Utpaala. What makes this better?,2025-07-25T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00132""}" +MSG-0000728,INT-000364,client,Can you share the floor plan?,2025-07-25T00:39:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00132""}" +MSG-0000729,INT-000364,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2025-07-25T00:18:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00132""}" +MSG-0000730,INT-000364,client,That's slightly above my budget. Any flexibility?,2025-07-25T02:42:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00132""}" +MSG-0000731,INT-000364,agent,"Yes, Tower B has east facing units on floors 8-15.",2025-07-25T02:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00132""}" +MSG-0000732,INT-000364,client,What about the maintenance charges?,2025-07-25T01:10:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00132""}" +MSG-0000733,INT-000364,agent,Of course. I'll arrange a dedicated viewing.,2025-07-25T04:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00132""}" +MSG-0000734,INT-000368,client,Home loan. Pre-approved up to 1.5-2.5 Cr.,2026-01-05T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00133""}" +MSG-0000735,INT-000368,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2026-01-05T00:52:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00133""}" +MSG-0000736,INT-000368,client,We visited the site today. The location is excellent but the approach road is narrow.,2026-01-05T01:04:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00133""}" +MSG-0000737,INT-000368,client,We visited the site today. The location is excellent but the approach road is narrow.,2026-01-05T01:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00133""}" +MSG-0000738,INT-000368,client,Can we schedule for this Saturday around 11 AM?,2026-01-05T03:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00133""}" +MSG-0000739,INT-000368,client,My wife wants to see the sample flat again. Can we come tomorrow?,2026-01-05T03:10:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00133""}" +MSG-0000740,INT-000368,client,Can you hold the unit for 2 days? I need to finalize with my father.,2026-01-05T04:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00133""}" +MSG-0000741,INT-000372,agent,Of course. I'll arrange a dedicated viewing.,2026-01-10T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00134""}" +MSG-0000742,INT-000372,client,We visited the site today. The location is excellent but the approach road is narrow.,2026-01-10T00:25:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00134""}" +MSG-0000743,INT-000372,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2026-01-10T00:56:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00134""}" +MSG-0000744,INT-000372,client,My wife wants to see the sample flat again. Can we come tomorrow?,2026-01-10T00:45:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00134""}" +MSG-0000745,INT-000372,client,Received. The layout looks good. Is there a east facing option?,2026-01-10T02:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00134""}" +MSG-0000746,INT-000372,client,My wife wants to see the sample flat again. Can we come tomorrow?,2026-01-10T05:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00134""}" +MSG-0000747,INT-000372,client,Thank you. What's the current price per sqft?,2026-01-10T01:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00134""}" +MSG-0000748,INT-000373,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2026-02-01T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00135""}" +MSG-0000749,INT-000373,agent,Of course. I'll arrange a dedicated viewing.,2026-02-01T00:53:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00135""}" +MSG-0000750,INT-000373,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2026-02-01T01:54:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00135""}" +MSG-0000751,INT-000373,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2026-02-01T02:39:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00135""}" +MSG-0000752,INT-000373,agent,"Rs 3 per sqft per month. Includes housekeeping, security, and common area maintenance.",2026-02-01T02:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00135""}" +MSG-0000753,INT-000373,client,Thank you. What's the current price per sqft?,2026-02-01T01:10:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00135""}" +MSG-0000754,INT-000373,client,Received. The layout looks good. Is there a east facing option?,2026-02-01T05:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00135""}" +MSG-0000755,INT-000379,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2025-10-24T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00136""}" +MSG-0000756,INT-000379,client,Can we schedule for this Saturday around 11 AM?,2025-10-24T00:39:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00136""}" +MSG-0000757,INT-000379,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2025-10-24T00:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00136""}" +MSG-0000758,INT-000379,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2025-10-24T01:03:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00136""}" +MSG-0000759,INT-000381,client,Can we schedule for this Saturday around 11 AM?,2025-11-17T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00137""}" +MSG-0000760,INT-000381,client,Can you hold the unit for 2 days? I need to finalize with my father.,2025-11-17T00:29:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00137""}" +MSG-0000761,INT-000381,client,I'm ready to book. What's the token amount?,2025-11-17T01:54:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00137""}" +MSG-0000762,INT-000381,agent,Of course. I'll arrange a dedicated viewing.,2025-11-17T00:18:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00137""}" +MSG-0000763,INT-000381,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2025-11-17T02:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00137""}" +MSG-0000764,INT-000381,client,Received. The layout looks good. Is there a east facing option?,2025-11-17T04:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00137""}" +MSG-0000765,INT-000381,client,"Hi, I saw the listing for Siddha Sky Waterfront. Is the 3 BHK still available?",2025-11-17T05:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00137""}" +MSG-0000766,INT-000383,client,Home loan. Pre-approved up to 1.5-2.5 Cr.,2025-12-02T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00138""}" +MSG-0000767,INT-000383,client,Thank you. What's the current price per sqft?,2025-12-02T00:44:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00138""}" +MSG-0000768,INT-000383,client,What about the maintenance charges?,2025-12-02T01:06:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00138""}" +MSG-0000769,INT-000383,agent,"Yes, Tower B has east facing units on floors 8-15.",2025-12-02T02:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00138""}" +MSG-0000770,INT-000384,client,Thank you. What's the current price per sqft?,2025-12-08T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00139""}" +MSG-0000771,INT-000384,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2025-12-08T00:54:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00139""}" +MSG-0000772,INT-000384,agent,Sending it now. Also attaching the project brochure.,2025-12-08T01:04:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00139""}" +MSG-0000773,INT-000384,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2025-12-08T02:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00139""}" +MSG-0000774,INT-000384,client,Received. The layout looks good. Is there a east facing option?,2025-12-08T00:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00139""}" +MSG-0000775,INT-000390,client,We visited the site today. The location is excellent but the approach road is narrow.,2025-01-16T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00140""}" +MSG-0000776,INT-000390,client,I'm ready to book. What's the token amount?,2025-01-16T00:23:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00140""}" +MSG-0000777,INT-000390,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2025-01-16T00:22:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00140""}" +MSG-0000778,INT-000390,client,My wife wants to see the sample flat again. Can we come tomorrow?,2025-01-16T01:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00140""}" +MSG-0000779,INT-000390,client,My wife wants to see the sample flat again. Can we come tomorrow?,2025-01-16T02:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00140""}" +MSG-0000780,INT-000390,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2025-01-16T03:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00140""}" +MSG-0000781,INT-000390,client,Can we schedule for this Saturday around 11 AM?,2025-01-16T03:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00140""}" +MSG-0000782,INT-000391,client,Can we schedule for this Saturday around 11 AM?,2025-01-27T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00141""}" +MSG-0000783,INT-000391,client,Received. The layout looks good. Is there a east facing option?,2025-01-27T00:13:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00141""}" +MSG-0000784,INT-000391,client,Can you share the floor plan?,2025-01-27T01:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00141""}" +MSG-0000785,INT-000391,client,We're comparing this with DTC Sojon. What makes this better?,2025-01-27T02:21:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00141""}" +MSG-0000786,INT-000391,client,That's slightly above my budget. Any flexibility?,2025-01-27T01:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00141""}" +MSG-0000787,INT-000391,agent,It's approximately 12947 per sqft all-inclusive. Best price in New Town right now.,2025-01-27T00:35:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00141""}" +MSG-0000788,INT-000391,agent,"Yes sir, we have a few units available. When would you like to visit?",2025-01-27T03:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00141""}" +MSG-0000789,INT-000393,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2025-03-11T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00142""}" +MSG-0000790,INT-000393,agent,"Yes, Tower B has east facing units on floors 8-15.",2025-03-11T00:21:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00142""}" +MSG-0000791,INT-000393,client,Can you share the floor plan?,2025-03-11T00:22:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00142""}" +MSG-0000792,INT-000393,client,Received. The layout looks good. Is there a east facing option?,2025-03-11T01:54:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00142""}" +MSG-0000793,INT-000393,client,Thank you. What's the current price per sqft?,2025-03-11T00:28:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00142""}" +MSG-0000794,INT-000396,client,Can you share the floor plan?,2024-04-17T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00143""}" +MSG-0000795,INT-000396,client,Thank you. What's the current price per sqft?,2024-04-17T00:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00143""}" +MSG-0000796,INT-000396,client,Can you hold the unit for 2 days? I need to finalize with my father.,2024-04-17T01:50:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00143""}" +MSG-0000797,INT-000396,client,"Hi, I saw the listing for Siddha Sky Waterfront. Is the 3 BHK still available?",2024-04-17T01:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00143""}" +MSG-0000798,INT-000396,client,That's slightly above my budget. Any flexibility?,2024-04-17T03:44:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00143""}" +MSG-0000799,INT-000399,client,What about the maintenance charges?,2024-04-28T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00144""}" +MSG-0000800,INT-000399,agent,It's approximately 10588 per sqft all-inclusive. Best price in Beliaghata right now.,2024-04-28T00:08:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00144""}" +MSG-0000801,INT-000399,agent,"Rs 5 per sqft per month. Includes housekeeping, security, and common area maintenance.",2024-04-28T00:44:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00144""}" +MSG-0000802,INT-000399,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2024-04-28T01:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00144""}" +MSG-0000803,INT-000399,client,What about the maintenance charges?,2024-04-28T03:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00144""}" +MSG-0000804,INT-000403,client,Home loan. Pre-approved up to 15-25 Cr.,2024-06-27T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00145""}" +MSG-0000805,INT-000403,agent,It's approximately 12494 per sqft all-inclusive. Best price in Beliaghata right now.,2024-06-27T00:23:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00145""}" +MSG-0000806,INT-000403,client,What about the maintenance charges?,2024-06-27T01:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00145""}" +MSG-0000807,INT-000403,client,"Hi, I saw the listing for Siddha Sky Waterfront. Is the 3 BHK still available?",2024-06-27T01:18:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00145""}" +MSG-0000808,INT-000403,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2024-06-27T00:44:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00145""}" +MSG-0000809,INT-000403,agent,It's approximately 10449 per sqft all-inclusive. Best price in Beliaghata right now.,2024-06-27T02:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00145""}" +MSG-0000810,INT-000403,client,Can you hold the unit for 2 days? I need to finalize with my father.,2024-06-27T05:06:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00145""}" +MSG-0000811,INT-000409,client,My wife wants to see the sample flat again. Can we come tomorrow?,2025-05-17T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00146""}" +MSG-0000812,INT-000409,agent,"Rs 3 per sqft per month. Includes housekeeping, security, and common area maintenance.",2025-05-17T00:45:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00146""}" +MSG-0000813,INT-000409,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2025-05-17T00:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00146""}" +MSG-0000814,INT-000409,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2025-05-17T02:18:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00146""}" +MSG-0000815,INT-000409,client,Thank you. What's the current price per sqft?,2025-05-17T03:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00146""}" +MSG-0000816,INT-000409,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2025-05-17T00:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00146""}" +MSG-0000817,INT-000412,agent,"Yes sir, we have a few units available. When would you like to visit?",2025-05-31T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00147""}" +MSG-0000818,INT-000412,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2025-05-31T00:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00147""}" +MSG-0000819,INT-000412,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2025-05-31T00:50:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00147""}" +MSG-0000820,INT-000416,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2024-01-29T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00148""}" +MSG-0000821,INT-000416,agent,It's approximately 8595 per sqft all-inclusive. Best price in Howrah right now.,2024-01-29T00:44:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00148""}" +MSG-0000822,INT-000416,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2024-01-29T01:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00148""}" +MSG-0000823,INT-000416,client,We're comparing this with Atri Surya Toron. What makes this better?,2024-01-29T01:42:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00148""}" +MSG-0000824,INT-000416,agent,Of course. I'll arrange a dedicated viewing.,2024-01-29T00:44:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00148""}" +MSG-0000825,INT-000416,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2024-01-29T02:45:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00148""}" +MSG-0000826,INT-000419,client,Thank you. What's the current price per sqft?,2024-02-20T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00149""}" +MSG-0000827,INT-000419,client,Can we schedule for this Saturday around 11 AM?,2024-02-20T00:34:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00149""}" +MSG-0000828,INT-000419,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2024-02-20T00:14:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00149""}" +MSG-0000829,INT-000419,client,Can we schedule for this Saturday around 11 AM?,2024-02-20T00:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00149""}" +MSG-0000830,INT-000419,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2024-02-20T02:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00149""}" +MSG-0000831,INT-000428,client,I'm ready to book. What's the token amount?,2024-02-24T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00150""}" +MSG-0000832,INT-000428,client,My wife wants to see the sample flat again. Can we come tomorrow?,2024-02-24T00:05:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00150""}" +MSG-0000833,INT-000428,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2024-02-24T00:10:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00150""}" +MSG-0000834,INT-000428,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2024-02-24T00:54:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00150""}" +MSG-0000835,INT-000428,client,Thank you. What's the current price per sqft?,2024-02-24T03:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00150""}" +MSG-0000836,INT-000428,client,We visited the site today. The location is excellent but the approach road is narrow.,2024-02-24T02:10:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00150""}" +MSG-0000837,INT-000429,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2024-02-29T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00151""}" +MSG-0000838,INT-000429,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2024-02-29T00:26:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00151""}" +MSG-0000839,INT-000429,agent,"Yes sir, we have a few units available. When would you like to visit?",2024-02-29T01:46:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00151""}" +MSG-0000840,INT-000429,agent,"Yes, Tower B has east facing units on floors 8-15.",2024-02-29T02:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00151""}" +MSG-0000841,INT-000430,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2024-02-29T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00152""}" +MSG-0000842,INT-000430,agent,Of course. I'll arrange a dedicated viewing.,2024-02-29T00:45:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00152""}" +MSG-0000843,INT-000430,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2024-02-29T00:26:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00152""}" +MSG-0000844,INT-000430,client,Thank you. What's the current price per sqft?,2024-02-29T01:21:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00152""}" +MSG-0000845,INT-000436,client,Thank you. What's the current price per sqft?,2024-04-17T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00153""}" +MSG-0000846,INT-000436,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2024-04-17T00:29:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00153""}" +MSG-0000847,INT-000436,client,Home loan. Pre-approved up to 10-15 Cr.,2024-04-17T01:46:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00153""}" +MSG-0000848,INT-000437,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2024-04-20T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00154""}" +MSG-0000849,INT-000437,client,"Hi, I saw the listing for Godrej Elevate. Is the 3 BHK still available?",2024-04-20T00:43:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00154""}" +MSG-0000850,INT-000437,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2024-04-20T01:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00154""}" +MSG-0000851,INT-000437,agent,Sending it now. Also attaching the project brochure.,2024-04-20T02:54:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00154""}" +MSG-0000852,INT-000437,agent,"Yes sir, we have a few units available. When would you like to visit?",2024-04-20T02:56:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00154""}" +MSG-0000853,INT-000437,agent,Sending it now. Also attaching the project brochure.,2024-04-20T02:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00154""}" +MSG-0000854,INT-000439,client,My wife wants to see the sample flat again. Can we come tomorrow?,2024-04-25T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00155""}" +MSG-0000855,INT-000439,client,Can we schedule for this Saturday around 11 AM?,2024-04-25T00:27:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00155""}" +MSG-0000856,INT-000439,client,What about the maintenance charges?,2024-04-25T00:34:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00155""}" +MSG-0000857,INT-000439,agent,It's approximately 10897 per sqft all-inclusive. Best price in Dum Dum right now.,2024-04-25T01:15:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00155""}" +MSG-0000858,INT-000439,client,"Hi, I saw the listing for Godrej Elevate. Is the 3 BHK still available?",2024-04-25T01:08:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00155""}" +MSG-0000859,INT-000443,agent,"Yes sir, we have a few units available. When would you like to visit?",2024-11-22T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00156""}" +MSG-0000860,INT-000443,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2024-11-22T00:08:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00156""}" +MSG-0000861,INT-000443,agent,Sending it now. Also attaching the project brochure.,2024-11-22T01:06:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00156""}" +MSG-0000862,INT-000444,client,We're comparing this with Godrej Elevate. What makes this better?,2024-11-24T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00157""}" +MSG-0000863,INT-000444,agent,"Yes, Tower B has east facing units on floors 8-15.",2024-11-24T00:34:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00157""}" +MSG-0000864,INT-000444,agent,"Yes, Tower B has east facing units on floors 8-15.",2024-11-24T01:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00157""}" +MSG-0000865,INT-000444,client,Received. The layout looks good. Is there a east facing option?,2024-11-24T02:42:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00157""}" +MSG-0000866,INT-000444,client,Home loan. Pre-approved up to 10-15 Cr.,2024-11-24T00:56:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00157""}" +MSG-0000867,INT-000444,agent,It's approximately 14553 per sqft all-inclusive. Best price in Beliaghata right now.,2024-11-24T02:25:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00157""}" +MSG-0000868,INT-000444,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2024-11-24T01:42:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00157""}" +MSG-0000869,INT-000446,client,I'm ready to book. What's the token amount?,2024-12-27T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00158""}" +MSG-0000870,INT-000446,client,Can you hold the unit for 2 days? I need to finalize with my father.,2024-12-27T00:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00158""}" +MSG-0000871,INT-000446,client,Can we schedule for this Saturday around 11 AM?,2024-12-27T01:38:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00158""}" +MSG-0000872,INT-000446,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2024-12-27T01:33:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00158""}" +MSG-0000873,INT-000446,client,"Hi, I saw the listing for Siddha Sky Waterfront. Is the 3 BHK still available?",2024-12-27T01:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00158""}" +MSG-0000874,INT-000450,client,Can you hold the unit for 2 days? I need to finalize with my father.,2026-02-05T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00159""}" +MSG-0000875,INT-000450,client,Home loan. Pre-approved up to 10-15 Cr.,2026-02-05T00:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00159""}" +MSG-0000876,INT-000450,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2026-02-05T00:14:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00159""}" +MSG-0000877,INT-000450,client,I'm ready to book. What's the token amount?,2026-02-05T00:18:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00159""}" +MSG-0000878,INT-000458,client,We're comparing this with Atri Aqua. What makes this better?,2024-09-16T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00160""}" +MSG-0000879,INT-000458,client,We're comparing this with Ambuja Utpaala. What makes this better?,2024-09-16T00:41:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00160""}" +MSG-0000880,INT-000458,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2024-09-16T01:08:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00160""}" +MSG-0000881,INT-000458,client,"Hi, I saw the listing for Shriram Grand City. Is the 3 BHK still available?",2024-09-16T02:54:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00160""}" +MSG-0000882,INT-000458,client,Can we schedule for this Saturday around 11 AM?,2024-09-16T01:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00160""}" +MSG-0000883,INT-000458,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2024-09-16T02:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00160""}" +MSG-0000884,INT-000458,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2024-09-16T03:42:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00160""}" +MSG-0000885,INT-000464,client,My wife wants to see the sample flat again. Can we come tomorrow?,2024-11-14T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00161""}" +MSG-0000886,INT-000464,agent,"Yes sir, we have a few units available. When would you like to visit?",2024-11-14T00:22:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00161""}" +MSG-0000887,INT-000464,agent,"Rs 7 per sqft per month. Includes housekeeping, security, and common area maintenance.",2024-11-14T01:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00161""}" +MSG-0000888,INT-000464,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2024-11-14T00:57:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00161""}" +MSG-0000889,INT-000464,client,We're comparing this with Atri Surya Toron. What makes this better?,2024-11-14T00:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00161""}" +MSG-0000890,INT-000465,client,Home loan. Pre-approved up to 1.5-2.5 Cr.,2024-11-15T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00162""}" +MSG-0000891,INT-000465,agent,"Rs 4 per sqft per month. Includes housekeeping, security, and common area maintenance.",2024-11-15T00:59:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00162""}" +MSG-0000892,INT-000465,client,That's slightly above my budget. Any flexibility?,2024-11-15T01:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00162""}" +MSG-0000893,INT-000465,client,"Hi, I saw the listing for Shriram Grand City. Is the 3 BHK still available?",2024-11-15T01:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00162""}" +MSG-0000894,INT-000465,client,We're comparing this with Ambuja Utpaala. What makes this better?,2024-11-15T01:04:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00162""}" +MSG-0000895,INT-000465,client,Received. The layout looks good. Is there a east facing option?,2024-11-15T04:05:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00162""}" +MSG-0000896,INT-000467,agent,"Yes sir, we have a few units available. When would you like to visit?",2024-11-22T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00163""}" +MSG-0000897,INT-000467,agent,Sending it now. Also attaching the project brochure.,2024-11-22T00:21:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00163""}" +MSG-0000898,INT-000467,client,Can you share the floor plan?,2024-11-22T01:04:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00163""}" +MSG-0000899,INT-000467,agent,Of course. I'll arrange a dedicated viewing.,2024-11-22T03:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00163""}" +MSG-0000900,INT-000467,client,My wife wants to see the sample flat again. Can we come tomorrow?,2024-11-22T01:08:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00163""}" +MSG-0000901,INT-000468,agent,Of course. I'll arrange a dedicated viewing.,2024-11-22T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00164""}" +MSG-0000902,INT-000468,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2024-11-22T00:25:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00164""}" +MSG-0000903,INT-000468,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2024-11-22T00:56:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00164""}" +MSG-0000904,INT-000468,client,My wife wants to see the sample flat again. Can we come tomorrow?,2024-11-22T01:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00164""}" +MSG-0000905,INT-000468,agent,It's approximately 13412 per sqft all-inclusive. Best price in Howrah right now.,2024-11-22T03:44:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00164""}" +MSG-0000906,INT-000468,agent,"Rs 8 per sqft per month. Includes housekeeping, security, and common area maintenance.",2024-11-22T02:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00164""}" +MSG-0000907,INT-000468,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2024-11-22T04:54:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00164""}" +MSG-0000908,INT-000468,client,Can you share the floor plan?,2024-11-22T06:11:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00164""}" +MSG-0000909,INT-000472,client,Thank you. What's the current price per sqft?,2026-01-16T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00165""}" +MSG-0000910,INT-000472,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2026-01-16T00:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00165""}" +MSG-0000911,INT-000472,client,Can you share the floor plan?,2026-01-16T00:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00165""}" +MSG-0000912,INT-000472,client,That's slightly above my budget. Any flexibility?,2026-01-16T02:09:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00165""}" +MSG-0000913,INT-000472,client,Home loan. Pre-approved up to 15-25 Cr.,2026-01-16T01:16:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00165""}" +MSG-0000914,INT-000472,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2026-01-16T00:50:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00165""}" +MSG-0000915,INT-000475,client,I'm ready to book. What's the token amount?,2026-01-29T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00166""}" +MSG-0000916,INT-000475,client,That's slightly above my budget. Any flexibility?,2026-01-29T00:23:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00166""}" +MSG-0000917,INT-000475,client,Can you share the floor plan?,2026-01-29T01:04:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00166""}" +MSG-0000918,INT-000476,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2026-02-21T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00167""}" +MSG-0000919,INT-000476,agent,Sending it now. Also attaching the project brochure.,2026-02-21T00:34:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00167""}" +MSG-0000920,INT-000476,client,I'm ready to book. What's the token amount?,2026-02-21T00:32:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00167""}" +MSG-0000921,INT-000476,agent,Of course. I'll arrange a dedicated viewing.,2026-02-21T01:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00167""}" +MSG-0000922,INT-000476,client,We visited the site today. The location is excellent but the approach road is narrow.,2026-02-21T03:08:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00167""}" +MSG-0000923,INT-000480,agent,"Rs 5 per sqft per month. Includes housekeeping, security, and common area maintenance.",2025-09-05T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00168""}" +MSG-0000924,INT-000480,client,"Hi, I saw the listing for Atri Aqua. Is the 3 BHK still available?",2025-09-05T00:10:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00168""}" +MSG-0000925,INT-000480,client,My wife wants to see the sample flat again. Can we come tomorrow?,2025-09-05T00:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00168""}" +MSG-0000926,INT-000480,agent,"Yes, Tower B has east facing units on floors 8-15.",2025-09-05T00:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00168""}" +MSG-0000927,INT-000480,agent,"Yes sir, we have a few units available. When would you like to visit?",2025-09-05T02:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00168""}" +MSG-0000928,INT-000480,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2025-09-05T00:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00168""}" +MSG-0000929,INT-000480,agent,"Yes, Tower B has east facing units on floors 8-15.",2025-09-05T03:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00168""}" +MSG-0000930,INT-000484,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2025-04-20T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00169""}" +MSG-0000931,INT-000484,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2025-04-20T00:07:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00169""}" +MSG-0000932,INT-000484,client,Can you hold the unit for 2 days? I need to finalize with my father.,2025-04-20T00:18:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00169""}" +MSG-0000933,INT-000484,client,Can you hold the unit for 2 days? I need to finalize with my father.,2025-04-20T02:42:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00169""}" +MSG-0000934,INT-000484,client,We're comparing this with Atri Surya Toron. What makes this better?,2025-04-20T02:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00169""}" +MSG-0000935,INT-000484,client,What about the maintenance charges?,2025-04-20T04:05:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00169""}" +MSG-0000936,INT-000484,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2025-04-20T00:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00169""}" +MSG-0000937,INT-000485,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2025-04-27T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00170""}" +MSG-0000938,INT-000485,client,Can we schedule for this Saturday around 11 AM?,2025-04-27T00:08:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00170""}" +MSG-0000939,INT-000485,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2025-04-27T00:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00170""}" +MSG-0000940,INT-000485,client,Home loan. Pre-approved up to 1.5-2.5 Cr.,2025-04-27T01:57:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00170""}" +MSG-0000941,INT-000485,agent,"Rs 4 per sqft per month. Includes housekeeping, security, and common area maintenance.",2025-04-27T00:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00170""}" +MSG-0000942,INT-000485,client,My wife wants to see the sample flat again. Can we come tomorrow?,2025-04-27T00:50:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00170""}" +MSG-0000943,INT-000486,agent,"Rs 6 per sqft per month. Includes housekeeping, security, and common area maintenance.",2025-05-01T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00171""}" +MSG-0000944,INT-000486,client,Received. The layout looks good. Is there a east facing option?,2025-05-01T00:32:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00171""}" +MSG-0000945,INT-000486,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2025-05-01T01:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00171""}" +MSG-0000946,INT-000486,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2025-05-01T01:33:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00171""}" +MSG-0000947,INT-000486,client,Can you hold the unit for 2 days? I need to finalize with my father.,2025-05-01T01:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00171""}" +MSG-0000948,INT-000486,client,Received. The layout looks good. Is there a east facing option?,2025-05-01T04:50:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00171""}" +MSG-0000949,INT-000489,client,Received. The layout looks good. Is there a east facing option?,2025-05-26T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00172""}" +MSG-0000950,INT-000489,client,"Hi, I saw the listing for Siddha Sky Waterfront. Is the 3 BHK still available?",2025-05-26T00:56:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00172""}" +MSG-0000951,INT-000489,client,We visited the site today. The location is excellent but the approach road is narrow.,2025-05-26T00:32:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00172""}" +MSG-0000952,INT-000489,client,We're comparing this with Siddha Suburbia Bungalow. What makes this better?,2025-05-26T01:51:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00172""}" +MSG-0000953,INT-000489,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2025-05-26T02:04:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00172""}" +MSG-0000954,INT-000489,client,That's slightly above my budget. Any flexibility?,2025-05-26T00:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00172""}" +MSG-0000955,INT-000492,client,What about the maintenance charges?,2025-06-14T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00173""}" +MSG-0000956,INT-000492,agent,It's approximately 14509 per sqft all-inclusive. Best price in Beliaghata right now.,2025-06-14T00:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00173""}" +MSG-0000957,INT-000492,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2025-06-14T00:54:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00173""}" +MSG-0000958,INT-000492,client,My wife wants to see the sample flat again. Can we come tomorrow?,2025-06-14T02:21:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00173""}" +MSG-0000959,INT-000492,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2025-06-14T02:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00173""}" +MSG-0000960,INT-000496,agent,"Yes, Tower B has east facing units on floors 8-15.",2024-11-26T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00174""}" +MSG-0000961,INT-000496,client,That's slightly above my budget. Any flexibility?,2024-11-26T00:39:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00174""}" +MSG-0000962,INT-000496,client,Received. The layout looks good. Is there a east facing option?,2024-11-26T00:42:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00174""}" +MSG-0000963,INT-000496,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2024-11-26T01:15:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00174""}" +MSG-0000964,INT-000496,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2024-11-26T00:32:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00174""}" +MSG-0000965,INT-000496,agent,"Rs 7 per sqft per month. Includes housekeeping, security, and common area maintenance.",2024-11-26T03:10:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00174""}" +MSG-0000966,INT-000497,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2024-12-09T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00175""}" +MSG-0000967,INT-000497,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2024-12-09T01:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00175""}" +MSG-0000968,INT-000497,agent,It's approximately 12918 per sqft all-inclusive. Best price in Barasat right now.,2024-12-09T01:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00175""}" +MSG-0000969,INT-000497,client,That's slightly above my budget. Any flexibility?,2024-12-09T01:51:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00175""}" +MSG-0000970,INT-000497,client,Can we schedule for this Saturday around 11 AM?,2024-12-09T02:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00175""}" +MSG-0000971,INT-000499,agent,"Yes, Tower B has east facing units on floors 8-15.",2024-12-10T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00176""}" +MSG-0000972,INT-000499,agent,"Yes, Tower B has east facing units on floors 8-15.",2024-12-10T00:11:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00176""}" +MSG-0000973,INT-000499,client,We're comparing this with Atri Surya Toron. What makes this better?,2024-12-10T00:46:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00176""}" +MSG-0000974,INT-000504,client,That's slightly above my budget. Any flexibility?,2024-06-04T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00177""}" +MSG-0000975,INT-000504,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2024-06-04T00:28:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00177""}" +MSG-0000976,INT-000504,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2024-06-04T01:04:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00177""}" +MSG-0000977,INT-000504,agent,"Rs 7 per sqft per month. Includes housekeeping, security, and common area maintenance.",2024-06-04T02:42:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00177""}" +MSG-0000978,INT-000507,client,"Hi, I saw the listing for Sugam Prakriti. Is the 3 BHK still available?",2024-06-24T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00178""}" +MSG-0000979,INT-000507,client,Can you share the floor plan?,2024-06-24T00:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00178""}" +MSG-0000980,INT-000507,client,Can you share the floor plan?,2024-06-24T01:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00178""}" +MSG-0000981,INT-000507,client,My wife wants to see the sample flat again. Can we come tomorrow?,2024-06-24T02:06:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00178""}" +MSG-0000982,INT-000507,client,Can you share the floor plan?,2024-06-24T01:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00178""}" +MSG-0000983,INT-000507,client,Home loan. Pre-approved up to 15-25 Cr.,2024-06-24T03:50:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00178""}" +MSG-0000984,INT-000507,client,Received. The layout looks good. Is there a east facing option?,2024-06-24T03:18:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00178""}" +MSG-0000985,INT-000507,client,What about the maintenance charges?,2024-06-24T00:42:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00178""}" +MSG-0000986,INT-000513,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2025-01-26T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00179""}" +MSG-0000987,INT-000513,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2025-01-26T00:34:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00179""}" +MSG-0000988,INT-000513,client,We visited the site today. The location is excellent but the approach road is narrow.,2025-01-26T00:26:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00179""}" +MSG-0000989,INT-000520,client,That's slightly above my budget. Any flexibility?,2026-02-20T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00180""}" +MSG-0000990,INT-000520,client,Can we schedule for this Saturday around 11 AM?,2026-02-20T00:32:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00180""}" +MSG-0000991,INT-000520,client,Can we schedule for this Saturday around 11 AM?,2026-02-20T01:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00180""}" +MSG-0000992,INT-000520,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2026-02-20T02:06:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00180""}" +MSG-0000993,INT-000520,agent,"Yes, Tower B has east facing units on floors 8-15.",2026-02-20T00:56:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00180""}" +MSG-0000994,INT-000520,client,I'm ready to book. What's the token amount?,2026-02-20T01:05:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00180""}" +MSG-0000995,INT-000520,agent,Sending it now. Also attaching the project brochure.,2026-02-20T00:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00180""}" +MSG-0000996,INT-000534,client,We visited the site today. The location is excellent but the approach road is narrow.,2026-01-26T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00181""}" +MSG-0000997,INT-000534,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2026-01-26T00:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00181""}" +MSG-0000998,INT-000534,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2026-01-26T00:28:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00181""}" +MSG-0000999,INT-000534,agent,"Yes, Tower B has east facing units on floors 8-15.",2026-01-26T00:42:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00181""}" +MSG-0001000,INT-000534,agent,"Yes sir, we have a few units available. When would you like to visit?",2026-01-26T03:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00181""}" +MSG-0001001,INT-000538,client,"Hi, I saw the listing for DTC Sojon. Is the 3 BHK still available?",2024-05-26T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00182""}" +MSG-0001002,INT-000538,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2024-05-26T00:33:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00182""}" +MSG-0001003,INT-000538,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2024-05-26T01:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00182""}" +MSG-0001004,INT-000538,client,What about the maintenance charges?,2024-05-26T02:33:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00182""}" +MSG-0001005,INT-000538,client,What about the maintenance charges?,2024-05-26T01:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00182""}" +MSG-0001006,INT-000538,client,That's slightly above my budget. Any flexibility?,2024-05-26T04:50:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00182""}" +MSG-0001007,INT-000538,agent,Sending it now. Also attaching the project brochure.,2024-05-26T04:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00182""}" +MSG-0001008,INT-000543,client,What about the maintenance charges?,2024-04-21T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00183""}" +MSG-0001009,INT-000543,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2024-04-21T00:28:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00183""}" +MSG-0001010,INT-000543,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2024-04-21T01:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00183""}" +MSG-0001011,INT-000543,agent,Sending it now. Also attaching the project brochure.,2024-04-21T00:54:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00183""}" +MSG-0001012,INT-000543,client,We're comparing this with Godrej Elevate. What makes this better?,2024-04-21T01:16:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00183""}" +MSG-0001013,INT-000543,client,Thank you. What's the current price per sqft?,2024-04-21T04:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00183""}" +MSG-0001014,INT-000543,agent,Of course. I'll arrange a dedicated viewing.,2024-04-21T05:42:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00183""}" +MSG-0001015,INT-000543,client,We're comparing this with DTC Good Earth. What makes this better?,2024-04-21T05:43:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00183""}" +MSG-0001016,INT-000544,client,My wife wants to see the sample flat again. Can we come tomorrow?,2024-04-29T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00184""}" +MSG-0001017,INT-000544,client,Can you hold the unit for 2 days? I need to finalize with my father.,2024-04-29T00:28:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00184""}" +MSG-0001018,INT-000544,client,That's slightly above my budget. Any flexibility?,2024-04-29T01:04:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00184""}" +MSG-0001019,INT-000544,agent,Of course. I'll arrange a dedicated viewing.,2024-04-29T01:33:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00184""}" +MSG-0001020,INT-000551,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2024-07-01T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00185""}" +MSG-0001021,INT-000551,client,My wife wants to see the sample flat again. Can we come tomorrow?,2024-07-01T00:08:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00185""}" +MSG-0001022,INT-000551,client,Can we schedule for this Saturday around 11 AM?,2024-07-01T00:10:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00185""}" +MSG-0001023,INT-000551,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2024-07-01T00:27:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00185""}" +MSG-0001024,INT-000555,agent,"Rs 6 per sqft per month. Includes housekeeping, security, and common area maintenance.",2024-05-07T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00186""}" +MSG-0001025,INT-000555,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2024-05-07T00:11:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00186""}" +MSG-0001026,INT-000555,agent,"Rs 6 per sqft per month. Includes housekeeping, security, and common area maintenance.",2024-05-07T00:56:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00186""}" +MSG-0001027,INT-000555,client,Can we schedule for this Saturday around 11 AM?,2024-05-07T01:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00186""}" +MSG-0001028,INT-000555,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2024-05-07T01:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00186""}" +MSG-0001029,INT-000555,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2024-05-07T01:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00186""}" +MSG-0001030,INT-000555,client,My wife wants to see the sample flat again. Can we come tomorrow?,2024-05-07T04:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00186""}" +MSG-0001031,INT-000558,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2024-05-17T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00187""}" +MSG-0001032,INT-000558,client,What about the maintenance charges?,2024-05-17T00:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00187""}" +MSG-0001033,INT-000558,client,I'm ready to book. What's the token amount?,2024-05-17T00:56:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00187""}" +MSG-0001034,INT-000558,client,What about the maintenance charges?,2024-05-17T00:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00187""}" +MSG-0001035,INT-000558,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2024-05-17T02:16:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00187""}" +MSG-0001036,INT-000558,client,We visited the site today. The location is excellent but the approach road is narrow.,2024-05-17T01:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00187""}" +MSG-0001037,INT-000559,agent,Sending it now. Also attaching the project brochure.,2024-05-23T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00188""}" +MSG-0001038,INT-000559,client,Home loan. Pre-approved up to 4-6 Cr.,2024-05-23T00:51:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00188""}" +MSG-0001039,INT-000559,client,We're comparing this with Godrej Blue. What makes this better?,2024-05-23T00:52:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00188""}" +MSG-0001040,INT-000559,client,We're comparing this with Shriram Grand City. What makes this better?,2024-05-23T01:15:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00188""}" +MSG-0001041,INT-000560,agent,"Rs 5 per sqft per month. Includes housekeeping, security, and common area maintenance.",2024-06-08T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00189""}" +MSG-0001042,INT-000560,client,We're comparing this with Ambuja Utpaala. What makes this better?,2024-06-08T00:38:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00189""}" +MSG-0001043,INT-000560,client,Can you hold the unit for 2 days? I need to finalize with my father.,2024-06-08T01:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00189""}" +MSG-0001044,INT-000560,client,That's slightly above my budget. Any flexibility?,2024-06-08T02:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00189""}" +MSG-0001045,INT-000560,client,We're comparing this with Siddha Sky Waterfront. What makes this better?,2024-06-08T00:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00189""}" +MSG-0001046,INT-000560,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2024-06-08T04:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00189""}" +MSG-0001047,INT-000560,client,What about the maintenance charges?,2024-06-08T01:06:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00189""}" +MSG-0001048,INT-000560,client,Home loan. Pre-approved up to 6-10 Cr.,2024-06-08T04:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00189""}" +MSG-0001049,INT-000561,client,I'm ready to book. What's the token amount?,2024-06-12T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00190""}" +MSG-0001050,INT-000561,client,That's slightly above my budget. Any flexibility?,2024-06-12T00:54:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00190""}" +MSG-0001051,INT-000561,client,Received. The layout looks good. Is there a east facing option?,2024-06-12T01:26:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00190""}" +MSG-0001052,INT-000561,client,Received. The layout looks good. Is there a east facing option?,2024-06-12T02:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00190""}" +MSG-0001053,INT-000561,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2024-06-12T03:28:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00190""}" +MSG-0001054,INT-000569,agent,Of course. I'll arrange a dedicated viewing.,2024-06-25T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00191""}" +MSG-0001055,INT-000569,client,Can you share the floor plan?,2024-06-25T00:51:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00191""}" +MSG-0001056,INT-000569,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2024-06-25T01:52:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00191""}" +MSG-0001057,INT-000569,client,Can we schedule for this Saturday around 11 AM?,2024-06-25T01:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00191""}" +MSG-0001058,INT-000569,client,What about the maintenance charges?,2024-06-25T01:08:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00191""}" +MSG-0001059,INT-000576,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2024-12-07T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00192""}" +MSG-0001060,INT-000576,client,Received. The layout looks good. Is there a east facing option?,2024-12-07T00:11:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00192""}" +MSG-0001061,INT-000576,client,What about the maintenance charges?,2024-12-07T01:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00192""}" +MSG-0001062,INT-000576,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2024-12-07T01:27:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00192""}" +MSG-0001063,INT-000577,client,"Hi, I saw the listing for Atri Surya Toron. Is the 3 BHK still available?",2024-12-14T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00193""}" +MSG-0001064,INT-000577,client,I'm ready to book. What's the token amount?,2024-12-14T00:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00193""}" +MSG-0001065,INT-000577,agent,Of course. I'll arrange a dedicated viewing.,2024-12-14T00:22:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00193""}" +MSG-0001066,INT-000577,client,That's slightly above my budget. Any flexibility?,2024-12-14T01:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00193""}" +MSG-0001067,INT-000577,client,We visited the site today. The location is excellent but the approach road is narrow.,2024-12-14T00:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00193""}" +MSG-0001068,INT-000577,client,Can you share the floor plan?,2024-12-14T03:45:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00193""}" +MSG-0001069,INT-000577,client,Received. The layout looks good. Is there a east facing option?,2024-12-14T05:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00193""}" +MSG-0001070,INT-000577,client,"Hi, I saw the listing for Atri Surya Toron. Is the 3 BHK still available?",2024-12-14T06:04:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00193""}" +MSG-0001071,INT-000578,client,My wife wants to see the sample flat again. Can we come tomorrow?,2025-01-06T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00194""}" +MSG-0001072,INT-000578,agent,Sending it now. Also attaching the project brochure.,2025-01-06T00:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00194""}" +MSG-0001073,INT-000578,agent,"Rs 6 per sqft per month. Includes housekeeping, security, and common area maintenance.",2025-01-06T01:06:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00194""}" +MSG-0001074,INT-000578,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2025-01-06T01:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00194""}" +MSG-0001075,INT-000578,client,Can you share the floor plan?,2025-01-06T03:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00194""}" +MSG-0001076,INT-000581,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2025-04-22T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00195""}" +MSG-0001077,INT-000581,agent,"Yes sir, we have a few units available. When would you like to visit?",2025-04-22T00:41:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00195""}" +MSG-0001078,INT-000581,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2025-04-22T00:10:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00195""}" +MSG-0001079,INT-000581,client,Can you share the floor plan?,2025-04-22T02:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00195""}" +MSG-0001080,INT-000581,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2025-04-22T01:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00195""}" +MSG-0001081,INT-000581,client,That's slightly above my budget. Any flexibility?,2025-04-22T01:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00195""}" +MSG-0001082,INT-000586,client,Thank you. What's the current price per sqft?,2025-10-01T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00196""}" +MSG-0001083,INT-000586,client,Can you hold the unit for 2 days? I need to finalize with my father.,2025-10-01T00:43:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00196""}" +MSG-0001084,INT-000586,agent,Sending it now. Also attaching the project brochure.,2025-10-01T01:22:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00196""}" +MSG-0001085,INT-000586,agent,"Yes, Tower B has east facing units on floors 8-15.",2025-10-01T02:06:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00196""}" +MSG-0001086,INT-000586,agent,It's approximately 14155 per sqft all-inclusive. Best price in Rajarhat right now.,2025-10-01T03:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00196""}" +MSG-0001087,INT-000586,client,Can we schedule for this Saturday around 11 AM?,2025-10-01T01:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00196""}" +MSG-0001088,INT-000586,client,Thank you. What's the current price per sqft?,2025-10-01T04:42:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00196""}" +MSG-0001089,INT-000589,client,Thank you. What's the current price per sqft?,2025-10-11T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00197""}" +MSG-0001090,INT-000589,agent,"Yes, Tower B has east facing units on floors 8-15.",2025-10-11T00:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00197""}" +MSG-0001091,INT-000589,client,"Hi, I saw the listing for DTC Sojon. Is the 3 BHK still available?",2025-10-11T01:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00197""}" +MSG-0001092,INT-000589,client,Thank you. What's the current price per sqft?,2025-10-11T00:21:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00197""}" +MSG-0001093,INT-000589,client,Can we schedule for this Saturday around 11 AM?,2025-10-11T02:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00197""}" +MSG-0001094,INT-000597,agent,It's approximately 10698 per sqft all-inclusive. Best price in New Town right now.,2024-04-01T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00198""}" +MSG-0001095,INT-000597,agent,Of course. I'll arrange a dedicated viewing.,2024-04-01T00:46:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00198""}" +MSG-0001096,INT-000597,client,What about the maintenance charges?,2024-04-01T00:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00198""}" +MSG-0001097,INT-000597,client,Can you hold the unit for 2 days? I need to finalize with my father.,2024-04-01T01:42:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00198""}" +MSG-0001098,INT-000597,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2024-04-01T03:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00198""}" +MSG-0001099,INT-000597,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2024-04-01T02:50:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00198""}" +MSG-0001100,INT-000598,client,Can you share the floor plan?,2024-04-17T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00199""}" +MSG-0001101,INT-000598,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2024-04-17T00:08:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00199""}" +MSG-0001102,INT-000598,client,Can you hold the unit for 2 days? I need to finalize with my father.,2024-04-17T00:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00199""}" +MSG-0001103,INT-000600,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2024-05-01T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00200""}" +MSG-0001104,INT-000600,client,Received. The layout looks good. Is there a east facing option?,2024-05-01T00:28:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00200""}" +MSG-0001105,INT-000600,client,Home loan. Pre-approved up to 1.5-2.5 Cr.,2024-05-01T01:50:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00200""}" +MSG-0001106,INT-000600,agent,"Rs 3 per sqft per month. Includes housekeeping, security, and common area maintenance.",2024-05-01T01:06:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00200""}" +MSG-0001107,INT-000600,client,We're comparing this with Merlin Avana. What makes this better?,2024-05-01T00:56:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00200""}" +MSG-0001108,INT-000600,client,We visited the site today. The location is excellent but the approach road is narrow.,2024-05-01T02:50:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00200""}" +MSG-0001109,INT-000602,agent,Of course. I'll arrange a dedicated viewing.,2025-07-01T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00201""}" +MSG-0001110,INT-000602,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2025-07-01T00:35:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00201""}" +MSG-0001111,INT-000602,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2025-07-01T00:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00201""}" +MSG-0001112,INT-000602,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2025-07-01T01:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00201""}" +MSG-0001113,INT-000602,client,We visited the site today. The location is excellent but the approach road is narrow.,2025-07-01T00:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00201""}" +MSG-0001114,INT-000602,agent,"Yes sir, we have a few units available. When would you like to visit?",2025-07-01T00:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00201""}" +MSG-0001115,INT-000602,client,What about the maintenance charges?,2025-07-01T02:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00201""}" +MSG-0001116,INT-000603,client,My wife wants to see the sample flat again. Can we come tomorrow?,2025-07-08T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00202""}" +MSG-0001117,INT-000603,client,Home loan. Pre-approved up to 1.5-2.5 Cr.,2025-07-08T00:16:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00202""}" +MSG-0001118,INT-000603,client,We're comparing this with Siddha Serena. What makes this better?,2025-07-08T01:26:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00202""}" +MSG-0001119,INT-000603,client,Thank you. What's the current price per sqft?,2025-07-08T01:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00202""}" +MSG-0001120,INT-000603,client,We visited the site today. The location is excellent but the approach road is narrow.,2025-07-08T02:56:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00202""}" +MSG-0001121,INT-000603,client,That's slightly above my budget. Any flexibility?,2025-07-08T02:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00202""}" +MSG-0001122,INT-000605,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2025-08-03T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00203""}" +MSG-0001123,INT-000605,agent,"Yes sir, we have a few units available. When would you like to visit?",2025-08-03T00:11:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00203""}" +MSG-0001124,INT-000605,agent,It's approximately 9068 per sqft all-inclusive. Best price in Beliaghata right now.,2025-08-03T01:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00203""}" +MSG-0001125,INT-000605,client,What about the maintenance charges?,2025-08-03T00:45:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00203""}" +MSG-0001126,INT-000605,agent,"Yes sir, we have a few units available. When would you like to visit?",2025-08-03T00:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00203""}" +MSG-0001127,INT-000605,client,Received. The layout looks good. Is there a east facing option?,2025-08-03T00:55:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00203""}" +MSG-0001128,INT-000606,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2025-09-04T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00204""}" +MSG-0001129,INT-000606,agent,"Yes sir, we have a few units available. When would you like to visit?",2025-09-04T00:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00204""}" +MSG-0001130,INT-000606,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2025-09-04T00:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00204""}" +MSG-0001131,INT-000606,client,What about the maintenance charges?,2025-09-04T00:39:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00204""}" +MSG-0001132,INT-000606,client,Can you share the floor plan?,2025-09-04T02:32:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00204""}" +MSG-0001133,INT-000606,client,Can we schedule for this Saturday around 11 AM?,2025-09-04T00:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00204""}" +MSG-0001134,INT-000606,agent,Sending it now. Also attaching the project brochure.,2025-09-04T02:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00204""}" +MSG-0001135,INT-000610,agent,"Yes sir, we have a few units available. When would you like to visit?",2024-11-20T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00205""}" +MSG-0001136,INT-000610,agent,Of course. I'll arrange a dedicated viewing.,2024-11-20T00:16:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00205""}" +MSG-0001137,INT-000610,client,My wife wants to see the sample flat again. Can we come tomorrow?,2024-11-20T01:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00205""}" +MSG-0001138,INT-000610,agent,It's approximately 13769 per sqft all-inclusive. Best price in Rajarhat right now.,2024-11-20T00:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00205""}" +MSG-0001139,INT-000610,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2024-11-20T03:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00205""}" +MSG-0001140,INT-000610,client,That's slightly above my budget. Any flexibility?,2024-11-20T00:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00205""}" +MSG-0001141,INT-000610,client,We visited the site today. The location is excellent but the approach road is narrow.,2024-11-20T05:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00205""}" +MSG-0001142,INT-000610,client,"Hi, I saw the listing for Atri Surya Toron. Is the 3 BHK still available?",2024-11-20T03:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00205""}" +MSG-0001143,INT-000613,client,Can you share the floor plan?,2024-12-13T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00206""}" +MSG-0001144,INT-000613,agent,"Yes sir, we have a few units available. When would you like to visit?",2024-12-13T00:47:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00206""}" +MSG-0001145,INT-000613,client,What about the maintenance charges?,2024-12-13T01:58:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00206""}" +MSG-0001146,INT-000613,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2024-12-13T01:51:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00206""}" +MSG-0001147,INT-000613,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2024-12-13T01:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00206""}" +MSG-0001148,INT-000614,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2024-12-28T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00207""}" +MSG-0001149,INT-000614,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2024-12-28T00:22:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00207""}" +MSG-0001150,INT-000614,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2024-12-28T01:02:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00207""}" +MSG-0001151,INT-000619,client,Can we schedule for this Saturday around 11 AM?,2025-01-31T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00208""}" +MSG-0001152,INT-000619,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2025-01-31T00:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00208""}" +MSG-0001153,INT-000619,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2025-01-31T00:10:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00208""}" +MSG-0001154,INT-000619,client,What about the maintenance charges?,2025-01-31T00:33:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00208""}" +MSG-0001155,INT-000619,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2025-01-31T01:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00208""}" +MSG-0001156,INT-000622,client,Received. The layout looks good. Is there a east facing option?,2025-05-06T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00209""}" +MSG-0001157,INT-000622,client,We visited the site today. The location is excellent but the approach road is narrow.,2025-05-06T00:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00209""}" +MSG-0001158,INT-000622,agent,"Yes sir, we have a few units available. When would you like to visit?",2025-05-06T01:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00209""}" +MSG-0001159,INT-000635,agent,"Rs 4 per sqft per month. Includes housekeeping, security, and common area maintenance.",2024-05-13T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00210""}" +MSG-0001160,INT-000635,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2024-05-13T00:37:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00210""}" +MSG-0001161,INT-000635,client,Thank you. What's the current price per sqft?,2024-05-13T01:34:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00210""}" +MSG-0001162,INT-000635,client,Received. The layout looks good. Is there a east facing option?,2024-05-13T02:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00210""}" +MSG-0001163,INT-000635,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2024-05-13T02:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00210""}" +MSG-0001164,INT-000635,client,Thank you. What's the current price per sqft?,2024-05-13T01:45:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00210""}" +MSG-0001165,INT-000635,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2024-05-13T03:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00210""}" +MSG-0001166,INT-000635,client,We're comparing this with Merlin Avana. What makes this better?,2024-05-13T05:57:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00210""}" +MSG-0001167,INT-000636,client,Thank you. What's the current price per sqft?,2024-07-27T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00211""}" +MSG-0001168,INT-000636,client,Received. The layout looks good. Is there a east facing option?,2024-07-27T00:09:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00211""}" +MSG-0001169,INT-000636,client,We're comparing this with Eden Devprayag. What makes this better?,2024-07-27T00:28:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00211""}" +MSG-0001170,INT-000636,client,That's slightly above my budget. Any flexibility?,2024-07-27T01:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00211""}" +MSG-0001171,INT-000644,agent,"Rs 7 per sqft per month. Includes housekeeping, security, and common area maintenance.",2025-06-05T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00212""}" +MSG-0001172,INT-000644,client,Thank you. What's the current price per sqft?,2025-06-05T00:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00212""}" +MSG-0001173,INT-000644,client,We visited the site today. The location is excellent but the approach road is narrow.,2025-06-05T01:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00212""}" +MSG-0001174,INT-000644,client,Received. The layout looks good. Is there a east facing option?,2025-06-05T01:15:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00212""}" +MSG-0001175,INT-000644,client,My wife wants to see the sample flat again. Can we come tomorrow?,2025-06-05T02:56:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00212""}" +MSG-0001176,INT-000644,client,Can you share the floor plan?,2025-06-05T03:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00212""}" +MSG-0001177,INT-000646,client,That's slightly above my budget. Any flexibility?,2025-06-11T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00213""}" +MSG-0001178,INT-000646,client,My wife wants to see the sample flat again. Can we come tomorrow?,2025-06-11T00:34:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00213""}" +MSG-0001179,INT-000646,agent,"Yes, Tower B has east facing units on floors 8-15.",2025-06-11T00:46:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00213""}" +MSG-0001180,INT-000646,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2025-06-11T02:45:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00213""}" +MSG-0001181,INT-000646,client,"Hi, I saw the listing for Sugam Prakriti. Is the 3 BHK still available?",2025-06-11T00:28:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00213""}" +MSG-0001182,INT-000646,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2025-06-11T01:15:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00213""}" +MSG-0001183,INT-000646,client,We're comparing this with Atri Surya Toron. What makes this better?,2025-06-11T03:42:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00213""}" +MSG-0001184,INT-000646,client,We visited the site today. The location is excellent but the approach road is narrow.,2025-06-11T04:05:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00213""}" +MSG-0001185,INT-000647,client,I'm ready to book. What's the token amount?,2025-06-16T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00214""}" +MSG-0001186,INT-000647,client,Thank you. What's the current price per sqft?,2025-06-16T00:09:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00214""}" +MSG-0001187,INT-000647,agent,"Rs 7 per sqft per month. Includes housekeeping, security, and common area maintenance.",2025-06-16T00:26:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00214""}" +MSG-0001188,INT-000647,agent,Of course. I'll arrange a dedicated viewing.,2025-06-16T02:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00214""}" +MSG-0001189,INT-000648,client,Can we schedule for this Saturday around 11 AM?,2025-06-16T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00215""}" +MSG-0001190,INT-000648,client,Can you share the floor plan?,2025-06-16T00:28:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00215""}" +MSG-0001191,INT-000648,client,Can we schedule for this Saturday around 11 AM?,2025-06-16T01:38:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00215""}" +MSG-0001192,INT-000648,agent,Of course. I'll arrange a dedicated viewing.,2025-06-16T01:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00215""}" +MSG-0001193,INT-000648,agent,It's approximately 9456 per sqft all-inclusive. Best price in Barasat right now.,2025-06-16T02:04:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00215""}" +MSG-0001194,INT-000655,client,What about the maintenance charges?,2025-08-05T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00216""}" +MSG-0001195,INT-000655,client,Can you hold the unit for 2 days? I need to finalize with my father.,2025-08-05T01:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00216""}" +MSG-0001196,INT-000655,client,Home loan. Pre-approved up to 15-25 Cr.,2025-08-05T00:58:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00216""}" +MSG-0001197,INT-000655,client,"Hi, I saw the listing for Sugam Prakriti. Is the 3 BHK still available?",2025-08-05T01:42:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00216""}" +MSG-0001198,INT-000655,agent,"Yes sir, we have a few units available. When would you like to visit?",2025-08-05T01:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00216""}" +MSG-0001199,INT-000655,agent,It's approximately 8814 per sqft all-inclusive. Best price in Barasat right now.,2025-08-05T04:10:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00216""}" +MSG-0001200,INT-000667,client,That's slightly above my budget. Any flexibility?,2025-06-08T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00217""}" +MSG-0001201,INT-000667,client,What about the maintenance charges?,2025-06-08T00:54:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00217""}" +MSG-0001202,INT-000667,agent,It's approximately 8754 per sqft all-inclusive. Best price in Howrah right now.,2025-06-08T01:26:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00217""}" +MSG-0001203,INT-000670,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2025-01-25T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00218""}" +MSG-0001204,INT-000670,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2025-01-25T00:13:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00218""}" +MSG-0001205,INT-000670,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2025-01-25T01:26:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00218""}" +MSG-0001206,INT-000670,agent,"Yes sir, we have a few units available. When would you like to visit?",2025-01-25T01:54:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00218""}" +MSG-0001207,INT-000670,agent,It's approximately 12860 per sqft all-inclusive. Best price in Madanpur right now.,2025-01-25T01:56:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00218""}" +MSG-0001208,INT-000670,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2025-01-25T00:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00218""}" +MSG-0001209,INT-000675,agent,"Rs 8 per sqft per month. Includes housekeeping, security, and common area maintenance.",2025-02-11T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00219""}" +MSG-0001210,INT-000675,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2025-02-11T00:35:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00219""}" +MSG-0001211,INT-000675,client,Can we schedule for this Saturday around 11 AM?,2025-02-11T01:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00219""}" +MSG-0001212,INT-000675,client,Thank you. What's the current price per sqft?,2025-02-11T01:42:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00219""}" +MSG-0001213,INT-000675,client,We visited the site today. The location is excellent but the approach road is narrow.,2025-02-11T00:32:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00219""}" +MSG-0001214,INT-000675,client,Can you share the floor plan?,2025-02-11T04:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00219""}" +MSG-0001215,INT-000675,agent,Of course. I'll arrange a dedicated viewing.,2025-02-11T01:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00219""}" +MSG-0001216,INT-000675,agent,"Yes sir, we have a few units available. When would you like to visit?",2025-02-11T05:29:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00219""}" +MSG-0001217,INT-000676,client,What about the maintenance charges?,2025-03-01T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00220""}" +MSG-0001218,INT-000676,agent,"Yes, Tower B has east facing units on floors 8-15.",2025-03-01T00:52:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00220""}" +MSG-0001219,INT-000676,client,Home loan. Pre-approved up to 1.5-2.5 Cr.,2025-03-01T01:54:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00220""}" +MSG-0001220,INT-000676,client,I'm ready to book. What's the token amount?,2025-03-01T01:39:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00220""}" +MSG-0001221,INT-000676,client,Thank you. What's the current price per sqft?,2025-03-01T01:52:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00220""}" +MSG-0001222,INT-000676,client,We visited the site today. The location is excellent but the approach road is narrow.,2025-03-01T01:45:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00220""}" +MSG-0001223,INT-000677,client,I'm ready to book. What's the token amount?,2025-03-10T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00221""}" +MSG-0001224,INT-000677,client,We visited the site today. The location is excellent but the approach road is narrow.,2025-03-10T00:14:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00221""}" +MSG-0001225,INT-000677,agent,"Rs 6 per sqft per month. Includes housekeeping, security, and common area maintenance.",2025-03-10T01:18:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00221""}" +MSG-0001226,INT-000677,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2025-03-10T02:09:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00221""}" +MSG-0001227,INT-000677,client,Thank you. What's the current price per sqft?,2025-03-10T03:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00221""}" +MSG-0001228,INT-000677,client,Can we schedule for this Saturday around 11 AM?,2025-03-10T02:45:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00221""}" +MSG-0001229,INT-000677,client,"Hi, I saw the listing for Siddha Suburbia Bungalow. Is the 3 BHK still available?",2025-03-10T04:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00221""}" +MSG-0001230,INT-000677,client,My wife wants to see the sample flat again. Can we come tomorrow?,2025-03-10T05:57:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00221""}" +MSG-0001231,INT-000678,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2025-03-13T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00222""}" +MSG-0001232,INT-000678,client,Thank you. What's the current price per sqft?,2025-03-13T00:16:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00222""}" +MSG-0001233,INT-000678,client,Can you hold the unit for 2 days? I need to finalize with my father.,2025-03-13T01:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00222""}" +MSG-0001234,INT-000678,agent,Sending it now. Also attaching the project brochure.,2025-03-13T01:06:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00222""}" +MSG-0001235,INT-000678,client,Can we schedule for this Saturday around 11 AM?,2025-03-13T02:52:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00222""}" +MSG-0001236,INT-000678,client,Can we schedule for this Saturday around 11 AM?,2025-03-13T03:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00222""}" +MSG-0001237,INT-000679,agent,It's approximately 8276 per sqft all-inclusive. Best price in Madanpur right now.,2025-03-18T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00223""}" +MSG-0001238,INT-000679,agent,"Yes sir, we have a few units available. When would you like to visit?",2025-03-18T00:19:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00223""}" +MSG-0001239,INT-000679,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2025-03-18T01:42:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00223""}" +MSG-0001240,INT-000679,client,We visited the site today. The location is excellent but the approach road is narrow.,2025-03-18T02:18:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00223""}" +MSG-0001241,INT-000679,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2025-03-18T00:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00223""}" +MSG-0001242,INT-000683,client,We're comparing this with DTC Good Earth. What makes this better?,2024-06-15T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00224""}" +MSG-0001243,INT-000683,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2024-06-15T00:23:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00224""}" +MSG-0001244,INT-000683,agent,"Yes sir, we have a few units available. When would you like to visit?",2024-06-15T00:34:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00224""}" +MSG-0001245,INT-000683,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2024-06-15T02:45:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00224""}" +MSG-0001246,INT-000683,agent,"Yes, Tower B has east facing units on floors 8-15.",2024-06-15T03:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00224""}" +MSG-0001247,INT-000683,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2024-06-15T01:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00224""}" +MSG-0001248,INT-000683,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2024-06-15T02:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00224""}" +MSG-0001249,INT-000683,client,Can you share the floor plan?,2024-06-15T05:01:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00224""}" +MSG-0001250,INT-000685,client,Home loan. Pre-approved up to 1.5-2.5 Cr.,2024-11-28T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00225""}" +MSG-0001251,INT-000685,agent,Of course. I'll arrange a dedicated viewing.,2024-11-28T00:53:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00225""}" +MSG-0001252,INT-000685,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2024-11-28T00:22:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00225""}" +MSG-0001253,INT-000685,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2024-11-28T02:27:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00225""}" +MSG-0001254,INT-000685,client,My wife wants to see the sample flat again. Can we come tomorrow?,2024-11-28T01:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00225""}" +MSG-0001255,INT-000685,agent,"Yes, Tower B has east facing units on floors 8-15.",2024-11-28T03:55:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00225""}" +MSG-0001256,INT-000686,client,What about the maintenance charges?,2024-12-22T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00226""}" +MSG-0001257,INT-000686,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2024-12-22T00:22:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00226""}" +MSG-0001258,INT-000686,client,I'm ready to book. What's the token amount?,2024-12-22T00:14:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00226""}" +MSG-0001259,INT-000686,client,Thank you. What's the current price per sqft?,2024-12-22T01:21:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00226""}" +MSG-0001260,INT-000686,agent,"Rs 8 per sqft per month. Includes housekeeping, security, and common area maintenance.",2024-12-22T00:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00226""}" +MSG-0001261,INT-000687,client,Can we schedule for this Saturday around 11 AM?,2024-12-23T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00227""}" +MSG-0001262,INT-000687,agent,"Rs 6 per sqft per month. Includes housekeeping, security, and common area maintenance.",2024-12-23T00:29:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00227""}" +MSG-0001263,INT-000687,client,"Hi, I saw the listing for Atri Surya Toron. Is the 3 BHK still available?",2024-12-23T00:22:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00227""}" +MSG-0001264,INT-000687,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2024-12-23T02:45:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00227""}" +MSG-0001265,INT-000694,client,We're comparing this with Siddha Sky Waterfront. What makes this better?,2025-02-04T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00228""}" +MSG-0001266,INT-000694,agent,Sending it now. Also attaching the project brochure.,2025-02-04T00:45:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00228""}" +MSG-0001267,INT-000694,client,Can we schedule for this Saturday around 11 AM?,2025-02-04T01:18:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00228""}" +MSG-0001268,INT-000694,agent,It's approximately 11903 per sqft all-inclusive. Best price in Rajarhat right now.,2025-02-04T02:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00228""}" +MSG-0001269,INT-000694,agent,"Yes sir, we have a few units available. When would you like to visit?",2025-02-04T03:16:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00228""}" +MSG-0001270,INT-000694,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2025-02-04T02:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00228""}" +MSG-0001271,INT-000696,client,Received. The layout looks good. Is there a east facing option?,2024-11-23T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00229""}" +MSG-0001272,INT-000696,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2024-11-23T00:58:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00229""}" +MSG-0001273,INT-000696,agent,Of course. I'll arrange a dedicated viewing.,2024-11-23T00:28:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00229""}" +MSG-0001274,INT-000696,agent,"Yes sir, we have a few units available. When would you like to visit?",2024-11-23T00:45:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00229""}" +MSG-0001275,INT-000696,agent,"Rs 3 per sqft per month. Includes housekeeping, security, and common area maintenance.",2024-11-23T03:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00229""}" +MSG-0001276,INT-000697,client,Received. The layout looks good. Is there a east facing option?,2024-12-14T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00230""}" +MSG-0001277,INT-000697,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2024-12-14T00:39:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00230""}" +MSG-0001278,INT-000697,client,I'm ready to book. What's the token amount?,2024-12-14T00:28:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00230""}" +MSG-0001279,INT-000697,client,My wife wants to see the sample flat again. Can we come tomorrow?,2024-12-14T01:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00230""}" +MSG-0001280,INT-000697,client,Thank you. What's the current price per sqft?,2024-12-14T01:16:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00230""}" +MSG-0001281,INT-000697,client,Home loan. Pre-approved up to 1.5-2.5 Cr.,2024-12-14T02:35:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00230""}" +MSG-0001282,INT-000704,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2025-08-28T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00231""}" +MSG-0001283,INT-000704,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2025-08-28T00:29:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00231""}" +MSG-0001284,INT-000704,client,Thank you. What's the current price per sqft?,2025-08-28T01:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00231""}" +MSG-0001285,INT-000704,agent,"Rs 3 per sqft per month. Includes housekeeping, security, and common area maintenance.",2025-08-28T01:57:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00231""}" +MSG-0001286,INT-000705,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2025-09-07T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00232""}" +MSG-0001287,INT-000705,client,We're comparing this with Godrej Blue. What makes this better?,2025-09-07T00:54:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00232""}" +MSG-0001288,INT-000705,client,We visited the site today. The location is excellent but the approach road is narrow.,2025-09-07T01:26:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00232""}" +MSG-0001289,INT-000705,agent,"Yes, Tower B has east facing units on floors 8-15.",2025-09-07T02:06:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00232""}" +MSG-0001290,INT-000705,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2025-09-07T02:44:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00232""}" +MSG-0001291,INT-000710,client,We're comparing this with DTC Good Earth. What makes this better?,2025-11-02T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00233""}" +MSG-0001292,INT-000710,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2025-11-02T00:56:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00233""}" +MSG-0001293,INT-000710,client,That's slightly above my budget. Any flexibility?,2025-11-02T01:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00233""}" +MSG-0001294,INT-000710,client,Received. The layout looks good. Is there a east facing option?,2025-11-02T00:18:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00233""}" +MSG-0001295,INT-000710,client,My wife wants to see the sample flat again. Can we come tomorrow?,2025-11-02T00:32:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00233""}" +MSG-0001296,INT-000710,client,That's slightly above my budget. Any flexibility?,2025-11-02T01:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00233""}" +MSG-0001297,INT-000710,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2025-11-02T02:18:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00233""}" +MSG-0001298,INT-000714,agent,It's approximately 11455 per sqft all-inclusive. Best price in Beliaghata right now.,2024-05-28T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00234""}" +MSG-0001299,INT-000714,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2024-05-28T00:49:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00234""}" +MSG-0001300,INT-000714,client,I'm ready to book. What's the token amount?,2024-05-28T00:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00234""}" +MSG-0001301,INT-000715,client,My wife wants to see the sample flat again. Can we come tomorrow?,2024-06-18T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00235""}" +MSG-0001302,INT-000715,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2024-06-18T00:57:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00235""}" +MSG-0001303,INT-000715,client,What about the maintenance charges?,2024-06-18T01:14:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00235""}" +MSG-0001304,INT-000715,client,Thank you. What's the current price per sqft?,2024-06-18T01:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00235""}" +MSG-0001305,INT-000715,agent,Of course. I'll arrange a dedicated viewing.,2024-06-18T02:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00235""}" +MSG-0001306,INT-000715,client,Thank you. What's the current price per sqft?,2024-06-18T03:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00235""}" +MSG-0001307,INT-000715,agent,"Yes sir, we have a few units available. When would you like to visit?",2024-06-18T03:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00235""}" +MSG-0001308,INT-000715,client,Can we schedule for this Saturday around 11 AM?,2024-06-18T04:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00235""}" +MSG-0001309,INT-000716,client,Can you share the floor plan?,2024-06-22T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00236""}" +MSG-0001310,INT-000716,client,That's slightly above my budget. Any flexibility?,2024-06-22T00:56:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00236""}" +MSG-0001311,INT-000716,client,Home loan. Pre-approved up to 6-10 Cr.,2024-06-22T00:18:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00236""}" +MSG-0001312,INT-000717,client,I'm ready to book. What's the token amount?,2024-06-26T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00237""}" +MSG-0001313,INT-000717,client,Received. The layout looks good. Is there a east facing option?,2024-06-26T00:06:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00237""}" +MSG-0001314,INT-000717,client,That's slightly above my budget. Any flexibility?,2024-06-26T00:18:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00237""}" +MSG-0001315,INT-000717,client,Can we schedule for this Saturday around 11 AM?,2024-06-26T00:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00237""}" +MSG-0001316,INT-000717,client,Can you share the floor plan?,2024-06-26T01:08:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00237""}" +MSG-0001317,INT-000718,client,We visited the site today. The location is excellent but the approach road is narrow.,2024-07-17T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00238""}" +MSG-0001318,INT-000718,client,Received. The layout looks good. Is there a east facing option?,2024-07-17T00:43:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00238""}" +MSG-0001319,INT-000718,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2024-07-17T01:38:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00238""}" +MSG-0001320,INT-000718,client,We visited the site today. The location is excellent but the approach road is narrow.,2024-07-17T02:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00238""}" +MSG-0001321,INT-000718,client,Can you share the floor plan?,2024-07-17T02:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00238""}" +MSG-0001322,INT-000718,client,Can we schedule for this Saturday around 11 AM?,2024-07-17T01:25:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00238""}" +MSG-0001323,INT-000719,agent,Of course. I'll arrange a dedicated viewing.,2024-07-28T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00239""}" +MSG-0001324,INT-000719,agent,It's approximately 9704 per sqft all-inclusive. Best price in Beliaghata right now.,2024-07-28T00:05:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00239""}" +MSG-0001325,INT-000719,client,What about the maintenance charges?,2024-07-28T01:18:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00239""}" +MSG-0001326,INT-000719,client,I'm ready to book. What's the token amount?,2024-07-28T02:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00239""}" +MSG-0001327,INT-000719,client,Home loan. Pre-approved up to 1.5-2.5 Cr.,2024-07-28T03:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00239""}" +MSG-0001328,INT-000719,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2024-07-28T02:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00239""}" +MSG-0001329,INT-000719,client,My wife wants to see the sample flat again. Can we come tomorrow?,2024-07-28T03:54:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00239""}" +MSG-0001330,INT-000719,agent,Of course. I'll arrange a dedicated viewing.,2024-07-28T01:59:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00239""}" +MSG-0001331,INT-000725,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2024-10-26T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00240""}" +MSG-0001332,INT-000725,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2024-10-26T00:13:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00240""}" +MSG-0001333,INT-000725,client,Can we schedule for this Saturday around 11 AM?,2024-10-26T01:38:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00240""}" +MSG-0001334,INT-000725,agent,Sending it now. Also attaching the project brochure.,2024-10-26T00:45:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00240""}" +MSG-0001335,INT-000725,client,My wife wants to see the sample flat again. Can we come tomorrow?,2024-10-26T03:28:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00240""}" +MSG-0001336,INT-000732,client,That's slightly above my budget. Any flexibility?,2024-08-14T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00241""}" +MSG-0001337,INT-000732,client,I'm ready to book. What's the token amount?,2024-08-14T00:41:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00241""}" +MSG-0001338,INT-000732,agent,Of course. I'll arrange a dedicated viewing.,2024-08-14T01:02:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00241""}" +MSG-0001339,INT-000732,client,Can you share the floor plan?,2024-08-14T01:45:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00241""}" +MSG-0001340,INT-000732,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2024-08-14T00:52:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00241""}" +MSG-0001341,INT-000732,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2024-08-14T00:35:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00241""}" +MSG-0001342,INT-000732,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2024-08-14T05:06:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00241""}" +MSG-0001343,INT-000732,client,"Hi, I saw the listing for Godrej Elevate. Is the 3 BHK still available?",2024-08-14T03:37:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00241""}" +MSG-0001344,INT-000733,client,Can you hold the unit for 2 days? I need to finalize with my father.,2024-09-04T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00242""}" +MSG-0001345,INT-000733,client,Can you hold the unit for 2 days? I need to finalize with my father.,2024-09-04T00:57:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00242""}" +MSG-0001346,INT-000733,client,Can you hold the unit for 2 days? I need to finalize with my father.,2024-09-04T00:52:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00242""}" +MSG-0001347,INT-000741,client,Received. The layout looks good. Is there a east facing option?,2024-05-22T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00243""}" +MSG-0001348,INT-000741,client,Thank you. What's the current price per sqft?,2024-05-22T00:13:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00243""}" +MSG-0001349,INT-000741,client,Thank you. What's the current price per sqft?,2024-05-22T00:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00243""}" +MSG-0001350,INT-000741,client,Can you hold the unit for 2 days? I need to finalize with my father.,2024-05-22T00:39:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00243""}" +MSG-0001351,INT-000753,client,Can you share the floor plan?,2025-10-01T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00244""}" +MSG-0001352,INT-000753,client,My wife wants to see the sample flat again. Can we come tomorrow?,2025-10-01T00:46:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00244""}" +MSG-0001353,INT-000753,client,We visited the site today. The location is excellent but the approach road is narrow.,2025-10-01T01:10:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00244""}" +MSG-0001354,INT-000753,client,Can we schedule for this Saturday around 11 AM?,2025-10-01T01:57:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00244""}" +MSG-0001355,INT-000757,client,Can we schedule for this Saturday around 11 AM?,2025-08-19T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00245""}" +MSG-0001356,INT-000757,client,That's slightly above my budget. Any flexibility?,2025-08-19T00:52:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00245""}" +MSG-0001357,INT-000757,agent,It's approximately 10456 per sqft all-inclusive. Best price in Rajarhat right now.,2025-08-19T01:08:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00245""}" +MSG-0001358,INT-000757,client,That's slightly above my budget. Any flexibility?,2025-08-19T00:54:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00245""}" +MSG-0001359,INT-000757,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2025-08-19T01:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00245""}" +MSG-0001360,INT-000757,agent,"Rs 8 per sqft per month. Includes housekeeping, security, and common area maintenance.",2025-08-19T00:25:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00245""}" +MSG-0001361,INT-000757,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2025-08-19T00:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00245""}" +MSG-0001362,INT-000757,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2025-08-19T05:57:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00245""}" +MSG-0001363,INT-000761,agent,It's approximately 9857 per sqft all-inclusive. Best price in Rajarhat right now.,2025-09-09T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00246""}" +MSG-0001364,INT-000761,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2025-09-09T00:26:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00246""}" +MSG-0001365,INT-000761,agent,It's approximately 14977 per sqft all-inclusive. Best price in Rajarhat right now.,2025-09-09T00:54:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00246""}" +MSG-0001366,INT-000761,client,Received. The layout looks good. Is there a east facing option?,2025-09-09T00:27:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00246""}" +MSG-0001367,INT-000761,client,"Hi, I saw the listing for DTC Sojon. Is the 3 BHK still available?",2025-09-09T04:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00246""}" +MSG-0001368,INT-000761,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2025-09-09T00:25:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00246""}" +MSG-0001369,INT-000761,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2025-09-09T03:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00246""}" +MSG-0001370,INT-000761,client,Home loan. Pre-approved up to 6-10 Cr.,2025-09-09T04:54:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00246""}" +MSG-0001371,INT-000763,agent,Of course. I'll arrange a dedicated viewing.,2025-09-18T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00247""}" +MSG-0001372,INT-000763,client,Can we schedule for this Saturday around 11 AM?,2025-09-18T00:55:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00247""}" +MSG-0001373,INT-000763,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2025-09-18T00:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00247""}" +MSG-0001374,INT-000763,client,That's slightly above my budget. Any flexibility?,2025-09-18T02:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00247""}" +MSG-0001375,INT-000763,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2025-09-18T01:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00247""}" +MSG-0001376,INT-000775,agent,Sending it now. Also attaching the project brochure.,2024-04-05T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00248""}" +MSG-0001377,INT-000775,client,What about the maintenance charges?,2024-04-05T00:55:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00248""}" +MSG-0001378,INT-000775,client,Thank you. What's the current price per sqft?,2024-04-05T01:26:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00248""}" +MSG-0001379,INT-000775,agent,"Yes, Tower B has east facing units on floors 8-15.",2024-04-05T02:09:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00248""}" +MSG-0001380,INT-000775,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2024-04-05T03:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00248""}" +MSG-0001381,INT-000780,client,I'm ready to book. What's the token amount?,2026-01-27T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00249""}" +MSG-0001382,INT-000780,agent,"Rs 7 per sqft per month. Includes housekeeping, security, and common area maintenance.",2026-01-27T00:39:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00249""}" +MSG-0001383,INT-000780,agent,Sending it now. Also attaching the project brochure.,2026-01-27T00:28:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00249""}" +MSG-0001384,INT-000780,agent,"Rs 5 per sqft per month. Includes housekeeping, security, and common area maintenance.",2026-01-27T02:21:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00249""}" +MSG-0001385,INT-000782,agent,"Rs 5 per sqft per month. Includes housekeeping, security, and common area maintenance.",2026-02-15T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00250""}" +MSG-0001386,INT-000782,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2026-02-15T00:38:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00250""}" +MSG-0001387,INT-000782,client,We're comparing this with Shriram Grand City. What makes this better?,2026-02-15T01:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00250""}" +MSG-0001388,INT-000782,client,Received. The layout looks good. Is there a east facing option?,2026-02-15T00:39:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00250""}" +MSG-0001389,INT-000782,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2026-02-15T03:44:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00250""}" +MSG-0001390,INT-000782,client,We visited the site today. The location is excellent but the approach road is narrow.,2026-02-15T02:25:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00250""}" +MSG-0001391,INT-000783,agent,"Rs 6 per sqft per month. Includes housekeeping, security, and common area maintenance.",2026-02-16T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00251""}" +MSG-0001392,INT-000783,agent,"Yes sir, we have a few units available. When would you like to visit?",2026-02-16T00:58:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00251""}" +MSG-0001393,INT-000783,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2026-02-16T00:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00251""}" +MSG-0001394,INT-000783,client,Can we schedule for this Saturday around 11 AM?,2026-02-16T00:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00251""}" +MSG-0001395,INT-000783,client,I'm ready to book. What's the token amount?,2026-02-16T01:04:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00251""}" +MSG-0001396,INT-000783,client,That's slightly above my budget. Any flexibility?,2026-02-16T04:50:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00251""}" +MSG-0001397,INT-000783,agent,"Yes sir, we have a few units available. When would you like to visit?",2026-02-16T05:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00251""}" +MSG-0001398,INT-000787,client,Thank you. What's the current price per sqft?,2026-02-28T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00252""}" +MSG-0001399,INT-000787,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2026-02-28T00:56:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00252""}" +MSG-0001400,INT-000787,client,Can we schedule for this Saturday around 11 AM?,2026-02-28T01:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00252""}" +MSG-0001401,INT-000788,client,What about the maintenance charges?,2026-03-09T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00253""}" +MSG-0001402,INT-000788,client,Can you hold the unit for 2 days? I need to finalize with my father.,2026-03-09T00:14:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00253""}" +MSG-0001403,INT-000788,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2026-03-09T02:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00253""}" +MSG-0001404,INT-000788,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2026-03-09T00:33:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00253""}" +MSG-0001405,INT-000788,client,We're comparing this with DTC Sojon. What makes this better?,2026-03-09T01:56:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00253""}" +MSG-0001406,INT-000788,client,Thank you. What's the current price per sqft?,2026-03-09T02:50:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00253""}" +MSG-0001407,INT-000790,client,That's slightly above my budget. Any flexibility?,2026-03-25T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00254""}" +MSG-0001408,INT-000790,client,That's slightly above my budget. Any flexibility?,2026-03-25T00:13:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00254""}" +MSG-0001409,INT-000790,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2026-03-25T01:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00254""}" +MSG-0001410,INT-000790,client,Can we schedule for this Saturday around 11 AM?,2026-03-25T02:15:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00254""}" +MSG-0001411,INT-000790,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2026-03-25T01:32:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00254""}" +MSG-0001412,INT-000790,agent,Sending it now. Also attaching the project brochure.,2026-03-25T02:15:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00254""}" +MSG-0001413,INT-000790,client,I'm ready to book. What's the token amount?,2026-03-25T00:54:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00254""}" +MSG-0001414,INT-000790,agent,"Rs 3 per sqft per month. Includes housekeeping, security, and common area maintenance.",2026-03-25T01:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00254""}" +MSG-0001415,INT-000795,agent,"Rs 6 per sqft per month. Includes housekeeping, security, and common area maintenance.",2025-04-21T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00255""}" +MSG-0001416,INT-000795,client,Thank you. What's the current price per sqft?,2025-04-21T00:18:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00255""}" +MSG-0001417,INT-000795,client,That's slightly above my budget. Any flexibility?,2025-04-21T02:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00255""}" +MSG-0001418,INT-000795,agent,"Rs 3 per sqft per month. Includes housekeeping, security, and common area maintenance.",2025-04-21T00:15:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00255""}" +MSG-0001419,INT-000795,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2025-04-21T03:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00255""}" +MSG-0001420,INT-000795,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2025-04-21T02:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00255""}" +MSG-0001421,INT-000801,client,My wife wants to see the sample flat again. Can we come tomorrow?,2025-06-16T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00256""}" +MSG-0001422,INT-000801,client,What about the maintenance charges?,2025-06-16T00:56:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00256""}" +MSG-0001423,INT-000801,client,We're comparing this with Atri Surya Toron. What makes this better?,2025-06-16T00:18:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00256""}" +MSG-0001424,INT-000801,agent,"Rs 4 per sqft per month. Includes housekeeping, security, and common area maintenance.",2025-06-16T00:54:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00256""}" +MSG-0001425,INT-000801,client,Can you hold the unit for 2 days? I need to finalize with my father.,2025-06-16T01:44:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00256""}" +MSG-0001426,INT-000801,client,What about the maintenance charges?,2025-06-16T02:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00256""}" +MSG-0001427,INT-000801,client,My wife wants to see the sample flat again. Can we come tomorrow?,2025-06-16T01:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00256""}" +MSG-0001428,INT-000801,agent,Sending it now. Also attaching the project brochure.,2025-06-16T06:46:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00256""}" +MSG-0001429,INT-000803,client,"Hi, I saw the listing for Eden Devprayag. Is the 3 BHK still available?",2025-06-24T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00257""}" +MSG-0001430,INT-000803,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2025-06-24T00:23:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00257""}" +MSG-0001431,INT-000803,agent,It's approximately 13246 per sqft all-inclusive. Best price in Rajarhat right now.,2025-06-24T01:28:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00257""}" +MSG-0001432,INT-000803,agent,It's approximately 13307 per sqft all-inclusive. Best price in Rajarhat right now.,2025-06-24T00:15:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00257""}" +MSG-0001433,INT-000803,client,Can we schedule for this Saturday around 11 AM?,2025-06-24T00:44:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00257""}" +MSG-0001434,INT-000805,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2025-07-04T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00258""}" +MSG-0001435,INT-000805,client,Received. The layout looks good. Is there a east facing option?,2025-07-04T00:16:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00258""}" +MSG-0001436,INT-000805,agent,"Yes sir, we have a few units available. When would you like to visit?",2025-07-04T01:52:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00258""}" +MSG-0001437,INT-000805,agent,It's approximately 13332 per sqft all-inclusive. Best price in Rajarhat right now.,2025-07-04T01:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00258""}" +MSG-0001438,INT-000805,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2025-07-04T03:44:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00258""}" +MSG-0001439,INT-000805,client,Received. The layout looks good. Is there a east facing option?,2025-07-04T02:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00258""}" +MSG-0001440,INT-000805,agent,"Rs 8 per sqft per month. Includes housekeeping, security, and common area maintenance.",2025-07-04T04:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00258""}" +MSG-0001441,INT-000807,agent,"Rs 8 per sqft per month. Includes housekeeping, security, and common area maintenance.",2025-07-30T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00259""}" +MSG-0001442,INT-000807,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2025-07-30T00:52:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00259""}" +MSG-0001443,INT-000807,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2025-07-30T01:32:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00259""}" +MSG-0001444,INT-000807,agent,"Yes sir, we have a few units available. When would you like to visit?",2025-07-30T02:42:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00259""}" +MSG-0001445,INT-000807,agent,Sending it now. Also attaching the project brochure.,2025-07-30T03:04:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00259""}" +MSG-0001446,INT-000807,client,"Hi, I saw the listing for Eden Devprayag. Is the 3 BHK still available?",2025-07-30T03:10:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00259""}" +MSG-0001447,INT-000810,agent,"Rs 7 per sqft per month. Includes housekeeping, security, and common area maintenance.",2024-10-25T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00260""}" +MSG-0001448,INT-000810,client,Home loan. Pre-approved up to 1.5-2.5 Cr.,2024-10-25T00:34:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00260""}" +MSG-0001449,INT-000810,client,That's slightly above my budget. Any flexibility?,2024-10-25T00:10:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00260""}" +MSG-0001450,INT-000810,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2024-10-25T02:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00260""}" +MSG-0001451,INT-000810,client,Home loan. Pre-approved up to 4-6 Cr.,2024-10-25T03:44:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00260""}" +MSG-0001452,INT-000810,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2024-10-25T01:35:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00260""}" +MSG-0001453,INT-000811,client,Received. The layout looks good. Is there a east facing option?,2024-11-03T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00261""}" +MSG-0001454,INT-000811,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2024-11-03T00:07:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00261""}" +MSG-0001455,INT-000811,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2024-11-03T01:54:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00261""}" +MSG-0001456,INT-000811,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2024-11-03T01:18:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00261""}" +MSG-0001457,INT-000811,agent,"Rs 8 per sqft per month. Includes housekeeping, security, and common area maintenance.",2024-11-03T02:44:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00261""}" +MSG-0001458,INT-000812,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2024-11-05T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00262""}" +MSG-0001459,INT-000812,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2024-11-05T00:35:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00262""}" +MSG-0001460,INT-000812,client,What about the maintenance charges?,2024-11-05T00:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00262""}" +MSG-0001461,INT-000812,client,"Hi, I saw the listing for Sugam Prakriti. Is the 3 BHK still available?",2024-11-05T01:15:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00262""}" +MSG-0001462,INT-000812,client,We visited the site today. The location is excellent but the approach road is narrow.,2024-11-05T02:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00262""}" +MSG-0001463,INT-000812,client,My wife wants to see the sample flat again. Can we come tomorrow?,2024-11-05T02:15:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00262""}" +MSG-0001464,INT-000812,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2024-11-05T03:06:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00262""}" +MSG-0001465,INT-000813,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2024-11-17T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00263""}" +MSG-0001466,INT-000813,agent,It's approximately 12198 per sqft all-inclusive. Best price in Barasat right now.,2024-11-17T00:11:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00263""}" +MSG-0001467,INT-000813,client,That's slightly above my budget. Any flexibility?,2024-11-17T01:08:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00263""}" +MSG-0001468,INT-000818,client,We visited the site today. The location is excellent but the approach road is narrow.,2025-12-09T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00264""}" +MSG-0001469,INT-000818,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2025-12-09T00:10:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00264""}" +MSG-0001470,INT-000818,agent,"Yes, Tower B has east facing units on floors 8-15.",2025-12-09T01:28:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00264""}" +MSG-0001471,INT-000826,client,My wife wants to see the sample flat again. Can we come tomorrow?,2025-11-05T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00265""}" +MSG-0001472,INT-000826,client,We visited the site today. The location is excellent but the approach road is narrow.,2025-11-05T00:18:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00265""}" +MSG-0001473,INT-000826,client,What about the maintenance charges?,2025-11-05T01:56:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00265""}" +MSG-0001474,INT-000826,client,I'm ready to book. What's the token amount?,2025-11-05T01:54:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00265""}" +MSG-0001475,INT-000826,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2025-11-05T02:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00265""}" +MSG-0001476,INT-000830,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2026-01-11T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00266""}" +MSG-0001477,INT-000830,client,Can you share the floor plan?,2026-01-11T00:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00266""}" +MSG-0001478,INT-000830,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2026-01-11T01:44:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00266""}" +MSG-0001479,INT-000830,client,"Hi, I saw the listing for Ambuja Utpaala. Is the 3 BHK still available?",2026-01-11T01:09:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00266""}" +MSG-0001480,INT-000830,agent,"Yes, Tower B has east facing units on floors 8-15.",2026-01-11T00:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00266""}" +MSG-0001481,INT-000832,client,We're comparing this with DTC Good Earth. What makes this better?,2024-10-26T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00267""}" +MSG-0001482,INT-000832,agent,It's approximately 10590 per sqft all-inclusive. Best price in Rajarhat right now.,2024-10-26T00:18:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00267""}" +MSG-0001483,INT-000832,client,My wife wants to see the sample flat again. Can we come tomorrow?,2024-10-26T01:52:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00267""}" +MSG-0001484,INT-000832,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2024-10-26T00:21:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00267""}" +MSG-0001485,INT-000832,client,"Hi, I saw the listing for Eden Devprayag. Is the 3 BHK still available?",2024-10-26T01:52:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00267""}" +MSG-0001486,INT-000832,agent,"Rs 5 per sqft per month. Includes housekeeping, security, and common area maintenance.",2024-10-26T04:05:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00267""}" +MSG-0001487,INT-000841,client,"Hi, I saw the listing for Shriram Grand City. Is the 3 BHK still available?",2025-11-17T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00268""}" +MSG-0001488,INT-000841,client,Can we schedule for this Saturday around 11 AM?,2025-11-17T00:35:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00268""}" +MSG-0001489,INT-000841,agent,Of course. I'll arrange a dedicated viewing.,2025-11-17T01:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00268""}" +MSG-0001490,INT-000842,client,Can you hold the unit for 2 days? I need to finalize with my father.,2025-12-24T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00269""}" +MSG-0001491,INT-000842,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2025-12-24T00:37:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00269""}" +MSG-0001492,INT-000842,agent,Of course. I'll arrange a dedicated viewing.,2025-12-24T00:14:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00269""}" +MSG-0001493,INT-000845,client,That's slightly above my budget. Any flexibility?,2025-11-25T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00270""}" +MSG-0001494,INT-000845,client,Can you hold the unit for 2 days? I need to finalize with my father.,2025-11-25T00:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00270""}" +MSG-0001495,INT-000845,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2025-11-25T01:18:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00270""}" +MSG-0001496,INT-000845,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2025-11-25T01:09:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00270""}" +MSG-0001497,INT-000845,agent,It's approximately 13200 per sqft all-inclusive. Best price in Howrah right now.,2025-11-25T02:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00270""}" +MSG-0001498,INT-000845,client,Home loan. Pre-approved up to 6-10 Cr.,2025-11-25T04:55:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00270""}" +MSG-0001499,INT-000845,client,"Hi, I saw the listing for Shriram Grand City. Is the 3 BHK still available?",2025-11-25T05:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00270""}" +MSG-0001500,INT-000850,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2025-10-16T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00271""}" +MSG-0001501,INT-000850,client,My wife wants to see the sample flat again. Can we come tomorrow?,2025-10-16T00:26:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00271""}" +MSG-0001502,INT-000850,agent,"Yes, Tower B has east facing units on floors 8-15.",2025-10-16T00:50:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00271""}" +MSG-0001503,INT-000853,client,Can we schedule for this Saturday around 11 AM?,2025-11-10T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00272""}" +MSG-0001504,INT-000853,agent,Of course. I'll arrange a dedicated viewing.,2025-11-10T00:17:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00272""}" +MSG-0001505,INT-000853,client,We visited the site today. The location is excellent but the approach road is narrow.,2025-11-10T00:14:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00272""}" +MSG-0001506,INT-000853,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2025-11-10T01:09:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00272""}" +MSG-0001507,INT-000853,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2025-11-10T02:04:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00272""}" +MSG-0001508,INT-000853,agent,Sending it now. Also attaching the project brochure.,2025-11-10T01:25:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00272""}" +MSG-0001509,INT-000857,client,I'm ready to book. What's the token amount?,2025-12-03T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00273""}" +MSG-0001510,INT-000857,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2025-12-03T00:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00273""}" +MSG-0001511,INT-000857,client,Can you hold the unit for 2 days? I need to finalize with my father.,2025-12-03T00:34:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00273""}" +MSG-0001512,INT-000857,client,Can you hold the unit for 2 days? I need to finalize with my father.,2025-12-03T02:42:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00273""}" +MSG-0001513,INT-000857,agent,Sending it now. Also attaching the project brochure.,2025-12-03T04:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00273""}" +MSG-0001514,INT-000868,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2024-11-21T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00274""}" +MSG-0001515,INT-000868,client,"Hi, I saw the listing for Ambuja Utpaala. Is the 3 BHK still available?",2024-11-21T00:59:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00274""}" +MSG-0001516,INT-000868,client,What about the maintenance charges?,2024-11-21T01:08:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00274""}" +MSG-0001517,INT-000870,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2024-12-15T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00275""}" +MSG-0001518,INT-000870,client,We visited the site today. The location is excellent but the approach road is narrow.,2024-12-15T00:11:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00275""}" +MSG-0001519,INT-000870,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2024-12-15T01:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00275""}" +MSG-0001520,INT-000870,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2024-12-15T00:18:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00275""}" +MSG-0001521,INT-000870,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2024-12-15T01:52:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00275""}" +MSG-0001522,INT-000870,client,Received. The layout looks good. Is there a east facing option?,2024-12-15T03:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00275""}" +MSG-0001523,INT-000875,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2025-01-19T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00276""}" +MSG-0001524,INT-000875,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2025-01-19T00:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00276""}" +MSG-0001525,INT-000875,client,We visited the site today. The location is excellent but the approach road is narrow.,2025-01-19T01:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00276""}" +MSG-0001526,INT-000878,client,What about the maintenance charges?,2024-07-17T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00277""}" +MSG-0001527,INT-000878,client,Home loan. Pre-approved up to 15-25 Cr.,2024-07-17T00:42:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00277""}" +MSG-0001528,INT-000878,client,I'm ready to book. What's the token amount?,2024-07-17T01:02:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00277""}" +MSG-0001529,INT-000879,client,Can you share the floor plan?,2024-07-18T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00278""}" +MSG-0001530,INT-000879,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2024-07-18T00:22:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00278""}" +MSG-0001531,INT-000879,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2024-07-18T00:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00278""}" +MSG-0001532,INT-000879,client,Thank you. What's the current price per sqft?,2024-07-18T01:03:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00278""}" +MSG-0001533,INT-000879,agent,"Rs 7 per sqft per month. Includes housekeeping, security, and common area maintenance.",2024-07-18T00:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00278""}" +MSG-0001534,INT-000879,client,"Hi, I saw the listing for Atri Aqua. Is the 3 BHK still available?",2024-07-18T03:15:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00278""}" +MSG-0001535,INT-000879,client,We're comparing this with Shriram Grand City. What makes this better?,2024-07-18T01:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00278""}" +MSG-0001536,INT-000880,client,Can we schedule for this Saturday around 11 AM?,2024-07-24T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00279""}" +MSG-0001537,INT-000880,client,We visited the site today. The location is excellent but the approach road is narrow.,2024-07-24T01:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00279""}" +MSG-0001538,INT-000880,agent,"Yes, Tower B has east facing units on floors 8-15.",2024-07-24T00:32:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00279""}" +MSG-0001539,INT-000884,client,Thank you. What's the current price per sqft?,2024-08-28T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00280""}" +MSG-0001540,INT-000884,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2024-08-28T00:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00280""}" +MSG-0001541,INT-000884,client,Received. The layout looks good. Is there a east facing option?,2024-08-28T01:38:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00280""}" +MSG-0001542,INT-000889,client,Home loan. Pre-approved up to 4-6 Cr.,2024-06-18T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00281""}" +MSG-0001543,INT-000889,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2024-06-18T00:18:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00281""}" +MSG-0001544,INT-000889,client,What about the maintenance charges?,2024-06-18T01:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00281""}" +MSG-0001545,INT-000889,client,I'm ready to book. What's the token amount?,2024-06-18T00:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00281""}" +MSG-0001546,INT-000889,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2024-06-18T03:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00281""}" +MSG-0001547,INT-000890,agent,Of course. I'll arrange a dedicated viewing.,2024-06-21T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00282""}" +MSG-0001548,INT-000890,agent,"Yes sir, we have a few units available. When would you like to visit?",2024-06-21T00:34:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00282""}" +MSG-0001549,INT-000890,client,Can you hold the unit for 2 days? I need to finalize with my father.,2024-06-21T01:26:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00282""}" +MSG-0001550,INT-000890,agent,Sending it now. Also attaching the project brochure.,2024-06-21T01:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00282""}" +MSG-0001551,INT-000890,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2024-06-21T03:04:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00282""}" +MSG-0001552,INT-000890,client,That's slightly above my budget. Any flexibility?,2024-06-21T04:15:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00282""}" +MSG-0001553,INT-000892,client,We visited the site today. The location is excellent but the approach road is narrow.,2024-07-04T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00283""}" +MSG-0001554,INT-000892,client,Can you hold the unit for 2 days? I need to finalize with my father.,2024-07-04T00:25:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00283""}" +MSG-0001555,INT-000892,client,What about the maintenance charges?,2024-07-04T00:44:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00283""}" +MSG-0001556,INT-000892,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2024-07-04T01:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00283""}" +MSG-0001557,INT-000892,client,What about the maintenance charges?,2024-07-04T03:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00283""}" +MSG-0001558,INT-000899,client,My wife wants to see the sample flat again. Can we come tomorrow?,2024-08-20T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00284""}" +MSG-0001559,INT-000899,agent,Of course. I'll arrange a dedicated viewing.,2024-08-20T00:21:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00284""}" +MSG-0001560,INT-000899,agent,"Yes, Tower B has east facing units on floors 8-15.",2024-08-20T01:18:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00284""}" +MSG-0001561,INT-000900,agent,"Rs 4 per sqft per month. Includes housekeeping, security, and common area maintenance.",2024-09-03T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00285""}" +MSG-0001562,INT-000900,client,"Hi, I saw the listing for Atri Aqua. Is the 3 BHK still available?",2024-09-03T00:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00285""}" +MSG-0001563,INT-000900,client,Home loan. Pre-approved up to 2.5-4 Cr.,2024-09-03T00:26:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00285""}" +MSG-0001564,INT-000900,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2024-09-03T02:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00285""}" +MSG-0001565,INT-000900,client,"Hi, I saw the listing for Atri Aqua. Is the 3 BHK still available?",2024-09-03T00:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00285""}" +MSG-0001566,INT-000900,client,We're comparing this with Siddha Suburbia Bungalow. What makes this better?,2024-09-03T02:10:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00285""}" +MSG-0001567,INT-000900,agent,Sending it now. Also attaching the project brochure.,2024-09-03T02:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00285""}" +MSG-0001568,INT-000903,client,We visited the site today. The location is excellent but the approach road is narrow.,2024-06-28T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00286""}" +MSG-0001569,INT-000903,client,Can we schedule for this Saturday around 11 AM?,2024-06-28T00:34:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00286""}" +MSG-0001570,INT-000903,client,We're comparing this with Siddha Suburbia Bungalow. What makes this better?,2024-06-28T01:14:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00286""}" +MSG-0001571,INT-000903,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2024-06-28T02:06:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00286""}" +MSG-0001572,INT-000903,client,Home loan. Pre-approved up to 15-25 Cr.,2024-06-28T02:28:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00286""}" +MSG-0001573,INT-000903,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2024-06-28T02:50:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00286""}" +MSG-0001574,INT-000910,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2024-09-02T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00287""}" +MSG-0001575,INT-000910,agent,"Yes, Tower B has east facing units on floors 8-15.",2024-09-02T00:21:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00287""}" +MSG-0001576,INT-000910,client,Home loan. Pre-approved up to 6-10 Cr.,2024-09-02T00:46:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00287""}" +MSG-0001577,INT-000910,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2024-09-02T01:03:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00287""}" +MSG-0001578,INT-000910,client,What about the maintenance charges?,2024-09-02T03:44:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00287""}" +MSG-0001579,INT-000913,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2024-02-16T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00288""}" +MSG-0001580,INT-000913,client,We visited the site today. The location is excellent but the approach road is narrow.,2024-02-16T00:41:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00288""}" +MSG-0001581,INT-000913,client,Thank you. What's the current price per sqft?,2024-02-16T01:08:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00288""}" +MSG-0001582,INT-000913,client,"Hi, I saw the listing for Atri Surya Toron. Is the 3 BHK still available?",2024-02-16T02:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00288""}" +MSG-0001583,INT-000913,client,That's slightly above my budget. Any flexibility?,2024-02-16T01:32:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00288""}" +MSG-0001584,INT-000915,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2024-03-04T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00289""}" +MSG-0001585,INT-000915,client,Thank you. What's the current price per sqft?,2024-03-04T00:18:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00289""}" +MSG-0001586,INT-000915,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2024-03-04T01:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00289""}" +MSG-0001587,INT-000915,client,Can we schedule for this Saturday around 11 AM?,2024-03-04T00:18:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00289""}" +MSG-0001588,INT-000915,client,Received. The layout looks good. Is there a east facing option?,2024-03-04T02:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00289""}" +MSG-0001589,INT-000915,client,We're comparing this with DTC Good Earth. What makes this better?,2024-03-04T05:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00289""}" +MSG-0001590,INT-000915,client,Thank you. What's the current price per sqft?,2024-03-04T01:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00289""}" +MSG-0001591,INT-000915,client,We're comparing this with Siddha Suburbia Bungalow. What makes this better?,2024-03-04T06:04:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00289""}" +MSG-0001592,INT-000923,client,We visited the site today. The location is excellent but the approach road is narrow.,2024-05-20T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00290""}" +MSG-0001593,INT-000923,client,That's slightly above my budget. Any flexibility?,2024-05-20T00:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00290""}" +MSG-0001594,INT-000923,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2024-05-20T00:22:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00290""}" +MSG-0001595,INT-000923,client,My wife wants to see the sample flat again. Can we come tomorrow?,2024-05-20T00:18:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00290""}" +MSG-0001596,INT-000923,agent,It's approximately 9493 per sqft all-inclusive. Best price in Rajarhat right now.,2024-05-20T00:52:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00290""}" +MSG-0001597,INT-000925,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2024-05-22T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00291""}" +MSG-0001598,INT-000925,client,We visited the site today. The location is excellent but the approach road is narrow.,2024-05-22T00:45:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00291""}" +MSG-0001599,INT-000925,client,We're comparing this with Siddha Serena. What makes this better?,2024-05-22T01:22:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00291""}" +MSG-0001600,INT-000925,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2024-05-22T00:27:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00291""}" +MSG-0001601,INT-000925,agent,Sending it now. Also attaching the project brochure.,2024-05-22T00:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00291""}" +MSG-0001602,INT-000929,agent,Of course. I'll arrange a dedicated viewing.,2024-06-15T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00292""}" +MSG-0001603,INT-000929,client,Thank you. What's the current price per sqft?,2024-06-15T00:35:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00292""}" +MSG-0001604,INT-000929,client,Can we schedule for this Saturday around 11 AM?,2024-06-15T01:58:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00292""}" +MSG-0001605,INT-000929,client,Can you hold the unit for 2 days? I need to finalize with my father.,2024-06-15T02:09:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00292""}" +MSG-0001606,INT-000929,client,We're comparing this with Ambuja Utpaala. What makes this better?,2024-06-15T00:28:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00292""}" +MSG-0001607,INT-000929,client,Thank you. What's the current price per sqft?,2024-06-15T03:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00292""}" +MSG-0001608,INT-000930,agent,Sending it now. Also attaching the project brochure.,2024-06-16T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00293""}" +MSG-0001609,INT-000930,client,That's slightly above my budget. Any flexibility?,2024-06-16T00:08:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00293""}" +MSG-0001610,INT-000930,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2024-06-16T00:18:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00293""}" +MSG-0001611,INT-000930,client,We visited the site today. The location is excellent but the approach road is narrow.,2024-06-16T00:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00293""}" +MSG-0001612,INT-000930,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2024-06-16T03:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00293""}" +MSG-0001613,INT-000930,agent,Of course. I'll arrange a dedicated viewing.,2024-06-16T04:05:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00293""}" +MSG-0001614,INT-000936,client,Home loan. Pre-approved up to 1.5-2.5 Cr.,2025-03-18T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00294""}" +MSG-0001615,INT-000936,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2025-03-18T00:32:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00294""}" +MSG-0001616,INT-000936,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2025-03-18T00:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00294""}" +MSG-0001617,INT-000936,client,We're comparing this with DTC Good Earth. What makes this better?,2025-03-18T00:54:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00294""}" +MSG-0001618,INT-000936,client,We visited the site today. The location is excellent but the approach road is narrow.,2025-03-18T02:44:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00294""}" +MSG-0001619,INT-000936,client,That's slightly above my budget. Any flexibility?,2025-03-18T01:50:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00294""}" +MSG-0001620,INT-000938,agent,It's approximately 14900 per sqft all-inclusive. Best price in Barasat right now.,2025-04-13T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00295""}" +MSG-0001621,INT-000938,agent,"Yes sir, we have a few units available. When would you like to visit?",2025-04-13T00:15:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00295""}" +MSG-0001622,INT-000938,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2025-04-13T00:28:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00295""}" +MSG-0001623,INT-000938,agent,Sending it now. Also attaching the project brochure.,2025-04-13T00:42:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00295""}" +MSG-0001624,INT-000938,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2025-04-13T03:08:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00295""}" +MSG-0001625,INT-000938,client,My wife wants to see the sample flat again. Can we come tomorrow?,2025-04-13T02:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00295""}" +MSG-0001626,INT-000938,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2025-04-13T05:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00295""}" +MSG-0001627,INT-000941,agent,Sending it now. Also attaching the project brochure.,2025-05-09T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00296""}" +MSG-0001628,INT-000941,client,Thank you. What's the current price per sqft?,2025-05-09T00:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00296""}" +MSG-0001629,INT-000941,client,Can we schedule for this Saturday around 11 AM?,2025-05-09T00:38:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00296""}" +MSG-0001630,INT-000941,client,We're comparing this with Godrej Elevate. What makes this better?,2025-05-09T02:09:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00296""}" +MSG-0001631,INT-000941,client,My wife wants to see the sample flat again. Can we come tomorrow?,2025-05-09T03:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00296""}" +MSG-0001632,INT-000944,agent,Of course. I'll arrange a dedicated viewing.,2024-02-25T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00297""}" +MSG-0001633,INT-000944,client,Received. The layout looks good. Is there a east facing option?,2024-02-25T00:33:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00297""}" +MSG-0001634,INT-000944,client,We're comparing this with Ambuja Utpaala. What makes this better?,2024-02-25T01:54:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00297""}" +MSG-0001635,INT-000944,client,Received. The layout looks good. Is there a east facing option?,2024-02-25T01:27:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00297""}" +MSG-0001636,INT-000944,client,Received. The layout looks good. Is there a east facing option?,2024-02-25T02:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00297""}" +MSG-0001637,INT-000944,agent,Sending it now. Also attaching the project brochure.,2024-02-25T02:10:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00297""}" +MSG-0001638,INT-000946,client,My wife wants to see the sample flat again. Can we come tomorrow?,2024-03-06T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00298""}" +MSG-0001639,INT-000946,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2024-03-06T00:09:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00298""}" +MSG-0001640,INT-000946,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2024-03-06T01:02:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00298""}" +MSG-0001641,INT-000946,agent,"Rs 6 per sqft per month. Includes housekeeping, security, and common area maintenance.",2024-03-06T02:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00298""}" +MSG-0001642,INT-000946,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2024-03-06T00:28:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00298""}" +MSG-0001643,INT-000946,agent,"Yes sir, we have a few units available. When would you like to visit?",2024-03-06T02:35:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00298""}" +MSG-0001644,INT-000946,agent,"Yes, Tower B has east facing units on floors 8-15.",2024-03-06T05:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00298""}" +MSG-0001645,INT-000949,client,Thank you. What's the current price per sqft?,2025-10-19T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00299""}" +MSG-0001646,INT-000949,client,That's slightly above my budget. Any flexibility?,2025-10-19T00:34:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00299""}" +MSG-0001647,INT-000949,client,I'm ready to book. What's the token amount?,2025-10-19T01:06:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00299""}" +MSG-0001648,INT-000949,client,What about the maintenance charges?,2025-10-19T01:42:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00299""}" +MSG-0001649,INT-000949,client,I'm ready to book. What's the token amount?,2025-10-19T01:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00299""}" +MSG-0001650,INT-000955,client,We're comparing this with Siddha Suburbia Bungalow. What makes this better?,2025-05-14T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00300""}" +MSG-0001651,INT-000955,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2025-05-14T00:22:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00300""}" +MSG-0001652,INT-000955,agent,"Yes, Tower B has east facing units on floors 8-15.",2025-05-14T01:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00300""}" +MSG-0001653,INT-000955,client,Can you share the floor plan?,2025-05-14T01:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00300""}" +MSG-0001654,INT-000955,agent,"Rs 5 per sqft per month. Includes housekeeping, security, and common area maintenance.",2025-05-14T02:32:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00300""}" +MSG-0001655,INT-000956,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2025-07-21T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00301""}" +MSG-0001656,INT-000956,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2025-07-21T00:23:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00301""}" +MSG-0001657,INT-000956,client,My wife wants to see the sample flat again. Can we come tomorrow?,2025-07-21T00:44:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00301""}" +MSG-0001658,INT-000956,agent,Sending it now. Also attaching the project brochure.,2025-07-21T02:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00301""}" +MSG-0001659,INT-000956,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2025-07-21T03:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00301""}" +MSG-0001660,INT-000956,client,What about the maintenance charges?,2025-07-21T01:45:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00301""}" +MSG-0001661,INT-000956,client,Home loan. Pre-approved up to 2.5-4 Cr.,2025-07-21T04:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00301""}" +MSG-0001662,INT-000956,client,"Hi, I saw the listing for DTC Good Earth. Is the 3 BHK still available?",2025-07-21T01:52:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00301""}" +MSG-0001663,INT-000957,client,Home loan. Pre-approved up to 1.5-2.5 Cr.,2025-07-23T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00302""}" +MSG-0001664,INT-000957,agent,Sending it now. Also attaching the project brochure.,2025-07-23T00:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00302""}" +MSG-0001665,INT-000957,agent,Of course. I'll arrange a dedicated viewing.,2025-07-23T00:32:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00302""}" +MSG-0001666,INT-000957,client,Received. The layout looks good. Is there a east facing option?,2025-07-23T01:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00302""}" +MSG-0001667,INT-000957,client,What about the maintenance charges?,2025-07-23T02:52:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00302""}" +MSG-0001668,INT-000958,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2025-07-30T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00303""}" +MSG-0001669,INT-000958,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2025-07-30T00:37:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00303""}" +MSG-0001670,INT-000958,agent,It's approximately 14241 per sqft all-inclusive. Best price in New Town right now.,2025-07-30T00:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00303""}" +MSG-0001671,INT-000958,client,I'm ready to book. What's the token amount?,2025-07-30T02:09:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00303""}" +MSG-0001672,INT-000958,agent,"Rs 6 per sqft per month. Includes housekeeping, security, and common area maintenance.",2025-07-30T03:16:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00303""}" +MSG-0001673,INT-000958,agent,"Rs 5 per sqft per month. Includes housekeeping, security, and common area maintenance.",2025-07-30T01:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00303""}" +MSG-0001674,INT-000958,client,What about the maintenance charges?,2025-07-30T04:42:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00303""}" +MSG-0001675,INT-000958,client,Can we schedule for this Saturday around 11 AM?,2025-07-30T06:04:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00303""}" +MSG-0001676,INT-000967,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2026-02-02T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00304""}" +MSG-0001677,INT-000967,agent,It's approximately 12332 per sqft all-inclusive. Best price in Tollygunge right now.,2026-02-02T00:09:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00304""}" +MSG-0001678,INT-000967,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2026-02-02T01:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00304""}" +MSG-0001679,INT-000968,agent,Sending it now. Also attaching the project brochure.,2026-02-05T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00305""}" +MSG-0001680,INT-000968,client,What about the maintenance charges?,2026-02-05T00:06:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00305""}" +MSG-0001681,INT-000968,client,We visited the site today. The location is excellent but the approach road is narrow.,2026-02-05T01:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00305""}" +MSG-0001682,INT-000968,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2026-02-05T01:42:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00305""}" +MSG-0001683,INT-000968,agent,Of course. I'll arrange a dedicated viewing.,2026-02-05T03:32:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00305""}" +MSG-0001684,INT-000968,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2026-02-05T00:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00305""}" +MSG-0001685,INT-000968,client,We visited the site today. The location is excellent but the approach road is narrow.,2026-02-05T03:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00305""}" +MSG-0001686,INT-000968,client,Received. The layout looks good. Is there a east facing option?,2026-02-05T02:13:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00305""}" +MSG-0001687,INT-000985,client,I'm ready to book. What's the token amount?,2025-10-20T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00306""}" +MSG-0001688,INT-000985,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2025-10-20T00:50:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00306""}" +MSG-0001689,INT-000985,client,We visited the site today. The location is excellent but the approach road is narrow.,2025-10-20T02:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00306""}" +MSG-0001690,INT-000985,agent,"Yes sir, we have a few units available. When would you like to visit?",2025-10-20T00:33:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00306""}" +MSG-0001691,INT-000985,agent,"Yes, Tower B has east facing units on floors 8-15.",2025-10-20T01:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00306""}" +MSG-0001692,INT-000985,client,My wife wants to see the sample flat again. Can we come tomorrow?,2025-10-20T02:25:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00306""}" +MSG-0001693,INT-000985,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2025-10-20T01:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00306""}" +MSG-0001694,INT-000991,client,Can we schedule for this Saturday around 11 AM?,2025-07-08T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00307""}" +MSG-0001695,INT-000991,agent,Sending it now. Also attaching the project brochure.,2025-07-08T00:37:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00307""}" +MSG-0001696,INT-000991,agent,Of course. I'll arrange a dedicated viewing.,2025-07-08T00:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00307""}" +MSG-0001697,INT-000991,agent,It's approximately 14260 per sqft all-inclusive. Best price in New Town right now.,2025-07-08T02:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00307""}" +MSG-0001698,INT-000991,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2025-07-08T02:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00307""}" +MSG-0001699,INT-000991,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2025-07-08T03:10:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00307""}" +MSG-0001700,INT-000991,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2025-07-08T05:54:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00307""}" +MSG-0001701,INT-000991,client,Home loan. Pre-approved up to 4-6 Cr.,2025-07-08T04:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00307""}" +MSG-0001702,INT-000995,agent,Of course. I'll arrange a dedicated viewing.,2025-07-28T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00308""}" +MSG-0001703,INT-000995,client,What about the maintenance charges?,2025-07-28T00:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00308""}" +MSG-0001704,INT-000995,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2025-07-28T01:26:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00308""}" +MSG-0001705,INT-000995,client,Can we schedule for this Saturday around 11 AM?,2025-07-28T01:42:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00308""}" +MSG-0001706,INT-000995,client,Received. The layout looks good. Is there a east facing option?,2025-07-28T01:44:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00308""}" +MSG-0001707,INT-000997,client,That's slightly above my budget. Any flexibility?,2025-08-07T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00309""}" +MSG-0001708,INT-000997,client,Thank you. What's the current price per sqft?,2025-08-07T00:21:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00309""}" +MSG-0001709,INT-000997,client,I'm ready to book. What's the token amount?,2025-08-07T01:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00309""}" +MSG-0001710,INT-000997,agent,It's approximately 13598 per sqft all-inclusive. Best price in New Town right now.,2025-08-07T00:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00309""}" +MSG-0001711,INT-000997,client,That's slightly above my budget. Any flexibility?,2025-08-07T01:28:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00309""}" +MSG-0001712,INT-000997,client,Home loan. Pre-approved up to 15-25 Cr.,2025-08-07T03:50:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00309""}" +MSG-0001713,INT-001001,client,We're comparing this with Merlin Avana. What makes this better?,2025-01-29T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00310""}" +MSG-0001714,INT-001001,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2025-01-29T00:45:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00310""}" +MSG-0001715,INT-001001,agent,"Yes, Tower B has east facing units on floors 8-15.",2025-01-29T01:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00310""}" +MSG-0001716,INT-001001,client,Received. The layout looks good. Is there a east facing option?,2025-01-29T03:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00310""}" +MSG-0001717,INT-001001,agent,"Rs 8 per sqft per month. Includes housekeeping, security, and common area maintenance.",2025-01-29T01:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00310""}" +MSG-0001718,INT-001001,agent,"Rs 3 per sqft per month. Includes housekeeping, security, and common area maintenance.",2025-01-29T03:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00310""}" +MSG-0001719,INT-001001,agent,"Rs 3 per sqft per month. Includes housekeeping, security, and common area maintenance.",2025-01-29T02:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00310""}" +MSG-0001720,INT-001002,client,Thank you. What's the current price per sqft?,2025-02-06T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00311""}" +MSG-0001721,INT-001002,client,"Hi, I saw the listing for Siddha Suburbia Bungalow. Is the 3 BHK still available?",2025-02-06T00:15:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00311""}" +MSG-0001722,INT-001002,agent,Of course. I'll arrange a dedicated viewing.,2025-02-06T01:50:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00311""}" +MSG-0001723,INT-001003,agent,Of course. I'll arrange a dedicated viewing.,2025-02-19T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00312""}" +MSG-0001724,INT-001003,agent,"Rs 5 per sqft per month. Includes housekeeping, security, and common area maintenance.",2025-02-19T00:59:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00312""}" +MSG-0001725,INT-001003,client,We visited the site today. The location is excellent but the approach road is narrow.,2025-02-19T01:54:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00312""}" +MSG-0001726,INT-001004,client,Can we schedule for this Saturday around 11 AM?,2025-03-07T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00313""}" +MSG-0001727,INT-001004,client,Received. The layout looks good. Is there a east facing option?,2025-03-07T00:15:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00313""}" +MSG-0001728,INT-001004,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2025-03-07T01:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00313""}" +MSG-0001729,INT-001004,agent,Sending it now. Also attaching the project brochure.,2025-03-07T02:54:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00313""}" +MSG-0001730,INT-001004,client,Can you share the floor plan?,2025-03-07T02:16:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00313""}" +MSG-0001731,INT-001004,client,Can you share the floor plan?,2025-03-07T04:25:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00313""}" +MSG-0001732,INT-001004,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2025-03-07T04:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00313""}" +MSG-0001733,INT-001004,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2025-03-07T04:47:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00313""}" +MSG-0001734,INT-001005,agent,"Yes, Tower B has east facing units on floors 8-15.",2025-03-20T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00314""}" +MSG-0001735,INT-001005,agent,"Yes sir, we have a few units available. When would you like to visit?",2025-03-20T00:51:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00314""}" +MSG-0001736,INT-001005,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2025-03-20T00:44:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00314""}" +MSG-0001737,INT-001005,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2025-03-20T01:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00314""}" +MSG-0001738,INT-001005,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2025-03-20T03:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00314""}" +MSG-0001739,INT-001005,agent,Of course. I'll arrange a dedicated viewing.,2025-03-20T02:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00314""}" +MSG-0001740,INT-001006,client,We visited the site today. The location is excellent but the approach road is narrow.,2025-04-04T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00315""}" +MSG-0001741,INT-001006,client,Can we schedule for this Saturday around 11 AM?,2025-04-04T00:37:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00315""}" +MSG-0001742,INT-001006,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2025-04-04T00:58:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00315""}" +MSG-0001743,INT-001006,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2025-04-04T00:18:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00315""}" +MSG-0001744,INT-001006,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2025-04-04T01:32:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00315""}" +MSG-0001745,INT-001006,agent,"Yes sir, we have a few units available. When would you like to visit?",2025-04-04T02:05:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00315""}" +MSG-0001746,INT-001006,client,Received. The layout looks good. Is there a east facing option?,2025-04-04T02:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00315""}" +MSG-0001747,INT-001006,client,We're comparing this with DTC Sojon. What makes this better?,2025-04-04T03:02:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00315""}" +MSG-0001748,INT-001009,agent,It's approximately 9463 per sqft all-inclusive. Best price in New Town right now.,2024-04-21T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00316""}" +MSG-0001749,INT-001009,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2024-04-21T00:14:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00316""}" +MSG-0001750,INT-001009,agent,"Yes sir, we have a few units available. When would you like to visit?",2024-04-21T00:44:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00316""}" +MSG-0001751,INT-001009,agent,"Yes sir, we have a few units available. When would you like to visit?",2024-04-21T02:39:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00316""}" +MSG-0001752,INT-001009,client,Can we schedule for this Saturday around 11 AM?,2024-04-21T01:32:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00316""}" +MSG-0001753,INT-001010,agent,"Rs 8 per sqft per month. Includes housekeeping, security, and common area maintenance.",2024-04-21T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00317""}" +MSG-0001754,INT-001010,agent,It's approximately 12305 per sqft all-inclusive. Best price in New Town right now.,2024-04-21T00:13:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00317""}" +MSG-0001755,INT-001010,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2024-04-21T00:16:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00317""}" +MSG-0001756,INT-001010,client,My wife wants to see the sample flat again. Can we come tomorrow?,2024-04-21T01:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00317""}" +MSG-0001757,INT-001010,client,That's slightly above my budget. Any flexibility?,2024-04-21T02:32:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00317""}" +MSG-0001758,INT-001010,agent,"Rs 4 per sqft per month. Includes housekeeping, security, and common area maintenance.",2024-04-21T01:10:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00317""}" +MSG-0001759,INT-001010,client,My wife wants to see the sample flat again. Can we come tomorrow?,2024-04-21T05:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00317""}" +MSG-0001760,INT-001010,client,That's slightly above my budget. Any flexibility?,2024-04-21T02:41:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00317""}" +MSG-0001761,INT-001013,client,Can we schedule for this Saturday around 11 AM?,2024-05-12T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00318""}" +MSG-0001762,INT-001013,agent,It's approximately 12789 per sqft all-inclusive. Best price in New Town right now.,2024-05-12T00:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00318""}" +MSG-0001763,INT-001013,agent,"Yes, Tower B has east facing units on floors 8-15.",2024-05-12T01:08:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00318""}" +MSG-0001764,INT-001013,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2024-05-12T02:39:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00318""}" +MSG-0001765,INT-001019,client,My wife wants to see the sample flat again. Can we come tomorrow?,2025-02-03T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00319""}" +MSG-0001766,INT-001019,client,What about the maintenance charges?,2025-02-03T00:32:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00319""}" +MSG-0001767,INT-001019,client,What about the maintenance charges?,2025-02-03T01:56:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00319""}" +MSG-0001768,INT-001022,client,I'm ready to book. What's the token amount?,2025-03-19T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00320""}" +MSG-0001769,INT-001022,client,Thank you. What's the current price per sqft?,2025-03-19T00:10:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00320""}" +MSG-0001770,INT-001022,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2025-03-19T00:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00320""}" +MSG-0001771,INT-001022,agent,Of course. I'll arrange a dedicated viewing.,2025-03-19T02:33:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00320""}" +MSG-0001772,INT-001022,client,What about the maintenance charges?,2025-03-19T03:08:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00320""}" +MSG-0001773,INT-001023,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2025-04-02T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00321""}" +MSG-0001774,INT-001023,client,Received. The layout looks good. Is there a east facing option?,2025-04-02T00:44:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00321""}" +MSG-0001775,INT-001023,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2025-04-02T00:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00321""}" +MSG-0001776,INT-001023,agent,It's approximately 10899 per sqft all-inclusive. Best price in Madanpur right now.,2025-04-02T01:06:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00321""}" +MSG-0001777,INT-001023,client,Can you share the floor plan?,2025-04-02T02:56:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00321""}" +MSG-0001778,INT-001023,agent,"Yes sir, we have a few units available. When would you like to visit?",2025-04-02T01:50:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00321""}" +MSG-0001779,INT-001025,client,Can you share the floor plan?,2025-04-14T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00322""}" +MSG-0001780,INT-001025,agent,"Yes sir, we have a few units available. When would you like to visit?",2025-04-14T00:28:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00322""}" +MSG-0001781,INT-001025,client,Received. The layout looks good. Is there a east facing option?,2025-04-14T01:50:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00322""}" +MSG-0001782,INT-001025,client,Can we schedule for this Saturday around 11 AM?,2025-04-14T01:09:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00322""}" +MSG-0001783,INT-001025,agent,"Rs 7 per sqft per month. Includes housekeeping, security, and common area maintenance.",2025-04-14T02:28:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00322""}" +MSG-0001784,INT-001025,agent,Sending it now. Also attaching the project brochure.,2025-04-14T01:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00322""}" +MSG-0001785,INT-001025,client,My wife wants to see the sample flat again. Can we come tomorrow?,2025-04-14T00:54:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00322""}" +MSG-0001786,INT-001025,client,Can you share the floor plan?,2025-04-14T04:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00322""}" +MSG-0001787,INT-001029,agent,Of course. I'll arrange a dedicated viewing.,2025-04-23T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00323""}" +MSG-0001788,INT-001029,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2025-04-23T00:35:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00323""}" +MSG-0001789,INT-001029,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2025-04-23T00:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00323""}" +MSG-0001790,INT-001029,agent,Of course. I'll arrange a dedicated viewing.,2025-04-23T01:18:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00323""}" +MSG-0001791,INT-001029,client,"Hi, I saw the listing for Siddha Suburbia Bungalow. Is the 3 BHK still available?",2025-04-23T03:56:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00323""}" +MSG-0001792,INT-001031,client,What about the maintenance charges?,2025-04-30T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00324""}" +MSG-0001793,INT-001031,client,"Hi, I saw the listing for Siddha Suburbia Bungalow. Is the 3 BHK still available?",2025-04-30T00:25:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00324""}" +MSG-0001794,INT-001031,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2025-04-30T01:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00324""}" +MSG-0001795,INT-001034,client,Thank you. What's the current price per sqft?,2025-07-30T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00325""}" +MSG-0001796,INT-001034,client,Can you share the floor plan?,2025-07-30T00:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00325""}" +MSG-0001797,INT-001034,agent,"Yes sir, we have a few units available. When would you like to visit?",2025-07-30T00:10:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00325""}" +MSG-0001798,INT-001036,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2026-02-02T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00326""}" +MSG-0001799,INT-001036,client,What about the maintenance charges?,2026-02-02T00:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00326""}" +MSG-0001800,INT-001036,agent,"Rs 3 per sqft per month. Includes housekeeping, security, and common area maintenance.",2026-02-02T01:16:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00326""}" +MSG-0001801,INT-001036,client,Can you share the floor plan?,2026-02-02T01:54:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00326""}" +MSG-0001802,INT-001036,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2026-02-02T01:32:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00326""}" +MSG-0001803,INT-001036,client,Thank you. What's the current price per sqft?,2026-02-02T03:50:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00326""}" +MSG-0001804,INT-001036,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2026-02-02T01:06:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00326""}" +MSG-0001805,INT-001036,client,Can we schedule for this Saturday around 11 AM?,2026-02-02T01:59:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00326""}" +MSG-0001806,INT-001038,client,Received. The layout looks good. Is there a east facing option?,2026-02-08T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00327""}" +MSG-0001807,INT-001038,agent,It's approximately 13891 per sqft all-inclusive. Best price in New Town right now.,2026-02-08T00:58:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00327""}" +MSG-0001808,INT-001038,client,Can we schedule for this Saturday around 11 AM?,2026-02-08T00:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00327""}" +MSG-0001809,INT-001038,client,What about the maintenance charges?,2026-02-08T01:57:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00327""}" +MSG-0001810,INT-001038,client,We visited the site today. The location is excellent but the approach road is narrow.,2026-02-08T01:08:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00327""}" +MSG-0001811,INT-001038,client,"Hi, I saw the listing for DTC Good Earth. Is the 3 BHK still available?",2026-02-08T01:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00327""}" +MSG-0001812,INT-001040,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2026-03-30T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00328""}" +MSG-0001813,INT-001040,agent,"Yes, Tower B has east facing units on floors 8-15.",2026-03-30T00:58:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00328""}" +MSG-0001814,INT-001040,client,We visited the site today. The location is excellent but the approach road is narrow.,2026-03-30T01:50:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00328""}" +MSG-0001815,INT-001040,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2026-03-30T00:21:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00328""}" +MSG-0001816,INT-001045,client,Thank you. What's the current price per sqft?,2024-08-24T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00329""}" +MSG-0001817,INT-001045,client,We're comparing this with Eden Devprayag. What makes this better?,2024-08-24T00:50:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00329""}" +MSG-0001818,INT-001045,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2024-08-24T00:22:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00329""}" +MSG-0001819,INT-001045,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2024-08-24T02:45:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00329""}" +MSG-0001820,INT-001045,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2024-08-24T02:16:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00329""}" +MSG-0001821,INT-001045,agent,"Yes, Tower B has east facing units on floors 8-15.",2024-08-24T03:50:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00329""}" +MSG-0001822,INT-001045,agent,Sending it now. Also attaching the project brochure.,2024-08-24T04:18:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00329""}" +MSG-0001823,INT-001046,client,Can you share the floor plan?,2024-09-02T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00330""}" +MSG-0001824,INT-001046,agent,"Yes, Tower B has east facing units on floors 8-15.",2024-09-02T00:52:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00330""}" +MSG-0001825,INT-001046,agent,Sending it now. Also attaching the project brochure.,2024-09-02T01:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00330""}" +MSG-0001826,INT-001046,agent,Of course. I'll arrange a dedicated viewing.,2024-09-02T01:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00330""}" +MSG-0001827,INT-001046,client,Thank you. What's the current price per sqft?,2024-09-02T01:44:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00330""}" +MSG-0001828,INT-001046,client,Can we schedule for this Saturday around 11 AM?,2024-09-02T04:55:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00330""}" +MSG-0001829,INT-001054,agent,It's approximately 10440 per sqft all-inclusive. Best price in New Town right now.,2025-04-08T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00331""}" +MSG-0001830,INT-001054,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2025-04-08T00:26:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00331""}" +MSG-0001831,INT-001054,agent,Sending it now. Also attaching the project brochure.,2025-04-08T00:50:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00331""}" +MSG-0001832,INT-001054,agent,Of course. I'll arrange a dedicated viewing.,2025-04-08T02:42:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00331""}" +MSG-0001833,INT-001054,client,"Hi, I saw the listing for Siddha Serena. Is the 3 BHK still available?",2025-04-08T01:16:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00331""}" +MSG-0001834,INT-001054,client,"Hi, I saw the listing for Siddha Serena. Is the 3 BHK still available?",2025-04-08T02:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00331""}" +MSG-0001835,INT-001055,client,What about the maintenance charges?,2025-05-05T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00332""}" +MSG-0001836,INT-001055,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2025-05-05T00:32:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00332""}" +MSG-0001837,INT-001055,client,We're comparing this with Ambuja Utpaala. What makes this better?,2025-05-05T01:44:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00332""}" +MSG-0001838,INT-001055,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2025-05-05T02:57:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00332""}" +MSG-0001839,INT-001055,agent,Of course. I'll arrange a dedicated viewing.,2025-05-05T01:32:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00332""}" +MSG-0001840,INT-001055,client,We're comparing this with Eden Devprayag. What makes this better?,2025-05-05T04:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00332""}" +MSG-0001841,INT-001056,agent,Sending it now. Also attaching the project brochure.,2025-05-17T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00333""}" +MSG-0001842,INT-001056,client,We're comparing this with Shriram Grand City. What makes this better?,2025-05-17T00:18:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00333""}" +MSG-0001843,INT-001056,client,Received. The layout looks good. Is there a east facing option?,2025-05-17T00:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00333""}" +MSG-0001844,INT-001056,agent,Of course. I'll arrange a dedicated viewing.,2025-05-17T00:45:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00333""}" +MSG-0001845,INT-001057,client,Received. The layout looks good. Is there a east facing option?,2025-05-21T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00334""}" +MSG-0001846,INT-001057,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2025-05-21T00:10:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00334""}" +MSG-0001847,INT-001057,client,We're comparing this with Shriram Grand City. What makes this better?,2025-05-21T01:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00334""}" +MSG-0001848,INT-001057,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2025-05-21T00:33:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00334""}" +MSG-0001849,INT-001057,agent,"Yes sir, we have a few units available. When would you like to visit?",2025-05-21T02:04:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00334""}" +MSG-0001850,INT-001057,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2025-05-21T01:10:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00334""}" +MSG-0001851,INT-001057,client,My wife wants to see the sample flat again. Can we come tomorrow?,2025-05-21T02:18:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00334""}" +MSG-0001852,INT-001057,client,Can you hold the unit for 2 days? I need to finalize with my father.,2025-05-21T05:08:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00334""}" +MSG-0001853,INT-001059,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2024-04-26T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00335""}" +MSG-0001854,INT-001059,agent,"Yes, Tower B has east facing units on floors 8-15.",2024-04-26T00:21:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00335""}" +MSG-0001855,INT-001059,agent,"Rs 7 per sqft per month. Includes housekeeping, security, and common area maintenance.",2024-04-26T01:28:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00335""}" +MSG-0001856,INT-001059,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2024-04-26T01:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00335""}" +MSG-0001857,INT-001059,client,Home loan. Pre-approved up to 1.5-2.5 Cr.,2024-04-26T03:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00335""}" +MSG-0001858,INT-001059,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2024-04-26T05:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00335""}" +MSG-0001859,INT-001059,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2024-04-26T02:42:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00335""}" +MSG-0001860,INT-001059,agent,"Yes sir, we have a few units available. When would you like to visit?",2024-04-26T02:06:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00335""}" +MSG-0001861,INT-001060,client,We visited the site today. The location is excellent but the approach road is narrow.,2024-05-28T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00336""}" +MSG-0001862,INT-001060,client,We visited the site today. The location is excellent but the approach road is narrow.,2024-05-28T00:06:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00336""}" +MSG-0001863,INT-001060,agent,It's approximately 9707 per sqft all-inclusive. Best price in Madanpur right now.,2024-05-28T01:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00336""}" +MSG-0001864,INT-001062,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2024-07-03T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00337""}" +MSG-0001865,INT-001062,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2024-07-03T00:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00337""}" +MSG-0001866,INT-001062,client,Thank you. What's the current price per sqft?,2024-07-03T01:14:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00337""}" +MSG-0001867,INT-001062,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2024-07-03T02:18:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00337""}" +MSG-0001868,INT-001062,client,Received. The layout looks good. Is there a east facing option?,2024-07-03T02:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00337""}" +MSG-0001869,INT-001065,agent,"Rs 4 per sqft per month. Includes housekeeping, security, and common area maintenance.",2025-01-05T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00338""}" +MSG-0001870,INT-001065,client,Thank you. What's the current price per sqft?,2025-01-05T00:23:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00338""}" +MSG-0001871,INT-001065,client,"Hi, I saw the listing for Siddha Serena. Is the 3 BHK still available?",2025-01-05T00:56:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00338""}" +MSG-0001872,INT-001065,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2025-01-05T02:42:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00338""}" +MSG-0001873,INT-001065,client,I'm ready to book. What's the token amount?,2025-01-05T03:16:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00338""}" +MSG-0001874,INT-001065,agent,"Yes, Tower B has east facing units on floors 8-15.",2025-01-05T01:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00338""}" +MSG-0001875,INT-001065,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2025-01-05T03:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00338""}" +MSG-0001876,INT-001071,agent,It's approximately 9621 per sqft all-inclusive. Best price in Rajarhat right now.,2025-07-23T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00339""}" +MSG-0001877,INT-001071,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2025-07-23T00:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00339""}" +MSG-0001878,INT-001071,client,I'm ready to book. What's the token amount?,2025-07-23T00:50:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00339""}" +MSG-0001879,INT-001071,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2025-07-23T02:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00339""}" +MSG-0001880,INT-001071,client,Thank you. What's the current price per sqft?,2025-07-23T03:56:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00339""}" +MSG-0001881,INT-001071,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2025-07-23T03:05:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00339""}" +MSG-0001882,INT-001075,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2024-03-24T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00340""}" +MSG-0001883,INT-001075,client,What about the maintenance charges?,2024-03-24T00:50:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00340""}" +MSG-0001884,INT-001075,client,What about the maintenance charges?,2024-03-24T01:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00340""}" +MSG-0001885,INT-001075,client,We visited the site today. The location is excellent but the approach road is narrow.,2024-03-24T01:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00340""}" +MSG-0001886,INT-001075,client,"Hi, I saw the listing for Eden Devprayag. Is the 3 BHK still available?",2024-03-24T01:16:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00340""}" +MSG-0001887,INT-001075,client,I'm ready to book. What's the token amount?,2024-03-24T02:25:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00340""}" +MSG-0001888,INT-001075,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2024-03-24T01:06:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00340""}" +MSG-0001889,INT-001075,agent,"Yes, Tower B has east facing units on floors 8-15.",2024-03-24T01:38:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00340""}" +MSG-0001890,INT-001081,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2024-06-18T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00341""}" +MSG-0001891,INT-001081,client,We visited the site today. The location is excellent but the approach road is narrow.,2024-06-18T00:23:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00341""}" +MSG-0001892,INT-001081,agent,Sending it now. Also attaching the project brochure.,2024-06-18T00:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00341""}" +MSG-0001893,INT-001081,client,Can you share the floor plan?,2024-06-18T01:21:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00341""}" +MSG-0001894,INT-001081,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2024-06-18T01:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00341""}" +MSG-0001895,INT-001081,agent,"Rs 7 per sqft per month. Includes housekeeping, security, and common area maintenance.",2024-06-18T03:15:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00341""}" +MSG-0001896,INT-001086,client,I'm ready to book. What's the token amount?,2024-09-18T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00342""}" +MSG-0001897,INT-001086,client,Can we schedule for this Saturday around 11 AM?,2024-09-18T00:25:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00342""}" +MSG-0001898,INT-001086,client,Thank you. What's the current price per sqft?,2024-09-18T00:28:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00342""}" +MSG-0001899,INT-001086,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2024-09-18T01:39:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00342""}" +MSG-0001900,INT-001086,agent,"Yes sir, we have a few units available. When would you like to visit?",2024-09-18T00:44:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00342""}" +MSG-0001901,INT-001086,client,Home loan. Pre-approved up to 1.5-2.5 Cr.,2024-09-18T04:15:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00342""}" +MSG-0001902,INT-001091,client,Home loan. Pre-approved up to 2.5-4 Cr.,2024-07-04T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00343""}" +MSG-0001903,INT-001091,client,"Hi, I saw the listing for Ambuja Utpaala. Is the 3 BHK still available?",2024-07-04T00:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00343""}" +MSG-0001904,INT-001091,client,I'm ready to book. What's the token amount?,2024-07-04T01:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00343""}" +MSG-0001905,INT-001092,client,I'm ready to book. What's the token amount?,2024-07-29T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00344""}" +MSG-0001906,INT-001092,client,We're comparing this with Siddha Serena. What makes this better?,2024-07-29T00:58:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00344""}" +MSG-0001907,INT-001092,agent,"Yes, Tower B has east facing units on floors 8-15.",2024-07-29T00:28:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00344""}" +MSG-0001908,INT-001092,client,I'm ready to book. What's the token amount?,2024-07-29T01:54:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00344""}" +MSG-0001909,INT-001092,client,That's slightly above my budget. Any flexibility?,2024-07-29T03:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00344""}" +MSG-0001910,INT-001092,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2024-07-29T04:50:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00344""}" +MSG-0001911,INT-001094,client,Received. The layout looks good. Is there a east facing option?,2024-04-17T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00345""}" +MSG-0001912,INT-001094,client,"Hi, I saw the listing for Siddha Serena. Is the 3 BHK still available?",2024-04-17T00:59:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00345""}" +MSG-0001913,INT-001094,agent,"Yes sir, we have a few units available. When would you like to visit?",2024-04-17T01:46:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00345""}" +MSG-0001914,INT-001094,client,Received. The layout looks good. Is there a east facing option?,2024-04-17T01:21:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00345""}" +MSG-0001915,INT-001094,agent,"Yes sir, we have a few units available. When would you like to visit?",2024-04-17T02:44:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00345""}" +MSG-0001916,INT-001094,client,Can you share the floor plan?,2024-04-17T00:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00345""}" +MSG-0001917,INT-001097,agent,It's approximately 8106 per sqft all-inclusive. Best price in Howrah right now.,2024-11-17T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00346""}" +MSG-0001918,INT-001097,agent,"Rs 8 per sqft per month. Includes housekeeping, security, and common area maintenance.",2024-11-17T00:31:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00346""}" +MSG-0001919,INT-001097,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2024-11-17T00:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00346""}" +MSG-0001920,INT-001097,client,Thank you. What's the current price per sqft?,2024-11-17T02:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00346""}" +MSG-0001921,INT-001097,agent,It's approximately 11290 per sqft all-inclusive. Best price in Howrah right now.,2024-11-17T02:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00346""}" +MSG-0001922,INT-001097,client,That's slightly above my budget. Any flexibility?,2024-11-17T02:15:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00346""}" +MSG-0001923,INT-001097,client,Can you share the floor plan?,2024-11-17T05:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00346""}" +MSG-0001924,INT-001098,client,Can we schedule for this Saturday around 11 AM?,2024-11-27T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00347""}" +MSG-0001925,INT-001098,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2024-11-27T00:29:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00347""}" +MSG-0001926,INT-001098,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2024-11-27T00:38:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00347""}" +MSG-0001927,INT-001098,client,Can you hold the unit for 2 days? I need to finalize with my father.,2024-11-27T02:54:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00347""}" +MSG-0001928,INT-001098,client,We're comparing this with Sugam Prakriti. What makes this better?,2024-11-27T00:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00347""}" +MSG-0001929,INT-001098,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2024-11-27T01:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00347""}" +MSG-0001930,INT-001099,agent,"Yes sir, we have a few units available. When would you like to visit?",2024-12-03T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00348""}" +MSG-0001931,INT-001099,client,Home loan. Pre-approved up to 15-25 Cr.,2024-12-03T00:53:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00348""}" +MSG-0001932,INT-001099,agent,"Yes sir, we have a few units available. When would you like to visit?",2024-12-03T02:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00348""}" +MSG-0001933,INT-001099,agent,"Yes sir, we have a few units available. When would you like to visit?",2024-12-03T01:03:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00348""}" +MSG-0001934,INT-001099,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2024-12-03T00:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00348""}" +MSG-0001935,INT-001099,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2024-12-03T04:10:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00348""}" +MSG-0001936,INT-001099,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2024-12-03T01:42:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00348""}" +MSG-0001937,INT-001099,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2024-12-03T02:06:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00348""}" +MSG-0001938,INT-001102,client,My wife wants to see the sample flat again. Can we come tomorrow?,2024-12-13T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00349""}" +MSG-0001939,INT-001102,client,That's slightly above my budget. Any flexibility?,2024-12-13T00:54:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00349""}" +MSG-0001940,INT-001102,agent,Of course. I'll arrange a dedicated viewing.,2024-12-13T01:52:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00349""}" +MSG-0001941,INT-001102,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2024-12-13T01:42:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00349""}" +MSG-0001942,INT-001102,client,Can you share the floor plan?,2024-12-13T03:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00349""}" +MSG-0001943,INT-001103,agent,"Yes sir, we have a few units available. When would you like to visit?",2024-12-13T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00350""}" +MSG-0001944,INT-001103,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2024-12-13T00:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00350""}" +MSG-0001945,INT-001103,client,Thank you. What's the current price per sqft?,2024-12-13T00:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00350""}" +MSG-0001946,INT-001103,agent,"Yes, Tower B has east facing units on floors 8-15.",2024-12-13T02:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00350""}" +MSG-0001947,INT-001103,client,We're comparing this with Godrej Elevate. What makes this better?,2024-12-13T02:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00350""}" +MSG-0001948,INT-001103,client,We're comparing this with Siddha Sky Waterfront. What makes this better?,2024-12-13T04:25:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00350""}" +MSG-0001949,INT-001113,agent,"Yes sir, we have a few units available. When would you like to visit?",2025-01-24T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00351""}" +MSG-0001950,INT-001113,agent,"Yes, Tower B has east facing units on floors 8-15.",2025-01-24T00:35:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00351""}" +MSG-0001951,INT-001113,client,Thank you. What's the current price per sqft?,2025-01-24T00:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00351""}" +MSG-0001952,INT-001113,client,Can you hold the unit for 2 days? I need to finalize with my father.,2025-01-24T01:27:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00351""}" +MSG-0001953,INT-001113,agent,"Yes, Tower B has east facing units on floors 8-15.",2025-01-24T01:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00351""}" +MSG-0001954,INT-001113,client,Thank you. What's the current price per sqft?,2025-01-24T02:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00351""}" +MSG-0001955,INT-001113,client,I'm ready to book. What's the token amount?,2025-01-24T03:18:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00351""}" +MSG-0001956,INT-001117,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2025-02-24T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00352""}" +MSG-0001957,INT-001117,client,Received. The layout looks good. Is there a east facing option?,2025-02-24T00:49:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00352""}" +MSG-0001958,INT-001117,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2025-02-24T00:50:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00352""}" +MSG-0001959,INT-001117,client,Can we schedule for this Saturday around 11 AM?,2025-02-24T00:54:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00352""}" +MSG-0001960,INT-001118,client,I'm ready to book. What's the token amount?,2025-03-19T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00353""}" +MSG-0001961,INT-001118,client,Received. The layout looks good. Is there a east facing option?,2025-03-19T01:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00353""}" +MSG-0001962,INT-001118,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2025-03-19T02:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00353""}" +MSG-0001963,INT-001118,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2025-03-19T00:54:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00353""}" +MSG-0001964,INT-001122,client,That's slightly above my budget. Any flexibility?,2025-12-23T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00354""}" +MSG-0001965,INT-001122,client,Can we schedule for this Saturday around 11 AM?,2025-12-23T00:09:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00354""}" +MSG-0001966,INT-001122,agent,Sending it now. Also attaching the project brochure.,2025-12-23T01:44:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00354""}" +MSG-0001967,INT-001122,agent,"Rs 5 per sqft per month. Includes housekeeping, security, and common area maintenance.",2025-12-23T02:27:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00354""}" +MSG-0001968,INT-001122,client,We're comparing this with DTC Sojon. What makes this better?,2025-12-23T01:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00354""}" +MSG-0001969,INT-001122,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2025-12-23T03:55:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00354""}" +MSG-0001970,INT-001122,agent,Sending it now. Also attaching the project brochure.,2025-12-23T01:54:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00354""}" +MSG-0001971,INT-001127,agent,"Yes, Tower B has east facing units on floors 8-15.",2026-01-28T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00355""}" +MSG-0001972,INT-001127,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2026-01-28T00:53:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00355""}" +MSG-0001973,INT-001127,client,"Hi, I saw the listing for Siddha Suburbia Bungalow. Is the 3 BHK still available?",2026-01-28T01:42:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00355""}" +MSG-0001974,INT-001127,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2026-01-28T01:45:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00355""}" +MSG-0001975,INT-001127,client,Can you share the floor plan?,2026-01-28T00:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00355""}" +MSG-0001976,INT-001128,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2026-01-29T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00356""}" +MSG-0001977,INT-001128,agent,"Yes, Tower B has east facing units on floors 8-15.",2026-01-29T00:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00356""}" +MSG-0001978,INT-001128,agent,"Yes, Tower B has east facing units on floors 8-15.",2026-01-29T01:52:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00356""}" +MSG-0001979,INT-001131,client,That's slightly above my budget. Any flexibility?,2025-07-11T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00357""}" +MSG-0001980,INT-001131,client,My wife wants to see the sample flat again. Can we come tomorrow?,2025-07-11T00:43:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00357""}" +MSG-0001981,INT-001131,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2025-07-11T00:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00357""}" +MSG-0001982,INT-001131,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2025-07-11T01:03:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00357""}" +MSG-0001983,INT-001131,client,Home loan. Pre-approved up to 15-25 Cr.,2025-07-11T00:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00357""}" +MSG-0001984,INT-001135,client,Can you share the floor plan?,2025-08-14T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00358""}" +MSG-0001985,INT-001135,client,Can you hold the unit for 2 days? I need to finalize with my father.,2025-08-14T00:59:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00358""}" +MSG-0001986,INT-001135,agent,"Yes, Tower B has east facing units on floors 8-15.",2025-08-14T00:38:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00358""}" +MSG-0001987,INT-001135,client,What about the maintenance charges?,2025-08-14T03:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00358""}" +MSG-0001988,INT-001135,agent,"Yes, Tower B has east facing units on floors 8-15.",2025-08-14T02:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00358""}" +MSG-0001989,INT-001135,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2025-08-14T02:05:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00358""}" +MSG-0001990,INT-001135,client,Can you share the floor plan?,2025-08-14T02:18:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00358""}" +MSG-0001991,INT-001135,client,Home loan. Pre-approved up to 15-25 Cr.,2025-08-14T05:50:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00358""}" +MSG-0001992,INT-001138,client,Received. The layout looks good. Is there a east facing option?,2024-07-07T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00359""}" +MSG-0001993,INT-001138,agent,It's approximately 11385 per sqft all-inclusive. Best price in New Town right now.,2024-07-07T00:33:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00359""}" +MSG-0001994,INT-001138,client,What about the maintenance charges?,2024-07-07T00:46:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00359""}" +MSG-0001995,INT-001138,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2024-07-07T01:45:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00359""}" +MSG-0001996,INT-001138,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2024-07-07T01:08:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00359""}" +MSG-0001997,INT-001140,client,Can you share the floor plan?,2025-07-11T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00360""}" +MSG-0001998,INT-001140,agent,Sending it now. Also attaching the project brochure.,2025-07-11T00:33:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00360""}" +MSG-0001999,INT-001140,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2025-07-11T01:52:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00360""}" +MSG-0002000,INT-001140,client,"Hi, I saw the listing for Merlin Avana. Is the 3 BHK still available?",2025-07-11T01:39:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00360""}" +MSG-0002001,INT-001140,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2025-07-11T01:32:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00360""}" +MSG-0002002,INT-001140,agent,"Yes sir, we have a few units available. When would you like to visit?",2025-07-11T03:50:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00360""}" +MSG-0002003,INT-001141,client,We visited the site today. The location is excellent but the approach road is narrow.,2025-07-12T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00361""}" +MSG-0002004,INT-001141,client,Can you hold the unit for 2 days? I need to finalize with my father.,2025-07-12T00:07:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00361""}" +MSG-0002005,INT-001141,client,My wife wants to see the sample flat again. Can we come tomorrow?,2025-07-12T01:50:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00361""}" +MSG-0002006,INT-001141,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2025-07-12T02:39:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00361""}" +MSG-0002007,INT-001141,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2025-07-12T00:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00361""}" +MSG-0002008,INT-001141,client,My wife wants to see the sample flat again. Can we come tomorrow?,2025-07-12T00:50:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00361""}" +MSG-0002009,INT-001141,client,Can you share the floor plan?,2025-07-12T01:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00361""}" +MSG-0002010,INT-001143,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2025-08-06T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00362""}" +MSG-0002011,INT-001143,client,We're comparing this with DTC Sojon. What makes this better?,2025-08-06T00:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00362""}" +MSG-0002012,INT-001143,client,Can you share the floor plan?,2025-08-06T01:58:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00362""}" +MSG-0002013,INT-001143,client,We're comparing this with Atri Surya Toron. What makes this better?,2025-08-06T02:45:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00362""}" +MSG-0002014,INT-001143,client,We're comparing this with Siddha Serena. What makes this better?,2025-08-06T01:32:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00362""}" +MSG-0002015,INT-001143,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2025-08-06T02:05:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00362""}" +MSG-0002016,INT-001143,client,Can you hold the unit for 2 days? I need to finalize with my father.,2025-08-06T00:42:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00362""}" +MSG-0002017,INT-001143,client,My wife wants to see the sample flat again. Can we come tomorrow?,2025-08-06T06:25:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00362""}" +MSG-0002018,INT-001144,client,We're comparing this with Godrej Elevate. What makes this better?,2025-08-18T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00363""}" +MSG-0002019,INT-001144,client,Received. The layout looks good. Is there a east facing option?,2025-08-18T00:54:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00363""}" +MSG-0002020,INT-001144,agent,"Yes sir, we have a few units available. When would you like to visit?",2025-08-18T01:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00363""}" +MSG-0002021,INT-001144,client,I'm ready to book. What's the token amount?,2025-08-18T02:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00363""}" +MSG-0002022,INT-001144,client,Can you hold the unit for 2 days? I need to finalize with my father.,2025-08-18T03:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00363""}" +MSG-0002023,INT-001144,agent,It's approximately 13895 per sqft all-inclusive. Best price in Tangra right now.,2025-08-18T04:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00363""}" +MSG-0002024,INT-001144,client,What about the maintenance charges?,2025-08-18T04:06:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00363""}" +MSG-0002025,INT-001144,client,What about the maintenance charges?,2025-08-18T04:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00363""}" +MSG-0002026,INT-001145,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2025-08-25T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00364""}" +MSG-0002027,INT-001145,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2025-08-25T00:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00364""}" +MSG-0002028,INT-001145,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2025-08-25T00:50:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00364""}" +MSG-0002029,INT-001145,client,Home loan. Pre-approved up to 6-10 Cr.,2025-08-25T01:39:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00364""}" +MSG-0002030,INT-001145,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2025-08-25T00:44:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00364""}" +MSG-0002031,INT-001145,client,Thank you. What's the current price per sqft?,2025-08-25T02:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00364""}" +MSG-0002032,INT-001145,agent,It's approximately 13392 per sqft all-inclusive. Best price in Tangra right now.,2025-08-25T03:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00364""}" +MSG-0002033,INT-001146,agent,Of course. I'll arrange a dedicated viewing.,2025-09-10T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00365""}" +MSG-0002034,INT-001146,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2025-09-10T00:19:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00365""}" +MSG-0002035,INT-001146,client,Can we schedule for this Saturday around 11 AM?,2025-09-10T00:14:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00365""}" +MSG-0002036,INT-001148,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2025-08-09T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00366""}" +MSG-0002037,INT-001148,client,Home loan. Pre-approved up to 15-25 Cr.,2025-08-09T00:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00366""}" +MSG-0002038,INT-001148,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2025-08-09T00:42:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00366""}" +MSG-0002039,INT-001148,agent,"Rs 4 per sqft per month. Includes housekeeping, security, and common area maintenance.",2025-08-09T02:09:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00366""}" +MSG-0002040,INT-001148,client,That's slightly above my budget. Any flexibility?,2025-08-09T02:52:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00366""}" +MSG-0002041,INT-001148,client,Received. The layout looks good. Is there a east facing option?,2025-08-09T01:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00366""}" +MSG-0002042,INT-001148,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2025-08-09T03:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00366""}" +MSG-0002043,INT-001163,client,Can you hold the unit for 2 days? I need to finalize with my father.,2024-03-16T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00367""}" +MSG-0002044,INT-001163,agent,"Yes sir, we have a few units available. When would you like to visit?",2024-03-16T00:08:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00367""}" +MSG-0002045,INT-001163,client,My wife wants to see the sample flat again. Can we come tomorrow?,2024-03-16T01:46:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00367""}" +MSG-0002046,INT-001165,client,We visited the site today. The location is excellent but the approach road is narrow.,2025-02-16T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00368""}" +MSG-0002047,INT-001165,agent,It's approximately 8442 per sqft all-inclusive. Best price in New Town right now.,2025-02-16T00:39:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00368""}" +MSG-0002048,INT-001165,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2025-02-16T01:50:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00368""}" +MSG-0002049,INT-001165,client,That's slightly above my budget. Any flexibility?,2025-02-16T02:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00368""}" +MSG-0002050,INT-001165,agent,It's approximately 14748 per sqft all-inclusive. Best price in New Town right now.,2025-02-16T00:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00368""}" +MSG-0002051,INT-001165,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2025-02-16T04:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00368""}" +MSG-0002052,INT-001165,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2025-02-16T04:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00368""}" +MSG-0002053,INT-001165,client,Can we schedule for this Saturday around 11 AM?,2025-02-16T05:01:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00368""}" +MSG-0002054,INT-001171,client,"Hi, I saw the listing for DTC Good Earth. Is the 3 BHK still available?",2024-12-20T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00369""}" +MSG-0002055,INT-001171,client,Received. The layout looks good. Is there a east facing option?,2024-12-20T00:29:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00369""}" +MSG-0002056,INT-001171,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2024-12-20T00:38:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00369""}" +MSG-0002057,INT-001171,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2024-12-20T00:42:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00369""}" +MSG-0002058,INT-001183,client,I'm ready to book. What's the token amount?,2026-03-05T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00370""}" +MSG-0002059,INT-001183,agent,"Yes, Tower B has east facing units on floors 8-15.",2026-03-05T00:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00370""}" +MSG-0002060,INT-001183,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2026-03-05T00:38:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00370""}" +MSG-0002061,INT-001183,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2026-03-05T01:15:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00370""}" +MSG-0002062,INT-001183,client,"Hi, I saw the listing for Atri Aqua. Is the 3 BHK still available?",2026-03-05T00:44:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00370""}" +MSG-0002063,INT-001183,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2026-03-05T00:55:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00370""}" +MSG-0002064,INT-001183,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2026-03-05T05:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00370""}" +MSG-0002065,INT-001183,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2026-03-05T04:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00370""}" +MSG-0002066,INT-001185,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2024-08-01T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00371""}" +MSG-0002067,INT-001185,client,We're comparing this with Siddha Serena. What makes this better?,2024-08-01T00:53:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00371""}" +MSG-0002068,INT-001185,agent,"Rs 8 per sqft per month. Includes housekeeping, security, and common area maintenance.",2024-08-01T01:14:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00371""}" +MSG-0002069,INT-001185,client,Can you hold the unit for 2 days? I need to finalize with my father.,2024-08-01T02:21:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00371""}" +MSG-0002070,INT-001185,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2024-08-01T01:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00371""}" +MSG-0002071,INT-001185,client,"Hi, I saw the listing for Siddha Suburbia Bungalow. Is the 3 BHK still available?",2024-08-01T00:50:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00371""}" +MSG-0002072,INT-001193,client,Thank you. What's the current price per sqft?,2025-10-21T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00372""}" +MSG-0002073,INT-001193,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2025-10-21T00:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00372""}" +MSG-0002074,INT-001193,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2025-10-21T00:14:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00372""}" +MSG-0002075,INT-001193,client,We visited the site today. The location is excellent but the approach road is narrow.,2025-10-21T01:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00372""}" +MSG-0002076,INT-001194,agent,"Yes sir, we have a few units available. When would you like to visit?",2025-10-31T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00373""}" +MSG-0002077,INT-001194,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2025-10-31T00:56:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00373""}" +MSG-0002078,INT-001194,client,"Hi, I saw the listing for Godrej Blue. Is the 3 BHK still available?",2025-10-31T01:38:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00373""}" +MSG-0002079,INT-001194,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2025-10-31T02:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00373""}" +MSG-0002080,INT-001194,client,I'm ready to book. What's the token amount?,2025-10-31T03:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00373""}" +MSG-0002081,INT-001197,client,Can you share the floor plan?,2025-12-06T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00374""}" +MSG-0002082,INT-001197,client,Home loan. Pre-approved up to 10-15 Cr.,2025-12-06T00:58:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00374""}" +MSG-0002083,INT-001197,client,Can you hold the unit for 2 days? I need to finalize with my father.,2025-12-06T00:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00374""}" +MSG-0002084,INT-001197,client,That's slightly above my budget. Any flexibility?,2025-12-06T00:57:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00374""}" +MSG-0002085,INT-001197,agent,It's approximately 14344 per sqft all-inclusive. Best price in New Town right now.,2025-12-06T01:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00374""}" +MSG-0002086,INT-001197,client,My wife wants to see the sample flat again. Can we come tomorrow?,2025-12-06T04:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00374""}" +MSG-0002087,INT-001198,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2025-12-09T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00375""}" +MSG-0002088,INT-001198,client,My wife wants to see the sample flat again. Can we come tomorrow?,2025-12-09T00:19:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00375""}" +MSG-0002089,INT-001198,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2025-12-09T00:26:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00375""}" +MSG-0002090,INT-001198,client,Received. The layout looks good. Is there a east facing option?,2025-12-09T02:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00375""}" +MSG-0002091,INT-001201,agent,Sending it now. Also attaching the project brochure.,2024-08-25T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00376""}" +MSG-0002092,INT-001201,client,"Hi, I saw the listing for DTC Good Earth. Is the 3 BHK still available?",2024-08-25T00:46:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00376""}" +MSG-0002093,INT-001201,client,My wife wants to see the sample flat again. Can we come tomorrow?,2024-08-25T01:42:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00376""}" +MSG-0002094,INT-001201,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2024-08-25T02:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00376""}" +MSG-0002095,INT-001201,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2024-08-25T02:32:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00376""}" +MSG-0002096,INT-001202,client,What about the maintenance charges?,2024-09-15T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00377""}" +MSG-0002097,INT-001202,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2024-09-15T00:32:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00377""}" +MSG-0002098,INT-001202,client,Can you hold the unit for 2 days? I need to finalize with my father.,2024-09-15T01:44:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00377""}" +MSG-0002099,INT-001202,agent,"Yes sir, we have a few units available. When would you like to visit?",2024-09-15T01:33:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00377""}" +MSG-0002100,INT-001202,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2024-09-15T03:16:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00377""}" +MSG-0002101,INT-001202,client,Received. The layout looks good. Is there a east facing option?,2024-09-15T03:25:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00377""}" +MSG-0002102,INT-001203,client,Can you share the floor plan?,2024-09-28T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00378""}" +MSG-0002103,INT-001203,client,That's slightly above my budget. Any flexibility?,2024-09-28T00:08:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00378""}" +MSG-0002104,INT-001203,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2024-09-28T00:10:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00378""}" +MSG-0002105,INT-001203,client,Can you hold the unit for 2 days? I need to finalize with my father.,2024-09-28T02:18:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00378""}" +MSG-0002106,INT-001203,client,That's slightly above my budget. Any flexibility?,2024-09-28T00:52:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00378""}" +MSG-0002107,INT-001207,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2024-09-13T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00379""}" +MSG-0002108,INT-001207,client,We're comparing this with Godrej Elevate. What makes this better?,2024-09-13T00:45:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00379""}" +MSG-0002109,INT-001207,agent,Of course. I'll arrange a dedicated viewing.,2024-09-13T01:22:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00379""}" +MSG-0002110,INT-001207,client,Can we schedule for this Saturday around 11 AM?,2024-09-13T01:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00379""}" +MSG-0002111,INT-001207,client,My wife wants to see the sample flat again. Can we come tomorrow?,2024-09-13T01:32:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00379""}" +MSG-0002112,INT-001207,agent,"Yes sir, we have a few units available. When would you like to visit?",2024-09-13T04:55:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00379""}" +MSG-0002113,INT-001207,agent,Sending it now. Also attaching the project brochure.,2024-09-13T05:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00379""}" +MSG-0002114,INT-001207,client,That's slightly above my budget. Any flexibility?,2024-09-13T01:45:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00379""}" +MSG-0002115,INT-001210,agent,"Rs 3 per sqft per month. Includes housekeeping, security, and common area maintenance.",2024-10-09T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00380""}" +MSG-0002116,INT-001210,client,We visited the site today. The location is excellent but the approach road is narrow.,2024-10-09T00:09:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00380""}" +MSG-0002117,INT-001210,client,We're comparing this with Ambuja Utpaala. What makes this better?,2024-10-09T01:10:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00380""}" +MSG-0002118,INT-001210,client,Can you hold the unit for 2 days? I need to finalize with my father.,2024-10-09T02:51:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00380""}" +MSG-0002119,INT-001210,client,Can you hold the unit for 2 days? I need to finalize with my father.,2024-10-09T03:16:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00380""}" +MSG-0002120,INT-001214,agent,Of course. I'll arrange a dedicated viewing.,2024-10-17T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00381""}" +MSG-0002121,INT-001214,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2024-10-17T00:21:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00381""}" +MSG-0002122,INT-001214,client,What about the maintenance charges?,2024-10-17T00:14:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00381""}" +MSG-0002123,INT-001214,client,Can you share the floor plan?,2024-10-17T02:03:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00381""}" +MSG-0002124,INT-001214,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2024-10-17T00:52:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00381""}" +MSG-0002125,INT-001214,agent,Of course. I'll arrange a dedicated viewing.,2024-10-17T04:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00381""}" +MSG-0002126,INT-001215,client,What about the maintenance charges?,2024-10-22T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00382""}" +MSG-0002127,INT-001215,client,Home loan. Pre-approved up to 10-15 Cr.,2024-10-22T00:44:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00382""}" +MSG-0002128,INT-001215,client,That's slightly above my budget. Any flexibility?,2024-10-22T01:58:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00382""}" +MSG-0002129,INT-001216,client,What about the maintenance charges?,2024-10-23T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00383""}" +MSG-0002130,INT-001216,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2024-10-23T00:47:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00383""}" +MSG-0002131,INT-001216,agent,"Yes, Tower B has east facing units on floors 8-15.",2024-10-23T01:50:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00383""}" +MSG-0002132,INT-001216,client,We visited the site today. The location is excellent but the approach road is narrow.,2024-10-23T00:21:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00383""}" +MSG-0002133,INT-001216,agent,Sending it now. Also attaching the project brochure.,2024-10-23T01:52:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00383""}" +MSG-0002134,INT-001218,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2024-11-30T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00384""}" +MSG-0002135,INT-001218,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2024-11-30T00:22:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00384""}" +MSG-0002136,INT-001218,agent,Sending it now. Also attaching the project brochure.,2024-11-30T01:32:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00384""}" +MSG-0002137,INT-001218,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2024-11-30T01:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00384""}" +MSG-0002138,INT-001218,client,Can you share the floor plan?,2024-11-30T01:44:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00384""}" +MSG-0002139,INT-001218,client,"Hi, I saw the listing for Siddha Sky Waterfront. Is the 3 BHK still available?",2024-11-30T00:25:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00384""}" +MSG-0002140,INT-001222,agent,It's approximately 13818 per sqft all-inclusive. Best price in Madanpur right now.,2025-09-26T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00385""}" +MSG-0002141,INT-001222,client,Can you hold the unit for 2 days? I need to finalize with my father.,2025-09-26T00:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00385""}" +MSG-0002142,INT-001222,client,"Hi, I saw the listing for Siddha Suburbia Bungalow. Is the 3 BHK still available?",2025-09-26T01:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00385""}" +MSG-0002143,INT-001222,agent,Sending it now. Also attaching the project brochure.,2025-09-26T02:18:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00385""}" +MSG-0002144,INT-001233,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2025-11-18T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00386""}" +MSG-0002145,INT-001233,client,Can you hold the unit for 2 days? I need to finalize with my father.,2025-11-18T00:11:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00386""}" +MSG-0002146,INT-001233,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2025-11-18T01:50:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00386""}" +MSG-0002147,INT-001233,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2025-11-18T00:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00386""}" +MSG-0002148,INT-001233,agent,Sending it now. Also attaching the project brochure.,2025-11-18T02:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00386""}" +MSG-0002149,INT-001236,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2024-09-04T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00387""}" +MSG-0002150,INT-001236,agent,It's approximately 10875 per sqft all-inclusive. Best price in New Town right now.,2024-09-04T00:07:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00387""}" +MSG-0002151,INT-001236,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2024-09-04T01:22:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00387""}" +MSG-0002152,INT-001238,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2024-09-20T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00388""}" +MSG-0002153,INT-001238,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2024-09-20T01:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00388""}" +MSG-0002154,INT-001238,client,We visited the site today. The location is excellent but the approach road is narrow.,2024-09-20T01:50:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00388""}" +MSG-0002155,INT-001238,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2024-09-20T01:21:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00388""}" +MSG-0002156,INT-001238,client,Can you hold the unit for 2 days? I need to finalize with my father.,2024-09-20T00:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00388""}" +MSG-0002157,INT-001238,client,"Hi, I saw the listing for Godrej Blue. Is the 3 BHK still available?",2024-09-20T01:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00388""}" +MSG-0002158,INT-001238,client,My wife wants to see the sample flat again. Can we come tomorrow?,2024-09-20T03:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00388""}" +MSG-0002159,INT-001240,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2024-09-25T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00389""}" +MSG-0002160,INT-001240,client,I'm ready to book. What's the token amount?,2024-09-25T00:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00389""}" +MSG-0002161,INT-001240,client,We visited the site today. The location is excellent but the approach road is narrow.,2024-09-25T00:54:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00389""}" +MSG-0002162,INT-001240,agent,"Rs 6 per sqft per month. Includes housekeeping, security, and common area maintenance.",2024-09-25T01:27:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00389""}" +MSG-0002163,INT-001240,client,Can you hold the unit for 2 days? I need to finalize with my father.,2024-09-25T02:44:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00389""}" +MSG-0002164,INT-001240,client,Received. The layout looks good. Is there a east facing option?,2024-09-25T05:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00389""}" +MSG-0002165,INT-001243,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2025-10-05T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00390""}" +MSG-0002166,INT-001243,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2025-10-05T00:32:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00390""}" +MSG-0002167,INT-001243,client,Received. The layout looks good. Is there a east facing option?,2025-10-05T00:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00390""}" +MSG-0002168,INT-001243,client,I'm ready to book. What's the token amount?,2025-10-05T02:39:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00390""}" +MSG-0002169,INT-001243,client,"Hi, I saw the listing for Siddha Suburbia Bungalow. Is the 3 BHK still available?",2025-10-05T03:44:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00390""}" +MSG-0002170,INT-001243,client,Can you share the floor plan?,2025-10-05T04:10:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00390""}" +MSG-0002171,INT-001248,client,I'm ready to book. What's the token amount?,2025-10-25T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00391""}" +MSG-0002172,INT-001248,agent,"Yes sir, we have a few units available. When would you like to visit?",2025-10-25T00:26:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00391""}" +MSG-0002173,INT-001248,agent,"Yes, Tower B has east facing units on floors 8-15.",2025-10-25T01:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00391""}" +MSG-0002174,INT-001251,client,Home loan. Pre-approved up to 2.5-4 Cr.,2025-01-26T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00392""}" +MSG-0002175,INT-001251,client,My wife wants to see the sample flat again. Can we come tomorrow?,2025-01-26T00:41:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00392""}" +MSG-0002176,INT-001251,client,Received. The layout looks good. Is there a east facing option?,2025-01-26T01:28:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00392""}" +MSG-0002177,INT-001257,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2026-03-08T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00393""}" +MSG-0002178,INT-001257,client,Thank you. What's the current price per sqft?,2026-03-08T00:45:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00393""}" +MSG-0002179,INT-001257,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2026-03-08T01:08:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00393""}" +MSG-0002180,INT-001257,client,My wife wants to see the sample flat again. Can we come tomorrow?,2026-03-08T02:18:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00393""}" +MSG-0002181,INT-001257,client,We're comparing this with DTC Sojon. What makes this better?,2026-03-08T01:56:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00393""}" +MSG-0002182,INT-001257,client,"Hi, I saw the listing for Atri Aqua. Is the 3 BHK still available?",2026-03-08T03:10:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00393""}" +MSG-0002183,INT-001257,client,Can we schedule for this Saturday around 11 AM?,2026-03-08T00:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00393""}" +MSG-0002184,INT-001257,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2026-03-08T04:33:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00393""}" +MSG-0002185,INT-001262,client,We're comparing this with Shriram Grand City. What makes this better?,2026-04-17T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00394""}" +MSG-0002186,INT-001262,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2026-04-17T00:51:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00394""}" +MSG-0002187,INT-001262,agent,Of course. I'll arrange a dedicated viewing.,2026-04-17T01:16:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00394""}" +MSG-0002188,INT-001262,agent,It's approximately 14456 per sqft all-inclusive. Best price in New Town right now.,2026-04-17T02:54:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00394""}" +MSG-0002189,INT-001262,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2026-04-17T04:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00394""}" +MSG-0002190,INT-001266,agent,"Yes sir, we have a few units available. When would you like to visit?",2024-02-08T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00395""}" +MSG-0002191,INT-001266,client,Home loan. Pre-approved up to 10-15 Cr.,2024-02-08T00:50:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00395""}" +MSG-0002192,INT-001266,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2024-02-08T00:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00395""}" +MSG-0002193,INT-001266,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2024-02-08T02:39:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00395""}" +MSG-0002194,INT-001266,agent,"Rs 4 per sqft per month. Includes housekeeping, security, and common area maintenance.",2024-02-08T03:04:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00395""}" +MSG-0002195,INT-001269,client,Thank you. What's the current price per sqft?,2024-04-03T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00396""}" +MSG-0002196,INT-001269,client,Received. The layout looks good. Is there a east facing option?,2024-04-03T00:57:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00396""}" +MSG-0002197,INT-001269,agent,"Yes, Tower B has east facing units on floors 8-15.",2024-04-03T01:54:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00396""}" +MSG-0002198,INT-001269,agent,"Yes sir, we have a few units available. When would you like to visit?",2024-04-03T02:09:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00396""}" +MSG-0002199,INT-001269,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2024-04-03T02:52:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00396""}" +MSG-0002200,INT-001269,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2024-04-03T05:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00396""}" +MSG-0002201,INT-001270,client,We're comparing this with Siddha Suburbia Bungalow. What makes this better?,2024-04-04T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00397""}" +MSG-0002202,INT-001270,client,Can you hold the unit for 2 days? I need to finalize with my father.,2024-04-04T00:25:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00397""}" +MSG-0002203,INT-001270,agent,It's approximately 13749 per sqft all-inclusive. Best price in New Town right now.,2024-04-04T01:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00397""}" +MSG-0002204,INT-001270,agent,Of course. I'll arrange a dedicated viewing.,2024-04-04T00:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00397""}" +MSG-0002205,INT-001273,client,What about the maintenance charges?,2024-04-04T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00398""}" +MSG-0002206,INT-001273,agent,"Yes, Tower B has east facing units on floors 8-15.",2024-04-04T00:17:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00398""}" +MSG-0002207,INT-001273,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2024-04-04T00:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00398""}" +MSG-0002208,INT-001273,client,Can we schedule for this Saturday around 11 AM?,2024-04-04T01:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00398""}" +MSG-0002209,INT-001273,client,I'm ready to book. What's the token amount?,2024-04-04T03:52:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00398""}" +MSG-0002210,INT-001274,client,We're comparing this with DTC Sojon. What makes this better?,2024-04-05T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00399""}" +MSG-0002211,INT-001274,agent,It's approximately 8415 per sqft all-inclusive. Best price in Tangra right now.,2024-04-05T00:27:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00399""}" +MSG-0002212,INT-001274,client,Can you share the floor plan?,2024-04-05T01:56:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00399""}" +MSG-0002213,INT-001274,agent,It's approximately 13339 per sqft all-inclusive. Best price in Tangra right now.,2024-04-05T01:06:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00399""}" +MSG-0002214,INT-001274,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2024-04-05T00:52:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00399""}" +MSG-0002215,INT-001274,agent,"Rs 8 per sqft per month. Includes housekeeping, security, and common area maintenance.",2024-04-05T01:55:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00399""}" +MSG-0002216,INT-001274,client,We're comparing this with Ambuja Utpaala. What makes this better?,2024-04-05T05:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00399""}" +MSG-0002217,INT-001275,agent,"Yes, Tower B has east facing units on floors 8-15.",2024-04-25T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00400""}" +MSG-0002218,INT-001275,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2024-04-25T00:34:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00400""}" +MSG-0002219,INT-001275,client,Thank you. What's the current price per sqft?,2024-04-25T00:44:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00400""}" +MSG-0002220,INT-001275,agent,"Rs 7 per sqft per month. Includes housekeeping, security, and common area maintenance.",2024-04-25T02:21:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00400""}" +MSG-0002221,INT-001275,client,Can you hold the unit for 2 days? I need to finalize with my father.,2024-04-25T02:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00400""}" +MSG-0002222,INT-001275,client,We're comparing this with Eden Devprayag. What makes this better?,2024-04-25T00:35:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00400""}" +MSG-0002223,INT-001275,agent,"Rs 5 per sqft per month. Includes housekeeping, security, and common area maintenance.",2024-04-25T01:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00400""}" +MSG-0002224,INT-001278,client,Home loan. Pre-approved up to 4-6 Cr.,2024-08-25T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00401""}" +MSG-0002225,INT-001278,client,We're comparing this with Atri Surya Toron. What makes this better?,2024-08-25T00:21:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00401""}" +MSG-0002226,INT-001278,client,Home loan. Pre-approved up to 6-10 Cr.,2024-08-25T01:14:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00401""}" +MSG-0002227,INT-001278,client,Can you hold the unit for 2 days? I need to finalize with my father.,2024-08-25T02:33:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00401""}" +MSG-0002228,INT-001279,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2024-08-25T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00402""}" +MSG-0002229,INT-001279,client,My wife wants to see the sample flat again. Can we come tomorrow?,2024-08-25T00:09:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00402""}" +MSG-0002230,INT-001279,agent,It's approximately 10754 per sqft all-inclusive. Best price in Madanpur right now.,2024-08-25T01:34:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00402""}" +MSG-0002231,INT-001284,client,I'm ready to book. What's the token amount?,2024-09-26T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00403""}" +MSG-0002232,INT-001284,agent,"Yes, Tower B has east facing units on floors 8-15.",2024-09-26T00:56:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00403""}" +MSG-0002233,INT-001284,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2024-09-26T00:44:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00403""}" +MSG-0002234,INT-001284,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2024-09-26T00:57:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00403""}" +MSG-0002235,INT-001286,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2024-10-12T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00404""}" +MSG-0002236,INT-001286,agent,"Yes sir, we have a few units available. When would you like to visit?",2024-10-12T00:44:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00404""}" +MSG-0002237,INT-001286,client,I'm ready to book. What's the token amount?,2024-10-12T01:26:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00404""}" +MSG-0002238,INT-001286,client,That's slightly above my budget. Any flexibility?,2024-10-12T02:03:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00404""}" +MSG-0002239,INT-001286,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2024-10-12T03:52:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00404""}" +MSG-0002240,INT-001289,client,We're comparing this with Siddha Suburbia Bungalow. What makes this better?,2024-05-21T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00405""}" +MSG-0002241,INT-001289,client,What about the maintenance charges?,2024-05-21T00:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00405""}" +MSG-0002242,INT-001289,client,We visited the site today. The location is excellent but the approach road is narrow.,2024-05-21T01:58:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00405""}" +MSG-0002243,INT-001289,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2024-05-21T00:15:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00405""}" +MSG-0002244,INT-001294,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2024-07-04T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00406""}" +MSG-0002245,INT-001294,client,Received. The layout looks good. Is there a east facing option?,2024-07-04T00:08:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00406""}" +MSG-0002246,INT-001294,client,Can you share the floor plan?,2024-07-04T01:08:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00406""}" +MSG-0002247,INT-001295,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2024-07-05T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00407""}" +MSG-0002248,INT-001295,client,We visited the site today. The location is excellent but the approach road is narrow.,2024-07-05T00:08:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00407""}" +MSG-0002249,INT-001295,agent,Of course. I'll arrange a dedicated viewing.,2024-07-05T02:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00407""}" +MSG-0002250,INT-001295,client,Thank you. What's the current price per sqft?,2024-07-05T01:51:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00407""}" +MSG-0002251,INT-001295,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2024-07-05T03:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00407""}" +MSG-0002252,INT-001295,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2024-07-05T03:05:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00407""}" +MSG-0002253,INT-001296,client,We visited the site today. The location is excellent but the approach road is narrow.,2024-07-25T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00408""}" +MSG-0002254,INT-001296,client,"Hi, I saw the listing for Ambuja Utpaala. Is the 3 BHK still available?",2024-07-25T00:33:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00408""}" +MSG-0002255,INT-001296,client,Can we schedule for this Saturday around 11 AM?,2024-07-25T01:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00408""}" +MSG-0002256,INT-001296,agent,Sending it now. Also attaching the project brochure.,2024-07-25T01:39:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00408""}" +MSG-0002257,INT-001297,client,Can you hold the unit for 2 days? I need to finalize with my father.,2024-07-31T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00409""}" +MSG-0002258,INT-001297,agent,It's approximately 14344 per sqft all-inclusive. Best price in Tollygunge right now.,2024-07-31T00:58:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00409""}" +MSG-0002259,INT-001297,client,Received. The layout looks good. Is there a east facing option?,2024-07-31T01:52:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00409""}" +MSG-0002260,INT-001297,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2024-07-31T02:45:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00409""}" +MSG-0002261,INT-001297,client,Can you share the floor plan?,2024-07-31T01:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00409""}" +MSG-0002262,INT-001297,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2024-07-31T02:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00409""}" +MSG-0002263,INT-001298,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2024-08-01T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00410""}" +MSG-0002264,INT-001298,client,My wife wants to see the sample flat again. Can we come tomorrow?,2024-08-01T00:56:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00410""}" +MSG-0002265,INT-001298,client,What about the maintenance charges?,2024-08-01T01:26:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00410""}" +MSG-0002266,INT-001298,agent,"Yes sir, we have a few units available. When would you like to visit?",2024-08-01T02:09:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00410""}" +MSG-0002267,INT-001301,client,Home loan. Pre-approved up to 1.5-2.5 Cr.,2024-11-12T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00411""}" +MSG-0002268,INT-001301,agent,Of course. I'll arrange a dedicated viewing.,2024-11-12T00:52:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00411""}" +MSG-0002269,INT-001301,agent,Sending it now. Also attaching the project brochure.,2024-11-12T00:42:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00411""}" +MSG-0002270,INT-001301,agent,"Rs 8 per sqft per month. Includes housekeeping, security, and common area maintenance.",2024-11-12T02:06:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00411""}" +MSG-0002271,INT-001301,client,I'm ready to book. What's the token amount?,2024-11-12T00:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00411""}" +MSG-0002272,INT-001301,agent,"Yes sir, we have a few units available. When would you like to visit?",2024-11-12T00:45:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00411""}" +MSG-0002273,INT-001301,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2024-11-12T02:42:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00411""}" +MSG-0002274,INT-001303,client,My wife wants to see the sample flat again. Can we come tomorrow?,2024-11-25T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00412""}" +MSG-0002275,INT-001303,client,What about the maintenance charges?,2024-11-25T00:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00412""}" +MSG-0002276,INT-001303,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2024-11-25T01:06:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00412""}" +MSG-0002277,INT-001303,client,Can you hold the unit for 2 days? I need to finalize with my father.,2024-11-25T01:15:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00412""}" +MSG-0002278,INT-001303,client,What about the maintenance charges?,2024-11-25T02:28:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00412""}" +MSG-0002279,INT-001306,client,That's slightly above my budget. Any flexibility?,2025-01-04T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00413""}" +MSG-0002280,INT-001306,agent,"Yes, Tower B has east facing units on floors 8-15.",2025-01-04T00:28:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00413""}" +MSG-0002281,INT-001306,client,My wife wants to see the sample flat again. Can we come tomorrow?,2025-01-04T00:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00413""}" +MSG-0002282,INT-001306,client,My wife wants to see the sample flat again. Can we come tomorrow?,2025-01-04T02:51:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00413""}" +MSG-0002283,INT-001306,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2025-01-04T03:08:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00413""}" +MSG-0002284,INT-001306,client,Can we schedule for this Saturday around 11 AM?,2025-01-04T00:45:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00413""}" +MSG-0002285,INT-001306,client,Can we schedule for this Saturday around 11 AM?,2025-01-04T05:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00413""}" +MSG-0002286,INT-001309,client,Can you share the floor plan?,2025-01-12T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00414""}" +MSG-0002287,INT-001309,client,My wife wants to see the sample flat again. Can we come tomorrow?,2025-01-12T00:29:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00414""}" +MSG-0002288,INT-001309,client,Thank you. What's the current price per sqft?,2025-01-12T00:10:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00414""}" +MSG-0002289,INT-001309,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2025-01-12T02:27:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00414""}" +MSG-0002290,INT-001309,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2025-01-12T02:04:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00414""}" +MSG-0002291,INT-001317,client,We're comparing this with Godrej Elevate. What makes this better?,2025-11-22T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00415""}" +MSG-0002292,INT-001317,client,What about the maintenance charges?,2025-11-22T00:58:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00415""}" +MSG-0002293,INT-001317,client,That's slightly above my budget. Any flexibility?,2025-11-22T00:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00415""}" +MSG-0002294,INT-001318,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2025-12-21T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00416""}" +MSG-0002295,INT-001318,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2025-12-21T00:19:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00416""}" +MSG-0002296,INT-001318,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2025-12-21T00:34:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00416""}" +MSG-0002297,INT-001318,agent,"Yes sir, we have a few units available. When would you like to visit?",2025-12-21T00:15:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00416""}" +MSG-0002298,INT-001318,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2025-12-21T02:44:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00416""}" +MSG-0002299,INT-001318,client,We're comparing this with Atri Surya Toron. What makes this better?,2025-12-21T01:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00416""}" +MSG-0002300,INT-001323,client,My wife wants to see the sample flat again. Can we come tomorrow?,2025-06-14T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00417""}" +MSG-0002301,INT-001323,client,We visited the site today. The location is excellent but the approach road is narrow.,2025-06-14T00:33:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00417""}" +MSG-0002302,INT-001323,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2025-06-14T00:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00417""}" +MSG-0002303,INT-001323,agent,It's approximately 10541 per sqft all-inclusive. Best price in New Town right now.,2025-06-14T02:21:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00417""}" +MSG-0002304,INT-001323,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2025-06-14T02:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00417""}" +MSG-0002305,INT-001323,agent,"Yes, Tower B has east facing units on floors 8-15.",2025-06-14T03:25:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00417""}" +MSG-0002306,INT-001323,agent,Sending it now. Also attaching the project brochure.,2025-06-14T02:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00417""}" +MSG-0002307,INT-001323,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2025-06-14T05:08:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00417""}" +MSG-0002308,INT-001325,client,Can you hold the unit for 2 days? I need to finalize with my father.,2025-06-26T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00418""}" +MSG-0002309,INT-001325,agent,"Yes, Tower B has east facing units on floors 8-15.",2025-06-26T00:13:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00418""}" +MSG-0002310,INT-001325,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2025-06-26T00:44:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00418""}" +MSG-0002311,INT-001328,agent,"Yes, Tower B has east facing units on floors 8-15.",2025-07-20T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00419""}" +MSG-0002312,INT-001328,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2025-07-20T00:23:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00419""}" +MSG-0002313,INT-001328,client,"Hi, I saw the listing for DTC Good Earth. Is the 3 BHK still available?",2025-07-20T01:08:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00419""}" +MSG-0002314,INT-001331,client,I'm ready to book. What's the token amount?,2025-08-02T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00420""}" +MSG-0002315,INT-001331,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2025-08-02T00:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00420""}" +MSG-0002316,INT-001331,client,We're comparing this with Shriram Grand City. What makes this better?,2025-08-02T00:50:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00420""}" +MSG-0002317,INT-001331,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2025-08-02T02:09:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00420""}" +MSG-0002318,INT-001331,client,Can you share the floor plan?,2025-08-02T02:44:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00420""}" +MSG-0002319,INT-001333,agent,"Yes sir, we have a few units available. When would you like to visit?",2025-08-14T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00421""}" +MSG-0002320,INT-001333,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2025-08-14T00:19:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00421""}" +MSG-0002321,INT-001333,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2025-08-14T01:32:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00421""}" +MSG-0002322,INT-001333,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2025-08-14T01:27:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00421""}" +MSG-0002323,INT-001333,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2025-08-14T03:28:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00421""}" +MSG-0002324,INT-001333,agent,"Yes, Tower B has east facing units on floors 8-15.",2025-08-14T00:50:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00421""}" +MSG-0002325,INT-001333,client,What about the maintenance charges?,2025-08-14T02:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00421""}" +MSG-0002326,INT-001333,agent,It's approximately 14060 per sqft all-inclusive. Best price in New Town right now.,2025-08-14T03:51:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00421""}" +MSG-0002327,INT-001341,agent,Sending it now. Also attaching the project brochure.,2024-05-01T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00422""}" +MSG-0002328,INT-001341,agent,Sending it now. Also attaching the project brochure.,2024-05-01T00:16:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00422""}" +MSG-0002329,INT-001341,client,Can we schedule for this Saturday around 11 AM?,2024-05-01T00:16:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00422""}" +MSG-0002330,INT-001348,client,Can you share the floor plan?,2024-06-09T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00423""}" +MSG-0002331,INT-001348,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2024-06-09T00:23:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00423""}" +MSG-0002332,INT-001348,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2024-06-09T01:46:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00423""}" +MSG-0002333,INT-001348,agent,"Rs 3 per sqft per month. Includes housekeeping, security, and common area maintenance.",2024-06-09T00:39:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00423""}" +MSG-0002334,INT-001348,client,Home loan. Pre-approved up to 1.5-2.5 Cr.,2024-06-09T03:52:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00423""}" +MSG-0002335,INT-001349,agent,It's approximately 12325 per sqft all-inclusive. Best price in New Town right now.,2024-06-18T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00424""}" +MSG-0002336,INT-001349,client,Received. The layout looks good. Is there a east facing option?,2024-06-18T00:33:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00424""}" +MSG-0002337,INT-001349,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2024-06-18T00:10:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00424""}" +MSG-0002338,INT-001349,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2024-06-18T01:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00424""}" +MSG-0002339,INT-001349,client,That's slightly above my budget. Any flexibility?,2024-06-18T02:08:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00424""}" +MSG-0002340,INT-001349,agent,"Rs 3 per sqft per month. Includes housekeeping, security, and common area maintenance.",2024-06-18T04:15:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00424""}" +MSG-0002341,INT-001349,client,Received. The layout looks good. Is there a east facing option?,2024-06-18T03:06:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00424""}" +MSG-0002342,INT-001350,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2024-06-21T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00425""}" +MSG-0002343,INT-001350,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2024-06-21T00:07:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00425""}" +MSG-0002344,INT-001350,agent,It's approximately 12734 per sqft all-inclusive. Best price in New Town right now.,2024-06-21T00:32:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00425""}" +MSG-0002345,INT-001350,agent,Sending it now. Also attaching the project brochure.,2024-06-21T01:39:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00425""}" +MSG-0002346,INT-001350,agent,Sending it now. Also attaching the project brochure.,2024-06-21T01:56:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00425""}" +MSG-0002347,INT-001350,client,That's slightly above my budget. Any flexibility?,2024-06-21T04:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00425""}" +MSG-0002348,INT-001351,client,Can you share the floor plan?,2024-06-30T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00426""}" +MSG-0002349,INT-001351,client,We're comparing this with Eden Devprayag. What makes this better?,2024-06-30T00:41:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00426""}" +MSG-0002350,INT-001351,client,Received. The layout looks good. Is there a east facing option?,2024-06-30T00:58:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00426""}" +MSG-0002351,INT-001354,client,That's slightly above my budget. Any flexibility?,2025-09-27T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00427""}" +MSG-0002352,INT-001354,client,We're comparing this with DTC Good Earth. What makes this better?,2025-09-27T00:42:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00427""}" +MSG-0002353,INT-001354,client,Received. The layout looks good. Is there a east facing option?,2025-09-27T01:50:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00427""}" +MSG-0002354,INT-001354,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2025-09-27T02:39:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00427""}" +MSG-0002355,INT-001354,client,Can you share the floor plan?,2025-09-27T01:32:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00427""}" +MSG-0002356,INT-001358,client,What about the maintenance charges?,2025-10-19T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00428""}" +MSG-0002357,INT-001358,client,Can you share the floor plan?,2025-10-19T00:50:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00428""}" +MSG-0002358,INT-001358,agent,"Rs 5 per sqft per month. Includes housekeeping, security, and common area maintenance.",2025-10-19T01:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00428""}" +MSG-0002359,INT-001358,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2025-10-19T01:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00428""}" +MSG-0002360,INT-001358,client,What about the maintenance charges?,2025-10-19T01:56:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00428""}" +MSG-0002361,INT-001358,client,Received. The layout looks good. Is there a east facing option?,2025-10-19T04:50:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00428""}" +MSG-0002362,INT-001360,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2025-10-27T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00429""}" +MSG-0002363,INT-001360,client,"Hi, I saw the listing for Godrej Elevate. Is the 3 BHK still available?",2025-10-27T00:44:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00429""}" +MSG-0002364,INT-001360,client,That's slightly above my budget. Any flexibility?,2025-10-27T00:50:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00429""}" +MSG-0002365,INT-001360,client,Received. The layout looks good. Is there a east facing option?,2025-10-27T02:27:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00429""}" +MSG-0002366,INT-001360,client,Can you hold the unit for 2 days? I need to finalize with my father.,2025-10-27T00:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00429""}" +MSG-0002367,INT-001360,client,Can you hold the unit for 2 days? I need to finalize with my father.,2025-10-27T02:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00429""}" +MSG-0002368,INT-001360,agent,It's approximately 10844 per sqft all-inclusive. Best price in Dum Dum right now.,2025-10-27T05:18:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00429""}" +MSG-0002369,INT-001363,client,Home loan. Pre-approved up to 4-6 Cr.,2025-12-03T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00430""}" +MSG-0002370,INT-001363,client,We visited the site today. The location is excellent but the approach road is narrow.,2025-12-03T00:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00430""}" +MSG-0002371,INT-001363,client,Home loan. Pre-approved up to 2.5-4 Cr.,2025-12-03T01:32:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00430""}" +MSG-0002372,INT-001363,client,Can you share the floor plan?,2025-12-03T01:42:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00430""}" +MSG-0002373,INT-001363,client,Received. The layout looks good. Is there a east facing option?,2025-12-03T03:56:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00430""}" +MSG-0002374,INT-001363,client,Can we schedule for this Saturday around 11 AM?,2025-12-03T01:45:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00430""}" +MSG-0002375,INT-001363,client,My wife wants to see the sample flat again. Can we come tomorrow?,2025-12-03T04:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00430""}" +MSG-0002376,INT-001366,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2024-12-15T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00431""}" +MSG-0002377,INT-001366,client,Can we schedule for this Saturday around 11 AM?,2024-12-15T00:57:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00431""}" +MSG-0002378,INT-001366,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2024-12-15T01:52:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00431""}" +MSG-0002379,INT-001366,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2024-12-15T01:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00431""}" +MSG-0002380,INT-001366,client,Thank you. What's the current price per sqft?,2024-12-15T03:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00431""}" +MSG-0002381,INT-001366,client,Can you share the floor plan?,2024-12-15T05:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00431""}" +MSG-0002382,INT-001366,client,I'm ready to book. What's the token amount?,2024-12-15T05:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00431""}" +MSG-0002383,INT-001366,agent,Sending it now. Also attaching the project brochure.,2024-12-15T00:35:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00431""}" +MSG-0002384,INT-001367,client,Home loan. Pre-approved up to 6-10 Cr.,2024-12-26T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00432""}" +MSG-0002385,INT-001367,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2024-12-26T00:56:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00432""}" +MSG-0002386,INT-001367,agent,"Yes sir, we have a few units available. When would you like to visit?",2024-12-26T01:02:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00432""}" +MSG-0002387,INT-001367,client,We visited the site today. The location is excellent but the approach road is narrow.,2024-12-26T02:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00432""}" +MSG-0002388,INT-001371,agent,"Yes, Tower B has east facing units on floors 8-15.",2025-08-07T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00433""}" +MSG-0002389,INT-001371,agent,"Rs 8 per sqft per month. Includes housekeeping, security, and common area maintenance.",2025-08-07T00:11:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00433""}" +MSG-0002390,INT-001371,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2025-08-07T01:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00433""}" +MSG-0002391,INT-001371,client,We visited the site today. The location is excellent but the approach road is narrow.,2025-08-07T01:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00433""}" +MSG-0002392,INT-001371,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2025-08-07T01:28:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00433""}" +MSG-0002393,INT-001374,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2025-08-30T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00434""}" +MSG-0002394,INT-001374,client,My wife wants to see the sample flat again. Can we come tomorrow?,2025-08-30T00:43:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00434""}" +MSG-0002395,INT-001374,agent,Of course. I'll arrange a dedicated viewing.,2025-08-30T01:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00434""}" +MSG-0002396,INT-001374,client,Can you hold the unit for 2 days? I need to finalize with my father.,2025-08-30T02:45:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00434""}" +MSG-0002397,INT-001374,client,We're comparing this with Ambuja Utpaala. What makes this better?,2025-08-30T01:32:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00434""}" +MSG-0002398,INT-001380,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2025-09-26T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00435""}" +MSG-0002399,INT-001380,client,Can you hold the unit for 2 days? I need to finalize with my father.,2025-09-26T00:32:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00435""}" +MSG-0002400,INT-001380,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2025-09-26T01:46:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00435""}" +MSG-0002401,INT-001380,agent,Sending it now. Also attaching the project brochure.,2025-09-26T02:33:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00435""}" +MSG-0002402,INT-001380,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2025-09-26T03:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00435""}" +MSG-0002403,INT-001380,client,What about the maintenance charges?,2025-09-26T00:50:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00435""}" +MSG-0002404,INT-001380,client,"Hi, I saw the listing for Atri Aqua. Is the 3 BHK still available?",2025-09-26T04:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00435""}" +MSG-0002405,INT-001380,client,We're comparing this with Merlin Avana. What makes this better?,2025-09-26T04:33:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00435""}" +MSG-0002406,INT-001386,client,Received. The layout looks good. Is there a east facing option?,2025-11-30T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00436""}" +MSG-0002407,INT-001386,agent,"Yes, Tower B has east facing units on floors 8-15.",2025-11-30T00:35:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00436""}" +MSG-0002408,INT-001386,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2025-11-30T01:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00436""}" +MSG-0002409,INT-001389,client,Home loan. Pre-approved up to 1.5-2.5 Cr.,2026-01-04T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00437""}" +MSG-0002410,INT-001389,client,We're comparing this with Ambuja Utpaala. What makes this better?,2026-01-04T00:46:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00437""}" +MSG-0002411,INT-001389,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2026-01-04T01:28:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00437""}" +MSG-0002412,INT-001390,client,We're comparing this with Merlin Avana. What makes this better?,2026-01-10T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00438""}" +MSG-0002413,INT-001390,client,What about the maintenance charges?,2026-01-10T00:45:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00438""}" +MSG-0002414,INT-001390,client,We're comparing this with Shriram Grand City. What makes this better?,2026-01-10T01:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00438""}" +MSG-0002415,INT-001392,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2026-01-15T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00439""}" +MSG-0002416,INT-001392,agent,Sending it now. Also attaching the project brochure.,2026-01-15T00:21:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00439""}" +MSG-0002417,INT-001392,client,That's slightly above my budget. Any flexibility?,2026-01-15T00:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00439""}" +MSG-0002418,INT-001392,client,Can you share the floor plan?,2026-01-15T01:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00439""}" +MSG-0002419,INT-001392,client,We visited the site today. The location is excellent but the approach road is narrow.,2026-01-15T00:56:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00439""}" +MSG-0002420,INT-001392,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2026-01-15T02:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00439""}" +MSG-0002421,INT-001392,client,We visited the site today. The location is excellent but the approach road is narrow.,2026-01-15T05:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00439""}" +MSG-0002422,INT-001392,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2026-01-15T04:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00439""}" +MSG-0002423,INT-001401,client,Can you share the floor plan?,2025-12-08T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00440""}" +MSG-0002424,INT-001401,client,"Hi, I saw the listing for Merlin Avana. Is the 3 BHK still available?",2025-12-08T01:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00440""}" +MSG-0002425,INT-001401,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2025-12-08T00:10:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00440""}" +MSG-0002426,INT-001401,client,I'm ready to book. What's the token amount?,2025-12-08T01:42:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00440""}" +MSG-0002427,INT-001401,agent,Of course. I'll arrange a dedicated viewing.,2025-12-08T02:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00440""}" +MSG-0002428,INT-001401,client,We're comparing this with Shriram Grand City. What makes this better?,2025-12-08T01:10:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00440""}" +MSG-0002429,INT-001402,client,That's slightly above my budget. Any flexibility?,2025-12-12T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00441""}" +MSG-0002430,INT-001402,client,Received. The layout looks good. Is there a east facing option?,2025-12-12T00:27:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00441""}" +MSG-0002431,INT-001402,client,I'm ready to book. What's the token amount?,2025-12-12T01:06:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00441""}" +MSG-0002432,INT-001402,client,"Hi, I saw the listing for Merlin Avana. Is the 3 BHK still available?",2025-12-12T02:33:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00441""}" +MSG-0002433,INT-001403,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2026-01-05T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00442""}" +MSG-0002434,INT-001403,client,What about the maintenance charges?,2026-01-05T00:46:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00442""}" +MSG-0002435,INT-001403,client,We're comparing this with DTC Sojon. What makes this better?,2026-01-05T00:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00442""}" +MSG-0002436,INT-001403,agent,"Yes sir, we have a few units available. When would you like to visit?",2026-01-05T01:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00442""}" +MSG-0002437,INT-001405,agent,Of course. I'll arrange a dedicated viewing.,2026-01-12T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00443""}" +MSG-0002438,INT-001405,agent,"Yes sir, we have a few units available. When would you like to visit?",2026-01-12T00:34:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00443""}" +MSG-0002439,INT-001405,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2026-01-12T02:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00443""}" +MSG-0002440,INT-001405,client,That's slightly above my budget. Any flexibility?,2026-01-12T01:39:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00443""}" +MSG-0002441,INT-001405,client,Can you share the floor plan?,2026-01-12T01:44:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00443""}" +MSG-0002442,INT-001405,agent,Sending it now. Also attaching the project brochure.,2026-01-12T02:35:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00443""}" +MSG-0002443,INT-001405,client,My wife wants to see the sample flat again. Can we come tomorrow?,2026-01-12T03:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00443""}" +MSG-0002444,INT-001405,agent,"Rs 3 per sqft per month. Includes housekeeping, security, and common area maintenance.",2026-01-12T05:43:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00443""}" +MSG-0002445,INT-001407,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2026-01-24T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00444""}" +MSG-0002446,INT-001407,client,I'm ready to book. What's the token amount?,2026-01-24T00:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00444""}" +MSG-0002447,INT-001407,client,I'm ready to book. What's the token amount?,2026-01-24T00:56:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00444""}" +MSG-0002448,INT-001407,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2026-01-24T02:54:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00444""}" +MSG-0002449,INT-001407,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2026-01-24T01:56:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00444""}" +MSG-0002450,INT-001407,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2026-01-24T01:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00444""}" +MSG-0002451,INT-001408,client,We visited the site today. The location is excellent but the approach road is narrow.,2026-01-27T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00445""}" +MSG-0002452,INT-001408,client,Home loan. Pre-approved up to 2.5-4 Cr.,2026-01-27T00:14:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00445""}" +MSG-0002453,INT-001408,agent,It's approximately 9363 per sqft all-inclusive. Best price in Tangra right now.,2026-01-27T00:54:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00445""}" +MSG-0002454,INT-001408,client,We visited the site today. The location is excellent but the approach road is narrow.,2026-01-27T02:18:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00445""}" +MSG-0002455,INT-001408,client,Can you hold the unit for 2 days? I need to finalize with my father.,2026-01-27T01:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00445""}" +MSG-0002456,INT-001408,client,We visited the site today. The location is excellent but the approach road is narrow.,2026-01-27T02:10:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00445""}" +MSG-0002457,INT-001408,client,My wife wants to see the sample flat again. Can we come tomorrow?,2026-01-27T02:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00445""}" +MSG-0002458,INT-001408,client,"Hi, I saw the listing for Merlin Avana. Is the 3 BHK still available?",2026-01-27T04:19:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00445""}" +MSG-0002459,INT-001410,client,I'm ready to book. What's the token amount?,2025-01-05T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00446""}" +MSG-0002460,INT-001410,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2025-01-05T00:32:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00446""}" +MSG-0002461,INT-001410,agent,"Rs 3 per sqft per month. Includes housekeeping, security, and common area maintenance.",2025-01-05T01:16:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00446""}" +MSG-0002462,INT-001412,agent,"Rs 8 per sqft per month. Includes housekeeping, security, and common area maintenance.",2025-01-13T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00447""}" +MSG-0002463,INT-001412,client,My wife wants to see the sample flat again. Can we come tomorrow?,2025-01-13T00:29:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00447""}" +MSG-0002464,INT-001412,client,We visited the site today. The location is excellent but the approach road is narrow.,2025-01-13T00:58:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00447""}" +MSG-0002465,INT-001412,agent,"Yes sir, we have a few units available. When would you like to visit?",2025-01-13T03:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00447""}" +MSG-0002466,INT-001412,client,What about the maintenance charges?,2025-01-13T00:44:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00447""}" +MSG-0002467,INT-001412,client,Home loan. Pre-approved up to 6-10 Cr.,2025-01-13T01:50:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00447""}" +MSG-0002468,INT-001412,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2025-01-13T02:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00447""}" +MSG-0002469,INT-001412,client,Can you hold the unit for 2 days? I need to finalize with my father.,2025-01-13T04:54:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00447""}" +MSG-0002470,INT-001413,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2025-01-21T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00448""}" +MSG-0002471,INT-001413,client,That's slightly above my budget. Any flexibility?,2025-01-21T00:25:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00448""}" +MSG-0002472,INT-001413,agent,It's approximately 13079 per sqft all-inclusive. Best price in Rajarhat right now.,2025-01-21T01:44:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00448""}" +MSG-0002473,INT-001413,agent,"Yes sir, we have a few units available. When would you like to visit?",2025-01-21T02:21:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00448""}" +MSG-0002474,INT-001413,client,Can we schedule for this Saturday around 11 AM?,2025-01-21T01:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00448""}" +MSG-0002475,INT-001417,client,Home loan. Pre-approved up to 4-6 Cr.,2025-02-11T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00449""}" +MSG-0002476,INT-001417,agent,It's approximately 12547 per sqft all-inclusive. Best price in Rajarhat right now.,2025-02-11T00:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00449""}" +MSG-0002477,INT-001417,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2025-02-11T01:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00449""}" +MSG-0002478,INT-001417,client,We're comparing this with Siddha Serena. What makes this better?,2025-02-11T00:21:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00449""}" +MSG-0002479,INT-001417,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2025-02-11T03:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00449""}" +MSG-0002480,INT-001420,client,I'm ready to book. What's the token amount?,2025-02-28T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00450""}" +MSG-0002481,INT-001420,agent,"Rs 6 per sqft per month. Includes housekeeping, security, and common area maintenance.",2025-02-28T00:29:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00450""}" +MSG-0002482,INT-001420,client,"Hi, I saw the listing for DTC Sojon. Is the 3 BHK still available?",2025-02-28T00:42:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00450""}" +MSG-0002483,INT-001420,client,We visited the site today. The location is excellent but the approach road is narrow.,2025-02-28T01:42:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00450""}" +MSG-0002484,INT-001420,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2025-02-28T03:52:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00450""}" +MSG-0002485,INT-001420,client,Received. The layout looks good. Is there a east facing option?,2025-02-28T04:25:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00450""}" +MSG-0002486,INT-001424,agent,"Yes, Tower B has east facing units on floors 8-15.",2024-09-04T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00451""}" +MSG-0002487,INT-001424,client,Can you hold the unit for 2 days? I need to finalize with my father.,2024-09-04T00:13:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00451""}" +MSG-0002488,INT-001424,client,Thank you. What's the current price per sqft?,2024-09-04T00:46:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00451""}" +MSG-0002489,INT-001424,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2024-09-04T02:42:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00451""}" +MSG-0002490,INT-001424,client,I'm ready to book. What's the token amount?,2024-09-04T00:52:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00451""}" +MSG-0002491,INT-001424,client,We visited the site today. The location is excellent but the approach road is narrow.,2024-09-04T03:55:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00451""}" +MSG-0002492,INT-001424,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2024-09-04T00:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00451""}" +MSG-0002493,INT-001428,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2024-09-20T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00452""}" +MSG-0002494,INT-001428,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2024-09-20T00:32:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00452""}" +MSG-0002495,INT-001428,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2024-09-20T01:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00452""}" +MSG-0002496,INT-001428,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2024-09-20T02:06:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00452""}" +MSG-0002497,INT-001428,client,Thank you. What's the current price per sqft?,2024-09-20T02:44:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00452""}" +MSG-0002498,INT-001428,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2024-09-20T04:15:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00452""}" +MSG-0002499,INT-001431,client,My wife wants to see the sample flat again. Can we come tomorrow?,2024-09-29T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00453""}" +MSG-0002500,INT-001431,client,Can we schedule for this Saturday around 11 AM?,2024-09-29T00:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00453""}" +MSG-0002501,INT-001431,client,Can you hold the unit for 2 days? I need to finalize with my father.,2024-09-29T00:52:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00453""}" +MSG-0002502,INT-001431,agent,Of course. I'll arrange a dedicated viewing.,2024-09-29T01:51:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00453""}" +MSG-0002503,INT-001431,client,I'm ready to book. What's the token amount?,2024-09-29T01:16:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00453""}" +MSG-0002504,INT-001431,agent,It's approximately 13187 per sqft all-inclusive. Best price in Rajarhat right now.,2024-09-29T00:25:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00453""}" +MSG-0002505,INT-001433,client,Can you share the floor plan?,2024-10-18T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00454""}" +MSG-0002506,INT-001433,client,That's slightly above my budget. Any flexibility?,2024-10-18T00:58:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00454""}" +MSG-0002507,INT-001433,client,Can you hold the unit for 2 days? I need to finalize with my father.,2024-10-18T00:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00454""}" +MSG-0002508,INT-001433,agent,"Yes, Tower B has east facing units on floors 8-15.",2024-10-18T00:39:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00454""}" +MSG-0002509,INT-001433,agent,"Yes, Tower B has east facing units on floors 8-15.",2024-10-18T04:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00454""}" +MSG-0002510,INT-001433,agent,"Yes sir, we have a few units available. When would you like to visit?",2024-10-18T02:15:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00454""}" +MSG-0002511,INT-001433,client,Thank you. What's the current price per sqft?,2024-10-18T05:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00454""}" +MSG-0002512,INT-001433,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2024-10-18T06:46:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00454""}" +MSG-0002513,INT-001435,client,We're comparing this with Siddha Sky Waterfront. What makes this better?,2025-01-11T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00455""}" +MSG-0002514,INT-001435,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2025-01-11T00:07:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00455""}" +MSG-0002515,INT-001435,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2025-01-11T00:46:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00455""}" +MSG-0002516,INT-001435,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2025-01-11T02:09:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00455""}" +MSG-0002517,INT-001435,client,We're comparing this with Sugam Prakriti. What makes this better?,2025-01-11T03:28:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00455""}" +MSG-0002518,INT-001435,client,My wife wants to see the sample flat again. Can we come tomorrow?,2025-01-11T00:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00455""}" +MSG-0002519,INT-001436,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2025-01-11T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00456""}" +MSG-0002520,INT-001436,client,What about the maintenance charges?,2025-01-11T00:23:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00456""}" +MSG-0002521,INT-001436,agent,"Yes sir, we have a few units available. When would you like to visit?",2025-01-11T00:16:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00456""}" +MSG-0002522,INT-001436,client,We visited the site today. The location is excellent but the approach road is narrow.,2025-01-11T00:27:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00456""}" +MSG-0002523,INT-001436,client,"Hi, I saw the listing for Siddha Suburbia Bungalow. Is the 3 BHK still available?",2025-01-11T00:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00456""}" +MSG-0002524,INT-001436,agent,Sending it now. Also attaching the project brochure.,2025-01-11T02:05:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00456""}" +MSG-0002525,INT-001436,agent,"Yes sir, we have a few units available. When would you like to visit?",2025-01-11T05:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00456""}" +MSG-0002526,INT-001436,agent,Sending it now. Also attaching the project brochure.,2025-01-11T04:26:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00456""}" +MSG-0002527,INT-001438,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2025-01-21T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00457""}" +MSG-0002528,INT-001438,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2025-01-21T00:09:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00457""}" +MSG-0002529,INT-001438,client,What about the maintenance charges?,2025-01-21T00:16:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00457""}" +MSG-0002530,INT-001438,client,"Hi, I saw the listing for Siddha Suburbia Bungalow. Is the 3 BHK still available?",2025-01-21T00:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00457""}" +MSG-0002531,INT-001439,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2025-01-26T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00458""}" +MSG-0002532,INT-001439,client,Home loan. Pre-approved up to 4-6 Cr.,2025-01-26T00:17:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00458""}" +MSG-0002533,INT-001439,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2025-01-26T01:04:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00458""}" +MSG-0002534,INT-001439,client,Home loan. Pre-approved up to 6-10 Cr.,2025-01-26T02:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00458""}" +MSG-0002535,INT-001439,agent,"Yes, Tower B has east facing units on floors 8-15.",2025-01-26T02:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00458""}" +MSG-0002536,INT-001439,client,Can we schedule for this Saturday around 11 AM?,2025-01-26T04:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00458""}" +MSG-0002537,INT-001441,client,Can we schedule for this Saturday around 11 AM?,2025-02-06T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00459""}" +MSG-0002538,INT-001441,client,Home loan. Pre-approved up to 10-15 Cr.,2025-02-06T00:19:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00459""}" +MSG-0002539,INT-001441,client,We're comparing this with Atri Surya Toron. What makes this better?,2025-02-06T00:34:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00459""}" +MSG-0002540,INT-001441,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2025-02-06T00:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00459""}" +MSG-0002541,INT-001441,agent,"Yes sir, we have a few units available. When would you like to visit?",2025-02-06T02:08:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00459""}" +MSG-0002542,INT-001441,client,Received. The layout looks good. Is there a east facing option?,2025-02-06T01:15:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00459""}" +MSG-0002543,INT-001441,client,"Hi, I saw the listing for Siddha Suburbia Bungalow. Is the 3 BHK still available?",2025-02-06T02:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00459""}" +MSG-0002544,INT-001444,client,Can you hold the unit for 2 days? I need to finalize with my father.,2025-02-16T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00460""}" +MSG-0002545,INT-001444,client,That's slightly above my budget. Any flexibility?,2025-02-16T00:27:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00460""}" +MSG-0002546,INT-001444,agent,"Yes sir, we have a few units available. When would you like to visit?",2025-02-16T01:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00460""}" +MSG-0002547,INT-001444,agent,"Yes, Tower B has east facing units on floors 8-15.",2025-02-16T00:18:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00460""}" +MSG-0002548,INT-001445,agent,Of course. I'll arrange a dedicated viewing.,2025-03-07T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00461""}" +MSG-0002549,INT-001445,agent,Sending it now. Also attaching the project brochure.,2025-03-07T00:37:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00461""}" +MSG-0002550,INT-001445,agent,"Yes sir, we have a few units available. When would you like to visit?",2025-03-07T00:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00461""}" +MSG-0002551,INT-001446,client,That's slightly above my budget. Any flexibility?,2025-03-11T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00462""}" +MSG-0002552,INT-001446,client,I'm ready to book. What's the token amount?,2025-03-11T00:07:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00462""}" +MSG-0002553,INT-001446,client,We visited the site today. The location is excellent but the approach road is narrow.,2025-03-11T01:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00462""}" +MSG-0002554,INT-001446,client,My wife wants to see the sample flat again. Can we come tomorrow?,2025-03-11T00:54:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00462""}" +MSG-0002555,INT-001446,agent,"Yes, Tower B has east facing units on floors 8-15.",2025-03-11T01:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00462""}" +MSG-0002556,INT-001448,agent,"Yes sir, we have a few units available. When would you like to visit?",2025-11-23T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00463""}" +MSG-0002557,INT-001448,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2025-11-23T00:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00463""}" +MSG-0002558,INT-001448,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2025-11-23T00:50:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00463""}" +MSG-0002559,INT-001448,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2025-11-23T00:51:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00463""}" +MSG-0002560,INT-001448,agent,"Rs 3 per sqft per month. Includes housekeeping, security, and common area maintenance.",2025-11-23T00:44:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00463""}" +MSG-0002561,INT-001448,agent,It's approximately 8397 per sqft all-inclusive. Best price in Howrah right now.,2025-11-23T04:45:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00463""}" +MSG-0002562,INT-001451,client,Received. The layout looks good. Is there a east facing option?,2025-12-13T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00464""}" +MSG-0002563,INT-001451,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2025-12-13T00:19:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00464""}" +MSG-0002564,INT-001451,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2025-12-13T01:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00464""}" +MSG-0002565,INT-001451,client,I'm ready to book. What's the token amount?,2025-12-13T02:27:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00464""}" +MSG-0002566,INT-001451,agent,It's approximately 14896 per sqft all-inclusive. Best price in Howrah right now.,2025-12-13T02:08:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00464""}" +MSG-0002567,INT-001451,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2025-12-13T04:55:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00464""}" +MSG-0002568,INT-001452,client,We're comparing this with Godrej Elevate. What makes this better?,2025-12-23T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00465""}" +MSG-0002569,INT-001452,client,What about the maintenance charges?,2025-12-23T00:42:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00465""}" +MSG-0002570,INT-001452,client,Can you share the floor plan?,2025-12-23T02:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00465""}" +MSG-0002571,INT-001452,agent,"Rs 4 per sqft per month. Includes housekeeping, security, and common area maintenance.",2025-12-23T02:06:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00465""}" +MSG-0002572,INT-001452,client,We visited the site today. The location is excellent but the approach road is narrow.,2025-12-23T00:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00465""}" +MSG-0002573,INT-001452,agent,Of course. I'll arrange a dedicated viewing.,2025-12-23T03:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00465""}" +MSG-0002574,INT-001452,client,We visited the site today. The location is excellent but the approach road is narrow.,2025-12-23T02:06:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00465""}" +MSG-0002575,INT-001453,client,Can you share the floor plan?,2025-12-30T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00466""}" +MSG-0002576,INT-001453,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2025-12-30T00:50:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00466""}" +MSG-0002577,INT-001453,client,That's slightly above my budget. Any flexibility?,2025-12-30T00:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00466""}" +MSG-0002578,INT-001453,client,"Hi, I saw the listing for Shriram Grand City. Is the 3 BHK still available?",2025-12-30T01:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00466""}" +MSG-0002579,INT-001453,agent,Of course. I'll arrange a dedicated viewing.,2025-12-30T01:32:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00466""}" +MSG-0002580,INT-001453,client,Received. The layout looks good. Is there a east facing option?,2025-12-30T00:45:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00466""}" +MSG-0002581,INT-001453,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2025-12-30T05:42:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00466""}" +MSG-0002582,INT-001454,client,Can we schedule for this Saturday around 11 AM?,2025-12-31T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00467""}" +MSG-0002583,INT-001454,client,We visited the site today. The location is excellent but the approach road is narrow.,2025-12-31T00:13:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00467""}" +MSG-0002584,INT-001454,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2025-12-31T00:26:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00467""}" +MSG-0002585,INT-001455,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2026-01-04T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00468""}" +MSG-0002586,INT-001455,client,I'm ready to book. What's the token amount?,2026-01-04T00:17:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00468""}" +MSG-0002587,INT-001455,client,My wife wants to see the sample flat again. Can we come tomorrow?,2026-01-04T00:58:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00468""}" +MSG-0002588,INT-001455,client,Received. The layout looks good. Is there a east facing option?,2026-01-04T01:03:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00468""}" +MSG-0002589,INT-001455,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2026-01-04T02:52:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00468""}" +MSG-0002590,INT-001455,client,I'm ready to book. What's the token amount?,2026-01-04T04:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00468""}" +MSG-0002591,INT-001455,agent,Of course. I'll arrange a dedicated viewing.,2026-01-04T04:42:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00468""}" +MSG-0002592,INT-001455,client,That's slightly above my budget. Any flexibility?,2026-01-04T06:32:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00468""}" +MSG-0002593,INT-001461,client,We're comparing this with Atri Aqua. What makes this better?,2026-02-14T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00469""}" +MSG-0002594,INT-001461,client,We visited the site today. The location is excellent but the approach road is narrow.,2026-02-14T00:26:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00469""}" +MSG-0002595,INT-001461,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2026-02-14T01:58:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00469""}" +MSG-0002596,INT-001461,agent,Sending it now. Also attaching the project brochure.,2026-02-14T02:18:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00469""}" +MSG-0002597,INT-001461,client,We're comparing this with Atri Aqua. What makes this better?,2026-02-14T03:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00469""}" +MSG-0002598,INT-001461,client,What about the maintenance charges?,2026-02-14T01:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00469""}" +MSG-0002599,INT-001461,agent,Of course. I'll arrange a dedicated viewing.,2026-02-14T02:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00469""}" +MSG-0002600,INT-001461,agent,"Yes sir, we have a few units available. When would you like to visit?",2026-02-14T00:35:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00469""}" +MSG-0002601,INT-001464,client,What about the maintenance charges?,2025-07-21T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00470""}" +MSG-0002602,INT-001464,client,Can you hold the unit for 2 days? I need to finalize with my father.,2025-07-21T00:52:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00470""}" +MSG-0002603,INT-001464,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2025-07-21T01:16:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00470""}" +MSG-0002604,INT-001465,client,Can we schedule for this Saturday around 11 AM?,2025-07-31T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00471""}" +MSG-0002605,INT-001465,client,We're comparing this with Siddha Sky Waterfront. What makes this better?,2025-07-31T00:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00471""}" +MSG-0002606,INT-001465,client,We're comparing this with Siddha Sky Waterfront. What makes this better?,2025-07-31T00:14:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00471""}" +MSG-0002607,INT-001465,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2025-07-31T02:15:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00471""}" +MSG-0002608,INT-001465,client,Home loan. Pre-approved up to 10-15 Cr.,2025-07-31T02:56:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00471""}" +MSG-0002609,INT-001465,client,Thank you. What's the current price per sqft?,2025-07-31T01:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00471""}" +MSG-0002610,INT-001465,client,That's slightly above my budget. Any flexibility?,2025-07-31T00:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00471""}" +MSG-0002611,INT-001465,client,"Hi, I saw the listing for Atri Aqua. Is the 3 BHK still available?",2025-07-31T01:03:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00471""}" +MSG-0002612,INT-001473,agent,"Yes sir, we have a few units available. When would you like to visit?",2024-02-16T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00472""}" +MSG-0002613,INT-001473,client,"Hi, I saw the listing for Siddha Serena. Is the 3 BHK still available?",2024-02-16T00:22:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00472""}" +MSG-0002614,INT-001473,agent,"Yes, Tower B has east facing units on floors 8-15.",2024-02-16T00:34:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00472""}" +MSG-0002615,INT-001473,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2024-02-16T01:33:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00472""}" +MSG-0002616,INT-001473,client,"Hi, I saw the listing for Siddha Serena. Is the 3 BHK still available?",2024-02-16T01:04:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00472""}" +MSG-0002617,INT-001473,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2024-02-16T01:50:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00472""}" +MSG-0002618,INT-001473,client,What about the maintenance charges?,2024-02-16T04:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00472""}" +MSG-0002619,INT-001476,client,My wife wants to see the sample flat again. Can we come tomorrow?,2026-01-31T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00473""}" +MSG-0002620,INT-001476,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2026-01-31T00:18:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00473""}" +MSG-0002621,INT-001476,agent,"Rs 4 per sqft per month. Includes housekeeping, security, and common area maintenance.",2026-01-31T00:44:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00473""}" +MSG-0002622,INT-001476,agent,"Rs 3 per sqft per month. Includes housekeeping, security, and common area maintenance.",2026-01-31T02:57:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00473""}" +MSG-0002623,INT-001476,client,What about the maintenance charges?,2026-01-31T01:44:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00473""}" +MSG-0002624,INT-001476,client,That's slightly above my budget. Any flexibility?,2026-01-31T01:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00473""}" +MSG-0002625,INT-001480,client,"Hi, I saw the listing for Siddha Suburbia Bungalow. Is the 3 BHK still available?",2026-03-04T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00474""}" +MSG-0002626,INT-001480,client,Thank you. What's the current price per sqft?,2026-03-04T00:41:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00474""}" +MSG-0002627,INT-001480,client,We're comparing this with Atri Surya Toron. What makes this better?,2026-03-04T01:38:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00474""}" +MSG-0002628,INT-001480,agent,"Yes sir, we have a few units available. When would you like to visit?",2026-03-04T00:27:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00474""}" +MSG-0002629,INT-001480,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2026-03-04T01:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00474""}" +MSG-0002630,INT-001480,client,I'm ready to book. What's the token amount?,2026-03-04T00:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00474""}" +MSG-0002631,INT-001484,agent,"Yes, Tower B has east facing units on floors 8-15.",2026-04-05T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00475""}" +MSG-0002632,INT-001484,client,Received. The layout looks good. Is there a east facing option?,2026-04-05T00:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00475""}" +MSG-0002633,INT-001484,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2026-04-05T00:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00475""}" +MSG-0002634,INT-001485,agent,"Yes sir, we have a few units available. When would you like to visit?",2026-04-15T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00476""}" +MSG-0002635,INT-001485,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2026-04-15T00:51:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00476""}" +MSG-0002636,INT-001485,agent,"Rs 8 per sqft per month. Includes housekeeping, security, and common area maintenance.",2026-04-15T00:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00476""}" +MSG-0002637,INT-001485,client,My wife wants to see the sample flat again. Can we come tomorrow?,2026-04-15T01:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00476""}" +MSG-0002638,INT-001485,client,Thank you. What's the current price per sqft?,2026-04-15T00:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00476""}" +MSG-0002639,INT-001485,client,"Hi, I saw the listing for Siddha Suburbia Bungalow. Is the 3 BHK still available?",2026-04-15T01:55:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00476""}" +MSG-0002640,INT-001485,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2026-04-15T02:42:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00476""}" +MSG-0002641,INT-001485,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2026-04-15T06:46:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00476""}" +MSG-0002642,INT-001489,agent,"Rs 7 per sqft per month. Includes housekeeping, security, and common area maintenance.",2024-08-10T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00477""}" +MSG-0002643,INT-001489,client,My wife wants to see the sample flat again. Can we come tomorrow?,2024-08-10T00:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00477""}" +MSG-0002644,INT-001489,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2024-08-10T00:18:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00477""}" +MSG-0002645,INT-001489,client,That's slightly above my budget. Any flexibility?,2024-08-10T02:45:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00477""}" +MSG-0002646,INT-001489,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2024-08-10T03:16:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00477""}" +MSG-0002647,INT-001489,client,We visited the site today. The location is excellent but the approach road is narrow.,2024-08-10T02:35:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00477""}" +MSG-0002648,INT-001493,client,We visited the site today. The location is excellent but the approach road is narrow.,2024-08-25T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00478""}" +MSG-0002649,INT-001493,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2024-08-25T00:06:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00478""}" +MSG-0002650,INT-001493,agent,Sending it now. Also attaching the project brochure.,2024-08-25T00:18:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00478""}" +MSG-0002651,INT-001493,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2024-08-25T00:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00478""}" +MSG-0002652,INT-001495,client,We visited the site today. The location is excellent but the approach road is narrow.,2024-09-02T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00479""}" +MSG-0002653,INT-001495,client,Can you share the floor plan?,2024-09-02T00:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00479""}" +MSG-0002654,INT-001495,client,That's slightly above my budget. Any flexibility?,2024-09-02T01:10:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00479""}" +MSG-0002655,INT-001495,agent,It's approximately 14731 per sqft all-inclusive. Best price in Rajarhat right now.,2024-09-02T02:15:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00479""}" +MSG-0002656,INT-001495,agent,It's approximately 12023 per sqft all-inclusive. Best price in Rajarhat right now.,2024-09-02T02:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00479""}" +MSG-0002657,INT-001495,client,I'm ready to book. What's the token amount?,2024-09-02T02:10:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00479""}" +MSG-0002658,INT-001497,client,Received. The layout looks good. Is there a east facing option?,2024-10-02T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00480""}" +MSG-0002659,INT-001497,client,We visited the site today. The location is excellent but the approach road is narrow.,2024-10-02T00:55:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00480""}" +MSG-0002660,INT-001497,client,Thank you. What's the current price per sqft?,2024-10-02T00:18:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00480""}" +MSG-0002661,INT-001497,client,"Hi, I saw the listing for Eden Devprayag. Is the 3 BHK still available?",2024-10-02T01:42:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00480""}" +MSG-0002662,INT-001497,agent,It's approximately 10632 per sqft all-inclusive. Best price in Rajarhat right now.,2024-10-02T03:52:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00480""}" +MSG-0002663,INT-001497,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2024-10-02T02:35:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00480""}" +MSG-0002664,INT-001497,agent,"Yes sir, we have a few units available. When would you like to visit?",2024-10-02T01:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00480""}" +MSG-0002665,INT-001497,agent,Sending it now. Also attaching the project brochure.,2024-10-02T01:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00480""}" +MSG-0002666,INT-001500,client,Home loan. Pre-approved up to 4-6 Cr.,2024-11-19T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00481""}" +MSG-0002667,INT-001500,client,"Hi, I saw the listing for Siddha Suburbia Bungalow. Is the 3 BHK still available?",2024-11-19T00:39:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00481""}" +MSG-0002668,INT-001500,client,What about the maintenance charges?,2024-11-19T00:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00481""}" +MSG-0002669,INT-001500,agent,"Yes sir, we have a few units available. When would you like to visit?",2024-11-19T00:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00481""}" +MSG-0002670,INT-001500,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2024-11-19T01:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00481""}" +MSG-0002671,INT-001500,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2024-11-19T01:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00481""}" +MSG-0002672,INT-001501,client,Can we schedule for this Saturday around 11 AM?,2024-11-27T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00482""}" +MSG-0002673,INT-001501,agent,It's approximately 8230 per sqft all-inclusive. Best price in Madanpur right now.,2024-11-27T00:10:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00482""}" +MSG-0002674,INT-001501,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2024-11-27T00:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00482""}" +MSG-0002675,INT-001501,client,Thank you. What's the current price per sqft?,2024-11-27T03:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00482""}" +MSG-0002676,INT-001505,agent,"Yes sir, we have a few units available. When would you like to visit?",2025-02-12T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00483""}" +MSG-0002677,INT-001505,agent,It's approximately 9664 per sqft all-inclusive. Best price in Rajarhat right now.,2025-02-12T00:22:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00483""}" +MSG-0002678,INT-001505,client,Received. The layout looks good. Is there a east facing option?,2025-02-12T00:46:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00483""}" +MSG-0002679,INT-001505,agent,Of course. I'll arrange a dedicated viewing.,2025-02-12T02:06:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00483""}" +MSG-0002680,INT-001505,client,What about the maintenance charges?,2025-02-12T02:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00483""}" +MSG-0002681,INT-001505,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2025-02-12T03:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00483""}" +MSG-0002682,INT-001511,agent,Of course. I'll arrange a dedicated viewing.,2025-03-15T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00484""}" +MSG-0002683,INT-001511,client,Home loan. Pre-approved up to 1.5-2.5 Cr.,2025-03-15T00:35:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00484""}" +MSG-0002684,INT-001511,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2025-03-15T00:38:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00484""}" +MSG-0002685,INT-001511,client,What about the maintenance charges?,2025-03-15T02:33:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00484""}" +MSG-0002686,INT-001514,client,Received. The layout looks good. Is there a east facing option?,2024-02-02T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00485""}" +MSG-0002687,INT-001514,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2024-02-02T00:28:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00485""}" +MSG-0002688,INT-001514,agent,"Rs 6 per sqft per month. Includes housekeeping, security, and common area maintenance.",2024-02-02T01:52:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00485""}" +MSG-0002689,INT-001514,client,Thank you. What's the current price per sqft?,2024-02-02T00:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00485""}" +MSG-0002690,INT-001517,client,We visited the site today. The location is excellent but the approach road is narrow.,2024-02-21T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00486""}" +MSG-0002691,INT-001517,agent,"Rs 3 per sqft per month. Includes housekeeping, security, and common area maintenance.",2024-02-21T00:29:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00486""}" +MSG-0002692,INT-001517,agent,"Yes, Tower B has east facing units on floors 8-15.",2024-02-21T00:32:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00486""}" +MSG-0002693,INT-001517,client,Thank you. What's the current price per sqft?,2024-02-21T02:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00486""}" +MSG-0002694,INT-001517,client,What about the maintenance charges?,2024-02-21T03:56:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00486""}" +MSG-0002695,INT-001517,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2024-02-21T01:50:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00486""}" +MSG-0002696,INT-001520,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2024-03-07T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00487""}" +MSG-0002697,INT-001520,client,I'm ready to book. What's the token amount?,2024-03-07T00:13:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00487""}" +MSG-0002698,INT-001520,client,What about the maintenance charges?,2024-03-07T00:52:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00487""}" +MSG-0002699,INT-001520,client,Can you hold the unit for 2 days? I need to finalize with my father.,2024-03-07T01:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00487""}" +MSG-0002700,INT-001520,agent,Sending it now. Also attaching the project brochure.,2024-03-07T02:44:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00487""}" +MSG-0002701,INT-001521,agent,It's approximately 10584 per sqft all-inclusive. Best price in Rajarhat right now.,2024-03-15T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00488""}" +MSG-0002702,INT-001521,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2024-03-15T00:31:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00488""}" +MSG-0002703,INT-001521,client,Can you share the floor plan?,2024-03-15T00:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00488""}" +MSG-0002704,INT-001521,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2024-03-15T02:57:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00488""}" +MSG-0002705,INT-001521,client,Received. The layout looks good. Is there a east facing option?,2024-03-15T01:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00488""}" +MSG-0002706,INT-001521,client,Home loan. Pre-approved up to 6-10 Cr.,2024-03-15T02:55:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00488""}" +MSG-0002707,INT-001521,client,Can you hold the unit for 2 days? I need to finalize with my father.,2024-03-15T03:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00488""}" +MSG-0002708,INT-001521,client,Can we schedule for this Saturday around 11 AM?,2024-03-15T00:35:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00488""}" +MSG-0002709,INT-001527,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2025-04-27T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00489""}" +MSG-0002710,INT-001527,agent,"Yes sir, we have a few units available. When would you like to visit?",2025-04-27T00:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00489""}" +MSG-0002711,INT-001527,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2025-04-27T00:50:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00489""}" +MSG-0002712,INT-001527,agent,It's approximately 11550 per sqft all-inclusive. Best price in Barasat right now.,2025-04-27T00:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00489""}" +MSG-0002713,INT-001527,client,That's slightly above my budget. Any flexibility?,2025-04-27T02:28:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00489""}" +MSG-0002714,INT-001527,client,That's slightly above my budget. Any flexibility?,2025-04-27T03:15:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00489""}" +MSG-0002715,INT-001527,client,I'm ready to book. What's the token amount?,2025-04-27T01:06:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00489""}" +MSG-0002716,INT-001532,client,Can we schedule for this Saturday around 11 AM?,2025-06-07T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00490""}" +MSG-0002717,INT-001532,agent,"Rs 5 per sqft per month. Includes housekeeping, security, and common area maintenance.",2025-06-07T00:25:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00490""}" +MSG-0002718,INT-001532,client,Thank you. What's the current price per sqft?,2025-06-07T01:28:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00490""}" +MSG-0002719,INT-001532,client,"Hi, I saw the listing for Sugam Prakriti. Is the 3 BHK still available?",2025-06-07T02:27:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00490""}" +MSG-0002720,INT-001532,client,Can you hold the unit for 2 days? I need to finalize with my father.,2025-06-07T01:32:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00490""}" +MSG-0002721,INT-001532,client,Thank you. What's the current price per sqft?,2025-06-07T04:45:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00490""}" +MSG-0002722,INT-001532,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2025-06-07T02:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00490""}" +MSG-0002723,INT-001532,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2025-06-07T00:49:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00490""}" +MSG-0002724,INT-001537,client,I'm ready to book. What's the token amount?,2026-02-07T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00491""}" +MSG-0002725,INT-001537,client,What about the maintenance charges?,2026-02-07T00:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00491""}" +MSG-0002726,INT-001537,agent,Sending it now. Also attaching the project brochure.,2026-02-07T00:18:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00491""}" +MSG-0002727,INT-001537,client,"Hi, I saw the listing for Atri Aqua. Is the 3 BHK still available?",2026-02-07T02:27:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00491""}" +MSG-0002728,INT-001539,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2026-03-05T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00492""}" +MSG-0002729,INT-001539,client,That's slightly above my budget. Any flexibility?,2026-03-05T00:46:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00492""}" +MSG-0002730,INT-001539,client,We visited the site today. The location is excellent but the approach road is narrow.,2026-03-05T00:26:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00492""}" +MSG-0002731,INT-001542,client,We're comparing this with Ambuja Utpaala. What makes this better?,2024-12-30T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00493""}" +MSG-0002732,INT-001542,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2024-12-30T00:16:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00493""}" +MSG-0002733,INT-001542,agent,It's approximately 10443 per sqft all-inclusive. Best price in Beliaghata right now.,2024-12-30T01:04:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00493""}" +MSG-0002734,INT-001543,agent,"Yes, Tower B has east facing units on floors 8-15.",2025-01-05T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00494""}" +MSG-0002735,INT-001543,client,What about the maintenance charges?,2025-01-05T00:45:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00494""}" +MSG-0002736,INT-001543,agent,"Rs 5 per sqft per month. Includes housekeeping, security, and common area maintenance.",2025-01-05T00:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00494""}" +MSG-0002737,INT-001543,client,Can we schedule for this Saturday around 11 AM?,2025-01-05T01:15:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00494""}" +MSG-0002738,INT-001543,agent,"Rs 7 per sqft per month. Includes housekeeping, security, and common area maintenance.",2025-01-05T04:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00494""}" +MSG-0002739,INT-001549,client,Home loan. Pre-approved up to 10-15 Cr.,2024-09-19T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00495""}" +MSG-0002740,INT-001549,agent,Of course. I'll arrange a dedicated viewing.,2024-09-19T00:37:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00495""}" +MSG-0002741,INT-001549,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2024-09-19T01:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00495""}" +MSG-0002742,INT-001549,agent,"Rs 6 per sqft per month. Includes housekeeping, security, and common area maintenance.",2024-09-19T01:21:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00495""}" +MSG-0002743,INT-001549,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2024-09-19T03:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00495""}" +MSG-0002744,INT-001550,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2024-09-27T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00496""}" +MSG-0002745,INT-001550,client,Can we schedule for this Saturday around 11 AM?,2024-09-27T00:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00496""}" +MSG-0002746,INT-001550,client,That's slightly above my budget. Any flexibility?,2024-09-27T01:28:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00496""}" +MSG-0002747,INT-001554,agent,It's approximately 11391 per sqft all-inclusive. Best price in Rajarhat right now.,2024-04-24T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00497""}" +MSG-0002748,INT-001554,client,What about the maintenance charges?,2024-04-24T00:43:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00497""}" +MSG-0002749,INT-001554,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2024-04-24T01:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00497""}" +MSG-0002750,INT-001554,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2024-04-24T00:18:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00497""}" +MSG-0002751,INT-001554,client,My wife wants to see the sample flat again. Can we come tomorrow?,2024-04-24T00:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00497""}" +MSG-0002752,INT-001554,client,"Hi, I saw the listing for Atri Surya Toron. Is the 3 BHK still available?",2024-04-24T03:55:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00497""}" +MSG-0002753,INT-001554,client,Thank you. What's the current price per sqft?,2024-04-24T04:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00497""}" +MSG-0002754,INT-001555,client,Home loan. Pre-approved up to 10-15 Cr.,2024-05-02T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00498""}" +MSG-0002755,INT-001555,agent,"Yes, Tower B has east facing units on floors 8-15.",2024-05-02T01:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00498""}" +MSG-0002756,INT-001555,client,My wife wants to see the sample flat again. Can we come tomorrow?,2024-05-02T00:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00498""}" +MSG-0002757,INT-001555,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2024-05-02T01:54:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00498""}" +MSG-0002758,INT-001555,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2024-05-02T00:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00498""}" +MSG-0002759,INT-001555,client,We're comparing this with Shriram Grand City. What makes this better?,2024-05-02T00:50:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00498""}" +MSG-0002760,INT-001555,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2024-05-02T02:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00498""}" +MSG-0002761,INT-001561,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2025-09-19T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00499""}" +MSG-0002762,INT-001561,client,I'm ready to book. What's the token amount?,2025-09-19T00:55:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00499""}" +MSG-0002763,INT-001561,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2025-09-19T00:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00499""}" +MSG-0002764,INT-001561,client,Home loan. Pre-approved up to 1.5-2.5 Cr.,2025-09-19T02:21:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00499""}" +MSG-0002765,INT-001561,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2025-09-19T03:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00499""}" +MSG-0002766,INT-001561,client,Can we schedule for this Saturday around 11 AM?,2025-09-19T03:10:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00499""}" +MSG-0002767,INT-001561,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2025-09-19T01:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00499""}" +MSG-0002768,INT-001564,client,Can you hold the unit for 2 days? I need to finalize with my father.,2024-07-22T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00500""}" +MSG-0002769,INT-001564,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2024-07-22T00:29:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00500""}" +MSG-0002770,INT-001564,agent,Of course. I'll arrange a dedicated viewing.,2024-07-22T01:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00500""}" +MSG-0002771,INT-001568,client,Can we schedule for this Saturday around 11 AM?,2024-08-30T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00501""}" +MSG-0002772,INT-001568,agent,"Yes sir, we have a few units available. When would you like to visit?",2024-08-30T00:50:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00501""}" +MSG-0002773,INT-001568,client,I'm ready to book. What's the token amount?,2024-08-30T01:16:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00501""}" +MSG-0002774,INT-001568,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2024-08-30T00:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00501""}" +MSG-0002775,INT-001569,client,"Hi, I saw the listing for Siddha Sky Waterfront. Is the 3 BHK still available?",2024-09-01T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00502""}" +MSG-0002776,INT-001569,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2024-09-01T00:56:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00502""}" +MSG-0002777,INT-001569,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2024-09-01T01:08:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00502""}" +MSG-0002778,INT-001569,client,I'm ready to book. What's the token amount?,2024-09-01T02:15:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00502""}" +MSG-0002779,INT-001569,client,"Hi, I saw the listing for Siddha Sky Waterfront. Is the 3 BHK still available?",2024-09-01T01:04:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00502""}" +MSG-0002780,INT-001569,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2024-09-01T04:50:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00502""}" +MSG-0002781,INT-001569,agent,"Yes sir, we have a few units available. When would you like to visit?",2024-09-01T04:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00502""}" +MSG-0002782,INT-001569,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2024-09-01T03:23:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00502""}" +MSG-0002783,INT-001571,client,Can we schedule for this Saturday around 11 AM?,2024-09-07T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00503""}" +MSG-0002784,INT-001571,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2024-09-07T00:09:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00503""}" +MSG-0002785,INT-001571,agent,"Yes sir, we have a few units available. When would you like to visit?",2024-09-07T01:56:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00503""}" +MSG-0002786,INT-001571,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2024-09-07T02:18:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00503""}" +MSG-0002787,INT-001576,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2025-05-16T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00504""}" +MSG-0002788,INT-001576,agent,Sending it now. Also attaching the project brochure.,2025-05-16T00:26:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00504""}" +MSG-0002789,INT-001576,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2025-05-16T01:56:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00504""}" +MSG-0002790,INT-001576,client,That's slightly above my budget. Any flexibility?,2025-05-16T01:39:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00504""}" +MSG-0002791,INT-001579,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2025-06-17T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00505""}" +MSG-0002792,INT-001579,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2025-06-17T00:07:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00505""}" +MSG-0002793,INT-001579,client,I'm ready to book. What's the token amount?,2025-06-17T01:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00505""}" +MSG-0002794,INT-001579,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2025-06-17T01:21:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00505""}" +MSG-0002795,INT-001579,client,Received. The layout looks good. Is there a east facing option?,2025-06-17T01:52:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00505""}" +MSG-0002796,INT-001582,client,My wife wants to see the sample flat again. Can we come tomorrow?,2025-06-26T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00506""}" +MSG-0002797,INT-001582,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2025-06-26T00:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00506""}" +MSG-0002798,INT-001582,client,We visited the site today. The location is excellent but the approach road is narrow.,2025-06-26T01:22:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00506""}" +MSG-0002799,INT-001582,client,Can you hold the unit for 2 days? I need to finalize with my father.,2025-06-26T01:21:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00506""}" +MSG-0002800,INT-001582,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2025-06-26T03:04:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00506""}" +MSG-0002801,INT-001587,client,That's slightly above my budget. Any flexibility?,2024-07-24T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00507""}" +MSG-0002802,INT-001587,client,Received. The layout looks good. Is there a east facing option?,2024-07-24T00:29:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00507""}" +MSG-0002803,INT-001587,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2024-07-24T01:08:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00507""}" +MSG-0002804,INT-001587,agent,"Yes sir, we have a few units available. When would you like to visit?",2024-07-24T00:15:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00507""}" +MSG-0002805,INT-001587,client,Thank you. What's the current price per sqft?,2024-07-24T01:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00507""}" +MSG-0002806,INT-001587,client,I'm ready to book. What's the token amount?,2024-07-24T02:05:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00507""}" +MSG-0002807,INT-001587,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2024-07-24T05:18:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00507""}" +MSG-0002808,INT-001592,client,Can we schedule for this Saturday around 11 AM?,2025-09-21T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00508""}" +MSG-0002809,INT-001592,client,Can you share the floor plan?,2025-09-21T00:25:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00508""}" +MSG-0002810,INT-001592,client,Can you share the floor plan?,2025-09-21T01:44:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00508""}" +MSG-0002811,INT-001596,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2025-11-04T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00509""}" +MSG-0002812,INT-001596,client,I'm ready to book. What's the token amount?,2025-11-04T00:33:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00509""}" +MSG-0002813,INT-001596,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2025-11-04T01:14:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00509""}" +MSG-0002814,INT-001596,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2025-11-04T02:57:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00509""}" +MSG-0002815,INT-001596,client,We visited the site today. The location is excellent but the approach road is narrow.,2025-11-04T02:16:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00509""}" +MSG-0002816,INT-001599,client,That's slightly above my budget. Any flexibility?,2025-01-13T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00510""}" +MSG-0002817,INT-001599,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2025-01-13T00:18:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00510""}" +MSG-0002818,INT-001599,agent,Sending it now. Also attaching the project brochure.,2025-01-13T01:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00510""}" +MSG-0002819,INT-001599,client,Can you hold the unit for 2 days? I need to finalize with my father.,2025-01-13T02:42:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00510""}" +MSG-0002820,INT-001599,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2025-01-13T00:56:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00510""}" +MSG-0002821,INT-001600,client,That's slightly above my budget. Any flexibility?,2025-01-30T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00511""}" +MSG-0002822,INT-001600,client,Can we schedule for this Saturday around 11 AM?,2025-01-30T00:34:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00511""}" +MSG-0002823,INT-001600,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2025-01-30T00:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00511""}" +MSG-0002824,INT-001602,agent,"Yes sir, we have a few units available. When would you like to visit?",2025-02-18T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00512""}" +MSG-0002825,INT-001602,client,We visited the site today. The location is excellent but the approach road is narrow.,2025-02-18T00:33:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00512""}" +MSG-0002826,INT-001602,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2025-02-18T00:56:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00512""}" +MSG-0002827,INT-001602,client,Can we schedule for this Saturday around 11 AM?,2025-02-18T00:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00512""}" +MSG-0002828,INT-001602,client,"Hi, I saw the listing for DTC Good Earth. Is the 3 BHK still available?",2025-02-18T00:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00512""}" +MSG-0002829,INT-001606,agent,"Yes, Tower B has east facing units on floors 8-15.",2024-02-22T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00513""}" +MSG-0002830,INT-001606,client,"Hi, I saw the listing for Ambuja Utpaala. Is the 3 BHK still available?",2024-02-22T00:29:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00513""}" +MSG-0002831,INT-001606,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2024-02-22T00:34:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00513""}" +MSG-0002832,INT-001606,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2024-02-22T01:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00513""}" +MSG-0002833,INT-001607,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2024-02-23T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00514""}" +MSG-0002834,INT-001607,client,Thank you. What's the current price per sqft?,2024-02-23T00:57:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00514""}" +MSG-0002835,INT-001607,agent,It's approximately 12562 per sqft all-inclusive. Best price in Tollygunge right now.,2024-02-23T01:22:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00514""}" +MSG-0002836,INT-001607,agent,Of course. I'll arrange a dedicated viewing.,2024-02-23T02:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00514""}" +MSG-0002837,INT-001607,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2024-02-23T03:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00514""}" +MSG-0002838,INT-001616,client,Can you share the floor plan?,2025-09-21T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00515""}" +MSG-0002839,INT-001616,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2025-09-21T01:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00515""}" +MSG-0002840,INT-001616,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2025-09-21T01:28:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00515""}" +MSG-0002841,INT-001616,client,What about the maintenance charges?,2025-09-21T01:57:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00515""}" +MSG-0002842,INT-001616,client,Can you share the floor plan?,2025-09-21T01:44:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00515""}" +MSG-0002843,INT-001616,client,What about the maintenance charges?,2025-09-21T01:55:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00515""}" +MSG-0002844,INT-001617,client,Can you hold the unit for 2 days? I need to finalize with my father.,2025-09-30T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00516""}" +MSG-0002845,INT-001617,agent,It's approximately 10708 per sqft all-inclusive. Best price in Beliaghata right now.,2025-09-30T00:07:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00516""}" +MSG-0002846,INT-001617,client,Received. The layout looks good. Is there a east facing option?,2025-09-30T00:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00516""}" +MSG-0002847,INT-001617,client,Can you hold the unit for 2 days? I need to finalize with my father.,2025-09-30T02:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00516""}" +MSG-0002848,INT-001617,agent,Sending it now. Also attaching the project brochure.,2025-09-30T00:56:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00516""}" +MSG-0002849,INT-001617,agent,"Rs 5 per sqft per month. Includes housekeeping, security, and common area maintenance.",2025-09-30T00:50:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00516""}" +MSG-0002850,INT-001618,client,Can you share the floor plan?,2025-12-02T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00517""}" +MSG-0002851,INT-001618,client,We visited the site today. The location is excellent but the approach road is narrow.,2025-12-02T00:33:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00517""}" +MSG-0002852,INT-001618,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2025-12-02T00:46:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00517""}" +MSG-0002853,INT-001618,agent,"Yes, Tower B has east facing units on floors 8-15.",2025-12-02T01:51:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00517""}" +MSG-0002854,INT-001618,client,That's slightly above my budget. Any flexibility?,2025-12-02T01:04:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00517""}" +MSG-0002855,INT-001618,agent,Sending it now. Also attaching the project brochure.,2025-12-02T01:25:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00517""}" +MSG-0002856,INT-001618,agent,"Yes sir, we have a few units available. When would you like to visit?",2025-12-02T04:54:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00517""}" +MSG-0002857,INT-001618,client,My wife wants to see the sample flat again. Can we come tomorrow?,2025-12-02T00:56:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00517""}" +MSG-0002858,INT-001620,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2025-09-11T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00518""}" +MSG-0002859,INT-001620,client,Can we schedule for this Saturday around 11 AM?,2025-09-11T00:53:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00518""}" +MSG-0002860,INT-001620,client,Home loan. Pre-approved up to 6-10 Cr.,2025-09-11T01:14:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00518""}" +MSG-0002861,INT-001620,client,That's slightly above my budget. Any flexibility?,2025-09-11T00:15:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00518""}" +MSG-0002862,INT-001620,client,Can we schedule for this Saturday around 11 AM?,2025-09-11T02:28:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00518""}" +MSG-0002863,INT-001621,client,I'm ready to book. What's the token amount?,2025-10-08T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00519""}" +MSG-0002864,INT-001621,client,Can we schedule for this Saturday around 11 AM?,2025-10-08T00:56:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00519""}" +MSG-0002865,INT-001621,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2025-10-08T01:10:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00519""}" +MSG-0002866,INT-001621,agent,"Rs 5 per sqft per month. Includes housekeeping, security, and common area maintenance.",2025-10-08T00:33:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00519""}" +MSG-0002867,INT-001625,client,What about the maintenance charges?,2025-11-05T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00520""}" +MSG-0002868,INT-001625,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2025-11-05T00:10:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00520""}" +MSG-0002869,INT-001625,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2025-11-05T00:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00520""}" +MSG-0002870,INT-001625,client,We're comparing this with Atri Surya Toron. What makes this better?,2025-11-05T01:03:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00520""}" +MSG-0002871,INT-001625,client,Can we schedule for this Saturday around 11 AM?,2025-11-05T02:56:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00520""}" +MSG-0002872,INT-001625,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2025-11-05T04:50:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00520""}" +MSG-0002873,INT-001625,client,Received. The layout looks good. Is there a east facing option?,2025-11-05T00:42:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00520""}" +MSG-0002874,INT-001627,client,My wife wants to see the sample flat again. Can we come tomorrow?,2025-11-18T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00521""}" +MSG-0002875,INT-001627,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2025-11-18T00:49:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00521""}" +MSG-0002876,INT-001627,client,What about the maintenance charges?,2025-11-18T00:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00521""}" +MSG-0002877,INT-001627,client,We visited the site today. The location is excellent but the approach road is narrow.,2025-11-18T00:27:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00521""}" +MSG-0002878,INT-001627,client,We're comparing this with DTC Sojon. What makes this better?,2025-11-18T03:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00521""}" +MSG-0002879,INT-001627,agent,It's approximately 13599 per sqft all-inclusive. Best price in Tangra right now.,2025-11-18T04:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00521""}" +MSG-0002880,INT-001627,agent,Sending it now. Also attaching the project brochure.,2025-11-18T05:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00521""}" +MSG-0002881,INT-001630,client,We visited the site today. The location is excellent but the approach road is narrow.,2024-06-12T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00522""}" +MSG-0002882,INT-001630,client,That's slightly above my budget. Any flexibility?,2024-06-12T00:28:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00522""}" +MSG-0002883,INT-001630,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2024-06-12T01:46:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00522""}" +MSG-0002884,INT-001630,client,What about the maintenance charges?,2024-06-12T01:57:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00522""}" +MSG-0002885,INT-001630,client,Home loan. Pre-approved up to 15-25 Cr.,2024-06-12T01:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00522""}" +MSG-0002886,INT-001630,client,Can you hold the unit for 2 days? I need to finalize with my father.,2024-06-12T04:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00522""}" +MSG-0002887,INT-001630,client,Can you share the floor plan?,2024-06-12T03:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00522""}" +MSG-0002888,INT-001630,client,Can we schedule for this Saturday around 11 AM?,2024-06-12T04:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00522""}" +MSG-0002889,INT-001637,client,I'm ready to book. What's the token amount?,2024-05-22T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00523""}" +MSG-0002890,INT-001637,client,"Hi, I saw the listing for Siddha Suburbia Bungalow. Is the 3 BHK still available?",2024-05-22T00:29:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00523""}" +MSG-0002891,INT-001637,agent,Of course. I'll arrange a dedicated viewing.,2024-05-22T00:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00523""}" +MSG-0002892,INT-001637,client,We're comparing this with DTC Good Earth. What makes this better?,2024-05-22T02:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00523""}" +MSG-0002893,INT-001637,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2024-05-22T02:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00523""}" +MSG-0002894,INT-001637,client,I'm ready to book. What's the token amount?,2024-05-22T00:25:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00523""}" +MSG-0002895,INT-001638,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2024-05-27T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00524""}" +MSG-0002896,INT-001638,agent,Sending it now. Also attaching the project brochure.,2024-05-27T00:31:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00524""}" +MSG-0002897,INT-001638,client,Received. The layout looks good. Is there a east facing option?,2024-05-27T00:56:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00524""}" +MSG-0002898,INT-001638,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2024-05-27T01:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00524""}" +MSG-0002899,INT-001638,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2024-05-27T01:32:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00524""}" +MSG-0002900,INT-001638,client,Can you hold the unit for 2 days? I need to finalize with my father.,2024-05-27T01:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00524""}" +MSG-0002901,INT-001638,client,Thank you. What's the current price per sqft?,2024-05-27T03:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00524""}" +MSG-0002902,INT-001640,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2024-06-04T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00525""}" +MSG-0002903,INT-001640,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2024-06-04T00:17:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00525""}" +MSG-0002904,INT-001640,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2024-06-04T01:14:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00525""}" +MSG-0002905,INT-001640,client,That's slightly above my budget. Any flexibility?,2024-06-04T02:45:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00525""}" +MSG-0002906,INT-001640,client,My wife wants to see the sample flat again. Can we come tomorrow?,2024-06-04T01:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00525""}" +MSG-0002907,INT-001640,agent,Of course. I'll arrange a dedicated viewing.,2024-06-04T02:25:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00525""}" +MSG-0002908,INT-001640,agent,Sending it now. Also attaching the project brochure.,2024-06-04T00:42:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00525""}" +MSG-0002909,INT-001641,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2024-06-08T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00526""}" +MSG-0002910,INT-001641,client,What about the maintenance charges?,2024-06-08T00:21:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00526""}" +MSG-0002911,INT-001641,agent,"Rs 4 per sqft per month. Includes housekeeping, security, and common area maintenance.",2024-06-08T00:46:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00526""}" +MSG-0002912,INT-001641,agent,It's approximately 12160 per sqft all-inclusive. Best price in Madanpur right now.,2024-06-08T00:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00526""}" +MSG-0002913,INT-001641,agent,Of course. I'll arrange a dedicated viewing.,2024-06-08T02:04:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00526""}" +MSG-0002914,INT-001641,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2024-06-08T00:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00526""}" +MSG-0002915,INT-001641,client,We visited the site today. The location is excellent but the approach road is narrow.,2024-06-08T05:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00526""}" +MSG-0002916,INT-001647,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2025-08-27T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00527""}" +MSG-0002917,INT-001647,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2025-08-27T00:08:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00527""}" +MSG-0002918,INT-001647,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2025-08-27T01:06:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00527""}" +MSG-0002919,INT-001647,client,We visited the site today. The location is excellent but the approach road is narrow.,2025-08-27T01:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00527""}" +MSG-0002920,INT-001647,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2025-08-27T00:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00527""}" +MSG-0002921,INT-001650,agent,Sending it now. Also attaching the project brochure.,2025-09-12T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00528""}" +MSG-0002922,INT-001650,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2025-09-12T00:14:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00528""}" +MSG-0002923,INT-001650,client,Can you hold the unit for 2 days? I need to finalize with my father.,2025-09-12T02:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00528""}" +MSG-0002924,INT-001650,client,"Hi, I saw the listing for Godrej Blue. Is the 3 BHK still available?",2025-09-12T02:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00528""}" +MSG-0002925,INT-001650,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2025-09-12T01:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00528""}" +MSG-0002926,INT-001651,client,Can you share the floor plan?,2025-09-26T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00529""}" +MSG-0002927,INT-001651,agent,It's approximately 8890 per sqft all-inclusive. Best price in New Town right now.,2025-09-26T00:44:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00529""}" +MSG-0002928,INT-001651,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2025-09-26T01:52:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00529""}" +MSG-0002929,INT-001651,client,Can you hold the unit for 2 days? I need to finalize with my father.,2025-09-26T01:39:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00529""}" +MSG-0002930,INT-001651,client,Received. The layout looks good. Is there a east facing option?,2025-09-26T01:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00529""}" +MSG-0002931,INT-001654,client,Can you share the floor plan?,2025-06-25T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00530""}" +MSG-0002932,INT-001654,client,Can you hold the unit for 2 days? I need to finalize with my father.,2025-06-25T00:37:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00530""}" +MSG-0002933,INT-001654,client,What about the maintenance charges?,2025-06-25T01:32:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00530""}" +MSG-0002934,INT-001654,agent,It's approximately 11867 per sqft all-inclusive. Best price in Howrah right now.,2025-06-25T00:27:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00530""}" +MSG-0002935,INT-001654,client,My wife wants to see the sample flat again. Can we come tomorrow?,2025-06-25T02:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00530""}" +MSG-0002936,INT-001662,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2025-03-05T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00531""}" +MSG-0002937,INT-001662,client,We're comparing this with Shriram Grand City. What makes this better?,2025-03-05T00:31:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00531""}" +MSG-0002938,INT-001662,client,Can you hold the unit for 2 days? I need to finalize with my father.,2025-03-05T00:34:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00531""}" +MSG-0002939,INT-001662,client,We're comparing this with Ambuja Utpaala. What makes this better?,2025-03-05T01:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00531""}" +MSG-0002940,INT-001662,client,"Hi, I saw the listing for DTC Sojon. Is the 3 BHK still available?",2025-03-05T01:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00531""}" +MSG-0002941,INT-001665,client,What about the maintenance charges?,2025-04-13T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00532""}" +MSG-0002942,INT-001665,client,Can you share the floor plan?,2025-04-13T00:59:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00532""}" +MSG-0002943,INT-001665,client,Can you share the floor plan?,2025-04-13T01:44:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00532""}" +MSG-0002944,INT-001665,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2025-04-13T02:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00532""}" +MSG-0002945,INT-001665,client,We're comparing this with Godrej Blue. What makes this better?,2025-04-13T03:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00532""}" +MSG-0002946,INT-001665,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2025-04-13T01:55:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00532""}" +MSG-0002947,INT-001665,client,My wife wants to see the sample flat again. Can we come tomorrow?,2025-04-13T05:18:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00532""}" +MSG-0002948,INT-001667,agent,Of course. I'll arrange a dedicated viewing.,2024-10-09T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00533""}" +MSG-0002949,INT-001667,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2024-10-09T00:19:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00533""}" +MSG-0002950,INT-001667,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2024-10-09T00:56:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00533""}" +MSG-0002951,INT-001667,agent,"Rs 7 per sqft per month. Includes housekeeping, security, and common area maintenance.",2024-10-09T00:21:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00533""}" +MSG-0002952,INT-001667,agent,It's approximately 12639 per sqft all-inclusive. Best price in New Town right now.,2024-10-09T03:44:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00533""}" +MSG-0002953,INT-001667,client,Thank you. What's the current price per sqft?,2024-10-09T01:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00533""}" +MSG-0002954,INT-001670,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2026-01-21T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00534""}" +MSG-0002955,INT-001670,client,Can you hold the unit for 2 days? I need to finalize with my father.,2026-01-21T00:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00534""}" +MSG-0002956,INT-001670,agent,It's approximately 14168 per sqft all-inclusive. Best price in New Town right now.,2026-01-21T00:52:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00534""}" +MSG-0002957,INT-001670,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2026-01-21T00:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00534""}" +MSG-0002958,INT-001674,client,Can you share the floor plan?,2026-02-05T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00535""}" +MSG-0002959,INT-001674,agent,Sending it now. Also attaching the project brochure.,2026-02-05T00:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00535""}" +MSG-0002960,INT-001674,agent,Of course. I'll arrange a dedicated viewing.,2026-02-05T00:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00535""}" +MSG-0002961,INT-001674,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2026-02-05T01:03:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00535""}" +MSG-0002962,INT-001674,agent,"Rs 5 per sqft per month. Includes housekeeping, security, and common area maintenance.",2026-02-05T01:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00535""}" +MSG-0002963,INT-001675,client,Received. The layout looks good. Is there a east facing option?,2026-02-06T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00536""}" +MSG-0002964,INT-001675,client,Received. The layout looks good. Is there a east facing option?,2026-02-06T00:35:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00536""}" +MSG-0002965,INT-001675,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2026-02-06T00:10:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00536""}" +MSG-0002966,INT-001675,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2026-02-06T02:15:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00536""}" +MSG-0002967,INT-001675,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2026-02-06T02:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00536""}" +MSG-0002968,INT-001683,client,Can you hold the unit for 2 days? I need to finalize with my father.,2025-07-19T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00537""}" +MSG-0002969,INT-001683,agent,"Yes, Tower B has east facing units on floors 8-15.",2025-07-19T00:31:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00537""}" +MSG-0002970,INT-001683,agent,"Yes, Tower B has east facing units on floors 8-15.",2025-07-19T00:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00537""}" +MSG-0002971,INT-001683,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2025-07-19T00:27:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00537""}" +MSG-0002972,INT-001683,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2025-07-19T01:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00537""}" +MSG-0002973,INT-001683,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2025-07-19T00:45:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00537""}" +MSG-0002974,INT-001683,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2025-07-19T02:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00537""}" +MSG-0002975,INT-001686,client,Can you share the floor plan?,2025-08-10T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00538""}" +MSG-0002976,INT-001686,agent,"Yes sir, we have a few units available. When would you like to visit?",2025-08-10T00:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00538""}" +MSG-0002977,INT-001686,agent,Of course. I'll arrange a dedicated viewing.,2025-08-10T01:52:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00538""}" +MSG-0002978,INT-001686,agent,"Yes sir, we have a few units available. When would you like to visit?",2025-08-10T02:15:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00538""}" +MSG-0002979,INT-001686,agent,Sending it now. Also attaching the project brochure.,2025-08-10T02:08:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00538""}" +MSG-0002980,INT-001690,agent,It's approximately 14152 per sqft all-inclusive. Best price in Barasat right now.,2025-08-31T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00539""}" +MSG-0002981,INT-001690,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2025-08-31T00:53:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00539""}" +MSG-0002982,INT-001690,agent,"Rs 7 per sqft per month. Includes housekeeping, security, and common area maintenance.",2025-08-31T01:26:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00539""}" +MSG-0002983,INT-001692,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2025-09-10T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00540""}" +MSG-0002984,INT-001692,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2025-09-10T00:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00540""}" +MSG-0002985,INT-001692,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2025-09-10T00:14:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00540""}" +MSG-0002986,INT-001692,client,Thank you. What's the current price per sqft?,2025-09-10T01:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00540""}" +MSG-0002987,INT-001692,client,Can you share the floor plan?,2025-09-10T01:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00540""}" +MSG-0002988,INT-001692,client,Can you share the floor plan?,2025-09-10T01:05:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00540""}" +MSG-0002989,INT-001692,client,My wife wants to see the sample flat again. Can we come tomorrow?,2025-09-10T03:06:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00540""}" +MSG-0002990,INT-001692,agent,"Yes, Tower B has east facing units on floors 8-15.",2025-09-10T06:46:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00540""}" +MSG-0002991,INT-001705,agent,"Yes sir, we have a few units available. When would you like to visit?",2024-03-21T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00541""}" +MSG-0002992,INT-001705,agent,"Rs 7 per sqft per month. Includes housekeeping, security, and common area maintenance.",2024-03-21T00:05:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00541""}" +MSG-0002993,INT-001705,agent,"Rs 5 per sqft per month. Includes housekeeping, security, and common area maintenance.",2024-03-21T01:56:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00541""}" +MSG-0002994,INT-001705,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2024-03-21T01:18:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00541""}" +MSG-0002995,INT-001705,client,We're comparing this with Eden Devprayag. What makes this better?,2024-03-21T00:52:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00541""}" +MSG-0002996,INT-001705,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2024-03-21T03:35:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00541""}" +MSG-0002997,INT-001705,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2024-03-21T04:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00541""}" +MSG-0002998,INT-001711,client,That's slightly above my budget. Any flexibility?,2026-01-21T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00542""}" +MSG-0002999,INT-001711,client,Home loan. Pre-approved up to 4-6 Cr.,2026-01-21T00:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00542""}" +MSG-0003000,INT-001711,agent,Sending it now. Also attaching the project brochure.,2026-01-21T00:34:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00542""}" +MSG-0003001,INT-001711,agent,"Yes, Tower B has east facing units on floors 8-15.",2026-01-21T02:33:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00542""}" +MSG-0003002,INT-001711,client,Can we schedule for this Saturday around 11 AM?,2026-01-21T01:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00542""}" +MSG-0003003,INT-001711,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2026-01-21T03:50:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00542""}" +MSG-0003004,INT-001715,agent,Of course. I'll arrange a dedicated viewing.,2025-05-27T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00543""}" +MSG-0003005,INT-001715,agent,"Yes, Tower B has east facing units on floors 8-15.",2025-05-27T00:55:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00543""}" +MSG-0003006,INT-001715,client,That's slightly above my budget. Any flexibility?,2025-05-27T00:28:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00543""}" +MSG-0003007,INT-001717,agent,Of course. I'll arrange a dedicated viewing.,2025-06-02T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00544""}" +MSG-0003008,INT-001717,client,That's slightly above my budget. Any flexibility?,2025-06-02T00:52:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00544""}" +MSG-0003009,INT-001717,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2025-06-02T01:44:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00544""}" +MSG-0003010,INT-001718,client,What about the maintenance charges?,2025-06-11T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00545""}" +MSG-0003011,INT-001718,client,Thank you. What's the current price per sqft?,2025-06-11T00:14:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00545""}" +MSG-0003012,INT-001718,client,Thank you. What's the current price per sqft?,2025-06-11T01:44:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00545""}" +MSG-0003013,INT-001718,agent,Of course. I'll arrange a dedicated viewing.,2025-06-11T02:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00545""}" +MSG-0003014,INT-001718,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2025-06-11T01:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00545""}" +MSG-0003015,INT-001718,client,We're comparing this with Siddha Sky Waterfront. What makes this better?,2025-06-11T04:25:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00545""}" +MSG-0003016,INT-001718,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2025-06-11T03:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00545""}" +MSG-0003017,INT-001718,agent,"Rs 6 per sqft per month. Includes housekeeping, security, and common area maintenance.",2025-06-11T03:51:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00545""}" +MSG-0003018,INT-001723,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2025-07-26T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00546""}" +MSG-0003019,INT-001723,client,That's slightly above my budget. Any flexibility?,2025-07-26T00:58:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00546""}" +MSG-0003020,INT-001723,agent,"Yes sir, we have a few units available. When would you like to visit?",2025-07-26T01:32:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00546""}" +MSG-0003021,INT-001727,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2025-10-01T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00547""}" +MSG-0003022,INT-001727,agent,"Yes sir, we have a few units available. When would you like to visit?",2025-10-01T00:58:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00547""}" +MSG-0003023,INT-001727,agent,"Rs 7 per sqft per month. Includes housekeeping, security, and common area maintenance.",2025-10-01T01:58:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00547""}" +MSG-0003024,INT-001727,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2025-10-01T02:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00547""}" +MSG-0003025,INT-001727,agent,Sending it now. Also attaching the project brochure.,2025-10-01T01:32:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00547""}" +MSG-0003026,INT-001732,agent,Sending it now. Also attaching the project brochure.,2025-11-21T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00548""}" +MSG-0003027,INT-001732,client,Can we schedule for this Saturday around 11 AM?,2025-11-21T00:18:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00548""}" +MSG-0003028,INT-001732,client,"Hi, I saw the listing for Siddha Suburbia Bungalow. Is the 3 BHK still available?",2025-11-21T01:10:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00548""}" +MSG-0003029,INT-001732,client,"Hi, I saw the listing for Siddha Suburbia Bungalow. Is the 3 BHK still available?",2025-11-21T02:33:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00548""}" +MSG-0003030,INT-001732,client,Received. The layout looks good. Is there a east facing option?,2025-11-21T03:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00548""}" +MSG-0003031,INT-001736,client,Can you share the floor plan?,2024-11-29T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00549""}" +MSG-0003032,INT-001736,client,What about the maintenance charges?,2024-11-29T00:16:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00549""}" +MSG-0003033,INT-001736,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2024-11-29T01:42:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00549""}" +MSG-0003034,INT-001736,client,Can you share the floor plan?,2024-11-29T01:21:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00549""}" +MSG-0003035,INT-001736,client,"Hi, I saw the listing for Godrej Elevate. Is the 3 BHK still available?",2024-11-29T04:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00549""}" +MSG-0003036,INT-001736,agent,"Rs 8 per sqft per month. Includes housekeeping, security, and common area maintenance.",2024-11-29T03:15:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00549""}" +MSG-0003037,INT-001736,agent,"Yes sir, we have a few units available. When would you like to visit?",2024-11-29T03:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00549""}" +MSG-0003038,INT-001736,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2024-11-29T06:04:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00549""}" +MSG-0003039,INT-001737,agent,It's approximately 12149 per sqft all-inclusive. Best price in Dum Dum right now.,2024-12-07T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00550""}" +MSG-0003040,INT-001737,client,That's slightly above my budget. Any flexibility?,2024-12-07T00:05:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00550""}" +MSG-0003041,INT-001737,client,Can we schedule for this Saturday around 11 AM?,2024-12-07T01:22:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00550""}" +MSG-0003042,INT-001737,client,That's slightly above my budget. Any flexibility?,2024-12-07T00:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00550""}" +MSG-0003043,INT-001738,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2024-12-22T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00551""}" +MSG-0003044,INT-001738,client,"Hi, I saw the listing for Godrej Elevate. Is the 3 BHK still available?",2024-12-22T00:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00551""}" +MSG-0003045,INT-001738,agent,"Yes sir, we have a few units available. When would you like to visit?",2024-12-22T00:50:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00551""}" +MSG-0003046,INT-001739,client,Received. The layout looks good. Is there a east facing option?,2024-12-27T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00552""}" +MSG-0003047,INT-001739,client,Can you hold the unit for 2 days? I need to finalize with my father.,2024-12-27T00:17:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00552""}" +MSG-0003048,INT-001739,client,Can you hold the unit for 2 days? I need to finalize with my father.,2024-12-27T01:18:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00552""}" +MSG-0003049,INT-001739,client,That's slightly above my budget. Any flexibility?,2024-12-27T00:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00552""}" +MSG-0003050,INT-001739,agent,"Yes, Tower B has east facing units on floors 8-15.",2024-12-27T02:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00552""}" +MSG-0003051,INT-001740,client,I'm ready to book. What's the token amount?,2024-12-27T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00553""}" +MSG-0003052,INT-001740,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2024-12-27T00:27:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00553""}" +MSG-0003053,INT-001740,client,Home loan. Pre-approved up to 15-25 Cr.,2024-12-27T01:18:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00553""}" +MSG-0003054,INT-001740,agent,Of course. I'll arrange a dedicated viewing.,2024-12-27T00:33:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00553""}" +MSG-0003055,INT-001740,client,I'm ready to book. What's the token amount?,2024-12-27T02:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00553""}" +MSG-0003056,INT-001740,client,Can you hold the unit for 2 days? I need to finalize with my father.,2024-12-27T04:35:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00553""}" +MSG-0003057,INT-001744,agent,"Yes, Tower B has east facing units on floors 8-15.",2025-01-06T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00554""}" +MSG-0003058,INT-001744,agent,"Yes sir, we have a few units available. When would you like to visit?",2025-01-06T00:41:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00554""}" +MSG-0003059,INT-001744,agent,"Rs 7 per sqft per month. Includes housekeeping, security, and common area maintenance.",2025-01-06T01:32:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00554""}" +MSG-0003060,INT-001744,client,We're comparing this with DTC Good Earth. What makes this better?,2025-01-06T01:39:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00554""}" +MSG-0003061,INT-001744,agent,"Yes, Tower B has east facing units on floors 8-15.",2025-01-06T01:52:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00554""}" +MSG-0003062,INT-001744,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2025-01-06T04:50:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00554""}" +MSG-0003063,INT-001744,agent,Sending it now. Also attaching the project brochure.,2025-01-06T04:54:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00554""}" +MSG-0003064,INT-001750,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2024-07-14T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00555""}" +MSG-0003065,INT-001750,agent,Of course. I'll arrange a dedicated viewing.,2024-07-14T00:21:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00555""}" +MSG-0003066,INT-001750,client,We're comparing this with Siddha Serena. What makes this better?,2024-07-14T01:34:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00555""}" +MSG-0003067,INT-001750,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2024-07-14T00:51:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00555""}" +MSG-0003068,INT-001751,client,We visited the site today. The location is excellent but the approach road is narrow.,2024-07-17T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00556""}" +MSG-0003069,INT-001751,client,What about the maintenance charges?,2024-07-17T00:39:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00556""}" +MSG-0003070,INT-001751,client,My wife wants to see the sample flat again. Can we come tomorrow?,2024-07-17T01:34:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00556""}" +MSG-0003071,INT-001751,client,I'm ready to book. What's the token amount?,2024-07-17T01:18:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00556""}" +MSG-0003072,INT-001751,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2024-07-17T02:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00556""}" +MSG-0003073,INT-001751,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2024-07-17T01:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00556""}" +MSG-0003074,INT-001751,client,Home loan. Pre-approved up to 4-6 Cr.,2024-07-17T05:06:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00556""}" +MSG-0003075,INT-001753,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2024-07-21T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00557""}" +MSG-0003076,INT-001753,client,Can you share the floor plan?,2024-07-21T00:58:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00557""}" +MSG-0003077,INT-001753,agent,"Yes, Tower B has east facing units on floors 8-15.",2024-07-21T01:52:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00557""}" +MSG-0003078,INT-001753,client,Can you hold the unit for 2 days? I need to finalize with my father.,2024-07-21T01:33:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00557""}" +MSG-0003079,INT-001753,client,We visited the site today. The location is excellent but the approach road is narrow.,2024-07-21T03:16:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00557""}" +MSG-0003080,INT-001753,agent,It's approximately 9288 per sqft all-inclusive. Best price in New Town right now.,2024-07-21T01:05:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00557""}" +MSG-0003081,INT-001753,client,Home loan. Pre-approved up to 4-6 Cr.,2024-07-21T04:54:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00557""}" +MSG-0003082,INT-001754,client,Can you share the floor plan?,2024-07-27T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00558""}" +MSG-0003083,INT-001754,agent,It's approximately 9114 per sqft all-inclusive. Best price in New Town right now.,2024-07-27T00:10:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00558""}" +MSG-0003084,INT-001754,client,That's slightly above my budget. Any flexibility?,2024-07-27T00:28:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00558""}" +MSG-0003085,INT-001754,client,Can we schedule for this Saturday around 11 AM?,2024-07-27T00:21:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00558""}" +MSG-0003086,INT-001756,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2024-08-10T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00559""}" +MSG-0003087,INT-001756,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2024-08-10T00:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00559""}" +MSG-0003088,INT-001756,agent,Sending it now. Also attaching the project brochure.,2024-08-10T00:44:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00559""}" +MSG-0003089,INT-001756,client,Received. The layout looks good. Is there a east facing option?,2024-08-10T02:03:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00559""}" +MSG-0003090,INT-001756,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2024-08-10T03:32:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00559""}" +MSG-0003091,INT-001756,client,Can you share the floor plan?,2024-08-10T01:25:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00559""}" +MSG-0003092,INT-001756,client,We visited the site today. The location is excellent but the approach road is narrow.,2024-08-10T03:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00559""}" +MSG-0003093,INT-001760,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2025-08-23T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00560""}" +MSG-0003094,INT-001760,client,Can you hold the unit for 2 days? I need to finalize with my father.,2025-08-23T00:33:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00560""}" +MSG-0003095,INT-001760,agent,"Yes sir, we have a few units available. When would you like to visit?",2025-08-23T01:42:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00560""}" +MSG-0003096,INT-001764,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2025-03-24T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00561""}" +MSG-0003097,INT-001764,client,Thank you. What's the current price per sqft?,2025-03-24T00:09:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00561""}" +MSG-0003098,INT-001764,client,Can we schedule for this Saturday around 11 AM?,2025-03-24T01:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00561""}" +MSG-0003099,INT-001764,agent,"Yes sir, we have a few units available. When would you like to visit?",2025-03-24T00:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00561""}" +MSG-0003100,INT-001765,agent,Sending it now. Also attaching the project brochure.,2025-04-08T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00562""}" +MSG-0003101,INT-001765,client,"Hi, I saw the listing for DTC Good Earth. Is the 3 BHK still available?",2025-04-08T00:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00562""}" +MSG-0003102,INT-001765,client,"Hi, I saw the listing for DTC Good Earth. Is the 3 BHK still available?",2025-04-08T00:32:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00562""}" +MSG-0003103,INT-001765,client,Home loan. Pre-approved up to 4-6 Cr.,2025-04-08T02:33:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00562""}" +MSG-0003104,INT-001765,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2025-04-08T00:28:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00562""}" +MSG-0003105,INT-001765,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2025-04-08T02:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00562""}" +MSG-0003106,INT-001765,client,My wife wants to see the sample flat again. Can we come tomorrow?,2025-04-08T03:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00562""}" +MSG-0003107,INT-001765,client,I'm ready to book. What's the token amount?,2025-04-08T01:59:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00562""}" +MSG-0003108,INT-001771,client,What about the maintenance charges?,2026-01-02T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00563""}" +MSG-0003109,INT-001771,client,We're comparing this with DTC Good Earth. What makes this better?,2026-01-02T00:49:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00563""}" +MSG-0003110,INT-001771,agent,Sending it now. Also attaching the project brochure.,2026-01-02T01:32:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00563""}" +MSG-0003111,INT-001771,client,"Hi, I saw the listing for Merlin Avana. Is the 3 BHK still available?",2026-01-02T01:18:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00563""}" +MSG-0003112,INT-001771,client,We visited the site today. The location is excellent but the approach road is narrow.,2026-01-02T02:28:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00563""}" +MSG-0003113,INT-001771,client,Can you hold the unit for 2 days? I need to finalize with my father.,2026-01-02T01:25:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00563""}" +MSG-0003114,INT-001771,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2026-01-02T02:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00563""}" +MSG-0003115,INT-001771,client,Home loan. Pre-approved up to 15-25 Cr.,2026-01-02T01:17:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00563""}" +MSG-0003116,INT-001774,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2026-01-13T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00564""}" +MSG-0003117,INT-001774,client,Received. The layout looks good. Is there a east facing option?,2026-01-13T00:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00564""}" +MSG-0003118,INT-001774,client,Can we schedule for this Saturday around 11 AM?,2026-01-13T01:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00564""}" +MSG-0003119,INT-001774,agent,"Yes sir, we have a few units available. When would you like to visit?",2026-01-13T02:18:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00564""}" +MSG-0003120,INT-001774,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2026-01-13T02:52:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00564""}" +MSG-0003121,INT-001774,client,I'm ready to book. What's the token amount?,2026-01-13T00:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00564""}" +MSG-0003122,INT-001779,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2025-06-27T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00565""}" +MSG-0003123,INT-001779,client,What about the maintenance charges?,2025-06-27T00:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00565""}" +MSG-0003124,INT-001779,client,Received. The layout looks good. Is there a east facing option?,2025-06-27T01:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00565""}" +MSG-0003125,INT-001779,agent,Of course. I'll arrange a dedicated viewing.,2025-06-27T01:06:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00565""}" +MSG-0003126,INT-001784,client,Can we schedule for this Saturday around 11 AM?,2025-11-15T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00566""}" +MSG-0003127,INT-001784,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2025-11-15T00:23:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00566""}" +MSG-0003128,INT-001784,client,Can you share the floor plan?,2025-11-15T00:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00566""}" +MSG-0003129,INT-001784,agent,"Yes, Tower B has east facing units on floors 8-15.",2025-11-15T02:15:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00566""}" +MSG-0003130,INT-001784,agent,Of course. I'll arrange a dedicated viewing.,2025-11-15T01:44:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00566""}" +MSG-0003131,INT-001784,agent,"Rs 6 per sqft per month. Includes housekeeping, security, and common area maintenance.",2025-11-15T03:45:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00566""}" +MSG-0003132,INT-001784,client,What about the maintenance charges?,2025-11-15T04:54:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00566""}" +MSG-0003133,INT-001784,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2025-11-15T06:11:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00566""}" +MSG-0003134,INT-001785,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2025-11-18T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00567""}" +MSG-0003135,INT-001785,client,Thank you. What's the current price per sqft?,2025-11-18T00:42:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00567""}" +MSG-0003136,INT-001785,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2025-11-18T01:42:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00567""}" +MSG-0003137,INT-001785,client,I'm ready to book. What's the token amount?,2025-11-18T02:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00567""}" +MSG-0003138,INT-001785,client,My wife wants to see the sample flat again. Can we come tomorrow?,2025-11-18T01:56:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00567""}" +MSG-0003139,INT-001785,agent,Sending it now. Also attaching the project brochure.,2025-11-18T02:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00567""}" +MSG-0003140,INT-001785,agent,Sending it now. Also attaching the project brochure.,2025-11-18T02:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00567""}" +MSG-0003141,INT-001787,client,Can you hold the unit for 2 days? I need to finalize with my father.,2025-11-30T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00568""}" +MSG-0003142,INT-001787,client,That's slightly above my budget. Any flexibility?,2025-11-30T00:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00568""}" +MSG-0003143,INT-001787,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2025-11-30T01:42:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00568""}" +MSG-0003144,INT-001787,client,Can we schedule for this Saturday around 11 AM?,2025-11-30T02:33:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00568""}" +MSG-0003145,INT-001787,client,"Hi, I saw the listing for Ambuja Utpaala. Is the 3 BHK still available?",2025-11-30T03:04:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00568""}" +MSG-0003146,INT-001793,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2025-06-23T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00569""}" +MSG-0003147,INT-001793,client,Home loan. Pre-approved up to 1.5-2.5 Cr.,2025-06-23T00:18:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00569""}" +MSG-0003148,INT-001793,agent,Sending it now. Also attaching the project brochure.,2025-06-23T00:42:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00569""}" +MSG-0003149,INT-001793,client,That's slightly above my budget. Any flexibility?,2025-06-23T01:06:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00569""}" +MSG-0003150,INT-001793,agent,"Yes sir, we have a few units available. When would you like to visit?",2025-06-23T00:56:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00569""}" +MSG-0003151,INT-001798,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2025-11-05T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00570""}" +MSG-0003152,INT-001798,agent,Sending it now. Also attaching the project brochure.,2025-11-05T00:53:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00570""}" +MSG-0003153,INT-001798,agent,Of course. I'll arrange a dedicated viewing.,2025-11-05T00:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00570""}" +MSG-0003154,INT-001798,agent,Sending it now. Also attaching the project brochure.,2025-11-05T01:06:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00570""}" +MSG-0003155,INT-001798,client,I'm ready to book. What's the token amount?,2025-11-05T01:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00570""}" +MSG-0003156,INT-001798,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2025-11-05T00:50:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00570""}" +MSG-0003157,INT-001798,client,Can you hold the unit for 2 days? I need to finalize with my father.,2025-11-05T04:42:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00570""}" +MSG-0003158,INT-001801,client,We visited the site today. The location is excellent but the approach road is narrow.,2025-07-10T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00571""}" +MSG-0003159,INT-001801,client,My wife wants to see the sample flat again. Can we come tomorrow?,2025-07-10T00:11:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00571""}" +MSG-0003160,INT-001801,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2025-07-10T01:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00571""}" +MSG-0003161,INT-001801,agent,Of course. I'll arrange a dedicated viewing.,2025-07-10T01:06:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00571""}" +MSG-0003162,INT-001805,client,My wife wants to see the sample flat again. Can we come tomorrow?,2024-07-14T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00572""}" +MSG-0003163,INT-001805,agent,It's approximately 14987 per sqft all-inclusive. Best price in Rajarhat right now.,2024-07-14T00:16:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00572""}" +MSG-0003164,INT-001805,client,We're comparing this with Ambuja Utpaala. What makes this better?,2024-07-14T01:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00572""}" +MSG-0003165,INT-001805,client,Home loan. Pre-approved up to 2.5-4 Cr.,2024-07-14T02:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00572""}" +MSG-0003166,INT-001805,client,Home loan. Pre-approved up to 1.5-2.5 Cr.,2024-07-14T03:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00572""}" +MSG-0003167,INT-001805,agent,It's approximately 11429 per sqft all-inclusive. Best price in Rajarhat right now.,2024-07-14T04:55:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00572""}" +MSG-0003168,INT-001805,client,What about the maintenance charges?,2024-07-14T00:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00572""}" +MSG-0003169,INT-001805,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2024-07-14T05:01:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00572""}" +MSG-0003170,INT-001809,client,Can you hold the unit for 2 days? I need to finalize with my father.,2025-08-24T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00573""}" +MSG-0003171,INT-001809,agent,"Yes sir, we have a few units available. When would you like to visit?",2025-08-24T00:23:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00573""}" +MSG-0003172,INT-001809,client,Received. The layout looks good. Is there a east facing option?,2025-08-24T01:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00573""}" +MSG-0003173,INT-001809,agent,Sending it now. Also attaching the project brochure.,2025-08-24T01:57:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00573""}" +MSG-0003174,INT-001809,client,Can you share the floor plan?,2025-08-24T01:04:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00573""}" +MSG-0003175,INT-001809,client,Thank you. What's the current price per sqft?,2025-08-24T00:35:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00573""}" +MSG-0003176,INT-001810,agent,"Yes sir, we have a few units available. When would you like to visit?",2025-08-30T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00574""}" +MSG-0003177,INT-001810,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2025-08-30T00:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00574""}" +MSG-0003178,INT-001810,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2025-08-30T00:50:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00574""}" +MSG-0003179,INT-001810,agent,"Rs 5 per sqft per month. Includes housekeeping, security, and common area maintenance.",2025-08-30T02:27:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00574""}" +MSG-0003180,INT-001810,client,That's slightly above my budget. Any flexibility?,2025-08-30T02:44:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00574""}" +MSG-0003181,INT-001810,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2025-08-30T03:45:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00574""}" +MSG-0003182,INT-001810,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2025-08-30T05:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00574""}" +MSG-0003183,INT-001813,client,We're comparing this with Sugam Prakriti. What makes this better?,2025-09-27T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00575""}" +MSG-0003184,INT-001813,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2025-09-27T00:08:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00575""}" +MSG-0003185,INT-001813,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2025-09-27T00:54:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00575""}" +MSG-0003186,INT-001813,agent,"Rs 6 per sqft per month. Includes housekeeping, security, and common area maintenance.",2025-09-27T00:51:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00575""}" +MSG-0003187,INT-001813,client,Home loan. Pre-approved up to 4-6 Cr.,2025-09-27T01:52:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00575""}" +MSG-0003188,INT-001813,client,Can you share the floor plan?,2025-09-27T02:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00575""}" +MSG-0003189,INT-001813,agent,"Yes, Tower B has east facing units on floors 8-15.",2025-09-27T02:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00575""}" +MSG-0003190,INT-001813,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2025-09-27T01:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00575""}" +MSG-0003191,INT-001815,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2025-10-30T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00576""}" +MSG-0003192,INT-001815,client,Received. The layout looks good. Is there a east facing option?,2025-10-30T00:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00576""}" +MSG-0003193,INT-001815,client,Home loan. Pre-approved up to 2.5-4 Cr.,2025-10-30T00:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00576""}" +MSG-0003194,INT-001815,client,Can you hold the unit for 2 days? I need to finalize with my father.,2025-10-30T01:57:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00576""}" +MSG-0003195,INT-001815,agent,"Yes sir, we have a few units available. When would you like to visit?",2025-10-30T01:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00576""}" +MSG-0003196,INT-001818,client,What about the maintenance charges?,2025-01-18T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00577""}" +MSG-0003197,INT-001818,client,"Hi, I saw the listing for Siddha Sky Waterfront. Is the 3 BHK still available?",2025-01-18T00:58:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00577""}" +MSG-0003198,INT-001818,client,"Hi, I saw the listing for Siddha Sky Waterfront. Is the 3 BHK still available?",2025-01-18T01:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00577""}" +MSG-0003199,INT-001821,client,Thank you. What's the current price per sqft?,2025-02-03T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00578""}" +MSG-0003200,INT-001821,client,Can you share the floor plan?,2025-02-03T00:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00578""}" +MSG-0003201,INT-001821,agent,Sending it now. Also attaching the project brochure.,2025-02-03T01:52:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00578""}" +MSG-0003202,INT-001821,agent,Sending it now. Also attaching the project brochure.,2025-02-03T02:03:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00578""}" +MSG-0003203,INT-001821,agent,"Rs 8 per sqft per month. Includes housekeeping, security, and common area maintenance.",2025-02-03T01:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00578""}" +MSG-0003204,INT-001821,client,"Hi, I saw the listing for Siddha Sky Waterfront. Is the 3 BHK still available?",2025-02-03T02:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00578""}" +MSG-0003205,INT-001821,client,We're comparing this with Atri Aqua. What makes this better?,2025-02-03T04:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00578""}" +MSG-0003206,INT-001821,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2025-02-03T03:09:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00578""}" +MSG-0003207,INT-001828,client,We're comparing this with Eden Devprayag. What makes this better?,2024-11-24T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00579""}" +MSG-0003208,INT-001828,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2024-11-24T00:17:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00579""}" +MSG-0003209,INT-001828,client,We're comparing this with Shriram Grand City. What makes this better?,2024-11-24T00:16:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00579""}" +MSG-0003210,INT-001828,agent,"Yes sir, we have a few units available. When would you like to visit?",2024-11-24T01:06:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00579""}" +MSG-0003211,INT-001828,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2024-11-24T03:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00579""}" +MSG-0003212,INT-001832,client,That's slightly above my budget. Any flexibility?,2024-12-18T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00580""}" +MSG-0003213,INT-001832,client,Thank you. What's the current price per sqft?,2024-12-18T00:55:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00580""}" +MSG-0003214,INT-001832,client,My wife wants to see the sample flat again. Can we come tomorrow?,2024-12-18T00:28:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00580""}" +MSG-0003215,INT-001832,client,Can we schedule for this Saturday around 11 AM?,2024-12-18T01:03:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00580""}" +MSG-0003216,INT-001832,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2024-12-18T03:32:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00580""}" +MSG-0003217,INT-001832,agent,Sending it now. Also attaching the project brochure.,2024-12-18T01:25:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00580""}" +MSG-0003218,INT-001833,client,What about the maintenance charges?,2024-12-22T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00581""}" +MSG-0003219,INT-001833,client,I'm ready to book. What's the token amount?,2024-12-22T00:52:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00581""}" +MSG-0003220,INT-001833,client,Received. The layout looks good. Is there a east facing option?,2024-12-22T00:54:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00581""}" +MSG-0003221,INT-001833,client,That's slightly above my budget. Any flexibility?,2024-12-22T00:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00581""}" +MSG-0003222,INT-001833,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2024-12-22T03:16:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00581""}" +MSG-0003223,INT-001833,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2024-12-22T02:10:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00581""}" +MSG-0003224,INT-001841,agent,It's approximately 13872 per sqft all-inclusive. Best price in New Town right now.,2025-05-09T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00582""}" +MSG-0003225,INT-001841,client,We visited the site today. The location is excellent but the approach road is narrow.,2025-05-09T00:44:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00582""}" +MSG-0003226,INT-001841,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2025-05-09T01:28:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00582""}" +MSG-0003227,INT-001841,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2025-05-09T00:45:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00582""}" +MSG-0003228,INT-001841,agent,"Yes sir, we have a few units available. When would you like to visit?",2025-05-09T00:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00582""}" +MSG-0003229,INT-001841,agent,"Rs 8 per sqft per month. Includes housekeeping, security, and common area maintenance.",2025-05-09T01:25:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00582""}" +MSG-0003230,INT-001847,client,Can we schedule for this Saturday around 11 AM?,2024-03-17T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00583""}" +MSG-0003231,INT-001847,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2024-03-17T00:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00583""}" +MSG-0003232,INT-001847,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2024-03-17T01:26:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00583""}" +MSG-0003233,INT-001848,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2024-03-25T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00584""}" +MSG-0003234,INT-001848,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2024-03-25T00:17:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00584""}" +MSG-0003235,INT-001848,client,I'm ready to book. What's the token amount?,2024-03-25T01:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00584""}" +MSG-0003236,INT-001853,agent,"Rs 6 per sqft per month. Includes housekeeping, security, and common area maintenance.",2024-05-13T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00585""}" +MSG-0003237,INT-001853,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2024-05-13T00:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00585""}" +MSG-0003238,INT-001853,client,My wife wants to see the sample flat again. Can we come tomorrow?,2024-05-13T00:56:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00585""}" +MSG-0003239,INT-001853,client,What about the maintenance charges?,2024-05-13T02:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00585""}" +MSG-0003240,INT-001853,agent,Sending it now. Also attaching the project brochure.,2024-05-13T03:32:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00585""}" +MSG-0003241,INT-001853,client,We visited the site today. The location is excellent but the approach road is narrow.,2024-05-13T00:55:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00585""}" +MSG-0003242,INT-001853,client,Can you hold the unit for 2 days? I need to finalize with my father.,2024-05-13T04:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00585""}" +MSG-0003243,INT-001853,client,My wife wants to see the sample flat again. Can we come tomorrow?,2024-05-13T06:39:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00585""}" +MSG-0003244,INT-001856,client,My wife wants to see the sample flat again. Can we come tomorrow?,2025-07-04T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00586""}" +MSG-0003245,INT-001856,agent,"Yes, Tower B has east facing units on floors 8-15.",2025-07-04T00:18:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00586""}" +MSG-0003246,INT-001856,agent,It's approximately 10273 per sqft all-inclusive. Best price in Beliaghata right now.,2025-07-04T00:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00586""}" +MSG-0003247,INT-001856,agent,It's approximately 12606 per sqft all-inclusive. Best price in Beliaghata right now.,2025-07-04T02:27:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00586""}" +MSG-0003248,INT-001856,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2025-07-04T00:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00586""}" +MSG-0003249,INT-001856,client,Home loan. Pre-approved up to 1.5-2.5 Cr.,2025-07-04T01:05:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00586""}" +MSG-0003250,INT-001860,client,We're comparing this with Godrej Elevate. What makes this better?,2024-02-16T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00587""}" +MSG-0003251,INT-001860,agent,"Yes, Tower B has east facing units on floors 8-15.",2024-02-16T00:16:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00587""}" +MSG-0003252,INT-001860,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2024-02-16T00:58:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00587""}" +MSG-0003253,INT-001860,agent,"Rs 5 per sqft per month. Includes housekeeping, security, and common area maintenance.",2024-02-16T02:21:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00587""}" +MSG-0003254,INT-001860,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2024-02-16T00:52:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00587""}" +MSG-0003255,INT-001860,client,"Hi, I saw the listing for Eden Devprayag. Is the 3 BHK still available?",2024-02-16T02:50:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00587""}" +MSG-0003256,INT-001860,client,Thank you. What's the current price per sqft?,2024-02-16T05:06:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00587""}" +MSG-0003257,INT-001862,client,I'm ready to book. What's the token amount?,2024-03-02T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00588""}" +MSG-0003258,INT-001862,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2024-03-02T00:17:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00588""}" +MSG-0003259,INT-001862,agent,"Yes, Tower B has east facing units on floors 8-15.",2024-03-02T01:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00588""}" +MSG-0003260,INT-001862,client,Home loan. Pre-approved up to 4-6 Cr.,2024-03-02T02:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00588""}" +MSG-0003261,INT-001862,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2024-03-02T01:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00588""}" +MSG-0003262,INT-001862,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2024-03-02T03:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00588""}" +MSG-0003263,INT-001865,client,Can you share the floor plan?,2025-03-22T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00589""}" +MSG-0003264,INT-001865,client,Thank you. What's the current price per sqft?,2025-03-22T00:37:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00589""}" +MSG-0003265,INT-001865,agent,Of course. I'll arrange a dedicated viewing.,2025-03-22T01:50:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00589""}" +MSG-0003266,INT-001865,client,Can you share the floor plan?,2025-03-22T00:42:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00589""}" +MSG-0003267,INT-001865,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2025-03-22T01:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00589""}" +MSG-0003268,INT-001865,client,Thank you. What's the current price per sqft?,2025-03-22T01:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00589""}" +MSG-0003269,INT-001866,agent,Of course. I'll arrange a dedicated viewing.,2025-03-23T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00590""}" +MSG-0003270,INT-001866,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2025-03-23T00:51:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00590""}" +MSG-0003271,INT-001866,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2025-03-23T01:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00590""}" +MSG-0003272,INT-001866,client,What about the maintenance charges?,2025-03-23T00:33:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00590""}" +MSG-0003273,INT-001866,client,Can you hold the unit for 2 days? I need to finalize with my father.,2025-03-23T01:20:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00590""}" +MSG-0003274,INT-001867,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2025-04-08T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00591""}" +MSG-0003275,INT-001867,client,Thank you. What's the current price per sqft?,2025-04-08T00:38:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00591""}" +MSG-0003276,INT-001867,agent,"Rs 7 per sqft per month. Includes housekeeping, security, and common area maintenance.",2025-04-08T01:52:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00591""}" +MSG-0003277,INT-001867,client,Home loan. Pre-approved up to 2.5-4 Cr.,2025-04-08T01:18:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00591""}" +MSG-0003278,INT-001867,agent,"Rs 4 per sqft per month. Includes housekeeping, security, and common area maintenance.",2025-04-08T01:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00591""}" +MSG-0003279,INT-001869,agent,"Rs 5 per sqft per month. Includes housekeeping, security, and common area maintenance.",2025-06-16T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00592""}" +MSG-0003280,INT-001869,client,What about the maintenance charges?,2025-06-16T00:21:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00592""}" +MSG-0003281,INT-001869,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2025-06-16T00:24:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00592""}" +MSG-0003282,INT-001869,client,We visited the site today. The location is excellent but the approach road is narrow.,2025-06-16T00:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00592""}" +MSG-0003283,INT-001869,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2025-06-16T00:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00592""}" +MSG-0003284,INT-001869,client,We visited the site today. The location is excellent but the approach road is narrow.,2025-06-16T02:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00592""}" +MSG-0003285,INT-001871,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2024-08-22T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00593""}" +MSG-0003286,INT-001871,agent,It's approximately 14840 per sqft all-inclusive. Best price in New Town right now.,2024-08-22T00:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00593""}" +MSG-0003287,INT-001871,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2024-08-22T00:38:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00593""}" +MSG-0003288,INT-001871,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2024-08-22T00:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00593""}" +MSG-0003289,INT-001871,client,Can you hold the unit for 2 days? I need to finalize with my father.,2024-08-22T03:44:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00593""}" +MSG-0003290,INT-001871,client,That's slightly above my budget. Any flexibility?,2024-08-22T04:50:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00593""}" +MSG-0003291,INT-001871,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2024-08-22T02:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00593""}" +MSG-0003292,INT-001872,agent,Of course. I'll arrange a dedicated viewing.,2024-09-10T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00594""}" +MSG-0003293,INT-001872,client,Can you hold the unit for 2 days? I need to finalize with my father.,2024-09-10T00:41:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00594""}" +MSG-0003294,INT-001872,client,What about the maintenance charges?,2024-09-10T01:32:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00594""}" +MSG-0003295,INT-001872,client,What about the maintenance charges?,2024-09-10T02:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00594""}" +MSG-0003296,INT-001872,client,What about the maintenance charges?,2024-09-10T03:16:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00594""}" +MSG-0003297,INT-001873,agent,"Yes sir, we have a few units available. When would you like to visit?",2024-09-15T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00595""}" +MSG-0003298,INT-001873,client,We visited the site today. The location is excellent but the approach road is narrow.,2024-09-15T00:19:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00595""}" +MSG-0003299,INT-001873,agent,Of course. I'll arrange a dedicated viewing.,2024-09-15T01:22:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00595""}" +MSG-0003300,INT-001873,client,Can you hold the unit for 2 days? I need to finalize with my father.,2024-09-15T01:42:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00595""}" +MSG-0003301,INT-001873,client,We're comparing this with Godrej Elevate. What makes this better?,2024-09-15T02:04:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00595""}" +MSG-0003302,INT-001873,client,Home loan. Pre-approved up to 4-6 Cr.,2024-09-15T01:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00595""}" +MSG-0003303,INT-001873,agent,Of course. I'll arrange a dedicated viewing.,2024-09-15T02:06:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00595""}" +MSG-0003304,INT-001873,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2024-09-15T03:58:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00595""}" +MSG-0003305,INT-001875,client,We're comparing this with DTC Sojon. What makes this better?,2024-09-24T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00596""}" +MSG-0003306,INT-001875,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2024-09-24T00:30:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00596""}" +MSG-0003307,INT-001875,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2024-09-24T01:46:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00596""}" +MSG-0003308,INT-001875,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2024-09-24T00:18:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00596""}" +MSG-0003309,INT-001875,client,Can you share the floor plan?,2024-09-24T00:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00596""}" +MSG-0003310,INT-001875,client,Can we schedule for this Saturday around 11 AM?,2024-09-24T04:55:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00596""}" +MSG-0003311,INT-001875,client,I'm ready to book. What's the token amount?,2024-09-24T05:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00596""}" +MSG-0003312,INT-001875,agent,It's approximately 13127 per sqft all-inclusive. Best price in New Town right now.,2024-09-24T02:27:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00596""}" +MSG-0003313,INT-001877,client,We visited the site today. The location is excellent but the approach road is narrow.,2024-10-05T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00597""}" +MSG-0003314,INT-001877,agent,It's approximately 10031 per sqft all-inclusive. Best price in New Town right now.,2024-10-05T00:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00597""}" +MSG-0003315,INT-001877,client,We visited the site today. The location is excellent but the approach road is narrow.,2024-10-05T00:12:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00597""}" +MSG-0003316,INT-001877,agent,"Yes, Tower B has east facing units on floors 8-15.",2024-10-05T02:03:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00597""}" +MSG-0003317,INT-001879,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2024-11-04T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00598""}" +MSG-0003318,INT-001879,agent,"Yes sir, we have a few units available. When would you like to visit?",2024-11-04T00:09:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00598""}" +MSG-0003319,INT-001879,agent,Of course. I'll arrange a dedicated viewing.,2024-11-04T00:46:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00598""}" +MSG-0003320,INT-001879,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2024-11-04T01:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00598""}" +MSG-0003321,INT-001879,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2024-11-04T01:08:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00598""}" +MSG-0003322,INT-001879,agent,Saturday 11 AM works. I'll send you the site address and contact details.,2024-11-04T00:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00598""}" +MSG-0003323,INT-001879,agent,"Rs 5 per sqft per month. Includes housekeeping, security, and common area maintenance.",2024-11-04T01:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00598""}" +MSG-0003324,INT-001879,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2024-11-04T02:27:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00598""}" +MSG-0003325,INT-001881,agent,Token is Rs 5 lakhs. Balance within 30 days. Shall I prepare the booking form?,2025-08-25T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00599""}" +MSG-0003326,INT-001881,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2025-08-25T00:21:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00599""}" +MSG-0003327,INT-001881,agent,"Yes sir, we have a few units available. When would you like to visit?",2025-08-25T01:46:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00599""}" +MSG-0003328,INT-001881,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2025-08-25T01:03:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00599""}" +MSG-0003329,INT-001881,agent,"Yes sir, we have a few units available. When would you like to visit?",2025-08-25T01:52:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00599""}" +MSG-0003330,INT-001881,agent,It's approximately 11842 per sqft all-inclusive. Best price in Beliaghata right now.,2025-08-25T02:55:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00599""}" +MSG-0003331,INT-001881,agent,It's approximately 8974 per sqft all-inclusive. Best price in Beliaghata right now.,2025-08-25T05:06:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00599""}" +MSG-0003332,INT-001882,client,I'm ready to book. What's the token amount?,2025-09-07T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00600""}" +MSG-0003333,INT-001882,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2025-09-07T00:54:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00600""}" +MSG-0003334,INT-001882,client,What about the maintenance charges?,2025-09-07T00:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00600""}" +MSG-0003335,INT-001882,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2025-09-07T00:39:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00600""}" +MSG-0003336,INT-001885,agent,"Better location connectivity, larger carpet area ratio, and possession is 6 months earlier.",2024-08-09T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00601""}" +MSG-0003337,INT-001885,client,Received. The layout looks good. Is there a east facing option?,2024-08-09T00:38:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00601""}" +MSG-0003338,INT-001885,client,Home loan. Pre-approved up to 1.5-2.5 Cr.,2024-08-09T01:22:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00601""}" +MSG-0003339,INT-001886,client,Can we schedule for this Saturday around 11 AM?,2024-08-10T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00602""}" +MSG-0003340,INT-001886,client,Received. The layout looks good. Is there a east facing option?,2024-08-10T00:52:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00602""}" +MSG-0003341,INT-001886,agent,"Yes sir, we have a few units available. When would you like to visit?",2024-08-10T01:10:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00602""}" +MSG-0003342,INT-001886,client,"Hi, I saw the listing for DTC Good Earth. Is the 3 BHK still available?",2024-08-10T02:21:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00602""}" +MSG-0003343,INT-001886,client,I'm ready to book. What's the token amount?,2024-08-10T00:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00602""}" +MSG-0003344,INT-001889,client,Can you share the floor plan?,2024-09-10T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00603""}" +MSG-0003345,INT-001889,agent,"Noted sir. The road widening is approved by KMC, should be completed by December.",2024-09-10T00:50:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00603""}" +MSG-0003346,INT-001889,agent,"Yes, Tower B has east facing units on floors 8-15.",2024-09-10T00:52:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00603""}" +MSG-0003347,INT-001889,client,Can we schedule for this Saturday around 11 AM?,2024-09-10T01:39:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00603""}" +MSG-0003348,INT-001889,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2024-09-10T03:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00603""}" +MSG-0003349,INT-001889,agent,It's approximately 8584 per sqft all-inclusive. Best price in New Town right now.,2024-09-10T04:25:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00603""}" +MSG-0003350,INT-001889,client,Can you share the floor plan?,2024-09-10T04:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00603""}" +MSG-0003351,INT-001891,agent,Perfect. We have tie-ups with HDFC and ICICI for preferential rates.,2024-09-16T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00604""}" +MSG-0003352,INT-001891,client,We visited the site today. The location is excellent but the approach road is narrow.,2024-09-16T00:51:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00604""}" +MSG-0003353,INT-001891,client,Can you share the floor plan?,2024-09-16T00:16:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00604""}" +MSG-0003354,INT-001891,client,Can we schedule for this Saturday around 11 AM?,2024-09-16T01:27:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00604""}" +MSG-0003355,INT-001891,client,Received. The layout looks good. Is there a east facing option?,2024-09-16T00:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00604""}" +MSG-0003356,INT-001891,agent,Of course. I'll arrange a dedicated viewing.,2024-09-16T04:40:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00604""}" +MSG-0003357,INT-001894,agent,I'll hold it till Friday 5 PM. After that it goes back to inventory.,2024-10-09T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00605""}" +MSG-0003358,INT-001894,agent,Let me check with my manager and get back to you. Are you looking at home loan or outright payment?,2024-10-09T00:25:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00605""}" +MSG-0003359,INT-001894,client,What about the maintenance charges?,2024-10-09T01:44:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00605""}" +MSG-0003360,INT-001894,client,"Hi, I saw the listing for DTC Good Earth. Is the 3 BHK still available?",2024-10-09T01:15:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00605""}" +MSG-0003361,INT-001894,client,That's slightly above my budget. Any flexibility?,2024-10-09T03:36:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00605""}" +MSG-0003362,INT-001894,client,Can we schedule for this Saturday around 11 AM?,2024-10-09T04:55:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00605""}" +MSG-0003363,INT-001894,agent,Of course. I'll arrange a dedicated viewing.,2024-10-09T01:48:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00605""}" +MSG-0003364,INT-001894,agent,It's approximately 13233 per sqft all-inclusive. Best price in New Town right now.,2024-10-09T03:58:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00605""}" +MSG-0003365,INT-001896,client,Thank you. What's the current price per sqft?,2025-06-09T00:00:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00606""}" +MSG-0003366,INT-001896,agent,Sending it now. Also attaching the project brochure.,2025-06-09T00:57:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00606""}" +MSG-0003367,INT-001896,client,What about the maintenance charges?,2025-06-09T01:08:00,"{""platform"": ""whatsapp"", ""read"": true, ""thread_id"": ""WTH-00606""}" diff --git a/db assets/synthetic_crm_v1/csv/intel_perception_events.csv b/db assets/synthetic_crm_v1/csv/intel_perception_events.csv new file mode 100644 index 00000000..67f068c7 --- /dev/null +++ b/db assets/synthetic_crm_v1/csv/intel_perception_events.csv @@ -0,0 +1,61 @@ +event_id,person_id,session_id,event_type,detected_at,value,unit,metadata_json +PERC-0001,PER-0030-CO,SES-8885,repeat_pattern,2025-09-06T00:00:00,163.1,minutes,"{""zone"": ""parking"", ""companion_count"": 0}" +PERC-0002,PER-0095-CO,SES-4533,interest_zone,2025-07-05T00:00:00,238.6,seconds,"{""zone"": ""parking"", ""companion_count"": 0}" +PERC-0003,PER-0162,SES-2553,interest_zone,2025-09-22T00:00:00,209.1,minutes,"{""zone"": ""parking"", ""companion_count"": 2}" +PERC-0004,PER-0116,SES-5500,repeat_pattern,2025-04-03T00:00:00,279.2,minutes,"{""zone"": ""sample_flat"", ""companion_count"": 3}" +PERC-0005,PER-0002,SES-5318,dwell_time,2026-04-01T00:00:00,139.7,count,"{""zone"": ""amenity_area"", ""companion_count"": 4}" +PERC-0006,PER-0112,SES-2373,interest_zone,2024-04-20T00:00:00,22.0,minutes,"{""zone"": ""amenity_area"", ""companion_count"": 1}" +PERC-0007,PER-0014,SES-9164,repeat_pattern,2024-02-26T00:00:00,291.9,minutes,"{""zone"": ""amenity_area"", ""companion_count"": 3}" +PERC-0008,PER-0150,SES-5118,repeat_pattern,2024-10-13T00:00:00,240.3,seconds,"{""zone"": ""sample_flat"", ""companion_count"": 4}" +PERC-0009,PER-0171,SES-1920,interest_zone,2025-06-24T00:00:00,246.0,minutes,"{""zone"": ""amenity_area"", ""companion_count"": 0}" +PERC-0010,PER-0104,SES-3508,repeat_pattern,2025-04-06T00:00:00,63.8,count,"{""zone"": ""sample_flat"", ""companion_count"": 3}" +PERC-0011,PER-0017,SES-4671,interest_zone,2025-04-05T00:00:00,19.4,count,"{""zone"": ""lobby"", ""companion_count"": 4}" +PERC-0012,PER-0090,SES-6714,dwell_time,2024-03-12T00:00:00,73.3,count,"{""zone"": ""parking"", ""companion_count"": 0}" +PERC-0013,PER-0090-CO,SES-4022,interest_zone,2024-06-08T00:00:00,137.6,minutes,"{""zone"": ""lobby"", ""companion_count"": 2}" +PERC-0014,PER-0129,SES-5169,interest_zone,2024-12-21T00:00:00,212.4,seconds,"{""zone"": ""parking"", ""companion_count"": 3}" +PERC-0015,PER-0007,SES-5849,interest_zone,2024-06-10T00:00:00,79.2,count,"{""zone"": ""amenity_area"", ""companion_count"": 4}" +PERC-0016,PER-0016,SES-4536,dwell_time,2025-12-16T00:00:00,229.4,seconds,"{""zone"": ""parking"", ""companion_count"": 3}" +PERC-0017,PER-0106,SES-6745,companion_detected,2024-01-27T00:00:00,67.9,seconds,"{""zone"": ""parking"", ""companion_count"": 3}" +PERC-0018,PER-0154-CO,SES-2921,dwell_time,2024-10-01T00:00:00,249.7,minutes,"{""zone"": ""amenity_area"", ""companion_count"": 1}" +PERC-0019,PER-0127,SES-7584,interest_zone,2025-10-15T00:00:00,234.6,count,"{""zone"": ""amenity_area"", ""companion_count"": 4}" +PERC-0020,PER-0098-CO,SES-2738,companion_detected,2024-07-13T00:00:00,43.6,count,"{""zone"": ""parking"", ""companion_count"": 2}" +PERC-0021,PER-0034-CO,SES-3209,companion_detected,2025-03-18T00:00:00,94.3,count,"{""zone"": ""amenity_area"", ""companion_count"": 3}" +PERC-0022,PER-0154,SES-6196,dwell_time,2025-08-27T00:00:00,54.4,seconds,"{""zone"": ""sales_office"", ""companion_count"": 2}" +PERC-0023,PER-0093,SES-9845,companion_detected,2025-09-06T00:00:00,53.1,count,"{""zone"": ""amenity_area"", ""companion_count"": 1}" +PERC-0024,PER-0089,SES-1819,dwell_time,2024-08-17T00:00:00,189.8,seconds,"{""zone"": ""sales_office"", ""companion_count"": 0}" +PERC-0025,PER-0119-CO,SES-1679,interest_zone,2025-06-08T00:00:00,33.8,seconds,"{""zone"": ""lobby"", ""companion_count"": 3}" +PERC-0026,PER-0145,SES-1549,repeat_pattern,2024-01-21T00:00:00,94.0,minutes,"{""zone"": ""parking"", ""companion_count"": 3}" +PERC-0027,PER-0023,SES-4771,companion_detected,2024-11-02T00:00:00,158.0,minutes,"{""zone"": ""sample_flat"", ""companion_count"": 0}" +PERC-0028,PER-0087-CO,SES-8584,dwell_time,2024-05-11T00:00:00,23.5,seconds,"{""zone"": ""parking"", ""companion_count"": 3}" +PERC-0029,PER-0108-CO,SES-1920,dwell_time,2025-03-02T00:00:00,206.9,seconds,"{""zone"": ""sales_office"", ""companion_count"": 1}" +PERC-0030,PER-0063,SES-6169,dwell_time,2024-02-23T00:00:00,250.9,minutes,"{""zone"": ""sales_office"", ""companion_count"": 0}" +PERC-0031,PER-0078,SES-7481,companion_detected,2025-03-20T00:00:00,152.1,count,"{""zone"": ""amenity_area"", ""companion_count"": 0}" +PERC-0032,PER-0094-CO,SES-7593,companion_detected,2024-02-22T00:00:00,127.5,count,"{""zone"": ""amenity_area"", ""companion_count"": 4}" +PERC-0033,PER-0097,SES-9578,repeat_pattern,2026-03-16T00:00:00,193.2,minutes,"{""zone"": ""amenity_area"", ""companion_count"": 1}" +PERC-0034,PER-0062,SES-5700,repeat_pattern,2024-02-29T00:00:00,271.4,count,"{""zone"": ""parking"", ""companion_count"": 4}" +PERC-0035,PER-0117-CO,SES-9374,companion_detected,2024-10-25T00:00:00,257.1,seconds,"{""zone"": ""parking"", ""companion_count"": 3}" +PERC-0036,PER-0103-CO,SES-5799,repeat_pattern,2024-04-19T00:00:00,59.9,minutes,"{""zone"": ""sample_flat"", ""companion_count"": 3}" +PERC-0037,PER-0084-CO,SES-7808,companion_detected,2025-03-31T00:00:00,282.8,seconds,"{""zone"": ""lobby"", ""companion_count"": 2}" +PERC-0038,PER-0151,SES-7043,interest_zone,2024-11-19T00:00:00,253.0,seconds,"{""zone"": ""sales_office"", ""companion_count"": 4}" +PERC-0039,PER-0076,SES-4486,interest_zone,2024-03-31T00:00:00,32.8,minutes,"{""zone"": ""parking"", ""companion_count"": 0}" +PERC-0040,PER-0084,SES-7756,repeat_pattern,2024-01-25T00:00:00,255.8,minutes,"{""zone"": ""sample_flat"", ""companion_count"": 2}" +PERC-0041,PER-0024,SES-6338,repeat_pattern,2025-03-02T00:00:00,226.5,count,"{""zone"": ""sales_office"", ""companion_count"": 3}" +PERC-0042,PER-0029-CO,SES-2038,dwell_time,2024-10-22T00:00:00,116.5,minutes,"{""zone"": ""parking"", ""companion_count"": 4}" +PERC-0043,PER-0170,SES-4007,companion_detected,2025-12-16T00:00:00,78.5,seconds,"{""zone"": ""amenity_area"", ""companion_count"": 1}" +PERC-0044,PER-0132,SES-4375,repeat_pattern,2025-09-23T00:00:00,63.6,count,"{""zone"": ""sales_office"", ""companion_count"": 0}" +PERC-0045,PER-0087,SES-1269,repeat_pattern,2024-05-18T00:00:00,111.3,seconds,"{""zone"": ""sales_office"", ""companion_count"": 1}" +PERC-0046,PER-0093-CO,SES-8800,interest_zone,2024-12-01T00:00:00,164.9,minutes,"{""zone"": ""lobby"", ""companion_count"": 4}" +PERC-0047,PER-0149,SES-4012,dwell_time,2024-03-07T00:00:00,191.9,seconds,"{""zone"": ""parking"", ""companion_count"": 2}" +PERC-0048,PER-0136,SES-9216,companion_detected,2024-09-21T00:00:00,54.9,seconds,"{""zone"": ""amenity_area"", ""companion_count"": 2}" +PERC-0049,PER-0136-CO,SES-8662,dwell_time,2026-04-01T00:00:00,59.4,count,"{""zone"": ""sales_office"", ""companion_count"": 1}" +PERC-0050,PER-0053-CO,SES-8736,repeat_pattern,2025-04-10T00:00:00,192.9,seconds,"{""zone"": ""sample_flat"", ""companion_count"": 0}" +PERC-0051,PER-0135,SES-1401,companion_detected,2024-04-07T00:00:00,42.8,count,"{""zone"": ""parking"", ""companion_count"": 1}" +PERC-0052,PER-0049,SES-8122,repeat_pattern,2024-06-08T00:00:00,187.9,count,"{""zone"": ""sales_office"", ""companion_count"": 2}" +PERC-0053,PER-0058-CO,SES-9841,dwell_time,2024-06-21T00:00:00,260.8,seconds,"{""zone"": ""sample_flat"", ""companion_count"": 2}" +PERC-0054,PER-0022,SES-3621,interest_zone,2024-11-22T00:00:00,260.6,count,"{""zone"": ""amenity_area"", ""companion_count"": 2}" +PERC-0055,PER-0065,SES-8097,interest_zone,2026-04-01T00:00:00,172.0,count,"{""zone"": ""parking"", ""companion_count"": 2}" +PERC-0056,PER-0072,SES-7410,dwell_time,2025-04-06T00:00:00,93.6,seconds,"{""zone"": ""sales_office"", ""companion_count"": 4}" +PERC-0057,PER-0069,SES-9556,dwell_time,2024-11-20T00:00:00,104.8,minutes,"{""zone"": ""lobby"", ""companion_count"": 1}" +PERC-0058,PER-0148,SES-8020,dwell_time,2026-03-24T00:00:00,204.6,minutes,"{""zone"": ""amenity_area"", ""companion_count"": 0}" +PERC-0059,PER-0054,SES-1110,repeat_pattern,2024-07-08T00:00:00,87.9,seconds,"{""zone"": ""amenity_area"", ""companion_count"": 4}" +PERC-0060,PER-0039,SES-5256,companion_detected,2025-01-18T00:00:00,160.2,count,"{""zone"": ""parking"", ""companion_count"": 1}" diff --git a/db assets/synthetic_crm_v1/csv/intel_qd_scores.csv b/db assets/synthetic_crm_v1/csv/intel_qd_scores.csv new file mode 100644 index 00000000..887064ea --- /dev/null +++ b/db assets/synthetic_crm_v1/csv/intel_qd_scores.csv @@ -0,0 +1,251 @@ +qd_id,person_id,score_type,current_value,computed_at,evidence_refs_json +QD-0001,PER-0001,intent,98,2026-04-18T00:00:00,"[""INT-000312"", ""INT-001893"", ""INT-001006""]" +QD-0008,PER-0002,engagement,89.6,2026-04-18T00:00:00,"[""INT-000787"", ""INT-000415""]" +QD-0018,PER-0002-CO,urgency,66.4,2026-04-18T00:00:00,"[""INT-000578"", ""INT-001299"", ""INT-001311"", ""INT-000435"", ""INT-000768""]" +QD-0023,PER-0003,financial_qualification,83.7,2026-04-18T00:00:00,"[""INT-001897"", ""INT-000958"", ""INT-001372"", ""INT-000695"", ""INT-000888""]" +QD-0033,PER-0004,intent,98,2026-04-18T00:00:00,"[""INT-000049"", ""INT-001067"", ""INT-000608""]" +QD-0045,PER-0005,financial_qualification,98,2026-04-18T00:00:00,"[""INT-000315"", ""INT-000517"", ""INT-000595"", ""INT-000449"", ""INT-000945""]" +QD-0052,PER-0006,overall,84.4,2026-04-18T00:00:00,"[""INT-001592"", ""INT-000724"", ""INT-000479"", ""INT-001861"", ""INT-001040""]" +QD-0059,PER-0007,engagement,98,2026-04-18T00:00:00,"[""INT-001642"", ""INT-000674"", ""INT-001877"", ""INT-001632"", ""INT-001035""]" +QD-0069,PER-0008,engagement,77.1,2026-04-18T00:00:00,"[""INT-001057"", ""INT-000695"", ""INT-001646"", ""INT-001212"", ""INT-000079""]" +QD-0077,PER-0008-CO,engagement,30.2,2026-04-18T00:00:00,"[""INT-000299"", ""INT-000807""]" +QD-0087,PER-0009,urgency,70.1,2026-04-18T00:00:00,"[""INT-001209"", ""INT-000142"", ""INT-000393"", ""INT-001516""]" +QD-0100,PER-0010,engagement,54.4,2026-04-18T00:00:00,"[""INT-000721"", ""INT-000394"", ""INT-000375"", ""INT-000605""]" +QD-0108,PER-0011,urgency,84.0,2026-04-18T00:00:00,"[""INT-000002"", ""INT-000566""]" +QD-0117,PER-0011-CO,engagement,65.7,2026-04-18T00:00:00,"[""INT-000853"", ""INT-001224"", ""INT-000333""]" +QD-0122,PER-0012,overall,95.8,2026-04-18T00:00:00,"[""INT-000484"", ""INT-001040"", ""INT-001607"", ""INT-001447""]" +QD-0134,PER-0013,intent,87.3,2026-04-18T00:00:00,"[""INT-001560"", ""INT-000125"", ""INT-000497"", ""INT-000677"", ""INT-000860""]" +QD-0146,PER-0013-CO,financial_qualification,65.3,2026-04-18T00:00:00,"[""INT-001065"", ""INT-001095"", ""INT-000482""]" +QD-0158,PER-0014,financial_qualification,68.4,2026-04-18T00:00:00,"[""INT-000330"", ""INT-000337"", ""INT-000045""]" +QD-0167,PER-0015,urgency,98,2026-04-18T00:00:00,"[""INT-000473"", ""INT-000153""]" +QD-0173,PER-0015-CO,intent,35.9,2026-04-18T00:00:00,"[""INT-000036"", ""INT-000667"", ""INT-001415""]" +QD-0180,PER-0016,financial_qualification,74.8,2026-04-18T00:00:00,"[""INT-001282"", ""INT-000408"", ""INT-001529"", ""INT-001587""]" +QD-0190,PER-0017,engagement,50.1,2026-04-18T00:00:00,"[""INT-001486"", ""INT-001749"", ""INT-000704""]" +QD-0196,PER-0017-CO,intent,63.9,2026-04-18T00:00:00,"[""INT-000583"", ""INT-001240""]" +QD-0208,PER-0018,urgency,78.1,2026-04-18T00:00:00,"[""INT-001500"", ""INT-001353"", ""INT-001477""]" +QD-0220,PER-0019,engagement,68.2,2026-04-18T00:00:00,"[""INT-000212"", ""INT-000070"", ""INT-000584"", ""INT-000354"", ""INT-001594""]" +QD-0228,PER-0020,urgency,56.5,2026-04-18T00:00:00,"[""INT-000671"", ""INT-000645"", ""INT-000125"", ""INT-001529"", ""INT-000899""]" +QD-0241,PER-0021,engagement,98,2026-04-18T00:00:00,"[""INT-000241"", ""INT-001879"", ""INT-001658"", ""INT-000804"", ""INT-000048""]" +QD-0247,PER-0022,urgency,76.6,2026-04-18T00:00:00,"[""INT-000967"", ""INT-000289"", ""INT-001678"", ""INT-000655"", ""INT-001136""]" +QD-0252,PER-0022-CO,overall,48.4,2026-04-18T00:00:00,"[""INT-000853"", ""INT-001059""]" +QD-0257,PER-0023,engagement,98,2026-04-18T00:00:00,"[""INT-000356"", ""INT-000550""]" +QD-0268,PER-0023-CO,engagement,77.0,2026-04-18T00:00:00,"[""INT-000734"", ""INT-000107"", ""INT-000447"", ""INT-001682"", ""INT-000970""]" +QD-0278,PER-0024,urgency,98,2026-04-18T00:00:00,"[""INT-001813"", ""INT-001229"", ""INT-001609"", ""INT-000919"", ""INT-000289""]" +QD-0283,PER-0025,engagement,89.9,2026-04-18T00:00:00,"[""INT-000245"", ""INT-001296"", ""INT-000710""]" +QD-0289,PER-0025-CO,overall,36.1,2026-04-18T00:00:00,"[""INT-000739"", ""INT-001039"", ""INT-001039"", ""INT-000176"", ""INT-001077""]" +QD-0297,PER-0026,intent,68.8,2026-04-18T00:00:00,"[""INT-000629"", ""INT-000425"", ""INT-000563"", ""INT-000126""]" +QD-0310,PER-0027,financial_qualification,98,2026-04-18T00:00:00,"[""INT-000537"", ""INT-001172"", ""INT-001885""]" +QD-0321,PER-0028,urgency,74.5,2026-04-18T00:00:00,"[""INT-000732"", ""INT-001760"", ""INT-000855"", ""INT-000750"", ""INT-001110""]" +QD-0326,PER-0028-CO,engagement,52.8,2026-04-18T00:00:00,"[""INT-000327"", ""INT-001687""]" +QD-0333,PER-0029,overall,98,2026-04-18T00:00:00,"[""INT-000346"", ""INT-001613""]" +QD-0340,PER-0029-CO,intent,77.2,2026-04-18T00:00:00,"[""INT-001678"", ""INT-001246"", ""INT-000590"", ""INT-001239""]" +QD-0352,PER-0030,financial_qualification,98,2026-04-18T00:00:00,"[""INT-001703"", ""INT-000356"", ""INT-000558""]" +QD-0357,PER-0030-CO,financial_qualification,51.1,2026-04-18T00:00:00,"[""INT-001100"", ""INT-000090""]" +QD-0370,PER-0031,financial_qualification,65.9,2026-04-18T00:00:00,"[""INT-000866"", ""INT-000220""]" +QD-0378,PER-0032,financial_qualification,92.9,2026-04-18T00:00:00,"[""INT-001260"", ""INT-000042"", ""INT-001547"", ""INT-000230""]" +QD-0388,PER-0032-CO,engagement,43.2,2026-04-18T00:00:00,"[""INT-001503"", ""INT-001846""]" +QD-0401,PER-0033,intent,98,2026-04-18T00:00:00,"[""INT-001584"", ""INT-001815""]" +QD-0408,PER-0034,intent,76.9,2026-04-18T00:00:00,"[""INT-000592"", ""INT-001499"", ""INT-001864""]" +QD-0417,PER-0034-CO,urgency,81.7,2026-04-18T00:00:00,"[""INT-000553"", ""INT-001578"", ""INT-001506"", ""INT-001217""]" +QD-0426,PER-0035,financial_qualification,98,2026-04-18T00:00:00,"[""INT-001846"", ""INT-000157"", ""INT-000220""]" +QD-0436,PER-0035-CO,intent,71.9,2026-04-18T00:00:00,"[""INT-000232"", ""INT-001559"", ""INT-001587"", ""INT-000113""]" +QD-0445,PER-0036,intent,98,2026-04-18T00:00:00,"[""INT-001653"", ""INT-000582"", ""INT-001114"", ""INT-001106"", ""INT-000835""]" +QD-0458,PER-0037,intent,98,2026-04-18T00:00:00,"[""INT-001599"", ""INT-000404"", ""INT-000413"", ""INT-000352""]" +QD-0469,PER-0037-CO,overall,52.9,2026-04-18T00:00:00,"[""INT-001695"", ""INT-001082""]" +QD-0482,PER-0038,engagement,92.2,2026-04-18T00:00:00,"[""INT-000259"", ""INT-001734""]" +QD-0487,PER-0039,financial_qualification,89.6,2026-04-18T00:00:00,"[""INT-001433"", ""INT-000069"", ""INT-001192""]" +QD-0499,PER-0040,urgency,98,2026-04-18T00:00:00,"[""INT-001054"", ""INT-000455"", ""INT-000171"", ""INT-001015""]" +QD-0507,PER-0040-CO,intent,36.5,2026-04-18T00:00:00,"[""INT-000210"", ""INT-001685""]" +QD-0520,PER-0041,urgency,98,2026-04-18T00:00:00,"[""INT-000732"", ""INT-000255"", ""INT-000996""]" +QD-0528,PER-0042,engagement,98,2026-04-18T00:00:00,"[""INT-000598"", ""INT-001522"", ""INT-001146"", ""INT-000708"", ""INT-000228""]" +QD-0540,PER-0043,overall,97.2,2026-04-18T00:00:00,"[""INT-000499"", ""INT-000604"", ""INT-000604"", ""INT-001662"", ""INT-000927""]" +QD-0547,PER-0043-CO,engagement,82.5,2026-04-18T00:00:00,"[""INT-000325"", ""INT-000137"", ""INT-001343"", ""INT-001009""]" +QD-0557,PER-0044,overall,98,2026-04-18T00:00:00,"[""INT-001753"", ""INT-001168""]" +QD-0567,PER-0045,financial_qualification,55.3,2026-04-18T00:00:00,"[""INT-000654"", ""INT-001782"", ""INT-001779"", ""INT-000513"", ""INT-001873""]" +QD-0575,PER-0046,engagement,98,2026-04-18T00:00:00,"[""INT-000817"", ""INT-000492"", ""INT-001369"", ""INT-000424"", ""INT-001055""]" +QD-0582,PER-0047,financial_qualification,98,2026-04-18T00:00:00,"[""INT-000496"", ""INT-000186""]" +QD-0594,PER-0048,urgency,98,2026-04-18T00:00:00,"[""INT-001270"", ""INT-001868""]" +QD-0604,PER-0049,urgency,90.3,2026-04-18T00:00:00,"[""INT-001605"", ""INT-001046"", ""INT-000196"", ""INT-000830""]" +QD-0613,PER-0050,overall,55.7,2026-04-18T00:00:00,"[""INT-001753"", ""INT-000128"", ""INT-000805"", ""INT-000063"", ""INT-000319""]" +QD-0626,PER-0051,engagement,98,2026-04-18T00:00:00,"[""INT-000132"", ""INT-000289"", ""INT-001733"", ""INT-000762""]" +QD-0637,PER-0051-CO,intent,32.3,2026-04-18T00:00:00,"[""INT-001613"", ""INT-000922"", ""INT-001665""]" +QD-0643,PER-0052,urgency,98,2026-04-18T00:00:00,"[""INT-000186"", ""INT-001585"", ""INT-000454""]" +QD-0652,PER-0053,overall,62.9,2026-04-18T00:00:00,"[""INT-000528"", ""INT-001785""]" +QD-0665,PER-0053-CO,engagement,30.3,2026-04-18T00:00:00,"[""INT-000107"", ""INT-001707"", ""INT-001543""]" +QD-0678,PER-0054,intent,92.1,2026-04-18T00:00:00,"[""INT-000872"", ""INT-000741"", ""INT-001811"", ""INT-000759""]" +QD-0687,PER-0054-CO,overall,45.3,2026-04-18T00:00:00,"[""INT-001336"", ""INT-001780"", ""INT-000237""]" +QD-0697,PER-0055,financial_qualification,85.4,2026-04-18T00:00:00,"[""INT-000823"", ""INT-000659"", ""INT-000736"", ""INT-001369"", ""INT-001843""]" +QD-0703,PER-0056,engagement,62.3,2026-04-18T00:00:00,"[""INT-000349"", ""INT-000706"", ""INT-001714"", ""INT-001208"", ""INT-001636""]" +QD-0714,PER-0057,overall,53.2,2026-04-18T00:00:00,"[""INT-001471"", ""INT-000700"", ""INT-001724"", ""INT-001377""]" +QD-0722,PER-0058,overall,98,2026-04-18T00:00:00,"[""INT-000980"", ""INT-001542"", ""INT-001667"", ""INT-000074""]" +QD-0728,PER-0058-CO,intent,44.5,2026-04-18T00:00:00,"[""INT-000747"", ""INT-000918"", ""INT-000718"", ""INT-001828""]" +QD-0734,PER-0059,financial_qualification,98,2026-04-18T00:00:00,"[""INT-000707"", ""INT-000416"", ""INT-001602"", ""INT-001248"", ""INT-001679""]" +QD-0743,PER-0059-CO,overall,62.1,2026-04-18T00:00:00,"[""INT-000280"", ""INT-000332""]" +QD-0752,PER-0060,overall,87.7,2026-04-18T00:00:00,"[""INT-001676"", ""INT-000199"", ""INT-000230"", ""INT-000013""]" +QD-0763,PER-0061,engagement,98,2026-04-18T00:00:00,"[""INT-000991"", ""INT-001237"", ""INT-001609""]" +QD-0768,PER-0062,intent,98,2026-04-18T00:00:00,"[""INT-000396"", ""INT-000199"", ""INT-000179"", ""INT-000175"", ""INT-001784""]" +QD-0778,PER-0062-CO,overall,51.2,2026-04-18T00:00:00,"[""INT-000610"", ""INT-000069"", ""INT-000963"", ""INT-000273"", ""INT-000590""]" +QD-0783,PER-0063,engagement,98,2026-04-18T00:00:00,"[""INT-001004"", ""INT-000926"", ""INT-001427""]" +QD-0789,PER-0064,financial_qualification,98,2026-04-18T00:00:00,"[""INT-001720"", ""INT-000350"", ""INT-000398""]" +QD-0796,PER-0065,financial_qualification,92.2,2026-04-18T00:00:00,"[""INT-001612"", ""INT-001217"", ""INT-000898"", ""INT-001074"", ""INT-000138""]" +QD-0803,PER-0066,financial_qualification,98,2026-04-18T00:00:00,"[""INT-001584"", ""INT-001272""]" +QD-0808,PER-0067,urgency,98,2026-04-18T00:00:00,"[""INT-001506"", ""INT-000189"", ""INT-001689"", ""INT-000917"", ""INT-001025""]" +QD-0813,PER-0068,overall,91.7,2026-04-18T00:00:00,"[""INT-000546"", ""INT-001267"", ""INT-001387"", ""INT-001744""]" +QD-0825,PER-0069,financial_qualification,91.6,2026-04-18T00:00:00,"[""INT-001081"", ""INT-001458"", ""INT-000310""]" +QD-0837,PER-0070,urgency,89.2,2026-04-18T00:00:00,"[""INT-000821"", ""INT-000893"", ""INT-000532"", ""INT-000985"", ""INT-001083""]" +QD-0850,PER-0071,urgency,98,2026-04-18T00:00:00,"[""INT-000661"", ""INT-000045"", ""INT-000687"", ""INT-001512"", ""INT-001719""]" +QD-0858,PER-0071-CO,urgency,71.4,2026-04-18T00:00:00,"[""INT-001308"", ""INT-001623"", ""INT-000134"", ""INT-000089"", ""INT-001536""]" +QD-0869,PER-0072,engagement,66.7,2026-04-18T00:00:00,"[""INT-001737"", ""INT-000565"", ""INT-001467""]" +QD-0878,PER-0072-CO,overall,77.1,2026-04-18T00:00:00,"[""INT-001823"", ""INT-000950""]" +QD-0884,PER-0073,urgency,98,2026-04-18T00:00:00,"[""INT-001103"", ""INT-000951"", ""INT-001538"", ""INT-000743"", ""INT-000981""]" +QD-0890,PER-0074,financial_qualification,47.0,2026-04-18T00:00:00,"[""INT-001040"", ""INT-001876""]" +QD-0897,PER-0075,urgency,98,2026-04-18T00:00:00,"[""INT-000440"", ""INT-001288"", ""INT-000276"", ""INT-001474""]" +QD-0903,PER-0076,engagement,89.2,2026-04-18T00:00:00,"[""INT-000141"", ""INT-000144"", ""INT-001708"", ""INT-000158""]" +QD-0910,PER-0077,overall,98,2026-04-18T00:00:00,"[""INT-000833"", ""INT-000595"", ""INT-001498"", ""INT-000885"", ""INT-001039""]" +QD-0915,PER-0078,intent,92.1,2026-04-18T00:00:00,"[""INT-000567"", ""INT-000193"", ""INT-001776"", ""INT-000414"", ""INT-000996""]" +QD-0928,PER-0079,intent,91.8,2026-04-18T00:00:00,"[""INT-000089"", ""INT-001461"", ""INT-001710"", ""INT-001220"", ""INT-000842""]" +QD-0936,PER-0079-CO,engagement,32.7,2026-04-18T00:00:00,"[""INT-000956"", ""INT-001729"", ""INT-001402"", ""INT-000672"", ""INT-000916""]" +QD-0946,PER-0080,financial_qualification,57.0,2026-04-18T00:00:00,"[""INT-001683"", ""INT-000263"", ""INT-000799""]" +QD-0953,PER-0080-CO,engagement,65.9,2026-04-18T00:00:00,"[""INT-001499"", ""INT-000011"", ""INT-000871"", ""INT-000602"", ""INT-000184""]" +QD-0966,PER-0081,intent,98,2026-04-18T00:00:00,"[""INT-001005"", ""INT-000768"", ""INT-000121"", ""INT-000880""]" +QD-0977,PER-0082,intent,94.1,2026-04-18T00:00:00,"[""INT-001751"", ""INT-001785"", ""INT-001143"", ""INT-000362"", ""INT-000935""]" +QD-0987,PER-0083,overall,98,2026-04-18T00:00:00,"[""INT-000860"", ""INT-000015"", ""INT-001184""]" +QD-0999,PER-0084,overall,94.9,2026-04-18T00:00:00,"[""INT-000225"", ""INT-000317"", ""INT-000131""]" +QD-1005,PER-0084-CO,engagement,50.0,2026-04-18T00:00:00,"[""INT-001785"", ""INT-000280"", ""INT-001023""]" +QD-1012,PER-0085,financial_qualification,66.1,2026-04-18T00:00:00,"[""INT-001856"", ""INT-001286""]" +QD-1023,PER-0086,financial_qualification,98,2026-04-18T00:00:00,"[""INT-001195"", ""INT-000381"", ""INT-000454"", ""INT-000319""]" +QD-1030,PER-0087,intent,69.6,2026-04-18T00:00:00,"[""INT-000974"", ""INT-001323"", ""INT-000607"", ""INT-001589"", ""INT-000370""]" +QD-1041,PER-0087-CO,intent,71.0,2026-04-18T00:00:00,"[""INT-001609"", ""INT-001774"", ""INT-001137"", ""INT-000685""]" +QD-1047,PER-0088,engagement,98,2026-04-18T00:00:00,"[""INT-000424"", ""INT-001721"", ""INT-001391"", ""INT-000205"", ""INT-001310""]" +QD-1054,PER-0089,overall,58.2,2026-04-18T00:00:00,"[""INT-000730"", ""INT-000524""]" +QD-1063,PER-0090,intent,60.1,2026-04-18T00:00:00,"[""INT-001425"", ""INT-001848"", ""INT-001154"", ""INT-001854""]" +QD-1068,PER-0090-CO,intent,33.1,2026-04-18T00:00:00,"[""INT-001843"", ""INT-000977"", ""INT-000340"", ""INT-000851"", ""INT-001242""]" +QD-1078,PER-0091,urgency,98,2026-04-18T00:00:00,"[""INT-001035"", ""INT-001685"", ""INT-001355"", ""INT-000991"", ""INT-000421""]" +QD-1083,PER-0091-CO,engagement,61.1,2026-04-18T00:00:00,"[""INT-000974"", ""INT-001685"", ""INT-000290"", ""INT-001138"", ""INT-001701""]" +QD-1091,PER-0092,urgency,85.7,2026-04-18T00:00:00,"[""INT-000771"", ""INT-000289"", ""INT-001279""]" +QD-1099,PER-0093,financial_qualification,98,2026-04-18T00:00:00,"[""INT-000041"", ""INT-000899"", ""INT-001226""]" +QD-1108,PER-0093-CO,engagement,83.0,2026-04-18T00:00:00,"[""INT-000115"", ""INT-000408"", ""INT-001770"", ""INT-000512"", ""INT-000273""]" +QD-1118,PER-0094,urgency,98,2026-04-18T00:00:00,"[""INT-001409"", ""INT-001210""]" +QD-1130,PER-0094-CO,urgency,54.8,2026-04-18T00:00:00,"[""INT-001270"", ""INT-000251"", ""INT-000965"", ""INT-000870""]" +QD-1140,PER-0095,overall,72.7,2026-04-18T00:00:00,"[""INT-001315"", ""INT-001007"", ""INT-001778"", ""INT-000121""]" +QD-1149,PER-0095-CO,financial_qualification,33.0,2026-04-18T00:00:00,"[""INT-001284"", ""INT-001018"", ""INT-000136""]" +QD-1158,PER-0096,engagement,98,2026-04-18T00:00:00,"[""INT-000825"", ""INT-000493"", ""INT-001830"", ""INT-001385""]" +QD-1164,PER-0096-CO,urgency,68.0,2026-04-18T00:00:00,"[""INT-000503"", ""INT-000271"", ""INT-000449""]" +QD-1174,PER-0097,engagement,98,2026-04-18T00:00:00,"[""INT-000582"", ""INT-000384""]" +QD-1179,PER-0098,urgency,79.6,2026-04-18T00:00:00,"[""INT-001612"", ""INT-000554"", ""INT-000520""]" +QD-1185,PER-0098-CO,financial_qualification,42.3,2026-04-18T00:00:00,"[""INT-001458"", ""INT-000780"", ""INT-000904""]" +QD-1190,PER-0099,urgency,98,2026-04-18T00:00:00,"[""INT-000248"", ""INT-000765"", ""INT-000767""]" +QD-1197,PER-0099-CO,overall,77.6,2026-04-18T00:00:00,"[""INT-000789"", ""INT-000252"", ""INT-000103""]" +QD-1202,PER-0100,intent,82.1,2026-04-18T00:00:00,"[""INT-000583"", ""INT-001171"", ""INT-001603""]" +QD-1208,PER-0100-CO,financial_qualification,35.9,2026-04-18T00:00:00,"[""INT-000840"", ""INT-000598"", ""INT-001069"", ""INT-001179""]" +QD-1217,PER-0101,urgency,80.4,2026-04-18T00:00:00,"[""INT-000229"", ""INT-001651""]" +QD-1224,PER-0102,overall,98,2026-04-18T00:00:00,"[""INT-001572"", ""INT-000974"", ""INT-001802"", ""INT-001694"", ""INT-000480""]" +QD-1229,PER-0102-CO,overall,55.1,2026-04-18T00:00:00,"[""INT-000469"", ""INT-000170"", ""INT-001171"", ""INT-000042""]" +QD-1239,PER-0103,overall,98,2026-04-18T00:00:00,"[""INT-000850"", ""INT-001594"", ""INT-001125""]" +QD-1244,PER-0103-CO,engagement,78.1,2026-04-18T00:00:00,"[""INT-001893"", ""INT-001336"", ""INT-000517"", ""INT-001495""]" +QD-1250,PER-0104,overall,86.9,2026-04-18T00:00:00,"[""INT-000931"", ""INT-000025"", ""INT-001691"", ""INT-001161""]" +QD-1261,PER-0104-CO,intent,73.9,2026-04-18T00:00:00,"[""INT-000408"", ""INT-001285"", ""INT-001815"", ""INT-001220""]" +QD-1274,PER-0105,overall,98,2026-04-18T00:00:00,"[""INT-001424"", ""INT-001414"", ""INT-000160"", ""INT-000274"", ""INT-001710""]" +QD-1283,PER-0106,overall,98,2026-04-18T00:00:00,"[""INT-000560"", ""INT-000053"", ""INT-001383"", ""INT-000746""]" +QD-1291,PER-0107,urgency,98,2026-04-18T00:00:00,"[""INT-000663"", ""INT-001260""]" +QD-1297,PER-0107-CO,engagement,33.3,2026-04-18T00:00:00,"[""INT-001087"", ""INT-001870"", ""INT-001283""]" +QD-1306,PER-0108,engagement,70.6,2026-04-18T00:00:00,"[""INT-001213"", ""INT-000223"", ""INT-001201"", ""INT-001836""]" +QD-1318,PER-0108-CO,urgency,56.0,2026-04-18T00:00:00,"[""INT-000164"", ""INT-001416"", ""INT-001544"", ""INT-001192""]" +QD-1330,PER-0109,intent,98,2026-04-18T00:00:00,"[""INT-001717"", ""INT-000962""]" +QD-1341,PER-0110,overall,83.9,2026-04-18T00:00:00,"[""INT-000395"", ""INT-001550""]" +QD-1349,PER-0111,financial_qualification,53.0,2026-04-18T00:00:00,"[""INT-000608"", ""INT-000048"", ""INT-000124"", ""INT-000674""]" +QD-1361,PER-0112,intent,60.6,2026-04-18T00:00:00,"[""INT-001027"", ""INT-000648"", ""INT-000100"", ""INT-000155""]" +QD-1372,PER-0113,financial_qualification,98,2026-04-18T00:00:00,"[""INT-000234"", ""INT-001319"", ""INT-001438"", ""INT-001877"", ""INT-001818""]" +QD-1385,PER-0114,engagement,98,2026-04-18T00:00:00,"[""INT-001148"", ""INT-000014"", ""INT-000238"", ""INT-000360"", ""INT-000054""]" +QD-1393,PER-0115,engagement,98,2026-04-18T00:00:00,"[""INT-000056"", ""INT-000629"", ""INT-001768""]" +QD-1406,PER-0115-CO,urgency,39.4,2026-04-18T00:00:00,"[""INT-000667"", ""INT-001654"", ""INT-000917"", ""INT-000725""]" +QD-1414,PER-0116,financial_qualification,81.8,2026-04-18T00:00:00,"[""INT-000482"", ""INT-001390"", ""INT-001526""]" +QD-1419,PER-0117,engagement,98,2026-04-18T00:00:00,"[""INT-000285"", ""INT-000126"", ""INT-000868"", ""INT-001734""]" +QD-1424,PER-0117-CO,financial_qualification,60.2,2026-04-18T00:00:00,"[""INT-001362"", ""INT-001311"", ""INT-000992""]" +QD-1432,PER-0118,overall,98,2026-04-18T00:00:00,"[""INT-001235"", ""INT-001809"", ""INT-000182"", ""INT-001191"", ""INT-000170""]" +QD-1437,PER-0119,intent,98,2026-04-18T00:00:00,"[""INT-000355"", ""INT-001505""]" +QD-1445,PER-0119-CO,overall,34.1,2026-04-18T00:00:00,"[""INT-000303"", ""INT-001209"", ""INT-001333"", ""INT-000454"", ""INT-000148""]" +QD-1450,PER-0120,urgency,98,2026-04-18T00:00:00,"[""INT-000200"", ""INT-000991"", ""INT-001672"", ""INT-000549"", ""INT-000991""]" +QD-1455,PER-0121,engagement,94.5,2026-04-18T00:00:00,"[""INT-001896"", ""INT-001634"", ""INT-001409""]" +QD-1467,PER-0122,engagement,86.5,2026-04-18T00:00:00,"[""INT-000014"", ""INT-000515"", ""INT-000229""]" +QD-1477,PER-0122-CO,urgency,84.8,2026-04-18T00:00:00,"[""INT-001734"", ""INT-000077"", ""INT-000353"", ""INT-000876""]" +QD-1489,PER-0123,urgency,46.0,2026-04-18T00:00:00,"[""INT-001720"", ""INT-000535""]" +QD-1501,PER-0123-CO,engagement,79.6,2026-04-18T00:00:00,"[""INT-001195"", ""INT-000696"", ""INT-001614""]" +QD-1508,PER-0124,engagement,57.5,2026-04-18T00:00:00,"[""INT-000362"", ""INT-000033""]" +QD-1514,PER-0125,intent,93.8,2026-04-18T00:00:00,"[""INT-001197"", ""INT-001367"", ""INT-001559"", ""INT-000979""]" +QD-1527,PER-0126,urgency,63.4,2026-04-18T00:00:00,"[""INT-000186"", ""INT-000338"", ""INT-000985"", ""INT-001620""]" +QD-1539,PER-0126-CO,overall,35.5,2026-04-18T00:00:00,"[""INT-000803"", ""INT-000402""]" +QD-1550,PER-0127,engagement,98,2026-04-18T00:00:00,"[""INT-001187"", ""INT-000341"", ""INT-000510"", ""INT-000345"", ""INT-001358""]" +QD-1563,PER-0128,urgency,65.4,2026-04-18T00:00:00,"[""INT-001497"", ""INT-001061""]" +QD-1574,PER-0129,overall,98,2026-04-18T00:00:00,"[""INT-001303"", ""INT-000976"", ""INT-001581"", ""INT-001133""]" +QD-1579,PER-0130,overall,89.1,2026-04-18T00:00:00,"[""INT-000074"", ""INT-000815"", ""INT-000298"", ""INT-000750"", ""INT-000010""]" +QD-1585,PER-0130-CO,intent,61.5,2026-04-18T00:00:00,"[""INT-001485"", ""INT-000371"", ""INT-000502""]" +QD-1593,PER-0131,financial_qualification,98,2026-04-18T00:00:00,"[""INT-001122"", ""INT-001165"", ""INT-000263""]" +QD-1601,PER-0132,intent,69.9,2026-04-18T00:00:00,"[""INT-000568"", ""INT-000270"", ""INT-001356"", ""INT-000789"", ""INT-000867""]" +QD-1609,PER-0132-CO,urgency,42.0,2026-04-18T00:00:00,"[""INT-001123"", ""INT-001211""]" +QD-1619,PER-0133,engagement,83.2,2026-04-18T00:00:00,"[""INT-000640"", ""INT-000598"", ""INT-001873"", ""INT-000466"", ""INT-001237""]" +QD-1625,PER-0134,urgency,78.8,2026-04-18T00:00:00,"[""INT-001304"", ""INT-000794"", ""INT-000614""]" +QD-1630,PER-0135,financial_qualification,98,2026-04-18T00:00:00,"[""INT-000787"", ""INT-000711""]" +QD-1636,PER-0135-CO,overall,84.3,2026-04-18T00:00:00,"[""INT-001123"", ""INT-000856"", ""INT-000798""]" +QD-1648,PER-0136,engagement,84.5,2026-04-18T00:00:00,"[""INT-000767"", ""INT-000498""]" +QD-1656,PER-0136-CO,engagement,54.7,2026-04-18T00:00:00,"[""INT-001850"", ""INT-000934"", ""INT-000719"", ""INT-001640"", ""INT-000267""]" +QD-1666,PER-0137,engagement,84.6,2026-04-18T00:00:00,"[""INT-001611"", ""INT-000811""]" +QD-1674,PER-0138,engagement,98,2026-04-18T00:00:00,"[""INT-000640"", ""INT-000395""]" +QD-1681,PER-0138-CO,financial_qualification,50.7,2026-04-18T00:00:00,"[""INT-001202"", ""INT-001200""]" +QD-1694,PER-0139,engagement,98,2026-04-18T00:00:00,"[""INT-001891"", ""INT-001526"", ""INT-000939"", ""INT-001673""]" +QD-1700,PER-0140,intent,98,2026-04-18T00:00:00,"[""INT-001873"", ""INT-001697""]" +QD-1707,PER-0141,financial_qualification,84.2,2026-04-18T00:00:00,"[""INT-001524"", ""INT-001815"", ""INT-001886"", ""INT-000117""]" +QD-1716,PER-0142,intent,84.9,2026-04-18T00:00:00,"[""INT-001075"", ""INT-001530"", ""INT-000505"", ""INT-001629""]" +QD-1726,PER-0143,intent,90.9,2026-04-18T00:00:00,"[""INT-001537"", ""INT-001237"", ""INT-001287""]" +QD-1735,PER-0143-CO,urgency,81.4,2026-04-18T00:00:00,"[""INT-001286"", ""INT-000376"", ""INT-001614"", ""INT-001022"", ""INT-000277""]" +QD-1745,PER-0144,urgency,72.2,2026-04-18T00:00:00,"[""INT-001179"", ""INT-000530""]" +QD-1755,PER-0144-CO,financial_qualification,68.3,2026-04-18T00:00:00,"[""INT-000667"", ""INT-001609""]" +QD-1762,PER-0145,engagement,76.6,2026-04-18T00:00:00,"[""INT-001060"", ""INT-001641""]" +QD-1772,PER-0145-CO,financial_qualification,66.3,2026-04-18T00:00:00,"[""INT-001896"", ""INT-001550"", ""INT-001696""]" +QD-1780,PER-0146,financial_qualification,52.9,2026-04-18T00:00:00,"[""INT-000277"", ""INT-000946""]" +QD-1788,PER-0147,overall,91.8,2026-04-18T00:00:00,"[""INT-001119"", ""INT-000017"", ""INT-001696"", ""INT-001477""]" +QD-1798,PER-0148,intent,98,2026-04-18T00:00:00,"[""INT-001124"", ""INT-000383""]" +QD-1811,PER-0149,financial_qualification,80.3,2026-04-18T00:00:00,"[""INT-001819"", ""INT-000499"", ""INT-000730""]" +QD-1822,PER-0150,engagement,82.7,2026-04-18T00:00:00,"[""INT-000290"", ""INT-001524"", ""INT-000040""]" +QD-1832,PER-0150-CO,engagement,68.5,2026-04-18T00:00:00,"[""INT-001722"", ""INT-000363""]" +QD-1839,PER-0151,overall,59.7,2026-04-18T00:00:00,"[""INT-001606"", ""INT-000460"", ""INT-000025"", ""INT-001582"", ""INT-001271""]" +QD-1844,PER-0151-CO,urgency,67.6,2026-04-18T00:00:00,"[""INT-000591"", ""INT-001523"", ""INT-000015"", ""INT-001512""]" +QD-1852,PER-0152,engagement,89.4,2026-04-18T00:00:00,"[""INT-000220"", ""INT-001105"", ""INT-000617"", ""INT-000558"", ""INT-000854""]" +QD-1864,PER-0152-CO,urgency,49.7,2026-04-18T00:00:00,"[""INT-001800"", ""INT-000060"", ""INT-001571""]" +QD-1875,PER-0153,financial_qualification,98,2026-04-18T00:00:00,"[""INT-001038"", ""INT-000019"", ""INT-000846"", ""INT-000839"", ""INT-001012""]" +QD-1884,PER-0154,overall,98,2026-04-18T00:00:00,"[""INT-000746"", ""INT-000937"", ""INT-000333"", ""INT-000954"", ""INT-000297""]" +QD-1896,PER-0154-CO,intent,34.8,2026-04-18T00:00:00,"[""INT-000880"", ""INT-001834"", ""INT-000410""]" +QD-1903,PER-0155,urgency,82.6,2026-04-18T00:00:00,"[""INT-001278"", ""INT-000883""]" +QD-1911,PER-0155-CO,urgency,75.4,2026-04-18T00:00:00,"[""INT-001854"", ""INT-000211""]" +QD-1922,PER-0156,financial_qualification,94.2,2026-04-18T00:00:00,"[""INT-001452"", ""INT-001067"", ""INT-001876"", ""INT-000322""]" +QD-1934,PER-0157,engagement,48.8,2026-04-18T00:00:00,"[""INT-000334"", ""INT-000590"", ""INT-000313"", ""INT-001129""]" +QD-1945,PER-0158,financial_qualification,98,2026-04-18T00:00:00,"[""INT-001094"", ""INT-000841"", ""INT-001366"", ""INT-000659"", ""INT-000018""]" +QD-1956,PER-0159,financial_qualification,57.9,2026-04-18T00:00:00,"[""INT-001853"", ""INT-001502""]" +QD-1964,PER-0160,engagement,92.1,2026-04-18T00:00:00,"[""INT-000188"", ""INT-000859"", ""INT-001114"", ""INT-000086""]" +QD-1973,PER-0161,urgency,89.9,2026-04-18T00:00:00,"[""INT-001208"", ""INT-001241"", ""INT-001569""]" +QD-1980,PER-0162,intent,98,2026-04-18T00:00:00,"[""INT-000505"", ""INT-001418"", ""INT-000034""]" +QD-1991,PER-0163,financial_qualification,91.1,2026-04-18T00:00:00,"[""INT-001494"", ""INT-000497"", ""INT-000719""]" +QD-2004,PER-0164,engagement,82.7,2026-04-18T00:00:00,"[""INT-001653"", ""INT-000887"", ""INT-001607""]" +QD-2011,PER-0165,urgency,83.8,2026-04-18T00:00:00,"[""INT-001240"", ""INT-001292"", ""INT-001738""]" +QD-2016,PER-0165-CO,financial_qualification,83.5,2026-04-18T00:00:00,"[""INT-001554"", ""INT-001704""]" +QD-2022,PER-0166,urgency,66.1,2026-04-18T00:00:00,"[""INT-001325"", ""INT-000104""]" +QD-2029,PER-0167,engagement,57.6,2026-04-18T00:00:00,"[""INT-000172"", ""INT-001048"", ""INT-000886""]" +QD-2040,PER-0168,intent,66.2,2026-04-18T00:00:00,"[""INT-001185"", ""INT-000194"", ""INT-000562""]" +QD-2045,PER-0168-CO,intent,55.9,2026-04-18T00:00:00,"[""INT-000332"", ""INT-001254"", ""INT-000754"", ""INT-000494""]" +QD-2057,PER-0169,intent,86.7,2026-04-18T00:00:00,"[""INT-001695"", ""INT-000065"", ""INT-000386"", ""INT-001782"", ""INT-001712""]" +QD-2063,PER-0170,financial_qualification,98,2026-04-18T00:00:00,"[""INT-001179"", ""INT-001108"", ""INT-001422"", ""INT-000093"", ""INT-001855""]" +QD-2076,PER-0171,overall,61.5,2026-04-18T00:00:00,"[""INT-000859"", ""INT-001447""]" +QD-2085,PER-0172,overall,90.7,2026-04-18T00:00:00,"[""INT-001379"", ""INT-001545"", ""INT-001042"", ""INT-000813""]" +QD-2098,PER-0173,overall,98,2026-04-18T00:00:00,"[""INT-001474"", ""INT-000931"", ""INT-000844"", ""INT-001451"", ""INT-000760""]" +QD-2107,PER-0174,financial_qualification,98,2026-04-18T00:00:00,"[""INT-000313"", ""INT-001452"", ""INT-000844"", ""INT-001572"", ""INT-001587""]" +QD-2115,PER-0175,intent,95.0,2026-04-18T00:00:00,"[""INT-000183"", ""INT-001313"", ""INT-000504"", ""INT-001888""]" +QD-2124,PER-0176,engagement,93.2,2026-04-18T00:00:00,"[""INT-000074"", ""INT-000715"", ""INT-000142""]" +QD-2132,PER-0177,overall,69.0,2026-04-18T00:00:00,"[""INT-000812"", ""INT-000597"", ""INT-000293"", ""INT-000475"", ""INT-000811""]" +QD-2138,PER-0178,intent,85.8,2026-04-18T00:00:00,"[""INT-000074"", ""INT-000748""]" +QD-2147,PER-0179,urgency,98,2026-04-18T00:00:00,"[""INT-001071"", ""INT-001669"", ""INT-000854"", ""INT-001477"", ""INT-000375""]" +QD-2158,PER-0180,engagement,98,2026-04-18T00:00:00,"[""INT-000479"", ""INT-000719"", ""INT-001578"", ""INT-000592"", ""INT-000392""]" +QD-2166,PER-0181,overall,82.2,2026-04-18T00:00:00,"[""INT-000463"", ""INT-001698"", ""INT-000973""]" +QD-2172,PER-0182,financial_qualification,74.2,2026-04-18T00:00:00,"[""INT-000596"", ""INT-000026""]" +QD-2179,PER-0183,intent,98,2026-04-18T00:00:00,"[""INT-000648"", ""INT-001108"", ""INT-001329""]" +QD-2187,PER-0184,engagement,92.3,2026-04-18T00:00:00,"[""INT-000058"", ""INT-000946"", ""INT-001602"", ""INT-000826""]" +QD-2196,PER-0184-CO,overall,78.4,2026-04-18T00:00:00,"[""INT-000948"", ""INT-001275"", ""INT-000396"", ""INT-001258""]" diff --git a/db assets/synthetic_crm_v1/csv/intel_qd_timeseries.csv b/db assets/synthetic_crm_v1/csv/intel_qd_timeseries.csv new file mode 100644 index 00000000..f4fa8f51 --- /dev/null +++ b/db assets/synthetic_crm_v1/csv/intel_qd_timeseries.csv @@ -0,0 +1,1954 @@ +timeseries_id,person_id,signal_source,timestamp,value,evidence_ref +QTS-00002,PER-0001,interaction_frequency,2024-07-13T00:00:00,25.5,INT-000211 +QTS-00003,PER-0001,visit_depth,2024-10-06T00:00:00,31.2,INT-001175 +QTS-00004,PER-0001,competitor_mention,2024-11-19T00:00:00,46.8,INT-001720 +QTS-00005,PER-0001,price_sensitivity,2025-05-16T00:00:00,70.2,INT-000133 +QTS-00006,PER-0001,interaction_frequency,2025-12-16T00:00:00,81.7,INT-000244 +QTS-00007,PER-0001,price_sensitivity,2026-02-12T00:00:00,93.4,INT-000905 +QTS-00009,PER-0002,price_sensitivity,2024-02-21T00:00:00,14.7,INT-001048 +QTS-00010,PER-0002,interaction_frequency,2024-05-25T00:00:00,24.9,INT-000192 +QTS-00011,PER-0002,competitor_mention,2024-07-22T00:00:00,30.2,INT-000135 +QTS-00012,PER-0002,competitor_mention,2025-02-15T00:00:00,41.1,INT-000473 +QTS-00013,PER-0002,visit_depth,2025-06-20T00:00:00,53.5,INT-001583 +QTS-00014,PER-0002,visit_depth,2025-08-31T00:00:00,65.1,INT-000076 +QTS-00015,PER-0002,price_sensitivity,2025-09-22T00:00:00,76.4,INT-001314 +QTS-00016,PER-0002,interaction_frequency,2025-10-28T00:00:00,83.9,INT-001369 +QTS-00017,PER-0002,response_time,2026-03-24T00:00:00,89.9,INT-000682 +QTS-00019,PER-0002-CO,competitor_mention,2024-11-18T00:00:00,22.1,INT-000595 +QTS-00020,PER-0002-CO,interaction_frequency,2025-06-05T00:00:00,26.4,INT-000614 +QTS-00021,PER-0002-CO,visit_depth,2026-03-02T00:00:00,52.0,INT-001288 +QTS-00022,PER-0002-CO,competitor_mention,2026-03-24T00:00:00,61.4,INT-000367 +QTS-00024,PER-0003,response_time,2024-03-19T00:00:00,18.7,INT-001547 +QTS-00025,PER-0003,response_time,2024-08-20T00:00:00,20.4,INT-001378 +QTS-00026,PER-0003,interaction_frequency,2024-11-15T00:00:00,24.0,INT-001765 +QTS-00027,PER-0003,response_time,2025-02-22T00:00:00,47.1,INT-001522 +QTS-00028,PER-0003,price_sensitivity,2025-02-23T00:00:00,54.3,INT-000418 +QTS-00029,PER-0003,response_time,2025-06-13T00:00:00,49.6,INT-000810 +QTS-00030,PER-0003,interaction_frequency,2025-06-17T00:00:00,68.3,INT-001066 +QTS-00031,PER-0003,visit_depth,2025-07-27T00:00:00,66.3,INT-000636 +QTS-00032,PER-0003,competitor_mention,2026-02-07T00:00:00,79.4,INT-000124 +QTS-00034,PER-0004,visit_depth,2024-04-05T00:00:00,10,INT-001444 +QTS-00035,PER-0004,competitor_mention,2024-04-21T00:00:00,13.3,INT-001694 +QTS-00036,PER-0004,competitor_mention,2024-05-10T00:00:00,31.8,INT-000888 +QTS-00037,PER-0004,response_time,2024-08-27T00:00:00,27.2,INT-000026 +QTS-00038,PER-0004,visit_depth,2024-11-19T00:00:00,50.3,INT-000304 +QTS-00039,PER-0004,competitor_mention,2024-12-31T00:00:00,57.0,INT-000917 +QTS-00040,PER-0004,interaction_frequency,2025-05-02T00:00:00,52.9,INT-001178 +QTS-00041,PER-0004,response_time,2025-08-08T00:00:00,62.2,INT-000586 +QTS-00042,PER-0004,visit_depth,2025-08-18T00:00:00,78.7,INT-000312 +QTS-00043,PER-0004,interaction_frequency,2025-09-16T00:00:00,97.2,INT-001287 +QTS-00044,PER-0004,response_time,2025-11-15T00:00:00,98,INT-001785 +QTS-00046,PER-0005,visit_depth,2024-02-08T00:00:00,24.8,INT-000752 +QTS-00047,PER-0005,price_sensitivity,2024-06-08T00:00:00,41.0,INT-001603 +QTS-00048,PER-0005,response_time,2025-03-04T00:00:00,48.9,INT-000902 +QTS-00049,PER-0005,price_sensitivity,2025-03-10T00:00:00,74.8,INT-000097 +QTS-00050,PER-0005,interaction_frequency,2025-09-16T00:00:00,73.0,INT-001160 +QTS-00051,PER-0005,visit_depth,2026-01-10T00:00:00,98,INT-001467 +QTS-00053,PER-0006,price_sensitivity,2024-09-18T00:00:00,17.8,INT-000191 +QTS-00054,PER-0006,price_sensitivity,2024-12-16T00:00:00,37.6,INT-001326 +QTS-00055,PER-0006,competitor_mention,2025-04-08T00:00:00,47.6,INT-000718 +QTS-00056,PER-0006,price_sensitivity,2025-07-22T00:00:00,63.3,INT-001266 +QTS-00057,PER-0006,interaction_frequency,2025-12-18T00:00:00,62.4,INT-001471 +QTS-00058,PER-0006,competitor_mention,2026-03-04T00:00:00,88.7,INT-000166 +QTS-00060,PER-0007,price_sensitivity,2024-05-02T00:00:00,12.9,INT-001062 +QTS-00061,PER-0007,competitor_mention,2024-05-22T00:00:00,17.1,INT-001327 +QTS-00062,PER-0007,competitor_mention,2024-08-29T00:00:00,31.9,INT-000746 +QTS-00063,PER-0007,visit_depth,2025-03-15T00:00:00,43.1,INT-001758 +QTS-00064,PER-0007,response_time,2025-06-25T00:00:00,52.5,INT-001560 +QTS-00065,PER-0007,interaction_frequency,2025-07-17T00:00:00,57.5,INT-001697 +QTS-00066,PER-0007,price_sensitivity,2025-08-26T00:00:00,66.6,INT-001448 +QTS-00067,PER-0007,competitor_mention,2025-10-07T00:00:00,92.8,INT-001547 +QTS-00068,PER-0007,price_sensitivity,2026-03-18T00:00:00,93.8,INT-001343 +QTS-00070,PER-0008,competitor_mention,2024-01-05T00:00:00,17.9,INT-000169 +QTS-00071,PER-0008,price_sensitivity,2024-03-05T00:00:00,13.1,INT-001298 +QTS-00072,PER-0008,response_time,2024-11-05T00:00:00,28.9,INT-000965 +QTS-00073,PER-0008,competitor_mention,2025-03-02T00:00:00,50.0,INT-000398 +QTS-00074,PER-0008,price_sensitivity,2025-03-09T00:00:00,54.0,INT-000283 +QTS-00075,PER-0008,interaction_frequency,2025-03-30T00:00:00,74.1,INT-001483 +QTS-00076,PER-0008,visit_depth,2025-07-08T00:00:00,84.4,INT-000967 +QTS-00078,PER-0008-CO,response_time,2024-05-11T00:00:00,10,INT-000795 +QTS-00079,PER-0008-CO,interaction_frequency,2024-06-09T00:00:00,10,INT-000476 +QTS-00080,PER-0008-CO,interaction_frequency,2025-02-01T00:00:00,10,INT-000516 +QTS-00081,PER-0008-CO,price_sensitivity,2025-02-16T00:00:00,17.7,INT-000896 +QTS-00082,PER-0008-CO,response_time,2025-02-20T00:00:00,11.4,INT-001444 +QTS-00083,PER-0008-CO,price_sensitivity,2025-08-25T00:00:00,22.0,INT-000269 +QTS-00084,PER-0008-CO,interaction_frequency,2025-10-01T00:00:00,33.4,INT-000167 +QTS-00085,PER-0008-CO,response_time,2025-12-19T00:00:00,27.9,INT-000246 +QTS-00086,PER-0008-CO,competitor_mention,2025-12-23T00:00:00,32.0,INT-001113 +QTS-00088,PER-0009,visit_depth,2024-07-10T00:00:00,13.9,INT-000679 +QTS-00089,PER-0009,interaction_frequency,2024-09-12T00:00:00,15.4,INT-001245 +QTS-00090,PER-0009,competitor_mention,2024-10-15T00:00:00,17.9,INT-000232 +QTS-00091,PER-0009,response_time,2025-03-14T00:00:00,27.9,INT-001164 +QTS-00092,PER-0009,price_sensitivity,2025-04-02T00:00:00,21.6,INT-000305 +QTS-00093,PER-0009,response_time,2025-05-24T00:00:00,29.0,INT-001134 +QTS-00094,PER-0009,response_time,2025-06-19T00:00:00,41.3,INT-001268 +QTS-00095,PER-0009,price_sensitivity,2025-06-21T00:00:00,40.4,INT-000655 +QTS-00096,PER-0009,response_time,2025-06-26T00:00:00,48.7,INT-001806 +QTS-00097,PER-0009,interaction_frequency,2025-11-20T00:00:00,59.0,INT-000763 +QTS-00098,PER-0009,visit_depth,2025-12-17T00:00:00,72.7,INT-001651 +QTS-00099,PER-0009,visit_depth,2026-01-21T00:00:00,65.8,INT-001412 +QTS-00101,PER-0010,visit_depth,2024-02-05T00:00:00,14.8,INT-001196 +QTS-00102,PER-0010,interaction_frequency,2024-02-11T00:00:00,17.8,INT-000569 +QTS-00103,PER-0010,interaction_frequency,2025-03-07T00:00:00,26.8,INT-001414 +QTS-00104,PER-0010,interaction_frequency,2025-05-03T00:00:00,30.5,INT-000967 +QTS-00105,PER-0010,price_sensitivity,2025-09-26T00:00:00,45.2,INT-001054 +QTS-00106,PER-0010,price_sensitivity,2026-03-26T00:00:00,47.9,INT-001538 +QTS-00107,PER-0010,response_time,2026-04-11T00:00:00,51.5,INT-001410 +QTS-00109,PER-0011,price_sensitivity,2024-05-23T00:00:00,10,INT-000426 +QTS-00110,PER-0011,price_sensitivity,2024-08-23T00:00:00,14.3,INT-001739 +QTS-00111,PER-0011,competitor_mention,2024-10-15T00:00:00,39.7,INT-001790 +QTS-00112,PER-0011,price_sensitivity,2024-12-16T00:00:00,38.9,INT-000302 +QTS-00113,PER-0011,visit_depth,2025-01-13T00:00:00,47.6,INT-001167 +QTS-00114,PER-0011,interaction_frequency,2025-05-23T00:00:00,72.0,INT-000335 +QTS-00115,PER-0011,price_sensitivity,2025-05-25T00:00:00,81.9,INT-001860 +QTS-00116,PER-0011,interaction_frequency,2025-09-13T00:00:00,85.9,INT-000595 +QTS-00118,PER-0011-CO,competitor_mention,2024-04-08T00:00:00,26.3,INT-000766 +QTS-00119,PER-0011-CO,visit_depth,2024-05-27T00:00:00,27.6,INT-001525 +QTS-00120,PER-0011-CO,response_time,2025-08-16T00:00:00,58.0,INT-001232 +QTS-00121,PER-0011-CO,interaction_frequency,2026-03-06T00:00:00,65.4,INT-001041 +QTS-00123,PER-0012,price_sensitivity,2024-01-23T00:00:00,10,INT-001141 +QTS-00124,PER-0012,price_sensitivity,2024-02-05T00:00:00,23.6,INT-001714 +QTS-00125,PER-0012,price_sensitivity,2024-03-19T00:00:00,20.6,INT-000779 +QTS-00126,PER-0012,visit_depth,2024-07-29T00:00:00,37.0,INT-000815 +QTS-00127,PER-0012,visit_depth,2024-09-23T00:00:00,34.9,INT-001475 +QTS-00128,PER-0012,competitor_mention,2024-10-02T00:00:00,60.6,INT-001324 +QTS-00129,PER-0012,competitor_mention,2025-03-21T00:00:00,55.8,INT-001860 +QTS-00130,PER-0012,visit_depth,2025-05-20T00:00:00,60.1,INT-001591 +QTS-00131,PER-0012,visit_depth,2025-07-21T00:00:00,78.0,INT-000053 +QTS-00132,PER-0012,visit_depth,2025-08-11T00:00:00,83.6,INT-001607 +QTS-00133,PER-0012,competitor_mention,2025-11-10T00:00:00,87.8,INT-000560 +QTS-00135,PER-0013,interaction_frequency,2024-01-11T00:00:00,10,INT-001270 +QTS-00136,PER-0013,response_time,2024-01-19T00:00:00,18.4,INT-000903 +QTS-00137,PER-0013,interaction_frequency,2024-02-10T00:00:00,16.8,INT-000945 +QTS-00138,PER-0013,visit_depth,2024-02-29T00:00:00,31.4,INT-000013 +QTS-00139,PER-0013,competitor_mention,2024-03-18T00:00:00,40.8,INT-001075 +QTS-00140,PER-0013,competitor_mention,2024-04-11T00:00:00,43.8,INT-000905 +QTS-00141,PER-0013,response_time,2025-01-05T00:00:00,52.8,INT-000154 +QTS-00142,PER-0013,interaction_frequency,2025-01-29T00:00:00,69.1,INT-000743 +QTS-00143,PER-0013,visit_depth,2025-09-05T00:00:00,76.2,INT-000661 +QTS-00144,PER-0013,interaction_frequency,2025-11-03T00:00:00,88.2,INT-000863 +QTS-00145,PER-0013,response_time,2026-02-28T00:00:00,83.3,INT-001413 +QTS-00147,PER-0013-CO,competitor_mention,2024-01-02T00:00:00,11.6,INT-001408 +QTS-00148,PER-0013-CO,price_sensitivity,2024-02-11T00:00:00,19.6,INT-001496 +QTS-00149,PER-0013-CO,interaction_frequency,2024-04-17T00:00:00,14.8,INT-001204 +QTS-00150,PER-0013-CO,competitor_mention,2024-09-15T00:00:00,27.2,INT-001120 +QTS-00151,PER-0013-CO,response_time,2025-03-01T00:00:00,28.9,INT-001299 +QTS-00152,PER-0013-CO,response_time,2025-04-11T00:00:00,41.1,INT-000107 +QTS-00153,PER-0013-CO,visit_depth,2025-07-15T00:00:00,45.3,INT-001421 +QTS-00154,PER-0013-CO,price_sensitivity,2025-07-18T00:00:00,56.0,INT-001698 +QTS-00155,PER-0013-CO,interaction_frequency,2025-07-19T00:00:00,54.4,INT-000778 +QTS-00156,PER-0013-CO,competitor_mention,2025-08-30T00:00:00,55.7,INT-000517 +QTS-00157,PER-0013-CO,response_time,2026-04-15T00:00:00,57.3,INT-001712 +QTS-00159,PER-0014,competitor_mention,2024-01-23T00:00:00,10.9,INT-000493 +QTS-00160,PER-0014,interaction_frequency,2024-06-25T00:00:00,15.4,INT-001213 +QTS-00161,PER-0014,interaction_frequency,2024-07-01T00:00:00,28.2,INT-001482 +QTS-00162,PER-0014,response_time,2025-02-15T00:00:00,41.4,INT-001756 +QTS-00163,PER-0014,response_time,2025-03-06T00:00:00,42.8,INT-001223 +QTS-00164,PER-0014,competitor_mention,2025-03-14T00:00:00,49.3,INT-001408 +QTS-00165,PER-0014,price_sensitivity,2025-05-14T00:00:00,49.9,INT-000640 +QTS-00166,PER-0014,response_time,2025-10-28T00:00:00,73.5,INT-001707 +QTS-00168,PER-0015,competitor_mention,2024-06-14T00:00:00,15.9,INT-000175 +QTS-00169,PER-0015,price_sensitivity,2024-06-22T00:00:00,43.2,INT-000948 +QTS-00170,PER-0015,response_time,2025-03-17T00:00:00,52.3,INT-000707 +QTS-00171,PER-0015,response_time,2025-10-05T00:00:00,77.8,INT-000869 +QTS-00172,PER-0015,price_sensitivity,2026-01-31T00:00:00,92.7,INT-001088 +QTS-00174,PER-0015-CO,competitor_mention,2024-02-11T00:00:00,10,INT-001309 +QTS-00175,PER-0015-CO,response_time,2024-02-19T00:00:00,10,INT-001880 +QTS-00176,PER-0015-CO,interaction_frequency,2024-03-11T00:00:00,26.0,INT-000984 +QTS-00177,PER-0015-CO,competitor_mention,2024-05-21T00:00:00,18.2,INT-001690 +QTS-00178,PER-0015-CO,interaction_frequency,2024-12-01T00:00:00,38.6,INT-001690 +QTS-00179,PER-0015-CO,response_time,2025-03-11T00:00:00,27.4,INT-000341 +QTS-00181,PER-0016,interaction_frequency,2024-02-02T00:00:00,10,INT-001486 +QTS-00182,PER-0016,interaction_frequency,2024-03-02T00:00:00,13.6,INT-000071 +QTS-00183,PER-0016,competitor_mention,2024-03-20T00:00:00,26.7,INT-000164 +QTS-00184,PER-0016,price_sensitivity,2024-04-07T00:00:00,24.6,INT-000240 +QTS-00185,PER-0016,interaction_frequency,2024-05-10T00:00:00,38.0,INT-001046 +QTS-00186,PER-0016,interaction_frequency,2024-10-06T00:00:00,55.9,INT-000171 +QTS-00187,PER-0016,interaction_frequency,2025-03-29T00:00:00,67.6,INT-001715 +QTS-00188,PER-0016,visit_depth,2025-10-16T00:00:00,74.0,INT-000048 +QTS-00189,PER-0016,visit_depth,2026-04-01T00:00:00,78.1,INT-000220 +QTS-00191,PER-0017,visit_depth,2024-04-26T00:00:00,15.3,INT-000123 +QTS-00192,PER-0017,response_time,2024-06-19T00:00:00,29.8,INT-000810 +QTS-00193,PER-0017,interaction_frequency,2025-04-11T00:00:00,29.4,INT-000400 +QTS-00194,PER-0017,competitor_mention,2025-05-30T00:00:00,41.4,INT-000994 +QTS-00195,PER-0017,interaction_frequency,2026-03-07T00:00:00,45.0,INT-000899 +QTS-00197,PER-0017-CO,competitor_mention,2024-02-02T00:00:00,10,INT-001626 +QTS-00198,PER-0017-CO,price_sensitivity,2024-04-05T00:00:00,21.6,INT-000652 +QTS-00199,PER-0017-CO,interaction_frequency,2024-04-20T00:00:00,22.5,INT-000087 +QTS-00200,PER-0017-CO,competitor_mention,2024-04-23T00:00:00,24.6,INT-000466 +QTS-00201,PER-0017-CO,visit_depth,2024-05-05T00:00:00,34.9,INT-001105 +QTS-00202,PER-0017-CO,visit_depth,2024-09-18T00:00:00,39.3,INT-001221 +QTS-00203,PER-0017-CO,response_time,2024-10-09T00:00:00,32.0,INT-000958 +QTS-00204,PER-0017-CO,response_time,2024-11-06T00:00:00,43.2,INT-000855 +QTS-00205,PER-0017-CO,visit_depth,2025-01-13T00:00:00,57.2,INT-001892 +QTS-00206,PER-0017-CO,competitor_mention,2025-01-25T00:00:00,65.4,INT-001265 +QTS-00207,PER-0017-CO,visit_depth,2025-09-06T00:00:00,68.8,INT-000376 +QTS-00209,PER-0018,price_sensitivity,2024-01-14T00:00:00,10,INT-000393 +QTS-00210,PER-0018,price_sensitivity,2024-03-12T00:00:00,22.6,INT-001723 +QTS-00211,PER-0018,interaction_frequency,2024-07-16T00:00:00,16.7,INT-001292 +QTS-00212,PER-0018,visit_depth,2024-12-11T00:00:00,37.1,INT-001081 +QTS-00213,PER-0018,competitor_mention,2025-05-10T00:00:00,44.3,INT-001132 +QTS-00214,PER-0018,competitor_mention,2025-07-17T00:00:00,34.0,INT-000761 +QTS-00215,PER-0018,price_sensitivity,2025-08-14T00:00:00,46.7,INT-000174 +QTS-00216,PER-0018,interaction_frequency,2026-02-15T00:00:00,56.2,INT-000907 +QTS-00217,PER-0018,visit_depth,2026-03-03T00:00:00,70.8,INT-000968 +QTS-00218,PER-0018,price_sensitivity,2026-04-04T00:00:00,69.5,INT-001863 +QTS-00219,PER-0018,price_sensitivity,2026-04-13T00:00:00,70.7,INT-000147 +QTS-00221,PER-0019,competitor_mention,2024-01-22T00:00:00,11.0,INT-000295 +QTS-00222,PER-0019,interaction_frequency,2024-07-30T00:00:00,26.7,INT-000660 +QTS-00223,PER-0019,price_sensitivity,2024-08-27T00:00:00,31.7,INT-001099 +QTS-00224,PER-0019,price_sensitivity,2024-12-23T00:00:00,29.4,INT-001768 +QTS-00225,PER-0019,competitor_mention,2025-04-29T00:00:00,51.8,INT-000787 +QTS-00226,PER-0019,price_sensitivity,2025-12-21T00:00:00,66.3,INT-001239 +QTS-00227,PER-0019,competitor_mention,2026-01-21T00:00:00,58.2,INT-000651 +QTS-00229,PER-0020,price_sensitivity,2024-04-11T00:00:00,10,INT-000358 +QTS-00230,PER-0020,response_time,2024-08-30T00:00:00,10,INT-001223 +QTS-00231,PER-0020,interaction_frequency,2024-09-21T00:00:00,22.0,INT-001199 +QTS-00232,PER-0020,competitor_mention,2024-09-25T00:00:00,28.1,INT-000221 +QTS-00233,PER-0020,response_time,2024-10-14T00:00:00,27.8,INT-001095 +QTS-00234,PER-0020,response_time,2024-11-02T00:00:00,35.9,INT-000387 +QTS-00235,PER-0020,competitor_mention,2024-11-09T00:00:00,28.5,INT-001321 +QTS-00236,PER-0020,interaction_frequency,2025-02-24T00:00:00,33.7,INT-000654 +QTS-00237,PER-0020,response_time,2025-08-27T00:00:00,50.7,INT-001176 +QTS-00238,PER-0020,competitor_mention,2025-09-08T00:00:00,51.9,INT-000327 +QTS-00239,PER-0020,price_sensitivity,2026-02-02T00:00:00,51.0,INT-001389 +QTS-00240,PER-0020,response_time,2026-02-20T00:00:00,55.6,INT-000757 +QTS-00242,PER-0021,price_sensitivity,2024-04-16T00:00:00,23.1,INT-001028 +QTS-00243,PER-0021,competitor_mention,2024-04-29T00:00:00,38.1,INT-000966 +QTS-00244,PER-0021,price_sensitivity,2024-07-28T00:00:00,62.0,INT-001364 +QTS-00245,PER-0021,competitor_mention,2024-09-05T00:00:00,82.6,INT-000340 +QTS-00246,PER-0021,response_time,2026-03-13T00:00:00,98,INT-000120 +QTS-00248,PER-0022,price_sensitivity,2024-02-23T00:00:00,22.0,INT-000383 +QTS-00249,PER-0022,interaction_frequency,2025-09-12T00:00:00,41.0,INT-001200 +QTS-00250,PER-0022,visit_depth,2026-03-21T00:00:00,67.4,INT-000837 +QTS-00251,PER-0022,price_sensitivity,2026-04-15T00:00:00,80.7,INT-000008 +QTS-00253,PER-0022-CO,response_time,2024-07-05T00:00:00,16.9,INT-001765 +QTS-00254,PER-0022-CO,competitor_mention,2025-01-07T00:00:00,24.3,INT-000933 +QTS-00255,PER-0022-CO,competitor_mention,2026-04-03T00:00:00,30.2,INT-000540 +QTS-00256,PER-0022-CO,interaction_frequency,2026-04-14T00:00:00,38.9,INT-000539 +QTS-00258,PER-0023,response_time,2024-04-16T00:00:00,10,INT-000066 +QTS-00259,PER-0023,interaction_frequency,2024-05-19T00:00:00,21.0,INT-000674 +QTS-00260,PER-0023,response_time,2024-07-14T00:00:00,37.4,INT-001557 +QTS-00261,PER-0023,competitor_mention,2025-04-03T00:00:00,30.3,INT-000329 +QTS-00262,PER-0023,competitor_mention,2025-05-22T00:00:00,45.6,INT-000876 +QTS-00263,PER-0023,interaction_frequency,2025-05-25T00:00:00,54.4,INT-000530 +QTS-00264,PER-0023,visit_depth,2025-08-06T00:00:00,69.2,INT-000094 +QTS-00265,PER-0023,interaction_frequency,2025-10-10T00:00:00,71.8,INT-000509 +QTS-00266,PER-0023,visit_depth,2025-11-26T00:00:00,93.8,INT-001453 +QTS-00267,PER-0023,price_sensitivity,2026-03-06T00:00:00,93.4,INT-000247 +QTS-00269,PER-0023-CO,response_time,2024-01-11T00:00:00,16.4,INT-000894 +QTS-00270,PER-0023-CO,interaction_frequency,2024-02-01T00:00:00,17.9,INT-000168 +QTS-00271,PER-0023-CO,response_time,2024-08-14T00:00:00,18.5,INT-001470 +QTS-00272,PER-0023-CO,interaction_frequency,2024-09-19T00:00:00,43.8,INT-001865 +QTS-00273,PER-0023-CO,response_time,2025-05-10T00:00:00,39.2,INT-000829 +QTS-00274,PER-0023-CO,response_time,2025-06-11T00:00:00,60.1,INT-000099 +QTS-00275,PER-0023-CO,price_sensitivity,2025-07-22T00:00:00,59.6,INT-001404 +QTS-00276,PER-0023-CO,visit_depth,2025-12-25T00:00:00,67.9,INT-001459 +QTS-00277,PER-0023-CO,visit_depth,2026-01-24T00:00:00,83.2,INT-001392 +QTS-00279,PER-0024,price_sensitivity,2024-01-28T00:00:00,23.8,INT-000702 +QTS-00280,PER-0024,competitor_mention,2025-03-22T00:00:00,57.8,INT-000919 +QTS-00281,PER-0024,competitor_mention,2025-09-01T00:00:00,79.6,INT-000535 +QTS-00282,PER-0024,response_time,2026-04-06T00:00:00,98,INT-001745 +QTS-00284,PER-0025,response_time,2024-01-09T00:00:00,17.8,INT-000161 +QTS-00285,PER-0025,visit_depth,2024-03-21T00:00:00,45.9,INT-001733 +QTS-00286,PER-0025,competitor_mention,2025-07-25T00:00:00,53.1,INT-000121 +QTS-00287,PER-0025,response_time,2025-10-10T00:00:00,73.7,INT-001419 +QTS-00288,PER-0025,price_sensitivity,2026-04-05T00:00:00,95.3,INT-001473 +QTS-00290,PER-0025-CO,interaction_frequency,2024-01-23T00:00:00,10,INT-000271 +QTS-00291,PER-0025-CO,visit_depth,2024-03-10T00:00:00,19.3,INT-001411 +QTS-00292,PER-0025-CO,price_sensitivity,2025-01-21T00:00:00,10,INT-000705 +QTS-00293,PER-0025-CO,competitor_mention,2025-03-07T00:00:00,21.4,INT-000401 +QTS-00294,PER-0025-CO,price_sensitivity,2025-04-21T00:00:00,28.0,INT-001097 +QTS-00295,PER-0025-CO,price_sensitivity,2025-10-27T00:00:00,24.1,INT-000545 +QTS-00296,PER-0025-CO,competitor_mention,2026-04-02T00:00:00,45.1,INT-000404 +QTS-00298,PER-0026,price_sensitivity,2024-02-27T00:00:00,10,INT-000774 +QTS-00299,PER-0026,response_time,2024-03-27T00:00:00,16.0,INT-000642 +QTS-00300,PER-0026,interaction_frequency,2024-04-20T00:00:00,17.0,INT-001726 +QTS-00301,PER-0026,competitor_mention,2024-11-16T00:00:00,16.8,INT-000141 +QTS-00302,PER-0026,competitor_mention,2024-12-08T00:00:00,29.5,INT-000414 +QTS-00303,PER-0026,interaction_frequency,2025-04-08T00:00:00,27.6,INT-000958 +QTS-00304,PER-0026,response_time,2025-04-12T00:00:00,49.4,INT-001134 +QTS-00305,PER-0026,price_sensitivity,2025-06-07T00:00:00,50.6,INT-000674 +QTS-00306,PER-0026,response_time,2025-06-18T00:00:00,59.4,INT-000912 +QTS-00307,PER-0026,interaction_frequency,2025-08-30T00:00:00,47.4,INT-000271 +QTS-00308,PER-0026,competitor_mention,2025-08-31T00:00:00,72.4,INT-001199 +QTS-00309,PER-0026,competitor_mention,2025-12-05T00:00:00,62.4,INT-000941 +QTS-00311,PER-0027,price_sensitivity,2024-04-02T00:00:00,12.7,INT-000090 +QTS-00312,PER-0027,interaction_frequency,2024-08-12T00:00:00,11.5,INT-000046 +QTS-00313,PER-0027,competitor_mention,2024-11-13T00:00:00,33.7,INT-001890 +QTS-00314,PER-0027,visit_depth,2025-04-30T00:00:00,37.8,INT-000745 +QTS-00315,PER-0027,interaction_frequency,2025-05-21T00:00:00,42.9,INT-001872 +QTS-00316,PER-0027,price_sensitivity,2025-07-01T00:00:00,55.1,INT-000218 +QTS-00317,PER-0027,response_time,2025-09-17T00:00:00,69.5,INT-001582 +QTS-00318,PER-0027,response_time,2025-11-26T00:00:00,76.2,INT-000370 +QTS-00319,PER-0027,interaction_frequency,2026-03-09T00:00:00,95.5,INT-001417 +QTS-00320,PER-0027,competitor_mention,2026-04-15T00:00:00,88.2,INT-000533 +QTS-00322,PER-0028,competitor_mention,2024-07-07T00:00:00,25.2,INT-000172 +QTS-00323,PER-0028,response_time,2024-10-17T00:00:00,40.1,INT-001691 +QTS-00324,PER-0028,competitor_mention,2025-10-13T00:00:00,54.7,INT-000925 +QTS-00325,PER-0028,visit_depth,2026-01-01T00:00:00,68.4,INT-000744 +QTS-00327,PER-0028-CO,visit_depth,2024-11-02T00:00:00,11.6,INT-000154 +QTS-00328,PER-0028-CO,price_sensitivity,2025-03-18T00:00:00,14.0,INT-001698 +QTS-00329,PER-0028-CO,response_time,2025-04-01T00:00:00,33.8,INT-000249 +QTS-00330,PER-0028-CO,interaction_frequency,2025-07-19T00:00:00,38.8,INT-001425 +QTS-00331,PER-0028-CO,interaction_frequency,2025-09-14T00:00:00,53.6,INT-000507 +QTS-00332,PER-0028-CO,price_sensitivity,2026-01-16T00:00:00,54.5,INT-001077 +QTS-00334,PER-0029,interaction_frequency,2024-06-29T00:00:00,10,INT-001015 +QTS-00335,PER-0029,interaction_frequency,2025-03-19T00:00:00,38.9,INT-001578 +QTS-00336,PER-0029,interaction_frequency,2025-04-07T00:00:00,57.4,INT-000442 +QTS-00337,PER-0029,interaction_frequency,2025-05-12T00:00:00,74.3,INT-001667 +QTS-00338,PER-0029,response_time,2025-08-13T00:00:00,84.5,INT-000387 +QTS-00339,PER-0029,competitor_mention,2026-01-12T00:00:00,96.1,INT-001539 +QTS-00341,PER-0029-CO,interaction_frequency,2024-06-22T00:00:00,10,INT-001173 +QTS-00342,PER-0029-CO,visit_depth,2024-07-11T00:00:00,22.2,INT-000556 +QTS-00343,PER-0029-CO,price_sensitivity,2024-07-29T00:00:00,22.4,INT-001107 +QTS-00344,PER-0029-CO,response_time,2024-10-12T00:00:00,23.1,INT-000936 +QTS-00345,PER-0029-CO,interaction_frequency,2024-10-23T00:00:00,38.8,INT-000534 +QTS-00346,PER-0029-CO,response_time,2024-10-30T00:00:00,33.5,INT-001843 +QTS-00347,PER-0029-CO,price_sensitivity,2025-03-12T00:00:00,50.0,INT-001024 +QTS-00348,PER-0029-CO,interaction_frequency,2025-05-02T00:00:00,48.3,INT-000789 +QTS-00349,PER-0029-CO,competitor_mention,2025-05-07T00:00:00,72.8,INT-001725 +QTS-00350,PER-0029-CO,visit_depth,2025-05-17T00:00:00,76.8,INT-000635 +QTS-00351,PER-0029-CO,competitor_mention,2025-07-27T00:00:00,70.9,INT-000386 +QTS-00353,PER-0030,visit_depth,2024-01-12T00:00:00,28.1,INT-000660 +QTS-00354,PER-0030,visit_depth,2024-06-20T00:00:00,57.8,INT-000962 +QTS-00355,PER-0030,response_time,2024-11-13T00:00:00,82.5,INT-000102 +QTS-00356,PER-0030,response_time,2025-08-21T00:00:00,88.7,INT-000181 +QTS-00358,PER-0030-CO,visit_depth,2024-05-24T00:00:00,10,INT-000406 +QTS-00359,PER-0030-CO,competitor_mention,2024-07-04T00:00:00,10,INT-001163 +QTS-00360,PER-0030-CO,response_time,2024-09-08T00:00:00,14.1,INT-001183 +QTS-00361,PER-0030-CO,price_sensitivity,2024-10-03T00:00:00,10,INT-001437 +QTS-00362,PER-0030-CO,competitor_mention,2025-02-05T00:00:00,30.9,INT-001175 +QTS-00363,PER-0030-CO,competitor_mention,2025-03-24T00:00:00,16.6,INT-001085 +QTS-00364,PER-0030-CO,interaction_frequency,2025-04-30T00:00:00,25.8,INT-001196 +QTS-00365,PER-0030-CO,visit_depth,2025-09-06T00:00:00,39.3,INT-001051 +QTS-00366,PER-0030-CO,price_sensitivity,2025-09-25T00:00:00,32.0,INT-001692 +QTS-00367,PER-0030-CO,interaction_frequency,2025-10-11T00:00:00,38.5,INT-000137 +QTS-00368,PER-0030-CO,competitor_mention,2025-10-15T00:00:00,54.2,INT-000009 +QTS-00369,PER-0030-CO,visit_depth,2025-12-11T00:00:00,57.9,INT-000822 +QTS-00371,PER-0031,price_sensitivity,2024-03-15T00:00:00,10,INT-000503 +QTS-00372,PER-0031,interaction_frequency,2024-09-01T00:00:00,18.8,INT-001403 +QTS-00373,PER-0031,interaction_frequency,2024-09-28T00:00:00,27.0,INT-001152 +QTS-00374,PER-0031,competitor_mention,2025-05-17T00:00:00,35.1,INT-000262 +QTS-00375,PER-0031,interaction_frequency,2025-06-07T00:00:00,39.8,INT-000819 +QTS-00376,PER-0031,interaction_frequency,2025-07-06T00:00:00,51.4,INT-000704 +QTS-00377,PER-0031,visit_depth,2026-03-23T00:00:00,61.5,INT-001253 +QTS-00379,PER-0032,competitor_mention,2024-01-09T00:00:00,10,INT-001363 +QTS-00380,PER-0032,price_sensitivity,2024-03-03T00:00:00,15.4,INT-001123 +QTS-00381,PER-0032,interaction_frequency,2024-03-14T00:00:00,23.3,INT-000310 +QTS-00382,PER-0032,price_sensitivity,2024-06-23T00:00:00,50.4,INT-000049 +QTS-00383,PER-0032,visit_depth,2024-11-12T00:00:00,43.1,INT-000491 +QTS-00384,PER-0032,competitor_mention,2025-01-05T00:00:00,55.8,INT-001014 +QTS-00385,PER-0032,response_time,2025-01-09T00:00:00,74.2,INT-001356 +QTS-00386,PER-0032,competitor_mention,2025-04-10T00:00:00,83.4,INT-000345 +QTS-00387,PER-0032,response_time,2025-12-16T00:00:00,94.8,INT-001687 +QTS-00389,PER-0032-CO,competitor_mention,2024-02-16T00:00:00,10,INT-001848 +QTS-00390,PER-0032-CO,visit_depth,2024-02-26T00:00:00,11.7,INT-000435 +QTS-00391,PER-0032-CO,response_time,2024-05-26T00:00:00,10,INT-001353 +QTS-00392,PER-0032-CO,interaction_frequency,2024-08-16T00:00:00,14.1,INT-001489 +QTS-00393,PER-0032-CO,response_time,2024-09-15T00:00:00,20.6,INT-000655 +QTS-00394,PER-0032-CO,response_time,2024-10-11T00:00:00,19.2,INT-001215 +QTS-00395,PER-0032-CO,response_time,2025-05-17T00:00:00,20.8,INT-000586 +QTS-00396,PER-0032-CO,response_time,2025-05-22T00:00:00,35.2,INT-001757 +QTS-00397,PER-0032-CO,price_sensitivity,2025-10-30T00:00:00,25.2,INT-000587 +QTS-00398,PER-0032-CO,response_time,2026-02-10T00:00:00,44.7,INT-001028 +QTS-00399,PER-0032-CO,response_time,2026-03-12T00:00:00,46.9,INT-000450 +QTS-00400,PER-0032-CO,response_time,2026-03-25T00:00:00,39.3,INT-000325 +QTS-00402,PER-0033,visit_depth,2024-05-19T00:00:00,10,INT-001081 +QTS-00403,PER-0033,visit_depth,2024-06-02T00:00:00,26.9,INT-001376 +QTS-00404,PER-0033,price_sensitivity,2024-12-04T00:00:00,57.1,INT-000449 +QTS-00405,PER-0033,competitor_mention,2025-01-19T00:00:00,55.8,INT-001643 +QTS-00406,PER-0033,interaction_frequency,2025-04-01T00:00:00,89.2,INT-001497 +QTS-00407,PER-0033,interaction_frequency,2025-11-05T00:00:00,98,INT-001472 +QTS-00409,PER-0034,visit_depth,2024-04-22T00:00:00,11.7,INT-000330 +QTS-00410,PER-0034,competitor_mention,2024-06-23T00:00:00,12.0,INT-000467 +QTS-00411,PER-0034,competitor_mention,2024-08-19T00:00:00,21.8,INT-000452 +QTS-00412,PER-0034,visit_depth,2024-12-30T00:00:00,40.2,INT-001266 +QTS-00413,PER-0034,interaction_frequency,2025-03-23T00:00:00,49.0,INT-001683 +QTS-00414,PER-0034,response_time,2025-09-05T00:00:00,63.5,INT-001252 +QTS-00415,PER-0034,price_sensitivity,2026-04-10T00:00:00,61.9,INT-000899 +QTS-00416,PER-0034,interaction_frequency,2026-04-11T00:00:00,77.6,INT-000565 +QTS-00418,PER-0034-CO,price_sensitivity,2024-05-24T00:00:00,18.6,INT-000301 +QTS-00419,PER-0034-CO,response_time,2024-10-06T00:00:00,19.0,INT-000336 +QTS-00420,PER-0034-CO,response_time,2024-11-09T00:00:00,36.5,INT-001641 +QTS-00421,PER-0034-CO,response_time,2025-04-19T00:00:00,35.9,INT-000416 +QTS-00422,PER-0034-CO,visit_depth,2025-09-06T00:00:00,50.7,INT-000762 +QTS-00423,PER-0034-CO,price_sensitivity,2025-10-23T00:00:00,71.0,INT-001307 +QTS-00424,PER-0034-CO,response_time,2026-01-20T00:00:00,74.1,INT-001009 +QTS-00425,PER-0034-CO,interaction_frequency,2026-03-14T00:00:00,82.5,INT-000475 +QTS-00427,PER-0035,price_sensitivity,2024-04-26T00:00:00,13.2,INT-001865 +QTS-00428,PER-0035,price_sensitivity,2024-05-28T00:00:00,18.8,INT-000072 +QTS-00429,PER-0035,interaction_frequency,2024-08-08T00:00:00,29.8,INT-001682 +QTS-00430,PER-0035,interaction_frequency,2024-09-15T00:00:00,50.9,INT-000741 +QTS-00431,PER-0035,interaction_frequency,2024-12-20T00:00:00,56.9,INT-001336 +QTS-00432,PER-0035,response_time,2025-01-25T00:00:00,66.1,INT-001617 +QTS-00433,PER-0035,response_time,2025-03-06T00:00:00,84.3,INT-000750 +QTS-00434,PER-0035,visit_depth,2025-12-12T00:00:00,85.0,INT-000690 +QTS-00435,PER-0035,response_time,2026-01-30T00:00:00,88.3,INT-000687 +QTS-00437,PER-0035-CO,response_time,2024-01-25T00:00:00,17.7,INT-000271 +QTS-00438,PER-0035-CO,price_sensitivity,2024-03-20T00:00:00,10,INT-000468 +QTS-00439,PER-0035-CO,competitor_mention,2024-03-26T00:00:00,36.2,INT-000359 +QTS-00440,PER-0035-CO,price_sensitivity,2024-05-22T00:00:00,43.0,INT-001587 +QTS-00441,PER-0035-CO,price_sensitivity,2024-07-16T00:00:00,54.3,INT-001104 +QTS-00442,PER-0035-CO,competitor_mention,2024-08-26T00:00:00,51.8,INT-001425 +QTS-00443,PER-0035-CO,price_sensitivity,2025-03-27T00:00:00,67.8,INT-000863 +QTS-00444,PER-0035-CO,price_sensitivity,2025-11-08T00:00:00,66.5,INT-000034 +QTS-00446,PER-0036,interaction_frequency,2024-04-10T00:00:00,13.8,INT-000177 +QTS-00447,PER-0036,response_time,2024-06-22T00:00:00,25.7,INT-001267 +QTS-00448,PER-0036,visit_depth,2024-11-16T00:00:00,33.2,INT-001192 +QTS-00449,PER-0036,competitor_mention,2024-12-05T00:00:00,35.7,INT-001763 +QTS-00450,PER-0036,interaction_frequency,2025-03-15T00:00:00,34.6,INT-001671 +QTS-00451,PER-0036,response_time,2025-04-08T00:00:00,50.4,INT-000908 +QTS-00452,PER-0036,response_time,2025-07-28T00:00:00,54.5,INT-001266 +QTS-00453,PER-0036,competitor_mention,2025-08-05T00:00:00,69.7,INT-000594 +QTS-00454,PER-0036,price_sensitivity,2025-08-10T00:00:00,80.5,INT-000392 +QTS-00455,PER-0036,response_time,2025-08-12T00:00:00,89.1,INT-000114 +QTS-00456,PER-0036,interaction_frequency,2025-10-01T00:00:00,93.8,INT-001729 +QTS-00457,PER-0036,interaction_frequency,2026-02-18T00:00:00,92.9,INT-001736 +QTS-00459,PER-0037,interaction_frequency,2024-03-13T00:00:00,10,INT-000695 +QTS-00460,PER-0037,price_sensitivity,2024-04-10T00:00:00,11.5,INT-000601 +QTS-00461,PER-0037,visit_depth,2024-11-12T00:00:00,36.0,INT-001894 +QTS-00462,PER-0037,visit_depth,2025-01-21T00:00:00,37.5,INT-001240 +QTS-00463,PER-0037,response_time,2025-01-24T00:00:00,56.5,INT-001274 +QTS-00464,PER-0037,visit_depth,2025-07-25T00:00:00,57.1,INT-001219 +QTS-00465,PER-0037,response_time,2025-09-15T00:00:00,68.0,INT-000886 +QTS-00466,PER-0037,interaction_frequency,2025-11-08T00:00:00,80.1,INT-001080 +QTS-00467,PER-0037,visit_depth,2025-11-29T00:00:00,78.5,INT-000933 +QTS-00468,PER-0037,response_time,2026-02-21T00:00:00,88.1,INT-000329 +QTS-00470,PER-0037-CO,interaction_frequency,2024-03-23T00:00:00,12.0,INT-000748 +QTS-00471,PER-0037-CO,competitor_mention,2024-04-30T00:00:00,10,INT-001084 +QTS-00472,PER-0037-CO,competitor_mention,2024-07-13T00:00:00,16.1,INT-000454 +QTS-00473,PER-0037-CO,response_time,2024-07-25T00:00:00,10,INT-001277 +QTS-00474,PER-0037-CO,visit_depth,2024-09-08T00:00:00,26.1,INT-001789 +QTS-00475,PER-0037-CO,visit_depth,2024-09-30T00:00:00,34.0,INT-000331 +QTS-00476,PER-0037-CO,response_time,2024-11-09T00:00:00,30.9,INT-000488 +QTS-00477,PER-0037-CO,interaction_frequency,2025-04-15T00:00:00,40.0,INT-000884 +QTS-00478,PER-0037-CO,interaction_frequency,2025-07-30T00:00:00,30.3,INT-000043 +QTS-00479,PER-0037-CO,competitor_mention,2025-09-26T00:00:00,47.4,INT-001857 +QTS-00480,PER-0037-CO,competitor_mention,2025-11-06T00:00:00,48.3,INT-001278 +QTS-00481,PER-0037-CO,response_time,2025-12-11T00:00:00,55.5,INT-001460 +QTS-00483,PER-0038,price_sensitivity,2024-04-09T00:00:00,13.2,INT-000097 +QTS-00484,PER-0038,competitor_mention,2024-04-11T00:00:00,53.1,INT-001004 +QTS-00485,PER-0038,visit_depth,2025-01-05T00:00:00,75.3,INT-001154 +QTS-00486,PER-0038,interaction_frequency,2026-02-14T00:00:00,91.9,INT-000577 +QTS-00488,PER-0039,competitor_mention,2024-02-03T00:00:00,10,INT-001490 +QTS-00489,PER-0039,visit_depth,2024-02-21T00:00:00,23.5,INT-000286 +QTS-00490,PER-0039,response_time,2024-04-15T00:00:00,17.1,INT-000786 +QTS-00491,PER-0039,response_time,2024-09-03T00:00:00,29.1,INT-000337 +QTS-00492,PER-0039,visit_depth,2024-11-13T00:00:00,40.2,INT-001821 +QTS-00493,PER-0039,response_time,2024-12-08T00:00:00,56.1,INT-001319 +QTS-00494,PER-0039,interaction_frequency,2025-02-19T00:00:00,60.6,INT-000987 +QTS-00495,PER-0039,response_time,2025-03-12T00:00:00,74.0,INT-000402 +QTS-00496,PER-0039,response_time,2025-09-09T00:00:00,67.9,INT-001593 +QTS-00497,PER-0039,visit_depth,2025-11-17T00:00:00,80.6,INT-000081 +QTS-00498,PER-0039,visit_depth,2025-11-20T00:00:00,91.2,INT-001859 +QTS-00500,PER-0040,price_sensitivity,2024-01-10T00:00:00,18.3,INT-001527 +QTS-00501,PER-0040,price_sensitivity,2024-03-16T00:00:00,33.7,INT-000458 +QTS-00502,PER-0040,price_sensitivity,2024-03-24T00:00:00,46.7,INT-000410 +QTS-00503,PER-0040,response_time,2025-02-11T00:00:00,55.3,INT-001722 +QTS-00504,PER-0040,visit_depth,2025-03-01T00:00:00,77.7,INT-000986 +QTS-00505,PER-0040,visit_depth,2025-03-22T00:00:00,81.4,INT-001087 +QTS-00506,PER-0040,response_time,2026-03-28T00:00:00,92.8,INT-001229 +QTS-00508,PER-0040-CO,response_time,2024-01-07T00:00:00,10,INT-000476 +QTS-00509,PER-0040-CO,visit_depth,2024-04-14T00:00:00,10,INT-001085 +QTS-00510,PER-0040-CO,response_time,2024-05-09T00:00:00,10,INT-000561 +QTS-00511,PER-0040-CO,response_time,2024-05-27T00:00:00,21.8,INT-001345 +QTS-00512,PER-0040-CO,visit_depth,2024-11-25T00:00:00,10,INT-001861 +QTS-00513,PER-0040-CO,response_time,2025-03-28T00:00:00,23.5,INT-000856 +QTS-00514,PER-0040-CO,interaction_frequency,2025-06-16T00:00:00,17.4,INT-000250 +QTS-00515,PER-0040-CO,visit_depth,2025-07-12T00:00:00,19.5,INT-001639 +QTS-00516,PER-0040-CO,interaction_frequency,2025-07-22T00:00:00,20.2,INT-000744 +QTS-00517,PER-0040-CO,price_sensitivity,2025-07-24T00:00:00,28.1,INT-001606 +QTS-00518,PER-0040-CO,price_sensitivity,2025-08-05T00:00:00,30.2,INT-000926 +QTS-00519,PER-0040-CO,price_sensitivity,2025-09-21T00:00:00,35.0,INT-000222 +QTS-00521,PER-0041,competitor_mention,2024-01-29T00:00:00,23.9,INT-001706 +QTS-00522,PER-0041,competitor_mention,2024-05-07T00:00:00,28.2,INT-001810 +QTS-00523,PER-0041,competitor_mention,2024-06-25T00:00:00,36.0,INT-000055 +QTS-00524,PER-0041,interaction_frequency,2024-08-28T00:00:00,51.0,INT-000892 +QTS-00525,PER-0041,visit_depth,2024-11-05T00:00:00,72.1,INT-000799 +QTS-00526,PER-0041,competitor_mention,2024-11-14T00:00:00,82.6,INT-000022 +QTS-00527,PER-0041,response_time,2025-07-08T00:00:00,98,INT-001692 +QTS-00529,PER-0042,competitor_mention,2024-04-27T00:00:00,12.6,INT-000668 +QTS-00530,PER-0042,competitor_mention,2024-05-30T00:00:00,23.5,INT-000935 +QTS-00531,PER-0042,visit_depth,2024-10-14T00:00:00,24.3,INT-001608 +QTS-00532,PER-0042,response_time,2025-03-10T00:00:00,34.2,INT-001884 +QTS-00533,PER-0042,competitor_mention,2025-03-13T00:00:00,43.2,INT-001388 +QTS-00534,PER-0042,interaction_frequency,2025-05-18T00:00:00,61.3,INT-000375 +QTS-00535,PER-0042,response_time,2025-11-10T00:00:00,63.4,INT-000969 +QTS-00536,PER-0042,price_sensitivity,2025-12-18T00:00:00,78.1,INT-001431 +QTS-00537,PER-0042,competitor_mention,2025-12-31T00:00:00,76.1,INT-001542 +QTS-00538,PER-0042,competitor_mention,2026-03-27T00:00:00,84.6,INT-000376 +QTS-00539,PER-0042,visit_depth,2026-03-31T00:00:00,94.6,INT-001646 +QTS-00541,PER-0043,response_time,2024-02-11T00:00:00,13.9,INT-000742 +QTS-00542,PER-0043,response_time,2024-02-18T00:00:00,40.9,INT-001495 +QTS-00543,PER-0043,competitor_mention,2024-04-21T00:00:00,53.4,INT-000159 +QTS-00544,PER-0043,response_time,2024-07-15T00:00:00,59.5,INT-001384 +QTS-00545,PER-0043,interaction_frequency,2025-05-17T00:00:00,76.3,INT-000590 +QTS-00546,PER-0043,visit_depth,2025-11-09T00:00:00,95.6,INT-000466 +QTS-00548,PER-0043-CO,interaction_frequency,2024-05-17T00:00:00,10,INT-001653 +QTS-00549,PER-0043-CO,response_time,2025-01-22T00:00:00,25.3,INT-001478 +QTS-00550,PER-0043-CO,response_time,2025-04-10T00:00:00,32.4,INT-000079 +QTS-00551,PER-0043-CO,response_time,2025-05-01T00:00:00,32.0,INT-000100 +QTS-00552,PER-0043-CO,price_sensitivity,2025-05-21T00:00:00,54.2,INT-000950 +QTS-00553,PER-0043-CO,interaction_frequency,2025-07-17T00:00:00,56.3,INT-001480 +QTS-00554,PER-0043-CO,interaction_frequency,2025-08-09T00:00:00,54.7,INT-000267 +QTS-00555,PER-0043-CO,visit_depth,2026-03-25T00:00:00,81.6,INT-001806 +QTS-00556,PER-0043-CO,response_time,2026-04-09T00:00:00,76.4,INT-001030 +QTS-00558,PER-0044,price_sensitivity,2024-01-11T00:00:00,10,INT-000410 +QTS-00559,PER-0044,competitor_mention,2024-05-05T00:00:00,13.2,INT-000751 +QTS-00560,PER-0044,competitor_mention,2024-06-14T00:00:00,28.4,INT-000111 +QTS-00561,PER-0044,price_sensitivity,2024-12-12T00:00:00,42.2,INT-001828 +QTS-00562,PER-0044,visit_depth,2025-01-14T00:00:00,59.1,INT-001446 +QTS-00563,PER-0044,response_time,2025-03-15T00:00:00,74.7,INT-001304 +QTS-00564,PER-0044,interaction_frequency,2025-05-12T00:00:00,78.5,INT-001363 +QTS-00565,PER-0044,price_sensitivity,2025-07-24T00:00:00,94.5,INT-000661 +QTS-00566,PER-0044,visit_depth,2026-03-31T00:00:00,89.3,INT-000175 +QTS-00568,PER-0045,interaction_frequency,2024-02-08T00:00:00,13.6,INT-000745 +QTS-00569,PER-0045,competitor_mention,2024-03-07T00:00:00,10,INT-000922 +QTS-00570,PER-0045,competitor_mention,2024-06-17T00:00:00,22.5,INT-001010 +QTS-00571,PER-0045,interaction_frequency,2024-10-06T00:00:00,37.5,INT-000013 +QTS-00572,PER-0045,visit_depth,2025-05-09T00:00:00,40.8,INT-000556 +QTS-00573,PER-0045,interaction_frequency,2025-10-27T00:00:00,55.6,INT-000834 +QTS-00574,PER-0045,response_time,2026-03-14T00:00:00,58.0,INT-001651 +QTS-00576,PER-0046,interaction_frequency,2024-07-17T00:00:00,10.6,INT-000805 +QTS-00577,PER-0046,response_time,2024-07-17T00:00:00,25.8,INT-001011 +QTS-00578,PER-0046,interaction_frequency,2024-10-31T00:00:00,58.5,INT-000266 +QTS-00579,PER-0046,interaction_frequency,2024-11-27T00:00:00,68.1,INT-001291 +QTS-00580,PER-0046,price_sensitivity,2025-10-22T00:00:00,81.6,INT-000505 +QTS-00581,PER-0046,price_sensitivity,2025-10-30T00:00:00,97.4,INT-000859 +QTS-00583,PER-0047,visit_depth,2024-01-15T00:00:00,10,INT-001212 +QTS-00584,PER-0047,interaction_frequency,2024-01-17T00:00:00,23.0,INT-001196 +QTS-00585,PER-0047,competitor_mention,2024-01-23T00:00:00,28.3,INT-000386 +QTS-00586,PER-0047,visit_depth,2024-10-02T00:00:00,45.2,INT-001256 +QTS-00587,PER-0047,interaction_frequency,2025-01-28T00:00:00,48.7,INT-001338 +QTS-00588,PER-0047,interaction_frequency,2025-03-17T00:00:00,56.5,INT-000746 +QTS-00589,PER-0047,response_time,2025-03-21T00:00:00,64.7,INT-001619 +QTS-00590,PER-0047,competitor_mention,2025-04-04T00:00:00,72.5,INT-001432 +QTS-00591,PER-0047,response_time,2025-09-12T00:00:00,81.4,INT-000854 +QTS-00592,PER-0047,response_time,2025-10-21T00:00:00,92.2,INT-000665 +QTS-00593,PER-0047,visit_depth,2026-01-01T00:00:00,94.7,INT-000913 +QTS-00595,PER-0048,response_time,2024-01-26T00:00:00,10,INT-000545 +QTS-00596,PER-0048,interaction_frequency,2024-02-09T00:00:00,12.0,INT-001454 +QTS-00597,PER-0048,interaction_frequency,2024-02-14T00:00:00,37.8,INT-001866 +QTS-00598,PER-0048,response_time,2025-01-28T00:00:00,41.9,INT-000253 +QTS-00599,PER-0048,response_time,2025-03-20T00:00:00,49.4,INT-000509 +QTS-00600,PER-0048,visit_depth,2025-06-17T00:00:00,62.9,INT-000662 +QTS-00601,PER-0048,response_time,2025-09-19T00:00:00,82.1,INT-001094 +QTS-00602,PER-0048,response_time,2025-10-10T00:00:00,77.7,INT-000387 +QTS-00603,PER-0048,price_sensitivity,2025-10-10T00:00:00,91.6,INT-000528 +QTS-00605,PER-0049,visit_depth,2024-04-08T00:00:00,12.3,INT-001254 +QTS-00606,PER-0049,price_sensitivity,2024-06-10T00:00:00,14.7,INT-000956 +QTS-00607,PER-0049,interaction_frequency,2024-12-02T00:00:00,29.9,INT-001291 +QTS-00608,PER-0049,competitor_mention,2025-02-23T00:00:00,44.9,INT-000517 +QTS-00609,PER-0049,price_sensitivity,2025-03-01T00:00:00,57.8,INT-001340 +QTS-00610,PER-0049,competitor_mention,2025-05-31T00:00:00,71.6,INT-001415 +QTS-00611,PER-0049,interaction_frequency,2025-10-12T00:00:00,69.6,INT-001371 +QTS-00612,PER-0049,competitor_mention,2026-03-20T00:00:00,94.9,INT-000204 +QTS-00614,PER-0050,price_sensitivity,2024-02-22T00:00:00,14.5,INT-000716 +QTS-00615,PER-0050,visit_depth,2024-03-09T00:00:00,11.5,INT-000068 +QTS-00616,PER-0050,interaction_frequency,2024-05-31T00:00:00,23.5,INT-001588 +QTS-00617,PER-0050,interaction_frequency,2024-06-18T00:00:00,22.0,INT-000374 +QTS-00618,PER-0050,competitor_mention,2024-09-28T00:00:00,30.0,INT-001526 +QTS-00619,PER-0050,price_sensitivity,2024-11-15T00:00:00,26.8,INT-001881 +QTS-00620,PER-0050,price_sensitivity,2025-03-24T00:00:00,37.9,INT-000622 +QTS-00621,PER-0050,price_sensitivity,2025-05-02T00:00:00,43.0,INT-000015 +QTS-00622,PER-0050,competitor_mention,2025-07-17T00:00:00,44.8,INT-000839 +QTS-00623,PER-0050,interaction_frequency,2025-08-21T00:00:00,49.6,INT-000827 +QTS-00624,PER-0050,interaction_frequency,2025-12-17T00:00:00,47.8,INT-000291 +QTS-00625,PER-0050,price_sensitivity,2026-01-09T00:00:00,51.9,INT-000276 +QTS-00627,PER-0051,visit_depth,2024-01-31T00:00:00,15.5,INT-000367 +QTS-00628,PER-0051,competitor_mention,2024-04-21T00:00:00,28.0,INT-001887 +QTS-00629,PER-0051,visit_depth,2024-05-18T00:00:00,38.6,INT-001023 +QTS-00630,PER-0051,competitor_mention,2024-06-28T00:00:00,34.9,INT-000997 +QTS-00631,PER-0051,interaction_frequency,2025-01-26T00:00:00,49.4,INT-000432 +QTS-00632,PER-0051,competitor_mention,2025-05-28T00:00:00,57.2,INT-000151 +QTS-00633,PER-0051,competitor_mention,2025-10-06T00:00:00,70.7,INT-000045 +QTS-00634,PER-0051,visit_depth,2026-01-12T00:00:00,81.2,INT-001503 +QTS-00635,PER-0051,visit_depth,2026-03-22T00:00:00,85.7,INT-001405 +QTS-00636,PER-0051,interaction_frequency,2026-03-31T00:00:00,98,INT-001677 +QTS-00638,PER-0051-CO,response_time,2024-04-14T00:00:00,10,INT-001250 +QTS-00639,PER-0051-CO,visit_depth,2024-04-18T00:00:00,10,INT-001070 +QTS-00640,PER-0051-CO,competitor_mention,2024-05-07T00:00:00,19.4,INT-000597 +QTS-00641,PER-0051-CO,response_time,2024-09-30T00:00:00,17.2,INT-000801 +QTS-00642,PER-0051-CO,response_time,2025-04-02T00:00:00,35.0,INT-000769 +QTS-00644,PER-0052,response_time,2024-01-29T00:00:00,14.7,INT-000223 +QTS-00645,PER-0052,response_time,2024-03-11T00:00:00,33.6,INT-001115 +QTS-00646,PER-0052,response_time,2024-06-12T00:00:00,45.9,INT-000275 +QTS-00647,PER-0052,competitor_mention,2025-03-10T00:00:00,42.3,INT-000447 +QTS-00648,PER-0052,interaction_frequency,2025-04-22T00:00:00,53.7,INT-000638 +QTS-00649,PER-0052,response_time,2025-06-07T00:00:00,82.2,INT-000163 +QTS-00650,PER-0052,visit_depth,2025-06-08T00:00:00,77.3,INT-000990 +QTS-00651,PER-0052,competitor_mention,2026-01-06T00:00:00,98,INT-001417 +QTS-00653,PER-0053,response_time,2024-01-18T00:00:00,10,INT-001194 +QTS-00654,PER-0053,visit_depth,2024-02-06T00:00:00,10,INT-000501 +QTS-00655,PER-0053,response_time,2024-03-21T00:00:00,20.9,INT-001853 +QTS-00656,PER-0053,visit_depth,2024-06-27T00:00:00,21.2,INT-001724 +QTS-00657,PER-0053,response_time,2024-08-21T00:00:00,29.1,INT-001708 +QTS-00658,PER-0053,competitor_mention,2025-01-22T00:00:00,33.4,INT-000429 +QTS-00659,PER-0053,competitor_mention,2025-06-06T00:00:00,37.4,INT-001886 +QTS-00660,PER-0053,response_time,2025-11-03T00:00:00,42.1,INT-000158 +QTS-00661,PER-0053,visit_depth,2025-11-07T00:00:00,37.2,INT-001172 +QTS-00662,PER-0053,visit_depth,2025-11-09T00:00:00,60.3,INT-001081 +QTS-00663,PER-0053,visit_depth,2025-12-28T00:00:00,56.7,INT-000366 +QTS-00664,PER-0053,interaction_frequency,2026-03-20T00:00:00,61.7,INT-001797 +QTS-00666,PER-0053-CO,response_time,2024-03-03T00:00:00,10,INT-001667 +QTS-00667,PER-0053-CO,interaction_frequency,2024-05-31T00:00:00,10,INT-000236 +QTS-00668,PER-0053-CO,competitor_mention,2024-07-20T00:00:00,10,INT-000042 +QTS-00669,PER-0053-CO,price_sensitivity,2025-03-04T00:00:00,10,INT-001108 +QTS-00670,PER-0053-CO,price_sensitivity,2025-05-12T00:00:00,18.5,INT-000496 +QTS-00671,PER-0053-CO,competitor_mention,2025-07-11T00:00:00,24.4,INT-000215 +QTS-00672,PER-0053-CO,price_sensitivity,2025-07-28T00:00:00,24.0,INT-001809 +QTS-00673,PER-0053-CO,interaction_frequency,2025-09-04T00:00:00,17.6,INT-000932 +QTS-00674,PER-0053-CO,interaction_frequency,2025-10-03T00:00:00,22.6,INT-001032 +QTS-00675,PER-0053-CO,competitor_mention,2025-10-14T00:00:00,34.0,INT-001272 +QTS-00676,PER-0053-CO,price_sensitivity,2026-02-02T00:00:00,37.6,INT-000859 +QTS-00677,PER-0053-CO,visit_depth,2026-03-07T00:00:00,38.5,INT-001317 +QTS-00679,PER-0054,price_sensitivity,2024-01-24T00:00:00,10,INT-000277 +QTS-00680,PER-0054,price_sensitivity,2024-02-21T00:00:00,29.0,INT-000651 +QTS-00681,PER-0054,competitor_mention,2024-03-25T00:00:00,29.2,INT-001752 +QTS-00682,PER-0054,visit_depth,2024-06-02T00:00:00,47.4,INT-000531 +QTS-00683,PER-0054,interaction_frequency,2025-03-21T00:00:00,65.1,INT-001431 +QTS-00684,PER-0054,price_sensitivity,2025-05-19T00:00:00,71.6,INT-000193 +QTS-00685,PER-0054,competitor_mention,2025-11-30T00:00:00,87.3,INT-000834 +QTS-00686,PER-0054,interaction_frequency,2026-03-28T00:00:00,93.9,INT-001810 +QTS-00688,PER-0054-CO,response_time,2024-01-26T00:00:00,10,INT-001854 +QTS-00689,PER-0054-CO,price_sensitivity,2024-02-22T00:00:00,11.7,INT-001633 +QTS-00690,PER-0054-CO,competitor_mention,2024-07-03T00:00:00,22.5,INT-000959 +QTS-00691,PER-0054-CO,interaction_frequency,2024-09-04T00:00:00,18.2,INT-000835 +QTS-00692,PER-0054-CO,interaction_frequency,2024-10-08T00:00:00,31.6,INT-000239 +QTS-00693,PER-0054-CO,price_sensitivity,2024-10-29T00:00:00,30.9,INT-000075 +QTS-00694,PER-0054-CO,interaction_frequency,2025-08-03T00:00:00,40.2,INT-001702 +QTS-00695,PER-0054-CO,competitor_mention,2025-08-13T00:00:00,30.7,INT-000322 +QTS-00696,PER-0054-CO,price_sensitivity,2025-11-23T00:00:00,36.5,INT-000473 +QTS-00698,PER-0055,response_time,2024-06-18T00:00:00,18.4,INT-000544 +QTS-00699,PER-0055,response_time,2024-12-05T00:00:00,25.5,INT-001120 +QTS-00700,PER-0055,visit_depth,2024-12-10T00:00:00,49.6,INT-000148 +QTS-00701,PER-0055,price_sensitivity,2025-05-09T00:00:00,67.6,INT-001390 +QTS-00702,PER-0055,response_time,2025-09-15T00:00:00,93.6,INT-001329 +QTS-00704,PER-0056,interaction_frequency,2024-04-30T00:00:00,10,INT-000063 +QTS-00705,PER-0056,competitor_mention,2024-05-03T00:00:00,14.6,INT-000222 +QTS-00706,PER-0056,competitor_mention,2024-06-09T00:00:00,12.2,INT-001080 +QTS-00707,PER-0056,visit_depth,2024-07-14T00:00:00,18.5,INT-001071 +QTS-00708,PER-0056,price_sensitivity,2024-08-12T00:00:00,39.7,INT-000193 +QTS-00709,PER-0056,interaction_frequency,2024-12-18T00:00:00,31.7,INT-000199 +QTS-00710,PER-0056,visit_depth,2025-09-19T00:00:00,33.6,INT-001861 +QTS-00711,PER-0056,price_sensitivity,2025-12-11T00:00:00,50.2,INT-000953 +QTS-00712,PER-0056,interaction_frequency,2025-12-15T00:00:00,63.4,INT-000117 +QTS-00713,PER-0056,interaction_frequency,2026-03-01T00:00:00,70.1,INT-000341 +QTS-00715,PER-0057,visit_depth,2024-08-19T00:00:00,10,INT-000660 +QTS-00716,PER-0057,visit_depth,2025-01-03T00:00:00,10.2,INT-001765 +QTS-00717,PER-0057,interaction_frequency,2025-01-20T00:00:00,20.6,INT-001270 +QTS-00718,PER-0057,response_time,2025-05-02T00:00:00,28.7,INT-001694 +QTS-00719,PER-0057,interaction_frequency,2025-06-07T00:00:00,31.8,INT-000019 +QTS-00720,PER-0057,price_sensitivity,2025-09-14T00:00:00,39.4,INT-000478 +QTS-00721,PER-0057,price_sensitivity,2025-09-15T00:00:00,51.0,INT-001598 +QTS-00723,PER-0058,price_sensitivity,2024-03-06T00:00:00,10,INT-001014 +QTS-00724,PER-0058,competitor_mention,2024-12-05T00:00:00,46.8,INT-000464 +QTS-00725,PER-0058,price_sensitivity,2025-07-05T00:00:00,53.1,INT-001079 +QTS-00726,PER-0058,interaction_frequency,2025-12-12T00:00:00,72.1,INT-000596 +QTS-00727,PER-0058,visit_depth,2025-12-27T00:00:00,98,INT-000813 +QTS-00729,PER-0058-CO,competitor_mention,2024-02-14T00:00:00,18.0,INT-001444 +QTS-00730,PER-0058-CO,response_time,2024-03-04T00:00:00,16.7,INT-000972 +QTS-00731,PER-0058-CO,interaction_frequency,2024-05-19T00:00:00,23.1,INT-000560 +QTS-00732,PER-0058-CO,interaction_frequency,2025-02-24T00:00:00,36.1,INT-000361 +QTS-00733,PER-0058-CO,visit_depth,2025-03-14T00:00:00,54.5,INT-000270 +QTS-00735,PER-0059,price_sensitivity,2024-01-10T00:00:00,13.3,INT-001678 +QTS-00736,PER-0059,competitor_mention,2024-03-08T00:00:00,33.2,INT-001766 +QTS-00737,PER-0059,competitor_mention,2024-09-14T00:00:00,43.9,INT-001672 +QTS-00738,PER-0059,response_time,2024-10-09T00:00:00,42.4,INT-000739 +QTS-00739,PER-0059,response_time,2024-12-07T00:00:00,56.4,INT-001786 +QTS-00740,PER-0059,response_time,2025-04-07T00:00:00,74.1,INT-000562 +QTS-00741,PER-0059,response_time,2025-11-13T00:00:00,76.3,INT-000386 +QTS-00742,PER-0059,competitor_mention,2026-01-07T00:00:00,88.6,INT-001505 +QTS-00744,PER-0059-CO,response_time,2024-02-07T00:00:00,10,INT-001171 +QTS-00745,PER-0059-CO,visit_depth,2024-04-17T00:00:00,11.5,INT-001358 +QTS-00746,PER-0059-CO,competitor_mention,2024-04-19T00:00:00,15.9,INT-000115 +QTS-00747,PER-0059-CO,competitor_mention,2024-07-18T00:00:00,22.3,INT-000620 +QTS-00748,PER-0059-CO,price_sensitivity,2024-11-16T00:00:00,29.6,INT-001694 +QTS-00749,PER-0059-CO,visit_depth,2025-03-26T00:00:00,46.2,INT-001278 +QTS-00750,PER-0059-CO,interaction_frequency,2025-09-22T00:00:00,57.0,INT-001162 +QTS-00751,PER-0059-CO,competitor_mention,2026-02-03T00:00:00,55.6,INT-000415 +QTS-00753,PER-0060,price_sensitivity,2024-02-01T00:00:00,10,INT-001184 +QTS-00754,PER-0060,response_time,2024-03-06T00:00:00,24.8,INT-001628 +QTS-00755,PER-0060,price_sensitivity,2024-06-30T00:00:00,22.3,INT-001319 +QTS-00756,PER-0060,price_sensitivity,2024-10-30T00:00:00,36.2,INT-000949 +QTS-00757,PER-0060,competitor_mention,2025-04-07T00:00:00,42.1,INT-000967 +QTS-00758,PER-0060,price_sensitivity,2025-09-29T00:00:00,48.1,INT-000904 +QTS-00759,PER-0060,interaction_frequency,2025-11-30T00:00:00,63.5,INT-001424 +QTS-00760,PER-0060,response_time,2025-12-17T00:00:00,78.0,INT-000242 +QTS-00761,PER-0060,price_sensitivity,2025-12-28T00:00:00,87.7,INT-001727 +QTS-00762,PER-0060,interaction_frequency,2026-04-02T00:00:00,88.8,INT-001327 +QTS-00764,PER-0061,price_sensitivity,2025-02-18T00:00:00,19.6,INT-000596 +QTS-00765,PER-0061,price_sensitivity,2025-06-09T00:00:00,42.6,INT-000508 +QTS-00766,PER-0061,price_sensitivity,2025-10-28T00:00:00,69.5,INT-000793 +QTS-00767,PER-0061,visit_depth,2026-01-28T00:00:00,91.8,INT-001051 +QTS-00769,PER-0062,visit_depth,2024-07-03T00:00:00,10,INT-000640 +QTS-00770,PER-0062,interaction_frequency,2024-10-07T00:00:00,31.8,INT-000421 +QTS-00771,PER-0062,competitor_mention,2024-10-22T00:00:00,25.9,INT-000227 +QTS-00772,PER-0062,visit_depth,2024-11-17T00:00:00,51.0,INT-000791 +QTS-00773,PER-0062,price_sensitivity,2025-01-26T00:00:00,46.0,INT-001025 +QTS-00774,PER-0062,response_time,2025-04-26T00:00:00,59.0,INT-001355 +QTS-00775,PER-0062,competitor_mention,2025-07-29T00:00:00,80.7,INT-001456 +QTS-00776,PER-0062,visit_depth,2025-09-18T00:00:00,77.8,INT-000882 +QTS-00777,PER-0062,competitor_mention,2026-01-15T00:00:00,88.1,INT-000600 +QTS-00779,PER-0062-CO,competitor_mention,2024-04-21T00:00:00,12.4,INT-001239 +QTS-00780,PER-0062-CO,price_sensitivity,2025-06-10T00:00:00,25.3,INT-001239 +QTS-00781,PER-0062-CO,competitor_mention,2026-01-02T00:00:00,46.8,INT-001636 +QTS-00782,PER-0062-CO,interaction_frequency,2026-02-15T00:00:00,46.3,INT-000653 +QTS-00784,PER-0063,price_sensitivity,2024-06-15T00:00:00,23.6,INT-001299 +QTS-00785,PER-0063,response_time,2024-11-25T00:00:00,43.9,INT-001552 +QTS-00786,PER-0063,response_time,2025-01-02T00:00:00,57.3,INT-000384 +QTS-00787,PER-0063,interaction_frequency,2025-05-20T00:00:00,69.1,INT-001640 +QTS-00788,PER-0063,price_sensitivity,2026-01-22T00:00:00,98,INT-001723 +QTS-00790,PER-0064,price_sensitivity,2024-04-07T00:00:00,25.1,INT-001154 +QTS-00791,PER-0064,interaction_frequency,2025-06-02T00:00:00,35.1,INT-001638 +QTS-00792,PER-0064,interaction_frequency,2025-10-19T00:00:00,41.1,INT-000435 +QTS-00793,PER-0064,response_time,2025-10-20T00:00:00,55.9,INT-000862 +QTS-00794,PER-0064,competitor_mention,2025-12-29T00:00:00,79.4,INT-001443 +QTS-00795,PER-0064,interaction_frequency,2026-01-24T00:00:00,96.1,INT-001185 +QTS-00797,PER-0065,competitor_mention,2024-04-06T00:00:00,10,INT-000356 +QTS-00798,PER-0065,visit_depth,2024-10-04T00:00:00,28.9,INT-001190 +QTS-00799,PER-0065,interaction_frequency,2025-01-23T00:00:00,45.9,INT-000912 +QTS-00800,PER-0065,response_time,2025-02-14T00:00:00,55.8,INT-001866 +QTS-00801,PER-0065,response_time,2025-05-16T00:00:00,69.0,INT-000926 +QTS-00802,PER-0065,response_time,2026-02-14T00:00:00,83.6,INT-000175 +QTS-00804,PER-0066,interaction_frequency,2024-06-06T00:00:00,23.7,INT-001630 +QTS-00805,PER-0066,response_time,2025-02-16T00:00:00,47.6,INT-001704 +QTS-00806,PER-0066,competitor_mention,2025-09-13T00:00:00,68.6,INT-001272 +QTS-00807,PER-0066,visit_depth,2026-02-11T00:00:00,91.0,INT-000296 +QTS-00809,PER-0067,interaction_frequency,2024-11-03T00:00:00,33.0,INT-000263 +QTS-00810,PER-0067,interaction_frequency,2024-11-27T00:00:00,39.3,INT-000260 +QTS-00811,PER-0067,competitor_mention,2024-12-22T00:00:00,78.2,INT-001673 +QTS-00812,PER-0067,response_time,2025-07-08T00:00:00,97.5,INT-000963 +QTS-00814,PER-0068,price_sensitivity,2024-04-13T00:00:00,17.3,INT-001137 +QTS-00815,PER-0068,response_time,2024-05-08T00:00:00,22.6,INT-001408 +QTS-00816,PER-0068,competitor_mention,2025-01-10T00:00:00,22.2,INT-000479 +QTS-00817,PER-0068,competitor_mention,2025-05-10T00:00:00,27.6,INT-001403 +QTS-00818,PER-0068,competitor_mention,2025-06-22T00:00:00,42.9,INT-001007 +QTS-00819,PER-0068,competitor_mention,2025-09-14T00:00:00,57.8,INT-000439 +QTS-00820,PER-0068,price_sensitivity,2025-10-25T00:00:00,56.7,INT-001856 +QTS-00821,PER-0068,response_time,2025-12-08T00:00:00,73.1,INT-000241 +QTS-00822,PER-0068,interaction_frequency,2025-12-18T00:00:00,71.3,INT-001863 +QTS-00823,PER-0068,price_sensitivity,2026-02-02T00:00:00,87.9,INT-000137 +QTS-00824,PER-0068,competitor_mention,2026-02-16T00:00:00,98,INT-001500 +QTS-00826,PER-0069,price_sensitivity,2024-07-14T00:00:00,17.9,INT-001466 +QTS-00827,PER-0069,price_sensitivity,2024-08-05T00:00:00,19.2,INT-000468 +QTS-00828,PER-0069,response_time,2024-11-18T00:00:00,33.7,INT-000864 +QTS-00829,PER-0069,visit_depth,2024-12-25T00:00:00,38.4,INT-000332 +QTS-00830,PER-0069,price_sensitivity,2025-01-21T00:00:00,40.4,INT-001580 +QTS-00831,PER-0069,response_time,2025-07-27T00:00:00,49.0,INT-000057 +QTS-00832,PER-0069,response_time,2025-08-03T00:00:00,50.1,INT-001680 +QTS-00833,PER-0069,response_time,2025-09-13T00:00:00,60.7,INT-000995 +QTS-00834,PER-0069,visit_depth,2025-11-05T00:00:00,78.5,INT-000491 +QTS-00835,PER-0069,price_sensitivity,2025-12-20T00:00:00,79.0,INT-000149 +QTS-00836,PER-0069,price_sensitivity,2026-03-27T00:00:00,95.6,INT-000291 +QTS-00838,PER-0070,interaction_frequency,2024-01-24T00:00:00,10,INT-001484 +QTS-00839,PER-0070,price_sensitivity,2024-01-29T00:00:00,10,INT-000294 +QTS-00840,PER-0070,visit_depth,2024-03-22T00:00:00,24.6,INT-000241 +QTS-00841,PER-0070,visit_depth,2024-04-30T00:00:00,23.8,INT-001784 +QTS-00842,PER-0070,competitor_mention,2024-08-22T00:00:00,35.4,INT-001213 +QTS-00843,PER-0070,visit_depth,2024-09-13T00:00:00,35.6,INT-001630 +QTS-00844,PER-0070,price_sensitivity,2024-11-18T00:00:00,52.4,INT-001136 +QTS-00845,PER-0070,price_sensitivity,2025-01-28T00:00:00,50.9,INT-001284 +QTS-00846,PER-0070,competitor_mention,2025-02-14T00:00:00,63.7,INT-001706 +QTS-00847,PER-0070,interaction_frequency,2025-03-20T00:00:00,79.2,INT-000418 +QTS-00848,PER-0070,response_time,2025-10-18T00:00:00,84.6,INT-001398 +QTS-00849,PER-0070,price_sensitivity,2025-12-26T00:00:00,94.8,INT-000352 +QTS-00851,PER-0071,price_sensitivity,2024-01-11T00:00:00,15.2,INT-001437 +QTS-00852,PER-0071,visit_depth,2024-06-06T00:00:00,36.4,INT-001757 +QTS-00853,PER-0071,competitor_mention,2024-06-11T00:00:00,33.1,INT-000420 +QTS-00854,PER-0071,visit_depth,2024-07-08T00:00:00,65.0,INT-001219 +QTS-00855,PER-0071,visit_depth,2025-03-05T00:00:00,75.0,INT-001469 +QTS-00856,PER-0071,price_sensitivity,2025-05-08T00:00:00,81.1,INT-001737 +QTS-00857,PER-0071,response_time,2026-01-07T00:00:00,98,INT-000438 +QTS-00859,PER-0071-CO,competitor_mention,2024-01-23T00:00:00,10,INT-000652 +QTS-00860,PER-0071-CO,visit_depth,2024-02-12T00:00:00,17.7,INT-001486 +QTS-00861,PER-0071-CO,competitor_mention,2024-04-18T00:00:00,11.9,INT-001015 +QTS-00862,PER-0071-CO,interaction_frequency,2024-11-08T00:00:00,32.6,INT-000648 +QTS-00863,PER-0071-CO,visit_depth,2024-11-09T00:00:00,40.8,INT-001834 +QTS-00864,PER-0071-CO,visit_depth,2025-01-16T00:00:00,33.2,INT-001008 +QTS-00865,PER-0071-CO,visit_depth,2025-02-26T00:00:00,59.4,INT-000628 +QTS-00866,PER-0071-CO,response_time,2025-04-05T00:00:00,58.6,INT-001773 +QTS-00867,PER-0071-CO,response_time,2025-06-21T00:00:00,69.7,INT-000197 +QTS-00868,PER-0071-CO,interaction_frequency,2026-01-28T00:00:00,67.4,INT-001168 +QTS-00870,PER-0072,interaction_frequency,2024-03-22T00:00:00,10.2,INT-001459 +QTS-00871,PER-0072,price_sensitivity,2024-07-19T00:00:00,25.5,INT-000104 +QTS-00872,PER-0072,response_time,2024-10-24T00:00:00,16.0,INT-001451 +QTS-00873,PER-0072,price_sensitivity,2024-11-27T00:00:00,26.1,INT-001396 +QTS-00874,PER-0072,visit_depth,2025-01-09T00:00:00,51.3,INT-001862 +QTS-00875,PER-0072,price_sensitivity,2025-02-14T00:00:00,54.3,INT-001795 +QTS-00876,PER-0072,response_time,2026-02-01T00:00:00,60.3,INT-000861 +QTS-00877,PER-0072,visit_depth,2026-02-23T00:00:00,64.2,INT-000470 +QTS-00879,PER-0072-CO,price_sensitivity,2024-02-13T00:00:00,16.2,INT-000739 +QTS-00880,PER-0072-CO,competitor_mention,2024-11-05T00:00:00,40.1,INT-000783 +QTS-00881,PER-0072-CO,price_sensitivity,2025-06-19T00:00:00,38.3,INT-001256 +QTS-00882,PER-0072-CO,interaction_frequency,2025-11-24T00:00:00,54.7,INT-001418 +QTS-00883,PER-0072-CO,competitor_mention,2026-01-24T00:00:00,68.6,INT-000456 +QTS-00885,PER-0073,interaction_frequency,2024-06-23T00:00:00,18.2,INT-001390 +QTS-00886,PER-0073,visit_depth,2024-06-26T00:00:00,34.2,INT-000972 +QTS-00887,PER-0073,competitor_mention,2025-04-29T00:00:00,64.9,INT-000793 +QTS-00888,PER-0073,interaction_frequency,2025-06-04T00:00:00,79.7,INT-000466 +QTS-00889,PER-0073,interaction_frequency,2026-01-01T00:00:00,98,INT-000521 +QTS-00891,PER-0074,visit_depth,2025-06-17T00:00:00,10,INT-001300 +QTS-00892,PER-0074,visit_depth,2025-12-31T00:00:00,15.3,INT-000377 +QTS-00893,PER-0074,competitor_mention,2026-01-01T00:00:00,22.8,INT-000447 +QTS-00894,PER-0074,competitor_mention,2026-01-19T00:00:00,39.8,INT-000171 +QTS-00895,PER-0074,interaction_frequency,2026-02-17T00:00:00,43.7,INT-000309 +QTS-00896,PER-0074,competitor_mention,2026-04-02T00:00:00,43.7,INT-001671 +QTS-00898,PER-0075,interaction_frequency,2024-06-17T00:00:00,13.2,INT-000872 +QTS-00899,PER-0075,visit_depth,2025-02-16T00:00:00,40.4,INT-000803 +QTS-00900,PER-0075,interaction_frequency,2025-02-28T00:00:00,57.0,INT-001726 +QTS-00901,PER-0075,competitor_mention,2025-03-10T00:00:00,85.7,INT-000008 +QTS-00902,PER-0075,competitor_mention,2025-12-14T00:00:00,98,INT-001123 +QTS-00904,PER-0076,interaction_frequency,2024-01-30T00:00:00,12.4,INT-001765 +QTS-00905,PER-0076,visit_depth,2024-02-04T00:00:00,36.8,INT-001788 +QTS-00906,PER-0076,response_time,2024-04-02T00:00:00,50.5,INT-000950 +QTS-00907,PER-0076,price_sensitivity,2024-06-07T00:00:00,69.1,INT-001374 +QTS-00908,PER-0076,visit_depth,2025-01-02T00:00:00,82.1,INT-000133 +QTS-00909,PER-0076,visit_depth,2026-03-11T00:00:00,97.1,INT-001879 +QTS-00911,PER-0077,competitor_mention,2024-01-26T00:00:00,28.1,INT-001421 +QTS-00912,PER-0077,price_sensitivity,2025-09-25T00:00:00,45.4,INT-000057 +QTS-00913,PER-0077,interaction_frequency,2025-12-25T00:00:00,70.2,INT-001515 +QTS-00914,PER-0077,visit_depth,2026-04-05T00:00:00,98,INT-001703 +QTS-00916,PER-0078,competitor_mention,2024-03-20T00:00:00,10,INT-000068 +QTS-00917,PER-0078,visit_depth,2024-04-18T00:00:00,10,INT-000753 +QTS-00918,PER-0078,competitor_mention,2024-04-19T00:00:00,18.4,INT-000704 +QTS-00919,PER-0078,competitor_mention,2024-05-10T00:00:00,35.8,INT-001442 +QTS-00920,PER-0078,competitor_mention,2024-06-20T00:00:00,46.0,INT-000916 +QTS-00921,PER-0078,response_time,2024-08-01T00:00:00,42.6,INT-001755 +QTS-00922,PER-0078,price_sensitivity,2024-08-22T00:00:00,52.0,INT-000078 +QTS-00923,PER-0078,visit_depth,2024-09-25T00:00:00,67.9,INT-000841 +QTS-00924,PER-0078,visit_depth,2024-11-06T00:00:00,61.9,INT-000582 +QTS-00925,PER-0078,response_time,2025-02-19T00:00:00,84.0,INT-001801 +QTS-00926,PER-0078,response_time,2025-06-30T00:00:00,90.1,INT-001274 +QTS-00927,PER-0078,competitor_mention,2025-07-25T00:00:00,95.0,INT-000181 +QTS-00929,PER-0079,response_time,2024-11-30T00:00:00,11.8,INT-000783 +QTS-00930,PER-0079,interaction_frequency,2025-08-01T00:00:00,18.1,INT-000018 +QTS-00931,PER-0079,interaction_frequency,2025-10-14T00:00:00,47.4,INT-000417 +QTS-00932,PER-0079,competitor_mention,2026-01-11T00:00:00,52.4,INT-001405 +QTS-00933,PER-0079,response_time,2026-01-15T00:00:00,58.6,INT-000019 +QTS-00934,PER-0079,competitor_mention,2026-02-05T00:00:00,81.1,INT-001895 +QTS-00935,PER-0079,price_sensitivity,2026-03-13T00:00:00,92.1,INT-000075 +QTS-00937,PER-0079-CO,price_sensitivity,2024-05-21T00:00:00,10,INT-000633 +QTS-00938,PER-0079-CO,competitor_mention,2024-07-11T00:00:00,15.1,INT-000129 +QTS-00939,PER-0079-CO,visit_depth,2024-12-04T00:00:00,15.6,INT-000936 +QTS-00940,PER-0079-CO,visit_depth,2025-01-05T00:00:00,14.7,INT-001269 +QTS-00941,PER-0079-CO,interaction_frequency,2025-01-29T00:00:00,24.8,INT-001187 +QTS-00942,PER-0079-CO,competitor_mention,2025-08-12T00:00:00,18.5,INT-001488 +QTS-00943,PER-0079-CO,interaction_frequency,2025-12-01T00:00:00,26.5,INT-001202 +QTS-00944,PER-0079-CO,competitor_mention,2025-12-07T00:00:00,25.3,INT-001583 +QTS-00945,PER-0079-CO,visit_depth,2026-03-16T00:00:00,42.5,INT-000771 +QTS-00947,PER-0080,visit_depth,2024-02-26T00:00:00,10,INT-001747 +QTS-00948,PER-0080,competitor_mention,2024-04-09T00:00:00,14.0,INT-000959 +QTS-00949,PER-0080,response_time,2024-12-14T00:00:00,34.7,INT-000465 +QTS-00950,PER-0080,response_time,2025-12-12T00:00:00,28.0,INT-000566 +QTS-00951,PER-0080,price_sensitivity,2026-01-15T00:00:00,45.7,INT-000858 +QTS-00952,PER-0080,price_sensitivity,2026-01-20T00:00:00,60.3,INT-001134 +QTS-00954,PER-0080-CO,response_time,2024-01-08T00:00:00,10,INT-000582 +QTS-00955,PER-0080-CO,competitor_mention,2024-02-24T00:00:00,16.4,INT-000694 +QTS-00956,PER-0080-CO,visit_depth,2024-03-08T00:00:00,13.5,INT-001729 +QTS-00957,PER-0080-CO,interaction_frequency,2024-06-08T00:00:00,24.6,INT-000416 +QTS-00958,PER-0080-CO,visit_depth,2025-03-20T00:00:00,22.6,INT-001625 +QTS-00959,PER-0080-CO,price_sensitivity,2025-04-26T00:00:00,34.4,INT-001653 +QTS-00960,PER-0080-CO,interaction_frequency,2025-07-30T00:00:00,46.1,INT-000109 +QTS-00961,PER-0080-CO,visit_depth,2025-09-20T00:00:00,38.6,INT-001673 +QTS-00962,PER-0080-CO,interaction_frequency,2025-09-29T00:00:00,49.3,INT-000686 +QTS-00963,PER-0080-CO,response_time,2025-11-02T00:00:00,62.6,INT-001337 +QTS-00964,PER-0080-CO,visit_depth,2025-11-07T00:00:00,54.8,INT-001716 +QTS-00965,PER-0080-CO,visit_depth,2026-01-21T00:00:00,67.7,INT-000501 +QTS-00967,PER-0081,competitor_mention,2024-07-07T00:00:00,10,INT-001336 +QTS-00968,PER-0081,response_time,2024-08-01T00:00:00,23.3,INT-000516 +QTS-00969,PER-0081,interaction_frequency,2024-12-11T00:00:00,39.1,INT-000131 +QTS-00970,PER-0081,response_time,2025-02-12T00:00:00,45.3,INT-000730 +QTS-00971,PER-0081,interaction_frequency,2025-06-03T00:00:00,47.4,INT-001331 +QTS-00972,PER-0081,interaction_frequency,2025-07-25T00:00:00,56.8,INT-000884 +QTS-00973,PER-0081,visit_depth,2025-07-31T00:00:00,77.6,INT-000434 +QTS-00974,PER-0081,interaction_frequency,2025-09-30T00:00:00,82.5,INT-000708 +QTS-00975,PER-0081,price_sensitivity,2025-12-06T00:00:00,84.1,INT-001168 +QTS-00976,PER-0081,interaction_frequency,2026-01-08T00:00:00,96.5,INT-000566 +QTS-00978,PER-0082,response_time,2024-02-07T00:00:00,13.1,INT-000571 +QTS-00979,PER-0082,interaction_frequency,2024-03-04T00:00:00,28.1,INT-000188 +QTS-00980,PER-0082,interaction_frequency,2024-09-09T00:00:00,30.9,INT-000753 +QTS-00981,PER-0082,response_time,2024-09-10T00:00:00,38.9,INT-000879 +QTS-00982,PER-0082,response_time,2025-02-20T00:00:00,61.1,INT-000231 +QTS-00983,PER-0082,visit_depth,2025-08-18T00:00:00,66.9,INT-000322 +QTS-00984,PER-0082,interaction_frequency,2025-10-01T00:00:00,78.9,INT-000701 +QTS-00985,PER-0082,competitor_mention,2026-02-19T00:00:00,76.3,INT-001889 +QTS-00986,PER-0082,price_sensitivity,2026-04-06T00:00:00,96.6,INT-001528 +QTS-00988,PER-0083,competitor_mention,2024-01-25T00:00:00,14.9,INT-001103 +QTS-00989,PER-0083,competitor_mention,2024-02-10T00:00:00,16.4,INT-001066 +QTS-00990,PER-0083,price_sensitivity,2024-04-05T00:00:00,35.5,INT-000399 +QTS-00991,PER-0083,visit_depth,2024-04-12T00:00:00,32.3,INT-000206 +QTS-00992,PER-0083,interaction_frequency,2024-07-13T00:00:00,37.4,INT-001376 +QTS-00993,PER-0083,visit_depth,2024-08-26T00:00:00,59.4,INT-000776 +QTS-00994,PER-0083,visit_depth,2025-01-07T00:00:00,67.5,INT-000641 +QTS-00995,PER-0083,price_sensitivity,2025-01-14T00:00:00,66.3,INT-000074 +QTS-00996,PER-0083,visit_depth,2025-04-26T00:00:00,82.3,INT-000319 +QTS-00997,PER-0083,price_sensitivity,2025-09-23T00:00:00,81.8,INT-000427 +QTS-00998,PER-0083,visit_depth,2025-09-26T00:00:00,98,INT-000140 +QTS-01000,PER-0084,interaction_frequency,2024-05-15T00:00:00,19.8,INT-000639 +QTS-01001,PER-0084,visit_depth,2024-07-15T00:00:00,34.6,INT-000117 +QTS-01002,PER-0084,price_sensitivity,2024-09-28T00:00:00,51.8,INT-001464 +QTS-01003,PER-0084,visit_depth,2024-11-03T00:00:00,71.4,INT-000522 +QTS-01004,PER-0084,response_time,2026-01-25T00:00:00,93.6,INT-000318 +QTS-01006,PER-0084-CO,visit_depth,2024-01-10T00:00:00,11.8,INT-001381 +QTS-01007,PER-0084-CO,response_time,2024-03-21T00:00:00,17.0,INT-001246 +QTS-01008,PER-0084-CO,price_sensitivity,2024-10-08T00:00:00,31.5,INT-001041 +QTS-01009,PER-0084-CO,response_time,2024-11-05T00:00:00,40.1,INT-001306 +QTS-01010,PER-0084-CO,visit_depth,2025-04-26T00:00:00,41.8,INT-000662 +QTS-01011,PER-0084-CO,interaction_frequency,2025-10-07T00:00:00,43.9,INT-001552 +QTS-01013,PER-0085,competitor_mention,2024-01-13T00:00:00,11.4,INT-001197 +QTS-01014,PER-0085,price_sensitivity,2024-01-29T00:00:00,21.4,INT-001111 +QTS-01015,PER-0085,interaction_frequency,2024-02-28T00:00:00,24.5,INT-000136 +QTS-01016,PER-0085,interaction_frequency,2024-10-02T00:00:00,25.8,INT-000753 +QTS-01017,PER-0085,competitor_mention,2025-12-05T00:00:00,36.9,INT-001765 +QTS-01018,PER-0085,price_sensitivity,2025-12-14T00:00:00,34.9,INT-001547 +QTS-01019,PER-0085,interaction_frequency,2026-02-08T00:00:00,41.9,INT-000128 +QTS-01020,PER-0085,visit_depth,2026-02-23T00:00:00,44.1,INT-001408 +QTS-01021,PER-0085,interaction_frequency,2026-04-04T00:00:00,69.1,INT-001374 +QTS-01022,PER-0085,response_time,2026-04-06T00:00:00,59.3,INT-001460 +QTS-01024,PER-0086,interaction_frequency,2024-10-31T00:00:00,19.8,INT-001801 +QTS-01025,PER-0086,competitor_mention,2024-11-11T00:00:00,41.8,INT-001184 +QTS-01026,PER-0086,visit_depth,2025-10-10T00:00:00,57.0,INT-000986 +QTS-01027,PER-0086,visit_depth,2025-10-11T00:00:00,63.8,INT-001274 +QTS-01028,PER-0086,response_time,2025-12-03T00:00:00,83.4,INT-001455 +QTS-01029,PER-0086,response_time,2026-03-08T00:00:00,98,INT-001738 +QTS-01031,PER-0087,visit_depth,2024-03-05T00:00:00,10,INT-001866 +QTS-01032,PER-0087,price_sensitivity,2024-09-04T00:00:00,10,INT-000276 +QTS-01033,PER-0087,visit_depth,2024-09-18T00:00:00,18.7,INT-000703 +QTS-01034,PER-0087,visit_depth,2024-10-21T00:00:00,22.4,INT-001830 +QTS-01035,PER-0087,competitor_mention,2024-12-18T00:00:00,31.9,INT-001025 +QTS-01036,PER-0087,competitor_mention,2025-01-24T00:00:00,38.5,INT-001208 +QTS-01037,PER-0087,competitor_mention,2025-03-28T00:00:00,40.7,INT-001160 +QTS-01038,PER-0087,interaction_frequency,2025-07-15T00:00:00,60.8,INT-000451 +QTS-01039,PER-0087,price_sensitivity,2026-02-15T00:00:00,71.2,INT-000941 +QTS-01040,PER-0087,visit_depth,2026-02-17T00:00:00,73.2,INT-000561 +QTS-01042,PER-0087-CO,competitor_mention,2024-03-12T00:00:00,21.7,INT-001680 +QTS-01043,PER-0087-CO,interaction_frequency,2024-05-06T00:00:00,22.5,INT-001842 +QTS-01044,PER-0087-CO,price_sensitivity,2024-08-16T00:00:00,36.3,INT-000208 +QTS-01045,PER-0087-CO,price_sensitivity,2026-02-10T00:00:00,64.6,INT-000860 +QTS-01046,PER-0087-CO,interaction_frequency,2026-03-26T00:00:00,63.8,INT-001556 +QTS-01048,PER-0088,response_time,2025-06-13T00:00:00,22.6,INT-000193 +QTS-01049,PER-0088,visit_depth,2025-09-07T00:00:00,25.5,INT-001653 +QTS-01050,PER-0088,competitor_mention,2025-10-13T00:00:00,41.8,INT-000196 +QTS-01051,PER-0088,interaction_frequency,2025-10-15T00:00:00,55.4,INT-001850 +QTS-01052,PER-0088,competitor_mention,2025-11-09T00:00:00,80.6,INT-001120 +QTS-01053,PER-0088,competitor_mention,2026-03-23T00:00:00,98,INT-000982 +QTS-01055,PER-0089,price_sensitivity,2024-02-07T00:00:00,10,INT-000838 +QTS-01056,PER-0089,competitor_mention,2024-02-24T00:00:00,12.8,INT-001343 +QTS-01057,PER-0089,response_time,2024-02-28T00:00:00,13.4,INT-001275 +QTS-01058,PER-0089,price_sensitivity,2024-09-08T00:00:00,24.0,INT-000319 +QTS-01059,PER-0089,response_time,2024-10-07T00:00:00,29.3,INT-001579 +QTS-01060,PER-0089,competitor_mention,2025-07-23T00:00:00,38.4,INT-000432 +QTS-01061,PER-0089,price_sensitivity,2026-03-13T00:00:00,48.6,INT-001174 +QTS-01062,PER-0089,competitor_mention,2026-04-08T00:00:00,55.1,INT-001393 +QTS-01064,PER-0090,interaction_frequency,2024-11-03T00:00:00,15.5,INT-000958 +QTS-01065,PER-0090,response_time,2025-01-06T00:00:00,38.1,INT-000755 +QTS-01066,PER-0090,interaction_frequency,2025-06-19T00:00:00,44.3,INT-000838 +QTS-01067,PER-0090,competitor_mention,2025-07-24T00:00:00,53.8,INT-001397 +QTS-01069,PER-0090-CO,response_time,2024-02-10T00:00:00,10,INT-000697 +QTS-01070,PER-0090-CO,price_sensitivity,2024-05-12T00:00:00,13.1,INT-000024 +QTS-01071,PER-0090-CO,interaction_frequency,2024-07-09T00:00:00,10,INT-000026 +QTS-01072,PER-0090-CO,visit_depth,2024-08-03T00:00:00,21.8,INT-000094 +QTS-01073,PER-0090-CO,competitor_mention,2025-02-18T00:00:00,17.9,INT-001049 +QTS-01074,PER-0090-CO,response_time,2025-03-03T00:00:00,15.3,INT-000981 +QTS-01075,PER-0090-CO,visit_depth,2025-09-08T00:00:00,18.3,INT-001050 +QTS-01076,PER-0090-CO,competitor_mention,2025-09-19T00:00:00,25.9,INT-000459 +QTS-01077,PER-0090-CO,price_sensitivity,2025-10-28T00:00:00,40.8,INT-001053 +QTS-01079,PER-0091,price_sensitivity,2024-08-26T00:00:00,32.7,INT-000900 +QTS-01080,PER-0091,interaction_frequency,2024-12-25T00:00:00,48.1,INT-001385 +QTS-01081,PER-0091,price_sensitivity,2025-02-09T00:00:00,67.3,INT-001822 +QTS-01082,PER-0091,response_time,2025-07-07T00:00:00,98,INT-000906 +QTS-01084,PER-0091-CO,price_sensitivity,2024-05-05T00:00:00,10,INT-001519 +QTS-01085,PER-0091-CO,interaction_frequency,2025-02-22T00:00:00,14.8,INT-000181 +QTS-01086,PER-0091-CO,visit_depth,2025-03-29T00:00:00,19.9,INT-000990 +QTS-01087,PER-0091-CO,response_time,2025-08-11T00:00:00,35.4,INT-000404 +QTS-01088,PER-0091-CO,visit_depth,2025-08-13T00:00:00,46.4,INT-001836 +QTS-01089,PER-0091-CO,price_sensitivity,2025-08-13T00:00:00,54.6,INT-000075 +QTS-01090,PER-0091-CO,response_time,2025-12-27T00:00:00,69.6,INT-000627 +QTS-01092,PER-0092,price_sensitivity,2024-03-15T00:00:00,18.1,INT-001298 +QTS-01093,PER-0092,competitor_mention,2024-10-04T00:00:00,20.3,INT-001500 +QTS-01094,PER-0092,interaction_frequency,2024-11-12T00:00:00,38.0,INT-001027 +QTS-01095,PER-0092,price_sensitivity,2024-11-15T00:00:00,49.7,INT-001056 +QTS-01096,PER-0092,interaction_frequency,2025-02-09T00:00:00,66.3,INT-001110 +QTS-01097,PER-0092,competitor_mention,2025-04-30T00:00:00,75.0,INT-001888 +QTS-01098,PER-0092,interaction_frequency,2025-07-05T00:00:00,95.3,INT-001201 +QTS-01100,PER-0093,visit_depth,2024-03-07T00:00:00,21.5,INT-001710 +QTS-01101,PER-0093,competitor_mention,2024-10-26T00:00:00,28.7,INT-000136 +QTS-01102,PER-0093,visit_depth,2024-12-29T00:00:00,39.3,INT-000659 +QTS-01103,PER-0093,visit_depth,2024-12-29T00:00:00,41.8,INT-000058 +QTS-01104,PER-0093,response_time,2025-05-02T00:00:00,69.3,INT-000105 +QTS-01105,PER-0093,price_sensitivity,2025-06-23T00:00:00,74.4,INT-001890 +QTS-01106,PER-0093,price_sensitivity,2026-01-11T00:00:00,79.8,INT-001780 +QTS-01107,PER-0093,response_time,2026-02-22T00:00:00,96.2,INT-000964 +QTS-01109,PER-0093-CO,response_time,2024-02-10T00:00:00,16.6,INT-001047 +QTS-01110,PER-0093-CO,competitor_mention,2024-07-20T00:00:00,24.9,INT-001505 +QTS-01111,PER-0093-CO,price_sensitivity,2024-08-01T00:00:00,35.0,INT-000556 +QTS-01112,PER-0093-CO,price_sensitivity,2024-08-02T00:00:00,31.4,INT-000047 +QTS-01113,PER-0093-CO,competitor_mention,2025-02-17T00:00:00,41.9,INT-001088 +QTS-01114,PER-0093-CO,response_time,2025-05-27T00:00:00,55.7,INT-000804 +QTS-01115,PER-0093-CO,competitor_mention,2025-10-06T00:00:00,57.3,INT-001405 +QTS-01116,PER-0093-CO,price_sensitivity,2025-12-24T00:00:00,76.7,INT-001500 +QTS-01117,PER-0093-CO,interaction_frequency,2026-03-02T00:00:00,91.2,INT-000888 +QTS-01119,PER-0094,visit_depth,2024-01-14T00:00:00,11.7,INT-000148 +QTS-01120,PER-0094,response_time,2024-03-07T00:00:00,24.7,INT-000173 +QTS-01121,PER-0094,visit_depth,2025-02-03T00:00:00,28.4,INT-000335 +QTS-01122,PER-0094,price_sensitivity,2025-06-07T00:00:00,36.9,INT-000411 +QTS-01123,PER-0094,price_sensitivity,2025-06-13T00:00:00,50.1,INT-000518 +QTS-01124,PER-0094,competitor_mention,2025-07-01T00:00:00,51.3,INT-001490 +QTS-01125,PER-0094,response_time,2025-10-01T00:00:00,60.1,INT-001104 +QTS-01126,PER-0094,visit_depth,2025-11-15T00:00:00,80.8,INT-000797 +QTS-01127,PER-0094,interaction_frequency,2025-11-20T00:00:00,86.9,INT-001840 +QTS-01128,PER-0094,price_sensitivity,2025-11-21T00:00:00,98,INT-001124 +QTS-01129,PER-0094,interaction_frequency,2026-04-02T00:00:00,98,INT-000352 +QTS-01131,PER-0094-CO,price_sensitivity,2024-03-07T00:00:00,10.4,INT-000071 +QTS-01132,PER-0094-CO,interaction_frequency,2024-05-13T00:00:00,10,INT-000584 +QTS-01133,PER-0094-CO,interaction_frequency,2024-08-13T00:00:00,27.4,INT-001069 +QTS-01134,PER-0094-CO,visit_depth,2025-02-23T00:00:00,33.1,INT-000853 +QTS-01135,PER-0094-CO,response_time,2025-06-05T00:00:00,37.4,INT-000486 +QTS-01136,PER-0094-CO,competitor_mention,2025-06-08T00:00:00,44.6,INT-001724 +QTS-01137,PER-0094-CO,response_time,2025-07-19T00:00:00,50.6,INT-000226 +QTS-01138,PER-0094-CO,response_time,2025-09-05T00:00:00,46.8,INT-001190 +QTS-01139,PER-0094-CO,response_time,2025-09-17T00:00:00,45.8,INT-000927 +QTS-01141,PER-0095,visit_depth,2024-02-23T00:00:00,10,INT-000302 +QTS-01142,PER-0095,interaction_frequency,2024-03-29T00:00:00,26.9,INT-001301 +QTS-01143,PER-0095,visit_depth,2024-05-01T00:00:00,17.4,INT-001258 +QTS-01144,PER-0095,interaction_frequency,2024-07-19T00:00:00,43.7,INT-000751 +QTS-01145,PER-0095,interaction_frequency,2025-01-01T00:00:00,53.6,INT-001748 +QTS-01146,PER-0095,competitor_mention,2025-05-15T00:00:00,55.6,INT-001397 +QTS-01147,PER-0095,response_time,2025-09-18T00:00:00,56.3,INT-000852 +QTS-01148,PER-0095,interaction_frequency,2026-01-12T00:00:00,67.6,INT-000422 +QTS-01150,PER-0095-CO,visit_depth,2024-04-13T00:00:00,10,INT-001324 +QTS-01151,PER-0095-CO,competitor_mention,2024-05-31T00:00:00,14.4,INT-001799 +QTS-01152,PER-0095-CO,interaction_frequency,2024-10-09T00:00:00,13.1,INT-001730 +QTS-01153,PER-0095-CO,response_time,2025-02-16T00:00:00,20.4,INT-000389 +QTS-01154,PER-0095-CO,interaction_frequency,2025-09-13T00:00:00,26.2,INT-001403 +QTS-01155,PER-0095-CO,interaction_frequency,2026-01-14T00:00:00,23.2,INT-001692 +QTS-01156,PER-0095-CO,competitor_mention,2026-01-17T00:00:00,22.8,INT-001461 +QTS-01157,PER-0095-CO,response_time,2026-03-09T00:00:00,35.2,INT-001391 +QTS-01159,PER-0096,interaction_frequency,2024-01-23T00:00:00,16.6,INT-001043 +QTS-01160,PER-0096,visit_depth,2024-04-06T00:00:00,45.3,INT-000114 +QTS-01161,PER-0096,price_sensitivity,2024-06-23T00:00:00,52.0,INT-000148 +QTS-01162,PER-0096,price_sensitivity,2024-10-25T00:00:00,77.7,INT-001118 +QTS-01163,PER-0096,response_time,2026-01-14T00:00:00,98,INT-001693 +QTS-01165,PER-0096-CO,price_sensitivity,2024-05-20T00:00:00,10,INT-001394 +QTS-01166,PER-0096-CO,interaction_frequency,2024-05-29T00:00:00,15.1,INT-001896 +QTS-01167,PER-0096-CO,interaction_frequency,2024-07-29T00:00:00,20.4,INT-001493 +QTS-01168,PER-0096-CO,response_time,2024-09-19T00:00:00,25.7,INT-000974 +QTS-01169,PER-0096-CO,price_sensitivity,2025-11-06T00:00:00,36.1,INT-000694 +QTS-01170,PER-0096-CO,interaction_frequency,2025-11-08T00:00:00,44.1,INT-000979 +QTS-01171,PER-0096-CO,interaction_frequency,2025-11-16T00:00:00,51.4,INT-001412 +QTS-01172,PER-0096-CO,interaction_frequency,2026-01-20T00:00:00,55.5,INT-000837 +QTS-01173,PER-0096-CO,visit_depth,2026-02-15T00:00:00,62.4,INT-000113 +QTS-01175,PER-0097,interaction_frequency,2024-05-03T00:00:00,31.5,INT-000096 +QTS-01176,PER-0097,price_sensitivity,2024-05-04T00:00:00,54.0,INT-000580 +QTS-01177,PER-0097,competitor_mention,2025-01-21T00:00:00,69.9,INT-000382 +QTS-01178,PER-0097,competitor_mention,2025-10-28T00:00:00,88.1,INT-000522 +QTS-01180,PER-0098,response_time,2024-04-09T00:00:00,14.1,INT-001604 +QTS-01181,PER-0098,competitor_mention,2024-11-10T00:00:00,31.1,INT-000312 +QTS-01182,PER-0098,competitor_mention,2025-01-19T00:00:00,42.1,INT-001370 +QTS-01183,PER-0098,competitor_mention,2025-09-02T00:00:00,63.1,INT-001684 +QTS-01184,PER-0098,response_time,2026-04-13T00:00:00,74.3,INT-001281 +QTS-01186,PER-0098-CO,visit_depth,2025-01-14T00:00:00,10,INT-000301 +QTS-01187,PER-0098-CO,interaction_frequency,2025-07-18T00:00:00,18.2,INT-001017 +QTS-01188,PER-0098-CO,response_time,2025-08-04T00:00:00,22.9,INT-001660 +QTS-01189,PER-0098-CO,competitor_mention,2025-09-03T00:00:00,46.4,INT-001093 +QTS-01191,PER-0099,competitor_mention,2024-01-02T00:00:00,23.8,INT-000968 +QTS-01192,PER-0099,interaction_frequency,2024-09-12T00:00:00,25.1,INT-001556 +QTS-01193,PER-0099,interaction_frequency,2024-09-27T00:00:00,41.0,INT-001791 +QTS-01194,PER-0099,interaction_frequency,2025-07-26T00:00:00,66.4,INT-000633 +QTS-01195,PER-0099,interaction_frequency,2025-08-13T00:00:00,87.1,INT-000213 +QTS-01196,PER-0099,response_time,2025-09-25T00:00:00,98,INT-001817 +QTS-01198,PER-0099-CO,response_time,2024-02-19T00:00:00,23.5,INT-001486 +QTS-01199,PER-0099-CO,price_sensitivity,2024-05-01T00:00:00,40.2,INT-000966 +QTS-01200,PER-0099-CO,price_sensitivity,2025-03-11T00:00:00,53.6,INT-001762 +QTS-01201,PER-0099-CO,price_sensitivity,2025-12-07T00:00:00,81.7,INT-000899 +QTS-01203,PER-0100,visit_depth,2024-08-26T00:00:00,26.0,INT-001114 +QTS-01204,PER-0100,visit_depth,2025-03-22T00:00:00,27.6,INT-000905 +QTS-01205,PER-0100,interaction_frequency,2025-08-31T00:00:00,45.5,INT-001110 +QTS-01206,PER-0100,visit_depth,2026-01-09T00:00:00,62.5,INT-001819 +QTS-01207,PER-0100,price_sensitivity,2026-03-29T00:00:00,81.9,INT-000907 +QTS-01209,PER-0100-CO,interaction_frequency,2024-06-03T00:00:00,10,INT-001659 +QTS-01210,PER-0100-CO,interaction_frequency,2024-06-05T00:00:00,10,INT-000667 +QTS-01211,PER-0100-CO,competitor_mention,2024-08-29T00:00:00,21.9,INT-001256 +QTS-01212,PER-0100-CO,competitor_mention,2024-09-25T00:00:00,16.4,INT-001263 +QTS-01213,PER-0100-CO,response_time,2025-02-05T00:00:00,16.4,INT-000795 +QTS-01214,PER-0100-CO,response_time,2025-08-24T00:00:00,21.0,INT-000107 +QTS-01215,PER-0100-CO,price_sensitivity,2025-12-31T00:00:00,33.4,INT-000323 +QTS-01216,PER-0100-CO,visit_depth,2026-03-08T00:00:00,26.3,INT-001050 +QTS-01218,PER-0101,competitor_mention,2024-03-12T00:00:00,10,INT-001680 +QTS-01219,PER-0101,price_sensitivity,2024-04-22T00:00:00,29.1,INT-000489 +QTS-01220,PER-0101,response_time,2024-07-31T00:00:00,45.1,INT-000584 +QTS-01221,PER-0101,interaction_frequency,2025-04-06T00:00:00,59.4,INT-000701 +QTS-01222,PER-0101,visit_depth,2025-07-06T00:00:00,70.2,INT-001141 +QTS-01223,PER-0101,competitor_mention,2026-02-24T00:00:00,89.4,INT-001261 +QTS-01225,PER-0102,response_time,2024-04-15T00:00:00,25.9,INT-001719 +QTS-01226,PER-0102,competitor_mention,2024-07-13T00:00:00,49.4,INT-001586 +QTS-01227,PER-0102,visit_depth,2025-02-01T00:00:00,79.0,INT-001320 +QTS-01228,PER-0102,visit_depth,2026-02-12T00:00:00,98,INT-000077 +QTS-01230,PER-0102-CO,price_sensitivity,2024-08-05T00:00:00,13.7,INT-001449 +QTS-01231,PER-0102-CO,competitor_mention,2024-10-09T00:00:00,11.5,INT-001671 +QTS-01232,PER-0102-CO,interaction_frequency,2025-02-07T00:00:00,20.3,INT-000191 +QTS-01233,PER-0102-CO,visit_depth,2025-04-03T00:00:00,34.2,INT-001893 +QTS-01234,PER-0102-CO,response_time,2025-06-12T00:00:00,23.7,INT-001355 +QTS-01235,PER-0102-CO,interaction_frequency,2025-09-25T00:00:00,39.3,INT-001271 +QTS-01236,PER-0102-CO,visit_depth,2025-10-04T00:00:00,52.1,INT-000767 +QTS-01237,PER-0102-CO,response_time,2025-12-18T00:00:00,48.5,INT-000072 +QTS-01238,PER-0102-CO,interaction_frequency,2026-02-14T00:00:00,62.9,INT-001476 +QTS-01240,PER-0103,response_time,2024-10-06T00:00:00,18.9,INT-001725 +QTS-01241,PER-0103,interaction_frequency,2025-03-18T00:00:00,49.9,INT-000210 +QTS-01242,PER-0103,price_sensitivity,2025-07-21T00:00:00,74.3,INT-000846 +QTS-01243,PER-0103,interaction_frequency,2025-08-13T00:00:00,97.0,INT-000336 +QTS-01245,PER-0103-CO,price_sensitivity,2024-01-03T00:00:00,10,INT-001485 +QTS-01246,PER-0103-CO,price_sensitivity,2024-08-14T00:00:00,22.4,INT-000397 +QTS-01247,PER-0103-CO,price_sensitivity,2025-01-14T00:00:00,54.8,INT-000366 +QTS-01248,PER-0103-CO,price_sensitivity,2025-09-22T00:00:00,53.5,INT-001323 +QTS-01249,PER-0103-CO,response_time,2025-10-08T00:00:00,84.2,INT-001018 +QTS-01251,PER-0104,visit_depth,2024-01-14T00:00:00,10,INT-000273 +QTS-01252,PER-0104,visit_depth,2024-03-07T00:00:00,16.1,INT-001381 +QTS-01253,PER-0104,visit_depth,2024-05-28T00:00:00,32.2,INT-001417 +QTS-01254,PER-0104,visit_depth,2024-08-26T00:00:00,37.4,INT-000910 +QTS-01255,PER-0104,competitor_mention,2024-09-23T00:00:00,41.6,INT-000252 +QTS-01256,PER-0104,interaction_frequency,2025-01-08T00:00:00,44.3,INT-000075 +QTS-01257,PER-0104,price_sensitivity,2025-03-18T00:00:00,68.2,INT-001720 +QTS-01258,PER-0104,visit_depth,2025-04-09T00:00:00,65.9,INT-000709 +QTS-01259,PER-0104,interaction_frequency,2025-04-26T00:00:00,86.9,INT-001536 +QTS-01260,PER-0104,interaction_frequency,2025-08-28T00:00:00,90.2,INT-000988 +QTS-01262,PER-0104-CO,response_time,2024-01-10T00:00:00,10,INT-000586 +QTS-01263,PER-0104-CO,competitor_mention,2024-06-10T00:00:00,10,INT-000614 +QTS-01264,PER-0104-CO,response_time,2024-08-07T00:00:00,13.5,INT-000506 +QTS-01265,PER-0104-CO,competitor_mention,2024-08-20T00:00:00,28.4,INT-001208 +QTS-01266,PER-0104-CO,price_sensitivity,2025-01-05T00:00:00,21.0,INT-000129 +QTS-01267,PER-0104-CO,response_time,2025-04-05T00:00:00,27.7,INT-000997 +QTS-01268,PER-0104-CO,interaction_frequency,2025-04-14T00:00:00,43.6,INT-001412 +QTS-01269,PER-0104-CO,interaction_frequency,2025-05-01T00:00:00,55.4,INT-001118 +QTS-01270,PER-0104-CO,competitor_mention,2025-09-12T00:00:00,54.0,INT-001659 +QTS-01271,PER-0104-CO,response_time,2025-10-31T00:00:00,56.4,INT-001197 +QTS-01272,PER-0104-CO,visit_depth,2025-11-08T00:00:00,71.4,INT-001576 +QTS-01273,PER-0104-CO,visit_depth,2026-01-04T00:00:00,69.1,INT-001286 +QTS-01275,PER-0105,competitor_mention,2024-02-26T00:00:00,19.6,INT-001798 +QTS-01276,PER-0105,interaction_frequency,2024-03-04T00:00:00,25.1,INT-000516 +QTS-01277,PER-0105,interaction_frequency,2024-08-11T00:00:00,44.1,INT-001163 +QTS-01278,PER-0105,interaction_frequency,2024-09-26T00:00:00,43.0,INT-001121 +QTS-01279,PER-0105,response_time,2025-06-03T00:00:00,64.3,INT-000266 +QTS-01280,PER-0105,response_time,2026-02-11T00:00:00,68.2,INT-000670 +QTS-01281,PER-0105,visit_depth,2026-02-15T00:00:00,77.8,INT-000107 +QTS-01282,PER-0105,response_time,2026-04-08T00:00:00,98,INT-000388 +QTS-01284,PER-0106,competitor_mention,2024-07-20T00:00:00,10,INT-000997 +QTS-01285,PER-0106,response_time,2024-08-28T00:00:00,22.1,INT-000669 +QTS-01286,PER-0106,interaction_frequency,2024-09-05T00:00:00,46.9,INT-000669 +QTS-01287,PER-0106,competitor_mention,2025-07-11T00:00:00,62.7,INT-000331 +QTS-01288,PER-0106,competitor_mention,2025-07-20T00:00:00,72.3,INT-001088 +QTS-01289,PER-0106,visit_depth,2025-09-22T00:00:00,86.0,INT-001165 +QTS-01290,PER-0106,interaction_frequency,2026-01-19T00:00:00,98,INT-000580 +QTS-01292,PER-0107,response_time,2024-10-07T00:00:00,17.7,INT-001732 +QTS-01293,PER-0107,response_time,2024-12-16T00:00:00,49.1,INT-000948 +QTS-01294,PER-0107,interaction_frequency,2024-12-24T00:00:00,52.8,INT-000851 +QTS-01295,PER-0107,visit_depth,2025-02-24T00:00:00,73.2,INT-000949 +QTS-01296,PER-0107,competitor_mention,2025-05-14T00:00:00,88.8,INT-000981 +QTS-01298,PER-0107-CO,visit_depth,2024-04-21T00:00:00,12.2,INT-000908 +QTS-01299,PER-0107-CO,response_time,2024-05-24T00:00:00,10,INT-001302 +QTS-01300,PER-0107-CO,price_sensitivity,2024-10-25T00:00:00,15.7,INT-001582 +QTS-01301,PER-0107-CO,response_time,2025-07-07T00:00:00,18.7,INT-001046 +QTS-01302,PER-0107-CO,visit_depth,2025-09-10T00:00:00,11.2,INT-001598 +QTS-01303,PER-0107-CO,interaction_frequency,2025-09-16T00:00:00,23.9,INT-000233 +QTS-01304,PER-0107-CO,interaction_frequency,2025-09-27T00:00:00,24.0,INT-000408 +QTS-01305,PER-0107-CO,price_sensitivity,2025-11-15T00:00:00,43.1,INT-001764 +QTS-01307,PER-0108,competitor_mention,2024-01-22T00:00:00,10,INT-000107 +QTS-01308,PER-0108,price_sensitivity,2024-08-09T00:00:00,17.5,INT-001523 +QTS-01309,PER-0108,response_time,2024-12-05T00:00:00,10.6,INT-000865 +QTS-01310,PER-0108,response_time,2025-04-03T00:00:00,19.0,INT-001857 +QTS-01311,PER-0108,price_sensitivity,2025-04-11T00:00:00,28.4,INT-001066 +QTS-01312,PER-0108,competitor_mention,2025-04-24T00:00:00,34.2,INT-000019 +QTS-01313,PER-0108,response_time,2025-08-01T00:00:00,39.9,INT-000275 +QTS-01314,PER-0108,response_time,2025-08-16T00:00:00,42.8,INT-001689 +QTS-01315,PER-0108,competitor_mention,2025-09-01T00:00:00,61.7,INT-000874 +QTS-01316,PER-0108,interaction_frequency,2025-11-21T00:00:00,66.5,INT-001137 +QTS-01317,PER-0108,interaction_frequency,2026-03-15T00:00:00,68.7,INT-001804 +QTS-01319,PER-0108-CO,response_time,2024-03-31T00:00:00,10,INT-001487 +QTS-01320,PER-0108-CO,competitor_mention,2024-06-12T00:00:00,10,INT-001354 +QTS-01321,PER-0108-CO,interaction_frequency,2024-09-15T00:00:00,10,INT-000716 +QTS-01322,PER-0108-CO,visit_depth,2024-12-14T00:00:00,14.3,INT-000020 +QTS-01323,PER-0108-CO,visit_depth,2025-02-24T00:00:00,22.7,INT-001018 +QTS-01324,PER-0108-CO,competitor_mention,2025-06-03T00:00:00,37.4,INT-000375 +QTS-01325,PER-0108-CO,response_time,2025-07-24T00:00:00,43.6,INT-000086 +QTS-01326,PER-0108-CO,interaction_frequency,2025-10-14T00:00:00,44.5,INT-001575 +QTS-01327,PER-0108-CO,competitor_mention,2025-11-07T00:00:00,36.8,INT-001195 +QTS-01328,PER-0108-CO,response_time,2026-01-29T00:00:00,58.9,INT-000554 +QTS-01329,PER-0108-CO,visit_depth,2026-02-25T00:00:00,53.1,INT-000147 +QTS-01331,PER-0109,competitor_mention,2024-05-14T00:00:00,10,INT-001216 +QTS-01332,PER-0109,price_sensitivity,2024-08-18T00:00:00,20.9,INT-001785 +QTS-01333,PER-0109,interaction_frequency,2024-09-12T00:00:00,30.4,INT-001339 +QTS-01334,PER-0109,response_time,2024-11-03T00:00:00,43.5,INT-000985 +QTS-01335,PER-0109,response_time,2024-11-26T00:00:00,41.0,INT-001787 +QTS-01336,PER-0109,response_time,2025-01-19T00:00:00,51.6,INT-000987 +QTS-01337,PER-0109,response_time,2025-04-10T00:00:00,75.7,INT-001497 +QTS-01338,PER-0109,price_sensitivity,2025-09-21T00:00:00,71.2,INT-000409 +QTS-01339,PER-0109,competitor_mention,2025-11-10T00:00:00,96.2,INT-000865 +QTS-01340,PER-0109,price_sensitivity,2026-01-19T00:00:00,90.2,INT-000226 +QTS-01342,PER-0110,visit_depth,2024-04-07T00:00:00,10,INT-000315 +QTS-01343,PER-0110,visit_depth,2024-04-16T00:00:00,19.9,INT-000026 +QTS-01344,PER-0110,price_sensitivity,2024-12-13T00:00:00,29.7,INT-001318 +QTS-01345,PER-0110,visit_depth,2025-05-19T00:00:00,48.7,INT-000637 +QTS-01346,PER-0110,interaction_frequency,2025-06-03T00:00:00,53.5,INT-001443 +QTS-01347,PER-0110,visit_depth,2025-06-22T00:00:00,79.4,INT-000970 +QTS-01348,PER-0110,price_sensitivity,2026-03-16T00:00:00,86.3,INT-000188 +QTS-01350,PER-0111,interaction_frequency,2024-03-25T00:00:00,10,INT-001390 +QTS-01351,PER-0111,price_sensitivity,2024-06-15T00:00:00,10,INT-000719 +QTS-01352,PER-0111,interaction_frequency,2024-06-24T00:00:00,11.3,INT-000832 +QTS-01353,PER-0111,response_time,2024-08-13T00:00:00,16.7,INT-000020 +QTS-01354,PER-0111,interaction_frequency,2024-11-06T00:00:00,17.7,INT-000053 +QTS-01355,PER-0111,price_sensitivity,2024-12-15T00:00:00,27.4,INT-001620 +QTS-01356,PER-0111,response_time,2025-05-11T00:00:00,30.7,INT-000387 +QTS-01357,PER-0111,visit_depth,2025-07-15T00:00:00,31.7,INT-000279 +QTS-01358,PER-0111,visit_depth,2025-09-11T00:00:00,50.1,INT-000328 +QTS-01359,PER-0111,visit_depth,2025-09-28T00:00:00,41.2,INT-000953 +QTS-01360,PER-0111,interaction_frequency,2025-12-28T00:00:00,61.1,INT-000536 +QTS-01362,PER-0112,interaction_frequency,2024-01-21T00:00:00,10,INT-001082 +QTS-01363,PER-0112,competitor_mention,2024-05-21T00:00:00,10,INT-001393 +QTS-01364,PER-0112,price_sensitivity,2024-05-24T00:00:00,24.7,INT-000662 +QTS-01365,PER-0112,competitor_mention,2024-08-30T00:00:00,17.1,INT-000464 +QTS-01366,PER-0112,competitor_mention,2024-10-29T00:00:00,23.5,INT-000610 +QTS-01367,PER-0112,price_sensitivity,2024-12-10T00:00:00,31.9,INT-000628 +QTS-01368,PER-0112,interaction_frequency,2025-05-09T00:00:00,36.8,INT-000258 +QTS-01369,PER-0112,response_time,2025-07-28T00:00:00,50.3,INT-000056 +QTS-01370,PER-0112,price_sensitivity,2025-09-22T00:00:00,55.8,INT-001338 +QTS-01371,PER-0112,competitor_mention,2026-01-09T00:00:00,57.4,INT-000439 +QTS-01373,PER-0113,visit_depth,2024-01-14T00:00:00,10.5,INT-001140 +QTS-01374,PER-0113,competitor_mention,2024-05-19T00:00:00,10.6,INT-000517 +QTS-01375,PER-0113,price_sensitivity,2024-06-25T00:00:00,24.9,INT-000544 +QTS-01376,PER-0113,competitor_mention,2025-03-09T00:00:00,25.5,INT-001280 +QTS-01377,PER-0113,price_sensitivity,2025-04-13T00:00:00,31.0,INT-000722 +QTS-01378,PER-0113,price_sensitivity,2025-05-21T00:00:00,40.2,INT-000979 +QTS-01379,PER-0113,price_sensitivity,2025-06-17T00:00:00,54.1,INT-001734 +QTS-01380,PER-0113,response_time,2025-08-13T00:00:00,62.3,INT-001321 +QTS-01381,PER-0113,price_sensitivity,2025-08-15T00:00:00,65.0,INT-001812 +QTS-01382,PER-0113,competitor_mention,2025-09-01T00:00:00,84.3,INT-000251 +QTS-01383,PER-0113,response_time,2026-01-28T00:00:00,87.0,INT-000876 +QTS-01384,PER-0113,interaction_frequency,2026-02-20T00:00:00,96.6,INT-001372 +QTS-01386,PER-0114,interaction_frequency,2024-01-22T00:00:00,13.2,INT-001375 +QTS-01387,PER-0114,price_sensitivity,2024-05-04T00:00:00,24.1,INT-000694 +QTS-01388,PER-0114,visit_depth,2025-06-26T00:00:00,51.2,INT-000608 +QTS-01389,PER-0114,visit_depth,2025-08-02T00:00:00,63.5,INT-001834 +QTS-01390,PER-0114,competitor_mention,2025-09-01T00:00:00,60.8,INT-001140 +QTS-01391,PER-0114,interaction_frequency,2025-10-28T00:00:00,84.0,INT-000404 +QTS-01392,PER-0114,response_time,2025-12-19T00:00:00,98,INT-000139 +QTS-01394,PER-0115,price_sensitivity,2024-01-18T00:00:00,12.4,INT-000322 +QTS-01395,PER-0115,competitor_mention,2024-01-18T00:00:00,10,INT-001023 +QTS-01396,PER-0115,competitor_mention,2024-05-15T00:00:00,19.1,INT-000625 +QTS-01397,PER-0115,response_time,2024-11-01T00:00:00,27.1,INT-000205 +QTS-01398,PER-0115,price_sensitivity,2025-02-21T00:00:00,38.2,INT-000473 +QTS-01399,PER-0115,visit_depth,2025-06-16T00:00:00,54.8,INT-001831 +QTS-01400,PER-0115,competitor_mention,2025-07-24T00:00:00,51.1,INT-001805 +QTS-01401,PER-0115,price_sensitivity,2025-08-23T00:00:00,69.6,INT-001741 +QTS-01402,PER-0115,visit_depth,2025-10-30T00:00:00,73.6,INT-000263 +QTS-01403,PER-0115,competitor_mention,2025-12-31T00:00:00,88.1,INT-000196 +QTS-01404,PER-0115,visit_depth,2026-02-27T00:00:00,86.7,INT-000970 +QTS-01405,PER-0115,response_time,2026-03-17T00:00:00,94.1,INT-001442 +QTS-01407,PER-0115-CO,visit_depth,2024-02-01T00:00:00,10,INT-000148 +QTS-01408,PER-0115-CO,competitor_mention,2024-08-22T00:00:00,10,INT-001669 +QTS-01409,PER-0115-CO,price_sensitivity,2024-12-18T00:00:00,10,INT-001311 +QTS-01410,PER-0115-CO,visit_depth,2025-01-06T00:00:00,29.3,INT-000509 +QTS-01411,PER-0115-CO,price_sensitivity,2025-03-22T00:00:00,20.7,INT-001165 +QTS-01412,PER-0115-CO,interaction_frequency,2025-06-25T00:00:00,26.4,INT-000381 +QTS-01413,PER-0115-CO,response_time,2026-03-18T00:00:00,47.3,INT-000381 +QTS-01415,PER-0116,response_time,2024-06-08T00:00:00,26.7,INT-001076 +QTS-01416,PER-0116,competitor_mention,2024-08-23T00:00:00,40.9,INT-001245 +QTS-01417,PER-0116,interaction_frequency,2025-10-11T00:00:00,65.8,INT-001389 +QTS-01418,PER-0116,price_sensitivity,2025-11-04T00:00:00,75.4,INT-000063 +QTS-01420,PER-0117,price_sensitivity,2024-04-21T00:00:00,32.1,INT-001559 +QTS-01421,PER-0117,price_sensitivity,2024-10-21T00:00:00,50.7,INT-000971 +QTS-01422,PER-0117,price_sensitivity,2025-06-20T00:00:00,77.2,INT-000691 +QTS-01423,PER-0117,response_time,2026-02-11T00:00:00,91.8,INT-000497 +QTS-01425,PER-0117-CO,price_sensitivity,2024-04-29T00:00:00,10,INT-000329 +QTS-01426,PER-0117-CO,competitor_mention,2024-05-28T00:00:00,24.4,INT-001474 +QTS-01427,PER-0117-CO,interaction_frequency,2024-10-29T00:00:00,29.1,INT-001666 +QTS-01428,PER-0117-CO,response_time,2025-02-16T00:00:00,38.9,INT-000812 +QTS-01429,PER-0117-CO,price_sensitivity,2025-03-28T00:00:00,45.1,INT-001519 +QTS-01430,PER-0117-CO,response_time,2025-07-13T00:00:00,47.5,INT-001512 +QTS-01431,PER-0117-CO,interaction_frequency,2026-01-18T00:00:00,54.5,INT-001554 +QTS-01433,PER-0118,visit_depth,2024-04-16T00:00:00,20.5,INT-001438 +QTS-01434,PER-0118,price_sensitivity,2025-04-30T00:00:00,41.6,INT-001582 +QTS-01435,PER-0118,response_time,2025-07-05T00:00:00,69.9,INT-001016 +QTS-01436,PER-0118,interaction_frequency,2025-08-10T00:00:00,98,INT-000515 +QTS-01438,PER-0119,competitor_mention,2024-03-21T00:00:00,10,INT-000258 +QTS-01439,PER-0119,interaction_frequency,2024-06-12T00:00:00,27.8,INT-000500 +QTS-01440,PER-0119,competitor_mention,2024-10-20T00:00:00,50.9,INT-000477 +QTS-01441,PER-0119,interaction_frequency,2025-01-22T00:00:00,59.6,INT-001373 +QTS-01442,PER-0119,price_sensitivity,2025-01-30T00:00:00,64.5,INT-001344 +QTS-01443,PER-0119,interaction_frequency,2025-07-28T00:00:00,79.2,INT-001650 +QTS-01444,PER-0119,visit_depth,2026-03-02T00:00:00,92.9,INT-000923 +QTS-01446,PER-0119-CO,visit_depth,2024-02-09T00:00:00,10,INT-000557 +QTS-01447,PER-0119-CO,price_sensitivity,2024-03-18T00:00:00,10,INT-001544 +QTS-01448,PER-0119-CO,competitor_mention,2024-03-26T00:00:00,20.8,INT-000996 +QTS-01449,PER-0119-CO,response_time,2025-07-09T00:00:00,41.6,INT-001835 +QTS-01451,PER-0120,response_time,2025-04-30T00:00:00,18.2,INT-001078 +QTS-01452,PER-0120,response_time,2025-09-19T00:00:00,46.4,INT-001824 +QTS-01453,PER-0120,price_sensitivity,2026-02-27T00:00:00,73.2,INT-000300 +QTS-01454,PER-0120,visit_depth,2026-03-26T00:00:00,92.0,INT-001556 +QTS-01456,PER-0121,visit_depth,2024-05-05T00:00:00,10,INT-000355 +QTS-01457,PER-0121,interaction_frequency,2024-06-19T00:00:00,26.2,INT-001068 +QTS-01458,PER-0121,visit_depth,2024-09-05T00:00:00,24.5,INT-000455 +QTS-01459,PER-0121,price_sensitivity,2025-01-09T00:00:00,36.4,INT-000438 +QTS-01460,PER-0121,competitor_mention,2025-01-30T00:00:00,44.6,INT-001008 +QTS-01461,PER-0121,response_time,2025-02-20T00:00:00,47.2,INT-000521 +QTS-01462,PER-0121,visit_depth,2025-06-29T00:00:00,54.2,INT-001200 +QTS-01463,PER-0121,response_time,2025-09-09T00:00:00,59.8,INT-001636 +QTS-01464,PER-0121,price_sensitivity,2026-01-04T00:00:00,72.4,INT-001547 +QTS-01465,PER-0121,response_time,2026-03-29T00:00:00,91.2,INT-000839 +QTS-01466,PER-0121,visit_depth,2026-04-18T00:00:00,88.9,INT-000522 +QTS-01468,PER-0122,price_sensitivity,2024-01-12T00:00:00,10,INT-001005 +QTS-01469,PER-0122,response_time,2024-03-12T00:00:00,24.9,INT-001129 +QTS-01470,PER-0122,price_sensitivity,2024-11-11T00:00:00,26.6,INT-000650 +QTS-01471,PER-0122,price_sensitivity,2024-12-11T00:00:00,41.3,INT-000828 +QTS-01472,PER-0122,interaction_frequency,2025-02-03T00:00:00,52.8,INT-001617 +QTS-01473,PER-0122,visit_depth,2025-06-26T00:00:00,57.5,INT-000694 +QTS-01474,PER-0122,price_sensitivity,2025-09-01T00:00:00,71.2,INT-001704 +QTS-01475,PER-0122,price_sensitivity,2025-09-17T00:00:00,69.4,INT-000215 +QTS-01476,PER-0122,interaction_frequency,2025-11-02T00:00:00,85.6,INT-000837 +QTS-01478,PER-0122-CO,price_sensitivity,2024-02-17T00:00:00,10,INT-000809 +QTS-01479,PER-0122-CO,price_sensitivity,2024-03-19T00:00:00,12.6,INT-001175 +QTS-01480,PER-0122-CO,price_sensitivity,2024-05-16T00:00:00,21.7,INT-001549 +QTS-01481,PER-0122-CO,competitor_mention,2024-05-17T00:00:00,29.9,INT-000166 +QTS-01482,PER-0122-CO,visit_depth,2024-06-06T00:00:00,42.4,INT-000468 +QTS-01483,PER-0122-CO,visit_depth,2024-07-25T00:00:00,51.6,INT-000950 +QTS-01484,PER-0122-CO,price_sensitivity,2024-09-24T00:00:00,62.7,INT-001710 +QTS-01485,PER-0122-CO,response_time,2024-10-27T00:00:00,66.5,INT-000475 +QTS-01486,PER-0122-CO,competitor_mention,2025-02-26T00:00:00,67.3,INT-000789 +QTS-01487,PER-0122-CO,response_time,2025-11-28T00:00:00,75.2,INT-000915 +QTS-01488,PER-0122-CO,price_sensitivity,2026-03-19T00:00:00,85.8,INT-000246 +QTS-01490,PER-0123,interaction_frequency,2024-02-28T00:00:00,10,INT-000811 +QTS-01491,PER-0123,competitor_mention,2024-09-15T00:00:00,14.1,INT-000342 +QTS-01492,PER-0123,interaction_frequency,2024-09-15T00:00:00,10,INT-001535 +QTS-01493,PER-0123,interaction_frequency,2025-02-23T00:00:00,25.6,INT-000178 +QTS-01494,PER-0123,visit_depth,2025-05-08T00:00:00,17.8,INT-000879 +QTS-01495,PER-0123,response_time,2025-05-23T00:00:00,22.0,INT-001263 +QTS-01496,PER-0123,price_sensitivity,2025-09-26T00:00:00,36.5,INT-001370 +QTS-01497,PER-0123,response_time,2025-10-19T00:00:00,34.6,INT-000830 +QTS-01498,PER-0123,competitor_mention,2026-01-08T00:00:00,30.5,INT-000023 +QTS-01499,PER-0123,visit_depth,2026-03-03T00:00:00,47.3,INT-000888 +QTS-01500,PER-0123,competitor_mention,2026-03-15T00:00:00,45.6,INT-000449 +QTS-01502,PER-0123-CO,price_sensitivity,2024-06-09T00:00:00,16.8,INT-000414 +QTS-01503,PER-0123-CO,interaction_frequency,2025-01-30T00:00:00,33.4,INT-000542 +QTS-01504,PER-0123-CO,response_time,2025-04-19T00:00:00,48.1,INT-000650 +QTS-01505,PER-0123-CO,interaction_frequency,2025-07-27T00:00:00,57.9,INT-000396 +QTS-01506,PER-0123-CO,competitor_mention,2025-10-02T00:00:00,70.1,INT-000924 +QTS-01507,PER-0123-CO,visit_depth,2025-11-08T00:00:00,80.0,INT-000167 +QTS-01509,PER-0124,response_time,2024-01-25T00:00:00,20.5,INT-001792 +QTS-01510,PER-0124,visit_depth,2025-01-29T00:00:00,21.4,INT-000359 +QTS-01511,PER-0124,price_sensitivity,2025-05-20T00:00:00,38.0,INT-001576 +QTS-01512,PER-0124,visit_depth,2025-08-18T00:00:00,48.8,INT-000951 +QTS-01513,PER-0124,interaction_frequency,2026-02-23T00:00:00,55.8,INT-000685 +QTS-01515,PER-0125,price_sensitivity,2024-01-04T00:00:00,10,INT-000867 +QTS-01516,PER-0125,price_sensitivity,2024-01-10T00:00:00,20.1,INT-001071 +QTS-01517,PER-0125,interaction_frequency,2024-03-04T00:00:00,21.0,INT-001258 +QTS-01518,PER-0125,price_sensitivity,2024-03-17T00:00:00,31.9,INT-000594 +QTS-01519,PER-0125,response_time,2024-04-03T00:00:00,36.2,INT-001059 +QTS-01520,PER-0125,response_time,2024-04-23T00:00:00,40.9,INT-000418 +QTS-01521,PER-0125,price_sensitivity,2024-05-24T00:00:00,47.2,INT-001685 +QTS-01522,PER-0125,visit_depth,2024-06-20T00:00:00,65.1,INT-000897 +QTS-01523,PER-0125,response_time,2024-09-27T00:00:00,68.4,INT-000177 +QTS-01524,PER-0125,price_sensitivity,2024-11-06T00:00:00,69.0,INT-000938 +QTS-01525,PER-0125,visit_depth,2024-12-31T00:00:00,79.8,INT-000505 +QTS-01526,PER-0125,price_sensitivity,2025-06-15T00:00:00,88.5,INT-000541 +QTS-01528,PER-0126,response_time,2024-01-15T00:00:00,10,INT-000679 +QTS-01529,PER-0126,visit_depth,2024-02-28T00:00:00,10,INT-000148 +QTS-01530,PER-0126,competitor_mention,2024-05-23T00:00:00,10.4,INT-001087 +QTS-01531,PER-0126,visit_depth,2024-06-28T00:00:00,22.1,INT-000698 +QTS-01532,PER-0126,price_sensitivity,2025-04-13T00:00:00,25.0,INT-001022 +QTS-01533,PER-0126,interaction_frequency,2025-07-02T00:00:00,42.0,INT-000022 +QTS-01534,PER-0126,visit_depth,2025-07-19T00:00:00,36.0,INT-001400 +QTS-01535,PER-0126,interaction_frequency,2025-08-05T00:00:00,47.0,INT-001680 +QTS-01536,PER-0126,response_time,2025-09-20T00:00:00,61.2,INT-001613 +QTS-01537,PER-0126,interaction_frequency,2026-02-10T00:00:00,62.5,INT-001151 +QTS-01538,PER-0126,response_time,2026-04-15T00:00:00,62.5,INT-000562 +QTS-01540,PER-0126-CO,response_time,2024-01-10T00:00:00,10,INT-001772 +QTS-01541,PER-0126-CO,competitor_mention,2024-02-06T00:00:00,12.8,INT-000045 +QTS-01542,PER-0126-CO,visit_depth,2024-02-24T00:00:00,10,INT-000837 +QTS-01543,PER-0126-CO,competitor_mention,2024-03-16T00:00:00,22.1,INT-001092 +QTS-01544,PER-0126-CO,competitor_mention,2024-04-03T00:00:00,15.9,INT-001352 +QTS-01545,PER-0126-CO,interaction_frequency,2024-04-15T00:00:00,27.3,INT-001232 +QTS-01546,PER-0126-CO,response_time,2024-07-17T00:00:00,34.0,INT-001780 +QTS-01547,PER-0126-CO,interaction_frequency,2024-07-23T00:00:00,29.3,INT-001659 +QTS-01548,PER-0126-CO,visit_depth,2025-01-15T00:00:00,33.9,INT-000899 +QTS-01549,PER-0126-CO,competitor_mention,2025-06-26T00:00:00,31.1,INT-000060 +QTS-01551,PER-0127,price_sensitivity,2024-07-20T00:00:00,10,INT-000259 +QTS-01552,PER-0127,interaction_frequency,2024-07-21T00:00:00,20.3,INT-001246 +QTS-01553,PER-0127,price_sensitivity,2024-08-25T00:00:00,21.4,INT-001851 +QTS-01554,PER-0127,price_sensitivity,2024-11-26T00:00:00,38.0,INT-000481 +QTS-01555,PER-0127,competitor_mention,2024-12-18T00:00:00,32.8,INT-001890 +QTS-01556,PER-0127,competitor_mention,2025-03-01T00:00:00,42.6,INT-000779 +QTS-01557,PER-0127,competitor_mention,2025-05-07T00:00:00,59.5,INT-001322 +QTS-01558,PER-0127,competitor_mention,2025-06-25T00:00:00,62.7,INT-000961 +QTS-01559,PER-0127,competitor_mention,2025-07-06T00:00:00,78.0,INT-000788 +QTS-01560,PER-0127,price_sensitivity,2025-08-08T00:00:00,89.4,INT-001438 +QTS-01561,PER-0127,competitor_mention,2025-09-12T00:00:00,83.9,INT-001492 +QTS-01562,PER-0127,visit_depth,2025-12-22T00:00:00,98,INT-000785 +QTS-01564,PER-0128,competitor_mention,2024-05-01T00:00:00,10,INT-001675 +QTS-01565,PER-0128,visit_depth,2024-05-26T00:00:00,10.7,INT-001775 +QTS-01566,PER-0128,competitor_mention,2024-08-11T00:00:00,28.0,INT-000049 +QTS-01567,PER-0128,visit_depth,2024-11-07T00:00:00,18.7,INT-000239 +QTS-01568,PER-0128,competitor_mention,2024-12-23T00:00:00,35.7,INT-000583 +QTS-01569,PER-0128,response_time,2025-01-25T00:00:00,45.2,INT-001355 +QTS-01570,PER-0128,price_sensitivity,2025-03-22T00:00:00,50.7,INT-001891 +QTS-01571,PER-0128,interaction_frequency,2025-10-07T00:00:00,48.4,INT-000322 +QTS-01572,PER-0128,interaction_frequency,2025-10-17T00:00:00,51.8,INT-000749 +QTS-01573,PER-0128,visit_depth,2025-12-05T00:00:00,66.1,INT-001185 +QTS-01575,PER-0129,response_time,2024-08-16T00:00:00,17.2,INT-001488 +QTS-01576,PER-0129,response_time,2024-12-20T00:00:00,58.5,INT-001885 +QTS-01577,PER-0129,competitor_mention,2025-06-29T00:00:00,76.8,INT-000370 +QTS-01578,PER-0129,interaction_frequency,2025-12-13T00:00:00,96.8,INT-000894 +QTS-01580,PER-0130,price_sensitivity,2025-04-27T00:00:00,11.2,INT-000202 +QTS-01581,PER-0130,competitor_mention,2025-09-22T00:00:00,27.5,INT-001452 +QTS-01582,PER-0130,competitor_mention,2025-10-31T00:00:00,62.3,INT-001631 +QTS-01583,PER-0130,price_sensitivity,2025-11-17T00:00:00,67.8,INT-001440 +QTS-01584,PER-0130,price_sensitivity,2026-01-17T00:00:00,80.3,INT-001328 +QTS-01586,PER-0130-CO,interaction_frequency,2024-09-02T00:00:00,12.5,INT-000168 +QTS-01587,PER-0130-CO,price_sensitivity,2024-12-14T00:00:00,22.6,INT-000439 +QTS-01588,PER-0130-CO,interaction_frequency,2025-02-13T00:00:00,18.7,INT-001577 +QTS-01589,PER-0130-CO,response_time,2025-03-17T00:00:00,28.6,INT-001785 +QTS-01590,PER-0130-CO,response_time,2025-05-17T00:00:00,43.2,INT-000233 +QTS-01591,PER-0130-CO,interaction_frequency,2025-12-10T00:00:00,50.6,INT-001001 +QTS-01592,PER-0130-CO,interaction_frequency,2025-12-13T00:00:00,57.4,INT-001267 +QTS-01594,PER-0131,visit_depth,2024-01-17T00:00:00,11.9,INT-000596 +QTS-01595,PER-0131,response_time,2024-08-17T00:00:00,26.7,INT-000512 +QTS-01596,PER-0131,price_sensitivity,2024-10-12T00:00:00,47.6,INT-001600 +QTS-01597,PER-0131,price_sensitivity,2024-12-09T00:00:00,61.9,INT-000285 +QTS-01598,PER-0131,competitor_mention,2025-07-05T00:00:00,65.2,INT-001490 +QTS-01599,PER-0131,price_sensitivity,2025-09-12T00:00:00,85.9,INT-001825 +QTS-01600,PER-0131,response_time,2025-12-29T00:00:00,98,INT-001211 +QTS-01602,PER-0132,interaction_frequency,2024-03-27T00:00:00,17.5,INT-000020 +QTS-01603,PER-0132,response_time,2024-05-31T00:00:00,13.7,INT-001316 +QTS-01604,PER-0132,price_sensitivity,2024-06-27T00:00:00,29.4,INT-000044 +QTS-01605,PER-0132,response_time,2025-05-28T00:00:00,42.5,INT-000147 +QTS-01606,PER-0132,price_sensitivity,2025-06-24T00:00:00,45.7,INT-001371 +QTS-01607,PER-0132,response_time,2025-10-01T00:00:00,54.9,INT-000798 +QTS-01608,PER-0132,response_time,2025-10-04T00:00:00,62.2,INT-001206 +QTS-01610,PER-0132-CO,visit_depth,2024-03-24T00:00:00,10.3,INT-000324 +QTS-01611,PER-0132-CO,competitor_mention,2024-10-13T00:00:00,10,INT-001396 +QTS-01612,PER-0132-CO,competitor_mention,2024-12-25T00:00:00,10.8,INT-000900 +QTS-01613,PER-0132-CO,interaction_frequency,2025-03-28T00:00:00,11.7,INT-001621 +QTS-01614,PER-0132-CO,price_sensitivity,2025-08-20T00:00:00,28.8,INT-000936 +QTS-01615,PER-0132-CO,response_time,2025-10-08T00:00:00,32.2,INT-000291 +QTS-01616,PER-0132-CO,response_time,2025-10-31T00:00:00,25.3,INT-000923 +QTS-01617,PER-0132-CO,interaction_frequency,2025-11-14T00:00:00,43.7,INT-001187 +QTS-01618,PER-0132-CO,response_time,2025-12-05T00:00:00,32.3,INT-000215 +QTS-01620,PER-0133,competitor_mention,2024-08-14T00:00:00,24.5,INT-000460 +QTS-01621,PER-0133,response_time,2024-08-20T00:00:00,40.1,INT-001418 +QTS-01622,PER-0133,price_sensitivity,2024-12-02T00:00:00,42.6,INT-000739 +QTS-01623,PER-0133,competitor_mention,2025-08-14T00:00:00,57.3,INT-000027 +QTS-01624,PER-0133,competitor_mention,2025-11-23T00:00:00,75.6,INT-000145 +QTS-01626,PER-0134,price_sensitivity,2024-02-23T00:00:00,10.8,INT-001871 +QTS-01627,PER-0134,competitor_mention,2024-09-09T00:00:00,48.2,INT-001214 +QTS-01628,PER-0134,response_time,2025-11-22T00:00:00,50.5,INT-000582 +QTS-01629,PER-0134,interaction_frequency,2026-02-22T00:00:00,77.0,INT-000782 +QTS-01631,PER-0135,price_sensitivity,2024-04-24T00:00:00,19.0,INT-000994 +QTS-01632,PER-0135,visit_depth,2024-05-28T00:00:00,32.8,INT-001739 +QTS-01633,PER-0135,price_sensitivity,2024-11-14T00:00:00,49.6,INT-001105 +QTS-01634,PER-0135,price_sensitivity,2025-05-19T00:00:00,79.3,INT-001017 +QTS-01635,PER-0135,visit_depth,2025-11-19T00:00:00,91.0,INT-001888 +QTS-01637,PER-0135-CO,competitor_mention,2024-01-17T00:00:00,12.2,INT-001257 +QTS-01638,PER-0135-CO,response_time,2024-02-26T00:00:00,18.9,INT-000223 +QTS-01639,PER-0135-CO,competitor_mention,2024-04-14T00:00:00,21.0,INT-001035 +QTS-01640,PER-0135-CO,response_time,2024-05-08T00:00:00,23.4,INT-001476 +QTS-01641,PER-0135-CO,competitor_mention,2024-08-01T00:00:00,38.3,INT-001522 +QTS-01642,PER-0135-CO,visit_depth,2024-11-02T00:00:00,43.4,INT-000274 +QTS-01643,PER-0135-CO,interaction_frequency,2025-03-31T00:00:00,57.3,INT-000675 +QTS-01644,PER-0135-CO,competitor_mention,2025-07-04T00:00:00,59.6,INT-000048 +QTS-01645,PER-0135-CO,response_time,2025-10-24T00:00:00,78.3,INT-001870 +QTS-01646,PER-0135-CO,response_time,2025-12-25T00:00:00,73.8,INT-000812 +QTS-01647,PER-0135-CO,price_sensitivity,2026-01-16T00:00:00,83.3,INT-000723 +QTS-01649,PER-0136,interaction_frequency,2024-01-10T00:00:00,10.8,INT-001692 +QTS-01650,PER-0136,interaction_frequency,2024-01-17T00:00:00,28.8,INT-000005 +QTS-01651,PER-0136,interaction_frequency,2024-05-01T00:00:00,45.0,INT-001841 +QTS-01652,PER-0136,competitor_mention,2024-10-02T00:00:00,49.5,INT-000700 +QTS-01653,PER-0136,competitor_mention,2025-02-10T00:00:00,50.4,INT-001647 +QTS-01654,PER-0136,price_sensitivity,2025-10-03T00:00:00,78.3,INT-000348 +QTS-01655,PER-0136,price_sensitivity,2026-04-12T00:00:00,82.4,INT-000294 +QTS-01657,PER-0136-CO,response_time,2024-03-21T00:00:00,10.7,INT-001187 +QTS-01658,PER-0136-CO,response_time,2024-09-07T00:00:00,12.1,INT-000516 +QTS-01659,PER-0136-CO,visit_depth,2024-09-26T00:00:00,24.1,INT-000306 +QTS-01660,PER-0136-CO,competitor_mention,2024-12-07T00:00:00,27.3,INT-001205 +QTS-01661,PER-0136-CO,competitor_mention,2025-01-13T00:00:00,22.3,INT-001450 +QTS-01662,PER-0136-CO,price_sensitivity,2025-05-24T00:00:00,32.8,INT-001545 +QTS-01663,PER-0136-CO,visit_depth,2025-08-10T00:00:00,38.8,INT-000184 +QTS-01664,PER-0136-CO,visit_depth,2026-01-18T00:00:00,50.1,INT-000868 +QTS-01665,PER-0136-CO,visit_depth,2026-02-20T00:00:00,58.4,INT-000776 +QTS-01667,PER-0137,competitor_mention,2024-07-08T00:00:00,20.1,INT-001173 +QTS-01668,PER-0137,competitor_mention,2025-06-07T00:00:00,23.8,INT-000621 +QTS-01669,PER-0137,price_sensitivity,2025-07-21T00:00:00,28.4,INT-000259 +QTS-01670,PER-0137,response_time,2025-07-28T00:00:00,47.0,INT-001417 +QTS-01671,PER-0137,response_time,2025-08-26T00:00:00,64.6,INT-001064 +QTS-01672,PER-0137,competitor_mention,2025-10-20T00:00:00,73.5,INT-000022 +QTS-01673,PER-0137,competitor_mention,2025-11-08T00:00:00,88.2,INT-000330 +QTS-01675,PER-0138,competitor_mention,2024-01-12T00:00:00,21.8,INT-001545 +QTS-01676,PER-0138,competitor_mention,2024-02-10T00:00:00,36.5,INT-001278 +QTS-01677,PER-0138,response_time,2024-05-09T00:00:00,39.6,INT-001373 +QTS-01678,PER-0138,competitor_mention,2024-06-01T00:00:00,63.6,INT-000093 +QTS-01679,PER-0138,competitor_mention,2024-12-23T00:00:00,82.5,INT-000355 +QTS-01680,PER-0138,response_time,2025-10-30T00:00:00,98,INT-000536 +QTS-01682,PER-0138-CO,interaction_frequency,2024-02-07T00:00:00,10,INT-000941 +QTS-01683,PER-0138-CO,competitor_mention,2024-03-09T00:00:00,17.0,INT-001357 +QTS-01684,PER-0138-CO,competitor_mention,2024-03-13T00:00:00,17.1,INT-001471 +QTS-01685,PER-0138-CO,interaction_frequency,2024-04-30T00:00:00,17.3,INT-000890 +QTS-01686,PER-0138-CO,price_sensitivity,2024-09-12T00:00:00,24.1,INT-000866 +QTS-01687,PER-0138-CO,competitor_mention,2024-12-03T00:00:00,34.1,INT-001041 +QTS-01688,PER-0138-CO,response_time,2025-01-27T00:00:00,29.1,INT-000329 +QTS-01689,PER-0138-CO,response_time,2025-03-21T00:00:00,41.4,INT-001885 +QTS-01690,PER-0138-CO,visit_depth,2025-10-27T00:00:00,47.7,INT-000624 +QTS-01691,PER-0138-CO,price_sensitivity,2025-10-28T00:00:00,51.7,INT-000141 +QTS-01692,PER-0138-CO,competitor_mention,2026-02-05T00:00:00,38.3,INT-001495 +QTS-01693,PER-0138-CO,visit_depth,2026-02-11T00:00:00,55.9,INT-000619 +QTS-01695,PER-0139,visit_depth,2024-01-11T00:00:00,28.5,INT-001332 +QTS-01696,PER-0139,visit_depth,2024-10-28T00:00:00,41.9,INT-000395 +QTS-01697,PER-0139,interaction_frequency,2025-03-27T00:00:00,56.5,INT-000528 +QTS-01698,PER-0139,interaction_frequency,2025-09-22T00:00:00,75.1,INT-001408 +QTS-01699,PER-0139,competitor_mention,2026-03-09T00:00:00,98,INT-001805 +QTS-01701,PER-0140,interaction_frequency,2024-04-06T00:00:00,22.4,INT-000618 +QTS-01702,PER-0140,interaction_frequency,2024-04-22T00:00:00,39.2,INT-001874 +QTS-01703,PER-0140,interaction_frequency,2025-01-21T00:00:00,46.2,INT-000023 +QTS-01704,PER-0140,price_sensitivity,2025-06-23T00:00:00,75.1,INT-000262 +QTS-01705,PER-0140,price_sensitivity,2025-12-02T00:00:00,80.3,INT-000780 +QTS-01706,PER-0140,visit_depth,2025-12-17T00:00:00,98,INT-000145 +QTS-01708,PER-0141,visit_depth,2024-02-04T00:00:00,19.6,INT-000212 +QTS-01709,PER-0141,response_time,2024-02-22T00:00:00,25.5,INT-001030 +QTS-01710,PER-0141,price_sensitivity,2024-10-21T00:00:00,39.1,INT-001601 +QTS-01711,PER-0141,competitor_mention,2024-12-10T00:00:00,51.7,INT-000536 +QTS-01712,PER-0141,competitor_mention,2025-07-18T00:00:00,58.5,INT-001272 +QTS-01713,PER-0141,interaction_frequency,2026-01-01T00:00:00,64.0,INT-001730 +QTS-01714,PER-0141,price_sensitivity,2026-01-31T00:00:00,72.1,INT-001654 +QTS-01715,PER-0141,competitor_mention,2026-02-21T00:00:00,89.4,INT-000975 +QTS-01717,PER-0142,response_time,2024-11-03T00:00:00,10,INT-000423 +QTS-01718,PER-0142,visit_depth,2024-11-25T00:00:00,27.2,INT-001190 +QTS-01719,PER-0142,response_time,2025-01-09T00:00:00,29.9,INT-000458 +QTS-01720,PER-0142,competitor_mention,2025-05-22T00:00:00,32.9,INT-000384 +QTS-01721,PER-0142,response_time,2025-07-18T00:00:00,52.8,INT-001123 +QTS-01722,PER-0142,competitor_mention,2025-09-07T00:00:00,57.3,INT-001001 +QTS-01723,PER-0142,competitor_mention,2025-09-28T00:00:00,58.3,INT-000518 +QTS-01724,PER-0142,price_sensitivity,2025-12-16T00:00:00,73.2,INT-001569 +QTS-01725,PER-0142,competitor_mention,2026-03-26T00:00:00,81.8,INT-001816 +QTS-01727,PER-0143,competitor_mention,2024-02-02T00:00:00,10,INT-000907 +QTS-01728,PER-0143,interaction_frequency,2024-05-19T00:00:00,19.9,INT-000389 +QTS-01729,PER-0143,visit_depth,2025-02-20T00:00:00,26.0,INT-000857 +QTS-01730,PER-0143,price_sensitivity,2025-04-12T00:00:00,39.2,INT-001343 +QTS-01731,PER-0143,response_time,2025-04-28T00:00:00,55.3,INT-000213 +QTS-01732,PER-0143,price_sensitivity,2025-06-15T00:00:00,62.5,INT-001673 +QTS-01733,PER-0143,response_time,2025-10-24T00:00:00,69.8,INT-001262 +QTS-01734,PER-0143,competitor_mention,2026-03-28T00:00:00,86.6,INT-000565 +QTS-01736,PER-0143-CO,visit_depth,2024-11-26T00:00:00,17.3,INT-000138 +QTS-01737,PER-0143-CO,visit_depth,2025-02-03T00:00:00,10.2,INT-001083 +QTS-01738,PER-0143-CO,response_time,2025-05-13T00:00:00,29.0,INT-001382 +QTS-01739,PER-0143-CO,response_time,2025-07-01T00:00:00,30.2,INT-000815 +QTS-01740,PER-0143-CO,response_time,2025-08-21T00:00:00,50.3,INT-001264 +QTS-01741,PER-0143-CO,price_sensitivity,2025-08-24T00:00:00,55.6,INT-000062 +QTS-01742,PER-0143-CO,visit_depth,2025-09-05T00:00:00,73.0,INT-000557 +QTS-01743,PER-0143-CO,visit_depth,2025-11-13T00:00:00,72.2,INT-001404 +QTS-01744,PER-0143-CO,competitor_mention,2026-03-01T00:00:00,86.2,INT-001407 +QTS-01746,PER-0144,price_sensitivity,2024-02-09T00:00:00,15.9,INT-000930 +QTS-01747,PER-0144,interaction_frequency,2024-03-21T00:00:00,22.4,INT-001881 +QTS-01748,PER-0144,interaction_frequency,2024-09-26T00:00:00,24.2,INT-001699 +QTS-01749,PER-0144,price_sensitivity,2025-01-07T00:00:00,40.0,INT-000517 +QTS-01750,PER-0144,visit_depth,2025-02-06T00:00:00,46.6,INT-001740 +QTS-01751,PER-0144,visit_depth,2025-09-20T00:00:00,56.0,INT-000277 +QTS-01752,PER-0144,response_time,2025-09-23T00:00:00,65.8,INT-001726 +QTS-01753,PER-0144,price_sensitivity,2025-09-29T00:00:00,57.7,INT-000831 +QTS-01754,PER-0144,price_sensitivity,2025-12-14T00:00:00,74.0,INT-000391 +QTS-01756,PER-0144-CO,response_time,2024-05-02T00:00:00,20.4,INT-000266 +QTS-01757,PER-0144-CO,interaction_frequency,2024-10-12T00:00:00,25.9,INT-001694 +QTS-01758,PER-0144-CO,interaction_frequency,2024-12-11T00:00:00,32.2,INT-000960 +QTS-01759,PER-0144-CO,visit_depth,2025-03-17T00:00:00,55.1,INT-001173 +QTS-01760,PER-0144-CO,competitor_mention,2025-06-06T00:00:00,58.2,INT-000570 +QTS-01761,PER-0144-CO,response_time,2026-04-14T00:00:00,65.2,INT-000341 +QTS-01763,PER-0145,price_sensitivity,2024-02-22T00:00:00,10,INT-000485 +QTS-01764,PER-0145,interaction_frequency,2024-02-26T00:00:00,23.1,INT-001281 +QTS-01765,PER-0145,competitor_mention,2024-09-27T00:00:00,18.3,INT-000855 +QTS-01766,PER-0145,interaction_frequency,2024-11-17T00:00:00,37.1,INT-001672 +QTS-01767,PER-0145,price_sensitivity,2025-03-01T00:00:00,39.5,INT-001327 +QTS-01768,PER-0145,price_sensitivity,2025-05-18T00:00:00,46.0,INT-001756 +QTS-01769,PER-0145,competitor_mention,2025-12-25T00:00:00,54.7,INT-000927 +QTS-01770,PER-0145,competitor_mention,2026-02-12T00:00:00,66.2,INT-001782 +QTS-01771,PER-0145,interaction_frequency,2026-03-15T00:00:00,69.8,INT-001897 +QTS-01773,PER-0145-CO,response_time,2024-01-21T00:00:00,10,INT-000766 +QTS-01774,PER-0145-CO,visit_depth,2024-05-05T00:00:00,28.1,INT-000096 +QTS-01775,PER-0145-CO,visit_depth,2025-02-19T00:00:00,27.2,INT-001104 +QTS-01776,PER-0145-CO,competitor_mention,2025-07-13T00:00:00,46.5,INT-001480 +QTS-01777,PER-0145-CO,interaction_frequency,2025-08-04T00:00:00,52.5,INT-001802 +QTS-01778,PER-0145-CO,price_sensitivity,2026-01-19T00:00:00,64.7,INT-001770 +QTS-01779,PER-0145-CO,interaction_frequency,2026-02-10T00:00:00,66.5,INT-000572 +QTS-01781,PER-0146,response_time,2024-04-25T00:00:00,15.1,INT-001389 +QTS-01782,PER-0146,competitor_mention,2024-10-30T00:00:00,14.7,INT-001314 +QTS-01783,PER-0146,response_time,2025-04-11T00:00:00,28.0,INT-000980 +QTS-01784,PER-0146,competitor_mention,2025-04-19T00:00:00,31.1,INT-000964 +QTS-01785,PER-0146,response_time,2025-11-26T00:00:00,31.0,INT-000945 +QTS-01786,PER-0146,interaction_frequency,2026-02-12T00:00:00,42.3,INT-000559 +QTS-01787,PER-0146,price_sensitivity,2026-02-13T00:00:00,43.4,INT-000672 +QTS-01789,PER-0147,competitor_mention,2024-02-18T00:00:00,10,INT-001765 +QTS-01790,PER-0147,visit_depth,2024-04-20T00:00:00,28.6,INT-000392 +QTS-01791,PER-0147,interaction_frequency,2024-08-07T00:00:00,34.6,INT-000990 +QTS-01792,PER-0147,response_time,2024-10-31T00:00:00,43.7,INT-000369 +QTS-01793,PER-0147,visit_depth,2025-01-17T00:00:00,51.7,INT-000707 +QTS-01794,PER-0147,competitor_mention,2025-03-13T00:00:00,58.7,INT-001048 +QTS-01795,PER-0147,response_time,2025-03-27T00:00:00,74.9,INT-000295 +QTS-01796,PER-0147,competitor_mention,2025-09-17T00:00:00,74.4,INT-000134 +QTS-01797,PER-0147,price_sensitivity,2025-10-10T00:00:00,94.5,INT-000179 +QTS-01799,PER-0148,competitor_mention,2024-02-27T00:00:00,17.9,INT-001624 +QTS-01800,PER-0148,response_time,2024-05-02T00:00:00,23.9,INT-000787 +QTS-01801,PER-0148,competitor_mention,2024-07-26T00:00:00,23.4,INT-000475 +QTS-01802,PER-0148,competitor_mention,2024-08-07T00:00:00,29.8,INT-001741 +QTS-01803,PER-0148,visit_depth,2024-09-20T00:00:00,36.5,INT-001191 +QTS-01804,PER-0148,competitor_mention,2024-10-01T00:00:00,39.6,INT-000840 +QTS-01805,PER-0148,competitor_mention,2025-01-02T00:00:00,56.9,INT-000194 +QTS-01806,PER-0148,response_time,2025-04-13T00:00:00,59.5,INT-001538 +QTS-01807,PER-0148,interaction_frequency,2025-05-06T00:00:00,68.1,INT-001777 +QTS-01808,PER-0148,interaction_frequency,2025-08-02T00:00:00,85.8,INT-001254 +QTS-01809,PER-0148,price_sensitivity,2025-08-05T00:00:00,88.0,INT-001592 +QTS-01810,PER-0148,visit_depth,2025-12-16T00:00:00,98,INT-000926 +QTS-01812,PER-0149,price_sensitivity,2024-06-18T00:00:00,10,INT-001390 +QTS-01813,PER-0149,competitor_mention,2024-06-19T00:00:00,23.8,INT-001856 +QTS-01814,PER-0149,price_sensitivity,2024-07-04T00:00:00,23.5,INT-000995 +QTS-01815,PER-0149,competitor_mention,2024-09-09T00:00:00,26.9,INT-001667 +QTS-01816,PER-0149,response_time,2025-04-02T00:00:00,36.4,INT-001186 +QTS-01817,PER-0149,visit_depth,2025-06-06T00:00:00,53.9,INT-001860 +QTS-01818,PER-0149,price_sensitivity,2025-06-12T00:00:00,47.5,INT-000080 +QTS-01819,PER-0149,response_time,2025-06-14T00:00:00,67.0,INT-000886 +QTS-01820,PER-0149,interaction_frequency,2025-11-18T00:00:00,73.1,INT-001475 +QTS-01821,PER-0149,price_sensitivity,2026-02-22T00:00:00,83.6,INT-001607 +QTS-01823,PER-0150,interaction_frequency,2024-03-13T00:00:00,16.1,INT-001503 +QTS-01824,PER-0150,response_time,2024-03-15T00:00:00,11.9,INT-001099 +QTS-01825,PER-0150,price_sensitivity,2024-05-13T00:00:00,37.5,INT-001387 +QTS-01826,PER-0150,interaction_frequency,2024-09-19T00:00:00,35.7,INT-001360 +QTS-01827,PER-0150,interaction_frequency,2024-11-02T00:00:00,47.8,INT-001713 +QTS-01828,PER-0150,competitor_mention,2025-01-19T00:00:00,58.0,INT-001789 +QTS-01829,PER-0150,competitor_mention,2025-08-23T00:00:00,59.5,INT-000306 +QTS-01830,PER-0150,visit_depth,2026-01-18T00:00:00,76.4,INT-001392 +QTS-01831,PER-0150,competitor_mention,2026-04-13T00:00:00,74.8,INT-000679 +QTS-01833,PER-0150-CO,interaction_frequency,2024-04-04T00:00:00,14.3,INT-001367 +QTS-01834,PER-0150-CO,competitor_mention,2024-08-05T00:00:00,26.9,INT-000027 +QTS-01835,PER-0150-CO,price_sensitivity,2024-11-27T00:00:00,35.6,INT-000144 +QTS-01836,PER-0150-CO,competitor_mention,2025-10-08T00:00:00,38.8,INT-000317 +QTS-01837,PER-0150-CO,interaction_frequency,2025-10-26T00:00:00,48.3,INT-001126 +QTS-01838,PER-0150-CO,visit_depth,2026-03-10T00:00:00,72.9,INT-001523 +QTS-01840,PER-0151,response_time,2024-05-29T00:00:00,14.6,INT-001065 +QTS-01841,PER-0151,price_sensitivity,2024-11-23T00:00:00,20.8,INT-001429 +QTS-01842,PER-0151,visit_depth,2025-02-23T00:00:00,41.6,INT-001743 +QTS-01843,PER-0151,response_time,2025-04-27T00:00:00,57.0,INT-000374 +QTS-01845,PER-0151-CO,visit_depth,2024-01-01T00:00:00,14.7,INT-001282 +QTS-01846,PER-0151-CO,competitor_mention,2024-04-12T00:00:00,10,INT-001067 +QTS-01847,PER-0151-CO,visit_depth,2024-12-01T00:00:00,38.4,INT-001402 +QTS-01848,PER-0151-CO,price_sensitivity,2025-02-13T00:00:00,31.8,INT-001441 +QTS-01849,PER-0151-CO,competitor_mention,2025-03-08T00:00:00,47.7,INT-000895 +QTS-01850,PER-0151-CO,response_time,2025-03-18T00:00:00,50.5,INT-001185 +QTS-01851,PER-0151-CO,visit_depth,2025-06-02T00:00:00,61.3,INT-001530 +QTS-01853,PER-0152,price_sensitivity,2024-01-26T00:00:00,10.7,INT-000914 +QTS-01854,PER-0152,visit_depth,2024-05-23T00:00:00,23.2,INT-001292 +QTS-01855,PER-0152,interaction_frequency,2024-07-13T00:00:00,14.5,INT-000204 +QTS-01856,PER-0152,visit_depth,2024-09-06T00:00:00,35.2,INT-000951 +QTS-01857,PER-0152,price_sensitivity,2024-10-31T00:00:00,46.6,INT-001866 +QTS-01858,PER-0152,competitor_mention,2025-02-07T00:00:00,46.5,INT-001685 +QTS-01859,PER-0152,response_time,2025-03-30T00:00:00,61.8,INT-000706 +QTS-01860,PER-0152,interaction_frequency,2025-04-08T00:00:00,66.4,INT-000909 +QTS-01861,PER-0152,response_time,2025-11-05T00:00:00,82.3,INT-000561 +QTS-01862,PER-0152,interaction_frequency,2025-11-18T00:00:00,89.3,INT-001127 +QTS-01863,PER-0152,price_sensitivity,2026-01-13T00:00:00,98,INT-000784 +QTS-01865,PER-0152-CO,competitor_mention,2024-03-01T00:00:00,14.4,INT-001082 +QTS-01866,PER-0152-CO,visit_depth,2024-05-07T00:00:00,16.4,INT-001294 +QTS-01867,PER-0152-CO,price_sensitivity,2024-06-27T00:00:00,21.7,INT-000212 +QTS-01868,PER-0152-CO,visit_depth,2024-07-07T00:00:00,11.1,INT-001469 +QTS-01869,PER-0152-CO,competitor_mention,2024-07-11T00:00:00,32.6,INT-000384 +QTS-01870,PER-0152-CO,competitor_mention,2024-10-31T00:00:00,27.4,INT-000824 +QTS-01871,PER-0152-CO,interaction_frequency,2025-04-09T00:00:00,39.7,INT-001491 +QTS-01872,PER-0152-CO,interaction_frequency,2025-06-29T00:00:00,38.9,INT-000942 +QTS-01873,PER-0152-CO,competitor_mention,2025-12-03T00:00:00,48.6,INT-000930 +QTS-01874,PER-0152-CO,response_time,2026-02-18T00:00:00,46.4,INT-000330 +QTS-01876,PER-0153,response_time,2024-01-12T00:00:00,10,INT-001413 +QTS-01877,PER-0153,price_sensitivity,2024-03-12T00:00:00,27.9,INT-001029 +QTS-01878,PER-0153,visit_depth,2024-07-23T00:00:00,45.8,INT-000257 +QTS-01879,PER-0153,price_sensitivity,2025-05-27T00:00:00,56.4,INT-001801 +QTS-01880,PER-0153,response_time,2025-06-07T00:00:00,69.5,INT-000434 +QTS-01881,PER-0153,competitor_mention,2025-08-15T00:00:00,72.2,INT-001754 +QTS-01882,PER-0153,response_time,2025-10-03T00:00:00,87.5,INT-000649 +QTS-01883,PER-0153,competitor_mention,2025-12-24T00:00:00,94.8,INT-001832 +QTS-01885,PER-0154,price_sensitivity,2024-04-25T00:00:00,16.0,INT-000379 +QTS-01886,PER-0154,response_time,2024-04-27T00:00:00,24.0,INT-001044 +QTS-01887,PER-0154,price_sensitivity,2024-09-18T00:00:00,17.5,INT-001667 +QTS-01888,PER-0154,interaction_frequency,2024-11-07T00:00:00,40.9,INT-001605 +QTS-01889,PER-0154,visit_depth,2025-05-31T00:00:00,51.6,INT-000834 +QTS-01890,PER-0154,price_sensitivity,2025-07-19T00:00:00,44.8,INT-000947 +QTS-01891,PER-0154,interaction_frequency,2025-11-03T00:00:00,65.9,INT-001800 +QTS-01892,PER-0154,visit_depth,2025-11-21T00:00:00,76.1,INT-000149 +QTS-01893,PER-0154,visit_depth,2026-01-11T00:00:00,80.6,INT-001884 +QTS-01894,PER-0154,visit_depth,2026-01-12T00:00:00,87.5,INT-001811 +QTS-01895,PER-0154,competitor_mention,2026-03-19T00:00:00,98,INT-001186 +QTS-01897,PER-0154-CO,competitor_mention,2024-01-31T00:00:00,10,INT-000010 +QTS-01898,PER-0154-CO,interaction_frequency,2024-06-20T00:00:00,17.3,INT-000436 +QTS-01899,PER-0154-CO,price_sensitivity,2025-06-15T00:00:00,22.6,INT-000310 +QTS-01900,PER-0154-CO,interaction_frequency,2025-09-13T00:00:00,28.1,INT-001157 +QTS-01901,PER-0154-CO,response_time,2025-11-08T00:00:00,27.7,INT-001103 +QTS-01902,PER-0154-CO,price_sensitivity,2026-01-24T00:00:00,39.3,INT-000794 +QTS-01904,PER-0155,response_time,2024-01-26T00:00:00,19.1,INT-000986 +QTS-01905,PER-0155,competitor_mention,2024-09-05T00:00:00,19.6,INT-000176 +QTS-01906,PER-0155,competitor_mention,2025-02-01T00:00:00,31.3,INT-000486 +QTS-01907,PER-0155,price_sensitivity,2025-03-30T00:00:00,49.5,INT-001381 +QTS-01908,PER-0155,interaction_frequency,2025-04-13T00:00:00,55.4,INT-000703 +QTS-01909,PER-0155,interaction_frequency,2025-10-01T00:00:00,78.6,INT-001128 +QTS-01910,PER-0155,response_time,2026-04-16T00:00:00,91.0,INT-000436 +QTS-01912,PER-0155-CO,response_time,2024-03-18T00:00:00,10,INT-001797 +QTS-01913,PER-0155-CO,response_time,2024-03-25T00:00:00,14.8,INT-000327 +QTS-01914,PER-0155-CO,response_time,2024-04-24T00:00:00,27.5,INT-000608 +QTS-01915,PER-0155-CO,competitor_mention,2024-12-24T00:00:00,34.6,INT-000132 +QTS-01916,PER-0155-CO,interaction_frequency,2025-05-16T00:00:00,32.4,INT-000627 +QTS-01917,PER-0155-CO,price_sensitivity,2025-06-12T00:00:00,53.0,INT-000549 +QTS-01918,PER-0155-CO,price_sensitivity,2025-07-06T00:00:00,49.7,INT-001321 +QTS-01919,PER-0155-CO,response_time,2025-07-28T00:00:00,58.2,INT-001167 +QTS-01920,PER-0155-CO,interaction_frequency,2025-10-13T00:00:00,75.1,INT-001098 +QTS-01921,PER-0155-CO,response_time,2025-11-23T00:00:00,67.1,INT-001018 +QTS-01923,PER-0156,competitor_mention,2024-02-23T00:00:00,10,INT-000309 +QTS-01924,PER-0156,price_sensitivity,2024-06-23T00:00:00,12.2,INT-000949 +QTS-01925,PER-0156,visit_depth,2024-07-09T00:00:00,22.8,INT-000992 +QTS-01926,PER-0156,price_sensitivity,2024-11-06T00:00:00,41.0,INT-000421 +QTS-01927,PER-0156,interaction_frequency,2025-01-12T00:00:00,37.8,INT-001412 +QTS-01928,PER-0156,response_time,2025-04-07T00:00:00,42.8,INT-000654 +QTS-01929,PER-0156,price_sensitivity,2025-04-20T00:00:00,52.3,INT-000063 +QTS-01930,PER-0156,price_sensitivity,2025-08-30T00:00:00,78.4,INT-001863 +QTS-01931,PER-0156,visit_depth,2025-09-10T00:00:00,69.3,INT-000109 +QTS-01932,PER-0156,interaction_frequency,2025-11-17T00:00:00,86.2,INT-000958 +QTS-01933,PER-0156,price_sensitivity,2026-03-31T00:00:00,85.2,INT-000810 +QTS-01935,PER-0157,response_time,2024-09-03T00:00:00,10,INT-001302 +QTS-01936,PER-0157,price_sensitivity,2024-09-22T00:00:00,12.4,INT-000274 +QTS-01937,PER-0157,price_sensitivity,2024-10-08T00:00:00,10.2,INT-000709 +QTS-01938,PER-0157,competitor_mention,2024-11-18T00:00:00,24.7,INT-001713 +QTS-01939,PER-0157,price_sensitivity,2024-12-03T00:00:00,26.9,INT-001291 +QTS-01940,PER-0157,response_time,2025-07-10T00:00:00,32.2,INT-001354 +QTS-01941,PER-0157,visit_depth,2025-08-17T00:00:00,24.8,INT-001820 +QTS-01942,PER-0157,response_time,2025-12-19T00:00:00,48.5,INT-001837 +QTS-01943,PER-0157,response_time,2025-12-27T00:00:00,46.1,INT-000990 +QTS-01944,PER-0157,response_time,2026-04-02T00:00:00,51.0,INT-000752 +QTS-01946,PER-0158,interaction_frequency,2024-01-27T00:00:00,10,INT-000488 +QTS-01947,PER-0158,visit_depth,2024-03-28T00:00:00,16.1,INT-001132 +QTS-01948,PER-0158,competitor_mention,2024-04-06T00:00:00,21.5,INT-001388 +QTS-01949,PER-0158,interaction_frequency,2024-05-03T00:00:00,30.3,INT-000852 +QTS-01950,PER-0158,interaction_frequency,2024-12-10T00:00:00,47.0,INT-000729 +QTS-01951,PER-0158,price_sensitivity,2024-12-19T00:00:00,57.3,INT-000984 +QTS-01952,PER-0158,response_time,2024-12-28T00:00:00,71.8,INT-001310 +QTS-01953,PER-0158,price_sensitivity,2025-02-12T00:00:00,70.5,INT-000037 +QTS-01954,PER-0158,visit_depth,2025-02-15T00:00:00,79.0,INT-001502 +QTS-01955,PER-0158,response_time,2025-06-22T00:00:00,98,INT-001106 +QTS-01957,PER-0159,response_time,2024-05-21T00:00:00,13.8,INT-000865 +QTS-01958,PER-0159,interaction_frequency,2024-08-27T00:00:00,18.2,INT-000028 +QTS-01959,PER-0159,competitor_mention,2025-05-20T00:00:00,26.9,INT-001486 +QTS-01960,PER-0159,competitor_mention,2025-06-26T00:00:00,40.9,INT-000928 +QTS-01961,PER-0159,interaction_frequency,2025-09-09T00:00:00,34.7,INT-001181 +QTS-01962,PER-0159,price_sensitivity,2025-09-15T00:00:00,41.6,INT-000406 +QTS-01963,PER-0159,competitor_mention,2026-01-07T00:00:00,61.3,INT-001814 +QTS-01965,PER-0160,competitor_mention,2024-04-14T00:00:00,10,INT-000426 +QTS-01966,PER-0160,price_sensitivity,2024-07-07T00:00:00,19.6,INT-001795 +QTS-01967,PER-0160,interaction_frequency,2024-07-22T00:00:00,26.1,INT-001843 +QTS-01968,PER-0160,interaction_frequency,2024-11-30T00:00:00,39.8,INT-001353 +QTS-01969,PER-0160,visit_depth,2024-12-04T00:00:00,62.1,INT-001353 +QTS-01970,PER-0160,interaction_frequency,2025-04-28T00:00:00,66.3,INT-001536 +QTS-01971,PER-0160,competitor_mention,2025-05-08T00:00:00,81.4,INT-001186 +QTS-01972,PER-0160,interaction_frequency,2025-11-12T00:00:00,82.3,INT-001337 +QTS-01974,PER-0161,response_time,2024-05-14T00:00:00,22.6,INT-001324 +QTS-01975,PER-0161,competitor_mention,2024-08-18T00:00:00,23.9,INT-000351 +QTS-01976,PER-0161,response_time,2024-09-28T00:00:00,48.7,INT-000357 +QTS-01977,PER-0161,interaction_frequency,2024-12-20T00:00:00,62.8,INT-001890 +QTS-01978,PER-0161,visit_depth,2024-12-29T00:00:00,68.3,INT-000408 +QTS-01979,PER-0161,response_time,2025-11-10T00:00:00,95.8,INT-000678 +QTS-01981,PER-0162,price_sensitivity,2024-01-16T00:00:00,17.6,INT-001342 +QTS-01982,PER-0162,price_sensitivity,2024-03-15T00:00:00,14.9,INT-001844 +QTS-01983,PER-0162,response_time,2024-05-18T00:00:00,32.5,INT-000025 +QTS-01984,PER-0162,competitor_mention,2024-05-23T00:00:00,41.3,INT-000209 +QTS-01985,PER-0162,interaction_frequency,2024-09-01T00:00:00,41.4,INT-001720 +QTS-01986,PER-0162,competitor_mention,2025-03-08T00:00:00,63.6,INT-000028 +QTS-01987,PER-0162,competitor_mention,2025-05-18T00:00:00,74.7,INT-001000 +QTS-01988,PER-0162,price_sensitivity,2025-08-16T00:00:00,76.8,INT-000985 +QTS-01989,PER-0162,visit_depth,2025-10-06T00:00:00,88.8,INT-000423 +QTS-01990,PER-0162,response_time,2026-01-21T00:00:00,98,INT-000595 +QTS-01992,PER-0163,price_sensitivity,2024-02-10T00:00:00,10,INT-001777 +QTS-01993,PER-0163,price_sensitivity,2024-02-16T00:00:00,10,INT-000436 +QTS-01994,PER-0163,visit_depth,2024-03-12T00:00:00,22.4,INT-000050 +QTS-01995,PER-0163,visit_depth,2024-03-16T00:00:00,28.8,INT-000124 +QTS-01996,PER-0163,visit_depth,2024-08-12T00:00:00,32.4,INT-000200 +QTS-01997,PER-0163,interaction_frequency,2024-10-31T00:00:00,53.5,INT-000810 +QTS-01998,PER-0163,price_sensitivity,2025-04-11T00:00:00,47.9,INT-001140 +QTS-01999,PER-0163,visit_depth,2025-06-03T00:00:00,65.8,INT-001777 +QTS-02000,PER-0163,price_sensitivity,2025-11-26T00:00:00,65.4,INT-001281 +QTS-02001,PER-0163,price_sensitivity,2025-11-30T00:00:00,85.0,INT-001664 +QTS-02002,PER-0163,visit_depth,2026-02-17T00:00:00,90.9,INT-001819 +QTS-02003,PER-0163,interaction_frequency,2026-03-10T00:00:00,98.0,INT-000502 +QTS-02005,PER-0164,price_sensitivity,2024-05-11T00:00:00,16.0,INT-000277 +QTS-02006,PER-0164,price_sensitivity,2024-07-10T00:00:00,30.3,INT-000054 +QTS-02007,PER-0164,competitor_mention,2024-08-29T00:00:00,34.0,INT-000620 +QTS-02008,PER-0164,interaction_frequency,2025-02-15T00:00:00,60.0,INT-001204 +QTS-02009,PER-0164,visit_depth,2025-03-27T00:00:00,73.2,INT-000167 +QTS-02010,PER-0164,interaction_frequency,2025-09-23T00:00:00,89.6,INT-000008 +QTS-02012,PER-0165,price_sensitivity,2025-08-11T00:00:00,19.2,INT-000959 +QTS-02013,PER-0165,competitor_mention,2025-08-12T00:00:00,49.0,INT-001164 +QTS-02014,PER-0165,price_sensitivity,2026-03-08T00:00:00,71.3,INT-000563 +QTS-02015,PER-0165,visit_depth,2026-03-20T00:00:00,91.8,INT-001242 +QTS-02017,PER-0165-CO,competitor_mention,2024-02-08T00:00:00,10,INT-000598 +QTS-02018,PER-0165-CO,response_time,2024-06-13T00:00:00,29.4,INT-000220 +QTS-02019,PER-0165-CO,visit_depth,2024-08-03T00:00:00,44.3,INT-001509 +QTS-02020,PER-0165-CO,response_time,2024-08-15T00:00:00,60.9,INT-000192 +QTS-02021,PER-0165-CO,response_time,2025-08-30T00:00:00,88.9,INT-001568 +QTS-02023,PER-0166,competitor_mention,2024-01-02T00:00:00,16.0,INT-000408 +QTS-02024,PER-0166,competitor_mention,2024-01-30T00:00:00,25.7,INT-000693 +QTS-02025,PER-0166,price_sensitivity,2024-07-13T00:00:00,40.4,INT-001316 +QTS-02026,PER-0166,response_time,2024-12-04T00:00:00,37.7,INT-000049 +QTS-02027,PER-0166,visit_depth,2025-01-19T00:00:00,60.4,INT-000314 +QTS-02028,PER-0166,response_time,2025-09-28T00:00:00,57.1,INT-000667 +QTS-02030,PER-0167,visit_depth,2024-04-29T00:00:00,10,INT-000474 +QTS-02031,PER-0167,response_time,2024-06-14T00:00:00,11.4,INT-000015 +QTS-02032,PER-0167,visit_depth,2024-08-16T00:00:00,14.3,INT-001262 +QTS-02033,PER-0167,price_sensitivity,2024-09-04T00:00:00,21.5,INT-000848 +QTS-02034,PER-0167,interaction_frequency,2024-09-29T00:00:00,23.5,INT-001507 +QTS-02035,PER-0167,price_sensitivity,2025-06-23T00:00:00,36.3,INT-000783 +QTS-02036,PER-0167,response_time,2025-10-15T00:00:00,45.6,INT-000667 +QTS-02037,PER-0167,response_time,2025-12-24T00:00:00,38.9,INT-001244 +QTS-02038,PER-0167,price_sensitivity,2026-03-18T00:00:00,50.7,INT-000995 +QTS-02039,PER-0167,visit_depth,2026-04-15T00:00:00,67.1,INT-001126 +QTS-02041,PER-0168,visit_depth,2024-08-24T00:00:00,14.4,INT-000129 +QTS-02042,PER-0168,response_time,2025-01-06T00:00:00,39.0,INT-000144 +QTS-02043,PER-0168,interaction_frequency,2025-05-25T00:00:00,56.3,INT-000209 +QTS-02044,PER-0168,competitor_mention,2026-03-05T00:00:00,60.8,INT-001149 +QTS-02046,PER-0168-CO,competitor_mention,2024-01-13T00:00:00,10,INT-001564 +QTS-02047,PER-0168-CO,competitor_mention,2024-04-15T00:00:00,15.7,INT-000752 +QTS-02048,PER-0168-CO,response_time,2024-07-10T00:00:00,13.5,INT-001028 +QTS-02049,PER-0168-CO,competitor_mention,2024-09-18T00:00:00,10.5,INT-001594 +QTS-02050,PER-0168-CO,interaction_frequency,2024-10-15T00:00:00,22.1,INT-000312 +QTS-02051,PER-0168-CO,interaction_frequency,2025-06-10T00:00:00,35.7,INT-001689 +QTS-02052,PER-0168-CO,interaction_frequency,2025-07-02T00:00:00,31.3,INT-000828 +QTS-02053,PER-0168-CO,competitor_mention,2025-07-03T00:00:00,36.0,INT-001822 +QTS-02054,PER-0168-CO,visit_depth,2025-08-23T00:00:00,52.7,INT-001453 +QTS-02055,PER-0168-CO,visit_depth,2026-02-09T00:00:00,42.7,INT-000721 +QTS-02056,PER-0168-CO,price_sensitivity,2026-03-22T00:00:00,57.3,INT-000536 +QTS-02058,PER-0169,interaction_frequency,2024-01-16T00:00:00,14.7,INT-001488 +QTS-02059,PER-0169,competitor_mention,2024-09-01T00:00:00,38.0,INT-001122 +QTS-02060,PER-0169,response_time,2025-04-19T00:00:00,52.4,INT-001618 +QTS-02061,PER-0169,visit_depth,2025-06-14T00:00:00,64.0,INT-001266 +QTS-02062,PER-0169,response_time,2025-09-20T00:00:00,82.0,INT-001503 +QTS-02064,PER-0170,price_sensitivity,2024-03-12T00:00:00,11.9,INT-001579 +QTS-02065,PER-0170,price_sensitivity,2024-05-26T00:00:00,10.0,INT-000684 +QTS-02066,PER-0170,interaction_frequency,2024-05-29T00:00:00,21.8,INT-000748 +QTS-02067,PER-0170,price_sensitivity,2024-07-27T00:00:00,36.0,INT-000263 +QTS-02068,PER-0170,response_time,2024-08-20T00:00:00,47.2,INT-000693 +QTS-02069,PER-0170,interaction_frequency,2024-10-03T00:00:00,52.2,INT-000983 +QTS-02070,PER-0170,visit_depth,2024-12-16T00:00:00,49.8,INT-001411 +QTS-02071,PER-0170,price_sensitivity,2025-01-28T00:00:00,66.3,INT-001219 +QTS-02072,PER-0170,price_sensitivity,2025-02-02T00:00:00,77.1,INT-000088 +QTS-02073,PER-0170,competitor_mention,2025-10-04T00:00:00,89.4,INT-001227 +QTS-02074,PER-0170,visit_depth,2025-12-02T00:00:00,85.1,INT-000774 +QTS-02075,PER-0170,response_time,2025-12-29T00:00:00,90.0,INT-000646 +QTS-02077,PER-0171,interaction_frequency,2024-01-03T00:00:00,10,INT-001247 +QTS-02078,PER-0171,response_time,2024-10-24T00:00:00,20.2,INT-000790 +QTS-02079,PER-0171,competitor_mention,2025-03-08T00:00:00,13.6,INT-000933 +QTS-02080,PER-0171,interaction_frequency,2025-05-25T00:00:00,39.1,INT-000048 +QTS-02081,PER-0171,price_sensitivity,2025-11-28T00:00:00,42.9,INT-001550 +QTS-02082,PER-0171,interaction_frequency,2025-12-13T00:00:00,37.4,INT-000879 +QTS-02083,PER-0171,competitor_mention,2026-01-10T00:00:00,62.6,INT-000109 +QTS-02084,PER-0171,response_time,2026-01-21T00:00:00,69.3,INT-001591 +QTS-02086,PER-0172,visit_depth,2024-01-17T00:00:00,10,INT-000537 +QTS-02087,PER-0172,interaction_frequency,2024-03-04T00:00:00,10,INT-000370 +QTS-02088,PER-0172,response_time,2024-04-11T00:00:00,18.2,INT-000296 +QTS-02089,PER-0172,interaction_frequency,2024-10-18T00:00:00,32.2,INT-000870 +QTS-02090,PER-0172,interaction_frequency,2024-11-03T00:00:00,43.1,INT-000512 +QTS-02091,PER-0172,response_time,2025-06-21T00:00:00,51.1,INT-001606 +QTS-02092,PER-0172,price_sensitivity,2025-07-02T00:00:00,57.5,INT-001458 +QTS-02093,PER-0172,competitor_mention,2025-07-08T00:00:00,53.6,INT-000641 +QTS-02094,PER-0172,interaction_frequency,2025-07-09T00:00:00,74.5,INT-001144 +QTS-02095,PER-0172,price_sensitivity,2025-09-10T00:00:00,73.8,INT-001060 +QTS-02096,PER-0172,response_time,2025-10-12T00:00:00,90.1,INT-001636 +QTS-02097,PER-0172,competitor_mention,2026-03-03T00:00:00,98,INT-000833 +QTS-02099,PER-0173,visit_depth,2024-08-17T00:00:00,15.5,INT-000685 +QTS-02100,PER-0173,price_sensitivity,2025-02-10T00:00:00,26.3,INT-001896 +QTS-02101,PER-0173,interaction_frequency,2025-04-05T00:00:00,28.9,INT-001578 +QTS-02102,PER-0173,price_sensitivity,2025-04-28T00:00:00,49.4,INT-001424 +QTS-02103,PER-0173,competitor_mention,2025-07-23T00:00:00,53.9,INT-001839 +QTS-02104,PER-0173,price_sensitivity,2025-07-24T00:00:00,65.8,INT-000038 +QTS-02105,PER-0173,response_time,2025-10-18T00:00:00,94.3,INT-000446 +QTS-02106,PER-0173,competitor_mention,2025-12-02T00:00:00,97.6,INT-001718 +QTS-02108,PER-0174,competitor_mention,2024-04-22T00:00:00,10,INT-000456 +QTS-02109,PER-0174,interaction_frequency,2024-06-17T00:00:00,26.0,INT-000990 +QTS-02110,PER-0174,response_time,2024-08-27T00:00:00,45.8,INT-000095 +QTS-02111,PER-0174,response_time,2025-01-29T00:00:00,60.0,INT-001378 +QTS-02112,PER-0174,interaction_frequency,2025-03-02T00:00:00,70.8,INT-000987 +QTS-02113,PER-0174,competitor_mention,2025-06-15T00:00:00,80.1,INT-001820 +QTS-02114,PER-0174,competitor_mention,2026-02-03T00:00:00,94.4,INT-000837 +QTS-02116,PER-0175,visit_depth,2024-04-21T00:00:00,18.2,INT-001353 +QTS-02117,PER-0175,visit_depth,2024-05-12T00:00:00,27.4,INT-000347 +QTS-02118,PER-0175,visit_depth,2024-09-02T00:00:00,27.3,INT-001067 +QTS-02119,PER-0175,visit_depth,2024-12-17T00:00:00,40.5,INT-001591 +QTS-02120,PER-0175,interaction_frequency,2025-09-06T00:00:00,56.2,INT-000515 +QTS-02121,PER-0175,response_time,2025-11-24T00:00:00,65.6,INT-001110 +QTS-02122,PER-0175,visit_depth,2026-01-12T00:00:00,91.8,INT-000125 +QTS-02123,PER-0175,price_sensitivity,2026-01-20T00:00:00,86.1,INT-001378 +QTS-02125,PER-0176,competitor_mention,2024-03-17T00:00:00,18.4,INT-001600 +QTS-02126,PER-0176,response_time,2024-09-14T00:00:00,32.4,INT-001471 +QTS-02127,PER-0176,response_time,2024-11-06T00:00:00,49.8,INT-000579 +QTS-02128,PER-0176,response_time,2025-01-03T00:00:00,54.9,INT-001060 +QTS-02129,PER-0176,response_time,2025-08-29T00:00:00,61.5,INT-000907 +QTS-02130,PER-0176,interaction_frequency,2025-12-10T00:00:00,71.1,INT-000914 +QTS-02131,PER-0176,interaction_frequency,2026-03-05T00:00:00,92.9,INT-000564 +QTS-02133,PER-0177,visit_depth,2024-02-17T00:00:00,21.2,INT-000355 +QTS-02134,PER-0177,visit_depth,2024-08-28T00:00:00,21.3,INT-000143 +QTS-02135,PER-0177,price_sensitivity,2025-05-19T00:00:00,51.2,INT-001203 +QTS-02136,PER-0177,response_time,2025-10-20T00:00:00,64.6,INT-001563 +QTS-02137,PER-0177,interaction_frequency,2026-03-10T00:00:00,72.8,INT-001384 +QTS-02139,PER-0178,interaction_frequency,2024-01-14T00:00:00,15.8,INT-000986 +QTS-02140,PER-0178,interaction_frequency,2024-01-25T00:00:00,14.8,INT-001154 +QTS-02141,PER-0178,visit_depth,2024-04-06T00:00:00,35.6,INT-001858 +QTS-02142,PER-0178,price_sensitivity,2024-06-12T00:00:00,33.2,INT-001588 +QTS-02143,PER-0178,competitor_mention,2024-11-17T00:00:00,44.3,INT-000556 +QTS-02144,PER-0178,interaction_frequency,2025-02-06T00:00:00,58.3,INT-000720 +QTS-02145,PER-0178,interaction_frequency,2025-09-28T00:00:00,68.5,INT-001552 +QTS-02146,PER-0178,competitor_mention,2025-09-28T00:00:00,91.7,INT-001698 +QTS-02148,PER-0179,price_sensitivity,2024-04-02T00:00:00,19.6,INT-001302 +QTS-02149,PER-0179,interaction_frequency,2024-09-03T00:00:00,22.9,INT-000583 +QTS-02150,PER-0179,price_sensitivity,2024-10-06T00:00:00,34.6,INT-001178 +QTS-02151,PER-0179,price_sensitivity,2025-01-11T00:00:00,36.9,INT-000328 +QTS-02152,PER-0179,response_time,2025-02-12T00:00:00,49.4,INT-000791 +QTS-02153,PER-0179,price_sensitivity,2025-02-21T00:00:00,68.7,INT-001680 +QTS-02154,PER-0179,response_time,2025-03-08T00:00:00,64.8,INT-001145 +QTS-02155,PER-0179,interaction_frequency,2025-07-09T00:00:00,81.0,INT-001083 +QTS-02156,PER-0179,price_sensitivity,2025-07-22T00:00:00,98,INT-000157 +QTS-02157,PER-0179,interaction_frequency,2025-12-12T00:00:00,98,INT-001670 +QTS-02159,PER-0180,price_sensitivity,2024-04-04T00:00:00,18.9,INT-001477 +QTS-02160,PER-0180,visit_depth,2024-04-30T00:00:00,33.8,INT-000635 +QTS-02161,PER-0180,competitor_mention,2024-05-24T00:00:00,41.6,INT-001617 +QTS-02162,PER-0180,competitor_mention,2024-09-06T00:00:00,64.5,INT-001527 +QTS-02163,PER-0180,interaction_frequency,2025-05-15T00:00:00,73.1,INT-000572 +QTS-02164,PER-0180,price_sensitivity,2025-12-04T00:00:00,91.0,INT-001244 +QTS-02165,PER-0180,interaction_frequency,2025-12-12T00:00:00,98,INT-000490 +QTS-02167,PER-0181,competitor_mention,2024-03-13T00:00:00,10,INT-000948 +QTS-02168,PER-0181,interaction_frequency,2024-12-08T00:00:00,30.9,INT-001599 +QTS-02169,PER-0181,visit_depth,2025-02-18T00:00:00,47.9,INT-001735 +QTS-02170,PER-0181,response_time,2025-06-09T00:00:00,55.9,INT-001556 +QTS-02171,PER-0181,visit_depth,2026-01-03T00:00:00,72.8,INT-000986 +QTS-02173,PER-0182,response_time,2024-01-23T00:00:00,13.5,INT-000712 +QTS-02174,PER-0182,visit_depth,2024-02-14T00:00:00,34.5,INT-000079 +QTS-02175,PER-0182,competitor_mention,2024-06-07T00:00:00,43.4,INT-001764 +QTS-02176,PER-0182,interaction_frequency,2024-10-18T00:00:00,52.7,INT-000908 +QTS-02177,PER-0182,visit_depth,2024-12-18T00:00:00,58.0,INT-000595 +QTS-02178,PER-0182,response_time,2025-02-05T00:00:00,83.4,INT-001561 +QTS-02180,PER-0183,response_time,2024-05-28T00:00:00,13.2,INT-001097 +QTS-02181,PER-0183,price_sensitivity,2024-08-21T00:00:00,33.3,INT-001566 +QTS-02182,PER-0183,price_sensitivity,2024-12-17T00:00:00,34.0,INT-001266 +QTS-02183,PER-0183,competitor_mention,2024-12-25T00:00:00,58.0,INT-000092 +QTS-02184,PER-0183,response_time,2025-02-05T00:00:00,65.6,INT-001095 +QTS-02185,PER-0183,interaction_frequency,2025-11-07T00:00:00,87.9,INT-000022 +QTS-02186,PER-0183,interaction_frequency,2026-03-05T00:00:00,95.9,INT-000006 +QTS-02188,PER-0184,price_sensitivity,2024-01-05T00:00:00,18.8,INT-001221 +QTS-02189,PER-0184,response_time,2024-04-25T00:00:00,14.3,INT-001755 +QTS-02190,PER-0184,response_time,2024-09-26T00:00:00,29.1,INT-001639 +QTS-02191,PER-0184,competitor_mention,2025-03-15T00:00:00,38.3,INT-000373 +QTS-02192,PER-0184,competitor_mention,2025-04-23T00:00:00,48.8,INT-000221 +QTS-02193,PER-0184,competitor_mention,2025-06-02T00:00:00,61.6,INT-001477 +QTS-02194,PER-0184,response_time,2025-06-10T00:00:00,81.3,INT-000240 +QTS-02195,PER-0184,competitor_mention,2025-11-18T00:00:00,96.1,INT-000715 +QTS-02197,PER-0184-CO,interaction_frequency,2024-01-12T00:00:00,21.2,INT-000029 +QTS-02198,PER-0184-CO,interaction_frequency,2024-09-20T00:00:00,24.7,INT-000453 +QTS-02199,PER-0184-CO,competitor_mention,2025-01-29T00:00:00,41.5,INT-001489 +QTS-02200,PER-0184-CO,response_time,2025-02-04T00:00:00,37.9,INT-001400 +QTS-02201,PER-0184-CO,competitor_mention,2025-09-08T00:00:00,63.0,INT-001293 +QTS-02202,PER-0184-CO,response_time,2025-10-05T00:00:00,71.4,INT-000491 +QTS-02203,PER-0184-CO,price_sensitivity,2025-11-18T00:00:00,75.9,INT-000649 diff --git a/db assets/synthetic_crm_v1/csv/intel_reminders.csv b/db assets/synthetic_crm_v1/csv/intel_reminders.csv new file mode 100644 index 00000000..3d3d45d4 --- /dev/null +++ b/db assets/synthetic_crm_v1/csv/intel_reminders.csv @@ -0,0 +1,760 @@ +reminder_id,person_id,interaction_id,reminder_text,due_at,status,assigned_to,metadata_json +REM-00001,PER-0001,INT-000002,Send revised payment plan,2025-09-26T00:00:00,pending,user_002,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00002,PER-0001,INT-000003,Follow up on DTC Sojon pricing discussion,2025-10-20T00:00:00,overdue,user_002,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00003,PER-0001,INT-000009,Follow up on DTC Sojon pricing discussion,2025-11-10T00:00:00,pending,user_002,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00004,PER-0001,INT-000011,Update on road widening approval status,2025-11-27T00:00:00,completed,user_002,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00005,PER-0002,INT-000016,Send revised payment plan,2025-02-11T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00006,PER-0002,INT-000018,Send home loan documents checklist,2025-02-15T00:00:00,completed,user_002,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00007,PER-0002,INT-000019,Send home loan documents checklist,2025-02-19T00:00:00,overdue,user_002,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00008,PER-0003,INT-000021,Send home loan documents checklist,2024-12-07T00:00:00,pending,user_002,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00009,PER-0003,INT-000023,Call back regarding east-facing unit availability,2025-03-01T00:00:00,completed,user_002,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00010,PER-0004,INT-000024,Follow up on Ambuja Utpaala pricing discussion,2025-04-20T00:00:00,completed,user_001,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00011,PER-0004,INT-000025,Schedule family meeting for final decision,2025-05-17T00:00:00,completed,user_001,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00012,PER-0004,INT-000028,Follow up on Ambuja Utpaala pricing discussion,2025-05-27T00:00:00,completed,user_001,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00013,PER-0004,INT-000030,Send home loan documents checklist,2025-06-03T00:00:00,completed,user_001,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00014,PER-0004,INT-000032,Send revised payment plan,2025-07-13T00:00:00,completed,user_001,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00015,PER-0005,INT-000034,Send revised payment plan,2024-06-15T00:00:00,completed,user_003,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00016,PER-0005,INT-000036,Send home loan documents checklist,2024-06-27T00:00:00,pending,user_003,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00017,PER-0005,INT-000037,Send home loan documents checklist,2024-07-04T00:00:00,completed,user_003,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00018,PER-0005,INT-000038,Confirm site visit for Saturday,2024-07-05T00:00:00,overdue,user_003,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00019,PER-0005,INT-000039,Call back regarding east-facing unit availability,2024-07-15T00:00:00,completed,user_003,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00020,PER-0005,INT-000042,Confirm site visit for Saturday,2024-08-06T00:00:00,overdue,user_003,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00021,PER-0006,INT-000047,Send revised payment plan,2024-09-19T00:00:00,completed,user_005,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00022,PER-0007,INT-000048,Send home loan documents checklist,2024-08-02T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00023,PER-0007,INT-000049,Send home loan documents checklist,2024-08-09T00:00:00,pending,user_002,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00024,PER-0008,INT-000056,Confirm site visit for Saturday,2025-08-08T00:00:00,pending,user_001,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00025,PER-0008,INT-000057,Send revised payment plan,2025-09-17T00:00:00,completed,user_001,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00026,PER-0008,INT-000060,Send home loan documents checklist,2025-10-15T00:00:00,pending,user_001,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00027,PER-0008,INT-000061,Send revised payment plan,2025-10-25T00:00:00,completed,user_001,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00028,PER-0009,INT-000064,Send revised payment plan,2026-03-31T00:00:00,completed,user_001,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00029,PER-0010,INT-000070,Share competitor comparison sheet,2024-05-04T00:00:00,pending,user_005,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00030,PER-0010,INT-000071,Update on road widening approval status,2024-05-06T00:00:00,completed,user_005,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00031,PER-0010,INT-000072,Schedule family meeting for final decision,2024-06-08T00:00:00,completed,user_005,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00032,PER-0013,INT-000084,Confirm site visit for Saturday,2025-03-23T00:00:00,pending,user_004,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00033,PER-0013,INT-000085,Call back regarding east-facing unit availability,2025-04-10T00:00:00,overdue,user_004,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00034,PER-0014,INT-000091,Confirm site visit for Saturday,2026-01-09T00:00:00,overdue,user_001,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00035,PER-0014,INT-000093,Update on road widening approval status,2026-01-19T00:00:00,overdue,user_001,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00036,PER-0014,INT-000094,Send home loan documents checklist,2026-02-12T00:00:00,completed,user_001,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00037,PER-0014,INT-000096,Schedule family meeting for final decision,2026-02-22T00:00:00,pending,user_001,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00038,PER-0015,INT-000100,Confirm site visit for Saturday,2025-06-03T00:00:00,overdue,user_005,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00039,PER-0016,INT-000106,Confirm site visit for Saturday,2024-06-15T00:00:00,completed,user_004,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00040,PER-0016,INT-000107,Update on road widening approval status,2024-06-22T00:00:00,completed,user_004,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00041,PER-0017,INT-000108,Call back regarding east-facing unit availability,2026-02-02T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00042,PER-0017,INT-000109,Update on road widening approval status,2026-02-05T00:00:00,completed,user_002,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00043,PER-0017,INT-000110,Send revised payment plan,2026-03-27T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00044,PER-0018,INT-000112,Confirm site visit for Saturday,2024-12-29T00:00:00,overdue,user_002,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00045,PER-0018,INT-000113,Send revised payment plan,2025-01-31T00:00:00,overdue,user_002,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00046,PER-0019,INT-000115,Update on road widening approval status,2026-02-04T00:00:00,completed,user_001,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00047,PER-0019,INT-000118,Share competitor comparison sheet,2026-02-22T00:00:00,overdue,user_001,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00048,PER-0019,INT-000122,Call back regarding east-facing unit availability,2026-03-27T00:00:00,overdue,user_001,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00049,PER-0020,INT-000124,Share competitor comparison sheet,2024-10-30T00:00:00,completed,user_001,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00050,PER-0021,INT-000130,Follow up on Atri Surya Toron pricing discussion,2024-09-05T00:00:00,completed,user_001,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00051,PER-0021,INT-000132,Update on road widening approval status,2024-09-11T00:00:00,pending,user_001,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00052,PER-0022,INT-000137,Confirm site visit for Saturday,2024-07-02T00:00:00,completed,user_002,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00053,PER-0023,INT-000142,Share competitor comparison sheet,2025-01-04T00:00:00,completed,user_001,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00054,PER-0024,INT-000148,Confirm site visit for Saturday,2026-01-28T00:00:00,completed,user_002,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00055,PER-0024,INT-000149,Share competitor comparison sheet,2026-02-14T00:00:00,completed,user_002,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00056,PER-0024,INT-000150,Schedule family meeting for final decision,2026-02-13T00:00:00,pending,user_002,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00057,PER-0024,INT-000151,Send home loan documents checklist,2026-02-14T00:00:00,pending,user_002,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00058,PER-0024,INT-000152,Share competitor comparison sheet,2026-02-15T00:00:00,overdue,user_002,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00059,PER-0024,INT-000153,Schedule family meeting for final decision,2026-02-16T00:00:00,completed,user_002,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00060,PER-0024,INT-000155,Follow up on Merlin Avana pricing discussion,2026-03-25T00:00:00,completed,user_002,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00061,PER-0025,INT-000156,Share competitor comparison sheet,2024-07-23T00:00:00,completed,user_004,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00062,PER-0025,INT-000157,Confirm site visit for Saturday,2024-08-10T00:00:00,pending,user_004,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00063,PER-0026,INT-000164,Send home loan documents checklist,2025-04-23T00:00:00,completed,user_004,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00064,PER-0027,INT-000168,Follow up on Atri Aqua pricing discussion,2024-07-15T00:00:00,completed,user_001,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00065,PER-0027,INT-000171,Update on road widening approval status,2024-08-09T00:00:00,completed,user_001,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00066,PER-0027,INT-000172,Send revised payment plan,2024-08-14T00:00:00,completed,user_001,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00067,PER-0027,INT-000173,Call back regarding east-facing unit availability,2024-08-29T00:00:00,pending,user_001,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00068,PER-0027,INT-000174,Confirm site visit for Saturday,2024-09-12T00:00:00,completed,user_001,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00069,PER-0028,INT-000178,Send home loan documents checklist,2024-09-17T00:00:00,completed,user_003,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00070,PER-0029,INT-000181,Call back regarding east-facing unit availability,2025-05-28T00:00:00,pending,user_003,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00071,PER-0029,INT-000182,Follow up on Atri Surya Toron pricing discussion,2025-06-01T00:00:00,completed,user_003,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00072,PER-0029,INT-000185,Send revised payment plan,2025-07-05T00:00:00,pending,user_003,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00073,PER-0030,INT-000188,Send revised payment plan,2024-12-11T00:00:00,overdue,user_005,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00074,PER-0030,INT-000192,Update on road widening approval status,2025-01-07T00:00:00,overdue,user_005,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00075,PER-0031,INT-000195,Send revised payment plan,2025-10-23T00:00:00,completed,user_004,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00076,PER-0031,INT-000196,Follow up on Merlin Avana pricing discussion,2025-11-22T00:00:00,pending,user_004,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00077,PER-0032,INT-000198,Schedule family meeting for final decision,2024-08-28T00:00:00,completed,user_005,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00078,PER-0032,INT-000199,Call back regarding east-facing unit availability,2024-10-01T00:00:00,completed,user_005,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00079,PER-0032,INT-000201,Update on road widening approval status,2024-11-07T00:00:00,pending,user_005,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00080,PER-0032,INT-000202,Update on road widening approval status,2024-11-23T00:00:00,completed,user_005,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00081,PER-0033,INT-000203,Schedule family meeting for final decision,2025-03-26T00:00:00,pending,user_004,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00082,PER-0033,INT-000205,Call back regarding east-facing unit availability,2025-04-05T00:00:00,overdue,user_004,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00083,PER-0035,INT-000215,Follow up on Siddha Sky Waterfront pricing discussion,2025-11-26T00:00:00,overdue,user_004,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00084,PER-0035,INT-000216,Schedule family meeting for final decision,2025-12-06T00:00:00,completed,user_004,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00085,PER-0035,INT-000217,Share competitor comparison sheet,2025-12-26T00:00:00,pending,user_004,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00086,PER-0035,INT-000220,Send revised payment plan,2026-02-03T00:00:00,completed,user_004,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00087,PER-0035,INT-000221,Call back regarding east-facing unit availability,2026-02-07T00:00:00,completed,user_004,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00088,PER-0036,INT-000222,Update on road widening approval status,2025-09-30T00:00:00,completed,user_003,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00089,PER-0036,INT-000224,Confirm site visit for Saturday,2025-10-24T00:00:00,completed,user_003,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00090,PER-0036,INT-000225,Share competitor comparison sheet,2025-10-23T00:00:00,completed,user_003,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00091,PER-0036,INT-000226,Update on road widening approval status,2025-10-30T00:00:00,pending,user_003,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00092,PER-0036,INT-000231,Follow up on Siddha Serena pricing discussion,2025-12-20T00:00:00,pending,user_003,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00093,PER-0037,INT-000233,Call back regarding east-facing unit availability,2024-11-01T00:00:00,pending,user_002,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00094,PER-0037,INT-000234,Schedule family meeting for final decision,2024-11-04T00:00:00,completed,user_002,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00095,PER-0037,INT-000235,Send home loan documents checklist,2024-11-21T00:00:00,completed,user_002,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00096,PER-0037,INT-000237,Schedule family meeting for final decision,2024-12-04T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00097,PER-0037,INT-000238,Confirm site visit for Saturday,2024-12-04T00:00:00,completed,user_002,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00098,PER-0038,INT-000244,Follow up on Siddha Sky Waterfront pricing discussion,2025-12-26T00:00:00,pending,user_004,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00099,PER-0038,INT-000245,Share competitor comparison sheet,2026-01-06T00:00:00,completed,user_004,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00100,PER-0039,INT-000246,Follow up on Eden Devprayag pricing discussion,2025-08-08T00:00:00,pending,user_002,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00101,PER-0039,INT-000249,Confirm site visit for Saturday,2025-10-15T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00102,PER-0040,INT-000256,Follow up on Ambuja Utpaala pricing discussion,2024-04-07T00:00:00,pending,user_001,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00103,PER-0040,INT-000259,Send revised payment plan,2024-04-19T00:00:00,overdue,user_001,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00104,PER-0040,INT-000260,Call back regarding east-facing unit availability,2024-04-25T00:00:00,pending,user_001,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00105,PER-0041,INT-000261,Schedule family meeting for final decision,2024-03-06T00:00:00,completed,user_003,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00106,PER-0041,INT-000269,Send revised payment plan,2024-04-22T00:00:00,completed,user_003,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00107,PER-0041,INT-000271,Update on road widening approval status,2024-05-04T00:00:00,pending,user_003,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00108,PER-0042,INT-000276,Send home loan documents checklist,2025-10-11T00:00:00,completed,user_004,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00109,PER-0042,INT-000277,Send home loan documents checklist,2025-10-18T00:00:00,completed,user_004,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00110,PER-0043,INT-000278,Follow up on Siddha Sky Waterfront pricing discussion,2024-05-13T00:00:00,overdue,user_002,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00111,PER-0043,INT-000279,Update on road widening approval status,2024-05-24T00:00:00,completed,user_002,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00112,PER-0043,INT-000280,Call back regarding east-facing unit availability,2024-05-30T00:00:00,overdue,user_002,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00113,PER-0044,INT-000287,Update on road widening approval status,2024-02-24T00:00:00,completed,user_004,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00114,PER-0044,INT-000288,Confirm site visit for Saturday,2024-02-24T00:00:00,overdue,user_004,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00115,PER-0044,INT-000290,Follow up on Shriram Grand City pricing discussion,2024-03-08T00:00:00,overdue,user_004,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00116,PER-0045,INT-000296,Send home loan documents checklist,2025-07-15T00:00:00,completed,user_003,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00117,PER-0046,INT-000299,Call back regarding east-facing unit availability,2025-03-22T00:00:00,completed,user_002,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00118,PER-0046,INT-000302,Share competitor comparison sheet,2025-04-17T00:00:00,completed,user_002,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00119,PER-0046,INT-000308,Confirm site visit for Saturday,2025-05-18T00:00:00,completed,user_002,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00120,PER-0047,INT-000311,Update on road widening approval status,2026-03-14T00:00:00,completed,user_001,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00121,PER-0048,INT-000321,Confirm site visit for Saturday,2025-04-02T00:00:00,completed,user_005,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00122,PER-0049,INT-000322,Schedule family meeting for final decision,2024-04-21T00:00:00,completed,user_005,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00123,PER-0049,INT-000332,Share competitor comparison sheet,2024-07-07T00:00:00,completed,user_005,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00124,PER-0050,INT-000335,Call back regarding east-facing unit availability,2026-01-02T00:00:00,completed,user_001,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00125,PER-0050,INT-000336,Send home loan documents checklist,2026-01-14T00:00:00,completed,user_001,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00126,PER-0050,INT-000338,Follow up on DTC Good Earth pricing discussion,2026-03-13T00:00:00,completed,user_001,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00127,PER-0051,INT-000339,Share competitor comparison sheet,2025-09-17T00:00:00,completed,user_005,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00128,PER-0051,INT-000341,Call back regarding east-facing unit availability,2025-10-07T00:00:00,pending,user_005,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00129,PER-0051,INT-000343,Call back regarding east-facing unit availability,2025-10-25T00:00:00,pending,user_005,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00130,PER-0051,INT-000346,Update on road widening approval status,2025-11-26T00:00:00,completed,user_005,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00131,PER-0051,INT-000347,Send home loan documents checklist,2025-11-23T00:00:00,completed,user_005,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00132,PER-0051,INT-000348,Send home loan documents checklist,2025-11-30T00:00:00,completed,user_005,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00133,PER-0051,INT-000351,Follow up on Shriram Grand City pricing discussion,2025-12-15T00:00:00,pending,user_005,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00134,PER-0052,INT-000353,Confirm site visit for Saturday,2025-05-24T00:00:00,pending,user_003,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00135,PER-0052,INT-000361,Follow up on DTC Good Earth pricing discussion,2025-07-19T00:00:00,overdue,user_003,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00136,PER-0052,INT-000362,Call back regarding east-facing unit availability,2025-07-19T00:00:00,pending,user_003,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00137,PER-0052,INT-000364,Confirm site visit for Saturday,2025-07-26T00:00:00,completed,user_003,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00138,PER-0053,INT-000369,Send revised payment plan,2026-01-22T00:00:00,overdue,user_003,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00139,PER-0054,INT-000371,Send home loan documents checklist,2025-12-16T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00140,PER-0054,INT-000372,Call back regarding east-facing unit availability,2026-01-15T00:00:00,pending,user_002,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00141,PER-0055,INT-000379,Send home loan documents checklist,2025-10-30T00:00:00,completed,user_004,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00142,PER-0055,INT-000380,Send revised payment plan,2025-10-28T00:00:00,pending,user_004,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00143,PER-0055,INT-000381,Call back regarding east-facing unit availability,2025-11-23T00:00:00,completed,user_004,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00144,PER-0055,INT-000382,Call back regarding east-facing unit availability,2025-11-29T00:00:00,completed,user_004,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00145,PER-0056,INT-000386,Send home loan documents checklist,2025-11-09T00:00:00,completed,user_003,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00146,PER-0056,INT-000387,Share competitor comparison sheet,2025-12-02T00:00:00,completed,user_003,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00147,PER-0057,INT-000389,Share competitor comparison sheet,2025-01-20T00:00:00,completed,user_003,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00148,PER-0058,INT-000394,Confirm site visit for Saturday,2024-04-10T00:00:00,overdue,user_003,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00149,PER-0058,INT-000398,Share competitor comparison sheet,2024-05-01T00:00:00,completed,user_003,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00150,PER-0058,INT-000404,Share competitor comparison sheet,2024-07-01T00:00:00,completed,user_003,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00151,PER-0058,INT-000405,Follow up on Siddha Sky Waterfront pricing discussion,2024-07-01T00:00:00,completed,user_003,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00152,PER-0059,INT-000406,Send home loan documents checklist,2025-04-02T00:00:00,pending,user_004,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00153,PER-0059,INT-000408,Update on road widening approval status,2025-04-14T00:00:00,completed,user_004,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00154,PER-0059,INT-000410,Send revised payment plan,2025-05-20T00:00:00,completed,user_004,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00155,PER-0059,INT-000414,Update on road widening approval status,2025-06-21T00:00:00,overdue,user_004,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00156,PER-0060,INT-000416,Call back regarding east-facing unit availability,2024-01-31T00:00:00,overdue,user_003,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00157,PER-0060,INT-000421,Update on road widening approval status,2024-03-01T00:00:00,completed,user_003,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00158,PER-0060,INT-000422,Confirm site visit for Saturday,2024-02-29T00:00:00,completed,user_003,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00159,PER-0060,INT-000423,Schedule family meeting for final decision,2024-03-08T00:00:00,completed,user_003,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00160,PER-0060,INT-000424,Send revised payment plan,2024-04-10T00:00:00,completed,user_003,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00161,PER-0060,INT-000425,Schedule family meeting for final decision,2024-04-11T00:00:00,completed,user_003,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00162,PER-0061,INT-000426,Follow up on Godrej Elevate pricing discussion,2024-02-14T00:00:00,completed,user_004,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00163,PER-0061,INT-000427,Schedule family meeting for final decision,2024-02-20T00:00:00,overdue,user_004,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00164,PER-0061,INT-000428,Confirm site visit for Saturday,2024-02-28T00:00:00,completed,user_004,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00165,PER-0061,INT-000429,Send revised payment plan,2024-03-06T00:00:00,completed,user_004,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00166,PER-0061,INT-000432,Call back regarding east-facing unit availability,2024-03-19T00:00:00,completed,user_004,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00167,PER-0061,INT-000434,Call back regarding east-facing unit availability,2024-03-23T00:00:00,completed,user_004,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00168,PER-0061,INT-000436,Update on road widening approval status,2024-04-24T00:00:00,overdue,user_004,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00169,PER-0061,INT-000437,Follow up on Godrej Elevate pricing discussion,2024-04-26T00:00:00,pending,user_004,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00170,PER-0061,INT-000439,Send home loan documents checklist,2024-05-01T00:00:00,overdue,user_004,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00171,PER-0062,INT-000441,Confirm site visit for Saturday,2024-10-19T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00172,PER-0062,INT-000442,Update on road widening approval status,2024-10-28T00:00:00,overdue,user_002,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00173,PER-0063,INT-000448,Update on road widening approval status,2026-01-30T00:00:00,overdue,user_002,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00174,PER-0063,INT-000449,Follow up on Atri Aqua pricing discussion,2026-01-30T00:00:00,completed,user_002,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00175,PER-0063,INT-000451,Call back regarding east-facing unit availability,2026-02-15T00:00:00,pending,user_002,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00176,PER-0064,INT-000456,Send home loan documents checklist,2024-09-11T00:00:00,completed,user_002,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00177,PER-0064,INT-000458,Send home loan documents checklist,2024-09-18T00:00:00,overdue,user_002,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00178,PER-0064,INT-000459,Follow up on Shriram Grand City pricing discussion,2024-09-28T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00179,PER-0064,INT-000461,Send revised payment plan,2024-10-22T00:00:00,overdue,user_002,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00180,PER-0064,INT-000463,Send revised payment plan,2024-11-20T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00181,PER-0064,INT-000464,Schedule family meeting for final decision,2024-11-20T00:00:00,completed,user_002,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00182,PER-0064,INT-000466,Send home loan documents checklist,2024-11-24T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00183,PER-0065,INT-000474,Confirm site visit for Saturday,2026-01-23T00:00:00,completed,user_005,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00184,PER-0065,INT-000476,Send revised payment plan,2026-02-25T00:00:00,completed,user_005,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00185,PER-0066,INT-000481,Send home loan documents checklist,2025-10-20T00:00:00,pending,user_003,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00186,PER-0067,INT-000482,Send revised payment plan,2025-04-10T00:00:00,completed,user_002,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00187,PER-0067,INT-000483,Send home loan documents checklist,2025-04-14T00:00:00,pending,user_002,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00188,PER-0067,INT-000486,Update on road widening approval status,2025-05-08T00:00:00,overdue,user_002,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00189,PER-0067,INT-000492,Send revised payment plan,2025-06-21T00:00:00,completed,user_002,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00190,PER-0068,INT-000494,Share competitor comparison sheet,2024-11-05T00:00:00,overdue,user_005,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00191,PER-0068,INT-000495,Send revised payment plan,2024-11-12T00:00:00,pending,user_005,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00192,PER-0068,INT-000497,Update on road widening approval status,2024-12-13T00:00:00,pending,user_005,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00193,PER-0068,INT-000498,Schedule family meeting for final decision,2024-12-12T00:00:00,completed,user_005,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00194,PER-0068,INT-000500,Confirm site visit for Saturday,2025-01-08T00:00:00,completed,user_005,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00195,PER-0069,INT-000503,Schedule family meeting for final decision,2024-05-30T00:00:00,completed,user_003,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00196,PER-0069,INT-000505,Send revised payment plan,2024-06-19T00:00:00,pending,user_003,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00197,PER-0069,INT-000509,Confirm site visit for Saturday,2024-07-30T00:00:00,completed,user_003,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00198,PER-0069,INT-000510,Schedule family meeting for final decision,2024-07-29T00:00:00,completed,user_003,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00199,PER-0070,INT-000513,Update on road widening approval status,2025-01-30T00:00:00,overdue,user_002,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00200,PER-0070,INT-000515,Send revised payment plan,2025-02-15T00:00:00,overdue,user_002,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00201,PER-0071,INT-000518,Send home loan documents checklist,2026-02-17T00:00:00,pending,user_003,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00202,PER-0071,INT-000522,Schedule family meeting for final decision,2026-03-19T00:00:00,completed,user_003,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00203,PER-0071,INT-000523,Share competitor comparison sheet,2026-03-22T00:00:00,overdue,user_003,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00204,PER-0071,INT-000524,Share competitor comparison sheet,2026-04-10T00:00:00,pending,user_003,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00205,PER-0072,INT-000525,Send home loan documents checklist,2026-02-11T00:00:00,completed,user_004,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00206,PER-0072,INT-000528,Send home loan documents checklist,2026-03-29T00:00:00,overdue,user_004,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00207,PER-0073,INT-000531,Confirm site visit for Saturday,2026-01-15T00:00:00,pending,user_004,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00208,PER-0073,INT-000532,Send home loan documents checklist,2026-01-16T00:00:00,completed,user_004,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00209,PER-0073,INT-000533,Send home loan documents checklist,2026-01-21T00:00:00,pending,user_004,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00210,PER-0073,INT-000536,Update on road widening approval status,2026-03-13T00:00:00,pending,user_004,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00211,PER-0074,INT-000539,Follow up on DTC Sojon pricing discussion,2024-06-20T00:00:00,completed,user_002,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00212,PER-0075,INT-000545,Share competitor comparison sheet,2024-05-09T00:00:00,completed,user_001,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00213,PER-0076,INT-000555,Update on road widening approval status,2024-05-12T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00214,PER-0076,INT-000559,Schedule family meeting for final decision,2024-05-30T00:00:00,overdue,user_002,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00215,PER-0076,INT-000561,Update on road widening approval status,2024-06-16T00:00:00,overdue,user_002,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00216,PER-0077,INT-000563,Call back regarding east-facing unit availability,2024-05-04T00:00:00,completed,user_001,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00217,PER-0077,INT-000566,Confirm site visit for Saturday,2024-06-03T00:00:00,completed,user_001,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00218,PER-0077,INT-000567,Call back regarding east-facing unit availability,2024-06-10T00:00:00,completed,user_001,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00219,PER-0078,INT-000572,Send revised payment plan,2024-11-26T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00220,PER-0078,INT-000573,Update on road widening approval status,2024-11-25T00:00:00,completed,user_002,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00221,PER-0078,INT-000575,Call back regarding east-facing unit availability,2024-12-02T00:00:00,overdue,user_002,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00222,PER-0078,INT-000579,Send home loan documents checklist,2025-01-13T00:00:00,completed,user_002,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00223,PER-0079,INT-000582,Update on road widening approval status,2025-05-16T00:00:00,completed,user_002,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00224,PER-0079,INT-000583,Confirm site visit for Saturday,2025-05-28T00:00:00,overdue,user_002,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00225,PER-0080,INT-000587,Share competitor comparison sheet,2025-10-05T00:00:00,completed,user_004,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00226,PER-0080,INT-000590,Send home loan documents checklist,2025-11-12T00:00:00,pending,user_004,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00227,PER-0081,INT-000592,Send revised payment plan,2024-03-01T00:00:00,completed,user_005,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00228,PER-0081,INT-000600,Call back regarding east-facing unit availability,2024-05-03T00:00:00,completed,user_005,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00229,PER-0082,INT-000604,Share competitor comparison sheet,2025-07-20T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00230,PER-0082,INT-000607,Send revised payment plan,2025-09-15T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00231,PER-0083,INT-000609,Update on road widening approval status,2024-11-17T00:00:00,overdue,user_002,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00232,PER-0083,INT-000612,Schedule family meeting for final decision,2024-12-08T00:00:00,pending,user_002,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00233,PER-0083,INT-000613,Confirm site visit for Saturday,2024-12-20T00:00:00,completed,user_002,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00234,PER-0083,INT-000614,Call back regarding east-facing unit availability,2024-12-31T00:00:00,completed,user_002,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00235,PER-0083,INT-000615,Schedule family meeting for final decision,2025-01-14T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00236,PER-0083,INT-000616,Confirm site visit for Saturday,2025-01-17T00:00:00,pending,user_002,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00237,PER-0083,INT-000619,Send home loan documents checklist,2025-02-02T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00238,PER-0084,INT-000620,Update on road widening approval status,2025-04-20T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00239,PER-0084,INT-000624,Confirm site visit for Saturday,2025-05-31T00:00:00,overdue,user_002,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00240,PER-0085,INT-000628,Send revised payment plan,2024-05-25T00:00:00,completed,user_004,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00241,PER-0085,INT-000629,Confirm site visit for Saturday,2024-06-02T00:00:00,completed,user_004,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00242,PER-0085,INT-000631,Share competitor comparison sheet,2024-07-06T00:00:00,overdue,user_004,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00243,PER-0085,INT-000633,Follow up on Siddha Suburbia Bungalow pricing discussion,2024-08-13T00:00:00,completed,user_004,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00244,PER-0086,INT-000634,Call back regarding east-facing unit availability,2024-05-12T00:00:00,pending,user_001,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00245,PER-0087,INT-000637,Schedule family meeting for final decision,2024-05-10T00:00:00,completed,user_003,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00246,PER-0088,INT-000643,Send revised payment plan,2025-06-08T00:00:00,completed,user_005,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00247,PER-0088,INT-000645,Schedule family meeting for final decision,2025-06-13T00:00:00,completed,user_005,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00248,PER-0088,INT-000648,Schedule family meeting for final decision,2025-06-20T00:00:00,completed,user_005,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00249,PER-0088,INT-000649,Confirm site visit for Saturday,2025-07-02T00:00:00,completed,user_005,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00250,PER-0088,INT-000650,Follow up on Sugam Prakriti pricing discussion,2025-07-05T00:00:00,overdue,user_005,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00251,PER-0088,INT-000653,Follow up on Sugam Prakriti pricing discussion,2025-07-29T00:00:00,completed,user_005,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00252,PER-0088,INT-000654,Update on road widening approval status,2025-07-31T00:00:00,completed,user_005,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00253,PER-0088,INT-000656,Follow up on Sugam Prakriti pricing discussion,2025-08-09T00:00:00,overdue,user_005,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00254,PER-0089,INT-000659,Confirm site visit for Saturday,2024-05-26T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00255,PER-0089,INT-000662,Send revised payment plan,2024-07-13T00:00:00,completed,user_002,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00256,PER-0089,INT-000664,Confirm site visit for Saturday,2024-07-16T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00257,PER-0090,INT-000666,Send revised payment plan,2025-05-15T00:00:00,completed,user_004,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00258,PER-0090,INT-000667,Schedule family meeting for final decision,2025-06-14T00:00:00,completed,user_004,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00259,PER-0090,INT-000668,Call back regarding east-facing unit availability,2025-06-16T00:00:00,pending,user_004,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00260,PER-0091,INT-000669,Send revised payment plan,2024-12-26T00:00:00,overdue,user_002,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00261,PER-0091,INT-000670,Schedule family meeting for final decision,2025-01-31T00:00:00,completed,user_002,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00262,PER-0091,INT-000673,Follow up on Siddha Suburbia Bungalow pricing discussion,2025-02-09T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00263,PER-0091,INT-000678,Follow up on Siddha Suburbia Bungalow pricing discussion,2025-03-17T00:00:00,pending,user_002,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00264,PER-0091,INT-000679,Follow up on Siddha Suburbia Bungalow pricing discussion,2025-03-25T00:00:00,pending,user_002,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00265,PER-0092,INT-000680,Update on road widening approval status,2024-04-11T00:00:00,completed,user_001,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00266,PER-0092,INT-000681,Update on road widening approval status,2024-05-02T00:00:00,completed,user_001,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00267,PER-0092,INT-000682,Schedule family meeting for final decision,2024-05-28T00:00:00,completed,user_001,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00268,PER-0093,INT-000686,Confirm site visit for Saturday,2024-12-25T00:00:00,overdue,user_001,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00269,PER-0093,INT-000694,Call back regarding east-facing unit availability,2025-02-07T00:00:00,completed,user_001,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00270,PER-0094,INT-000697,Share competitor comparison sheet,2024-12-19T00:00:00,completed,user_004,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00271,PER-0094,INT-000699,Share competitor comparison sheet,2025-01-13T00:00:00,completed,user_004,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00272,PER-0094,INT-000700,Update on road widening approval status,2025-01-22T00:00:00,completed,user_004,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00273,PER-0094,INT-000701,Send home loan documents checklist,2025-02-03T00:00:00,completed,user_004,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00274,PER-0095,INT-000705,Send revised payment plan,2025-09-12T00:00:00,completed,user_002,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00275,PER-0095,INT-000706,Send revised payment plan,2025-10-06T00:00:00,completed,user_002,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00276,PER-0095,INT-000710,Schedule family meeting for final decision,2025-11-08T00:00:00,overdue,user_002,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00277,PER-0095,INT-000711,Follow up on Merlin Avana pricing discussion,2025-11-09T00:00:00,completed,user_002,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00278,PER-0096,INT-000712,Follow up on Siddha Sky Waterfront pricing discussion,2024-05-24T00:00:00,pending,user_004,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00279,PER-0096,INT-000713,Share competitor comparison sheet,2024-05-25T00:00:00,completed,user_004,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00280,PER-0096,INT-000714,Confirm site visit for Saturday,2024-06-04T00:00:00,overdue,user_004,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00281,PER-0096,INT-000716,Update on road widening approval status,2024-06-27T00:00:00,completed,user_004,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00282,PER-0096,INT-000718,Confirm site visit for Saturday,2024-07-19T00:00:00,completed,user_004,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00283,PER-0096,INT-000719,Share competitor comparison sheet,2024-08-02T00:00:00,completed,user_004,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00284,PER-0096,INT-000721,Confirm site visit for Saturday,2024-08-05T00:00:00,completed,user_004,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00285,PER-0097,INT-000722,Send revised payment plan,2024-10-03T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00286,PER-0097,INT-000726,Confirm site visit for Saturday,2024-11-02T00:00:00,completed,user_002,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00287,PER-0098,INT-000731,Confirm site visit for Saturday,2024-08-16T00:00:00,completed,user_005,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00288,PER-0098,INT-000732,Call back regarding east-facing unit availability,2024-08-17T00:00:00,completed,user_005,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00289,PER-0099,INT-000739,Update on road widening approval status,2024-04-26T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00290,PER-0099,INT-000742,Share competitor comparison sheet,2024-06-07T00:00:00,pending,user_002,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00291,PER-0099,INT-000743,Confirm site visit for Saturday,2024-06-08T00:00:00,completed,user_002,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00292,PER-0099,INT-000744,Share competitor comparison sheet,2024-06-13T00:00:00,completed,user_002,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00293,PER-0100,INT-000745,Update on road widening approval status,2024-05-21T00:00:00,pending,user_002,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00294,PER-0100,INT-000747,Share competitor comparison sheet,2024-06-30T00:00:00,completed,user_002,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00295,PER-0100,INT-000748,Update on road widening approval status,2024-06-26T00:00:00,completed,user_002,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00296,PER-0101,INT-000754,Update on road widening approval status,2025-10-17T00:00:00,completed,user_001,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00297,PER-0101,INT-000755,Call back regarding east-facing unit availability,2025-10-24T00:00:00,completed,user_001,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00298,PER-0102,INT-000757,Share competitor comparison sheet,2025-08-23T00:00:00,completed,user_001,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00299,PER-0102,INT-000758,Follow up on DTC Sojon pricing discussion,2025-09-03T00:00:00,overdue,user_001,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00300,PER-0102,INT-000759,Send revised payment plan,2025-09-11T00:00:00,overdue,user_001,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00301,PER-0102,INT-000761,Send home loan documents checklist,2025-09-15T00:00:00,completed,user_001,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00302,PER-0102,INT-000763,Follow up on DTC Sojon pricing discussion,2025-09-19T00:00:00,completed,user_001,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00303,PER-0102,INT-000764,Confirm site visit for Saturday,2025-10-11T00:00:00,completed,user_001,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00304,PER-0102,INT-000765,Send home loan documents checklist,2025-10-11T00:00:00,overdue,user_001,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00305,PER-0103,INT-000770,Share competitor comparison sheet,2024-02-12T00:00:00,completed,user_001,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00306,PER-0103,INT-000771,Call back regarding east-facing unit availability,2024-03-28T00:00:00,completed,user_001,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00307,PER-0103,INT-000773,Call back regarding east-facing unit availability,2024-04-03T00:00:00,pending,user_001,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00308,PER-0103,INT-000775,Call back regarding east-facing unit availability,2024-04-12T00:00:00,overdue,user_001,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00309,PER-0103,INT-000776,Follow up on Ambuja Utpaala pricing discussion,2024-04-16T00:00:00,completed,user_001,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00310,PER-0104,INT-000782,Call back regarding east-facing unit availability,2026-02-22T00:00:00,completed,user_003,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00311,PER-0104,INT-000784,Follow up on Merlin Avana pricing discussion,2026-02-19T00:00:00,completed,user_003,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00312,PER-0104,INT-000786,Schedule family meeting for final decision,2026-03-02T00:00:00,completed,user_003,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00313,PER-0104,INT-000789,Update on road widening approval status,2026-03-24T00:00:00,pending,user_003,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00314,PER-0104,INT-000792,Follow up on Merlin Avana pricing discussion,2026-03-28T00:00:00,completed,user_003,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00315,PER-0106,INT-000802,Update on road widening approval status,2025-06-27T00:00:00,completed,user_003,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00316,PER-0106,INT-000805,Update on road widening approval status,2025-07-10T00:00:00,overdue,user_003,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00317,PER-0107,INT-000811,Send home loan documents checklist,2024-11-10T00:00:00,pending,user_005,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00318,PER-0107,INT-000812,Update on road widening approval status,2024-11-12T00:00:00,pending,user_005,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00319,PER-0107,INT-000813,Confirm site visit for Saturday,2024-11-22T00:00:00,pending,user_005,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00320,PER-0108,INT-000817,Confirm site visit for Saturday,2025-11-27T00:00:00,overdue,user_003,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00321,PER-0108,INT-000819,Follow up on Shriram Grand City pricing discussion,2025-12-16T00:00:00,completed,user_003,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00322,PER-0108,INT-000821,Follow up on Shriram Grand City pricing discussion,2025-12-22T00:00:00,completed,user_003,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00323,PER-0109,INT-000824,Send revised payment plan,2025-10-24T00:00:00,pending,user_004,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00324,PER-0109,INT-000825,Schedule family meeting for final decision,2025-11-05T00:00:00,pending,user_004,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00325,PER-0109,INT-000826,Share competitor comparison sheet,2025-11-11T00:00:00,overdue,user_004,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00326,PER-0110,INT-000834,Send revised payment plan,2024-10-31T00:00:00,pending,user_001,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00327,PER-0110,INT-000835,Schedule family meeting for final decision,2024-11-01T00:00:00,completed,user_001,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00328,PER-0110,INT-000836,Send home loan documents checklist,2024-11-25T00:00:00,completed,user_001,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00329,PER-0110,INT-000837,Follow up on Eden Devprayag pricing discussion,2024-11-22T00:00:00,pending,user_001,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00330,PER-0111,INT-000842,Share competitor comparison sheet,2025-12-31T00:00:00,overdue,user_005,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00331,PER-0112,INT-000844,Share competitor comparison sheet,2025-11-12T00:00:00,overdue,user_001,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00332,PER-0112,INT-000846,Schedule family meeting for final decision,2025-12-02T00:00:00,completed,user_001,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00333,PER-0112,INT-000848,Share competitor comparison sheet,2025-12-30T00:00:00,completed,user_001,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00334,PER-0113,INT-000854,Send revised payment plan,2025-11-15T00:00:00,pending,user_002,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00335,PER-0113,INT-000855,Send home loan documents checklist,2025-11-17T00:00:00,overdue,user_002,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00336,PER-0113,INT-000856,Send revised payment plan,2025-11-29T00:00:00,pending,user_002,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00337,PER-0113,INT-000857,Confirm site visit for Saturday,2025-12-08T00:00:00,pending,user_002,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00338,PER-0114,INT-000858,Schedule family meeting for final decision,2025-04-28T00:00:00,overdue,user_004,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00339,PER-0114,INT-000861,Send home loan documents checklist,2025-05-15T00:00:00,pending,user_004,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00340,PER-0114,INT-000862,Share competitor comparison sheet,2025-05-29T00:00:00,completed,user_004,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00341,PER-0114,INT-000863,Follow up on Atri Surya Toron pricing discussion,2025-06-23T00:00:00,overdue,user_004,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00342,PER-0114,INT-000864,Confirm site visit for Saturday,2025-07-17T00:00:00,completed,user_004,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00343,PER-0115,INT-000868,Share competitor comparison sheet,2024-11-28T00:00:00,completed,user_001,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00344,PER-0115,INT-000871,Update on road widening approval status,2024-12-20T00:00:00,completed,user_001,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00345,PER-0115,INT-000872,Confirm site visit for Saturday,2025-01-01T00:00:00,overdue,user_001,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00346,PER-0115,INT-000873,Call back regarding east-facing unit availability,2025-01-11T00:00:00,overdue,user_001,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00347,PER-0115,INT-000874,Schedule family meeting for final decision,2025-01-16T00:00:00,pending,user_001,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00348,PER-0115,INT-000875,Update on road widening approval status,2025-01-23T00:00:00,overdue,user_001,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00349,PER-0116,INT-000877,Send revised payment plan,2024-07-18T00:00:00,completed,user_001,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00350,PER-0116,INT-000878,Confirm site visit for Saturday,2024-07-22T00:00:00,completed,user_001,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00351,PER-0116,INT-000879,Share competitor comparison sheet,2024-07-20T00:00:00,completed,user_001,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00352,PER-0116,INT-000880,Send revised payment plan,2024-07-27T00:00:00,completed,user_001,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00353,PER-0116,INT-000883,Schedule family meeting for final decision,2024-08-21T00:00:00,pending,user_001,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00354,PER-0116,INT-000885,Update on road widening approval status,2024-09-01T00:00:00,completed,user_001,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00355,PER-0117,INT-000888,Share competitor comparison sheet,2024-06-24T00:00:00,pending,user_004,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00356,PER-0117,INT-000890,Update on road widening approval status,2024-06-22T00:00:00,pending,user_004,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00357,PER-0117,INT-000892,Send home loan documents checklist,2024-07-07T00:00:00,completed,user_004,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00358,PER-0117,INT-000893,Send revised payment plan,2024-07-24T00:00:00,completed,user_004,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00359,PER-0117,INT-000895,Follow up on Atri Aqua pricing discussion,2024-08-09T00:00:00,overdue,user_004,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00360,PER-0117,INT-000900,Update on road widening approval status,2024-09-09T00:00:00,completed,user_004,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00361,PER-0118,INT-000907,Send home loan documents checklist,2024-09-03T00:00:00,pending,user_001,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00362,PER-0118,INT-000908,Confirm site visit for Saturday,2024-09-04T00:00:00,completed,user_001,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00363,PER-0118,INT-000910,Update on road widening approval status,2024-09-03T00:00:00,completed,user_001,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00364,PER-0119,INT-000913,Send home loan documents checklist,2024-02-18T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00365,PER-0119,INT-000914,Confirm site visit for Saturday,2024-02-26T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00366,PER-0119,INT-000916,Send home loan documents checklist,2024-03-19T00:00:00,pending,user_002,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00367,PER-0120,INT-000918,Call back regarding east-facing unit availability,2024-05-04T00:00:00,completed,user_003,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00368,PER-0120,INT-000919,Update on road widening approval status,2024-05-14T00:00:00,completed,user_003,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00369,PER-0120,INT-000925,Share competitor comparison sheet,2024-05-23T00:00:00,pending,user_003,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00370,PER-0120,INT-000926,Share competitor comparison sheet,2024-06-04T00:00:00,completed,user_003,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00371,PER-0120,INT-000928,Schedule family meeting for final decision,2024-06-21T00:00:00,completed,user_003,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00372,PER-0120,INT-000931,Follow up on Atri Surya Toron pricing discussion,2024-06-20T00:00:00,completed,user_003,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00373,PER-0121,INT-000933,Send revised payment plan,2025-03-12T00:00:00,pending,user_003,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00374,PER-0121,INT-000936,Schedule family meeting for final decision,2025-03-24T00:00:00,completed,user_003,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00375,PER-0121,INT-000937,Share competitor comparison sheet,2025-04-10T00:00:00,completed,user_003,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00376,PER-0121,INT-000938,Follow up on Sugam Prakriti pricing discussion,2025-04-14T00:00:00,overdue,user_003,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00377,PER-0121,INT-000941,Schedule family meeting for final decision,2025-05-14T00:00:00,pending,user_003,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00378,PER-0121,INT-000942,Follow up on Sugam Prakriti pricing discussion,2025-06-02T00:00:00,pending,user_003,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00379,PER-0122,INT-000943,Confirm site visit for Saturday,2024-03-02T00:00:00,pending,user_005,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00380,PER-0123,INT-000948,Call back regarding east-facing unit availability,2025-10-12T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00381,PER-0123,INT-000950,Schedule family meeting for final decision,2025-11-14T00:00:00,completed,user_002,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00382,PER-0124,INT-000951,Confirm site visit for Saturday,2024-03-21T00:00:00,completed,user_004,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00383,PER-0125,INT-000955,Schedule family meeting for final decision,2025-05-16T00:00:00,completed,user_001,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00384,PER-0125,INT-000956,Share competitor comparison sheet,2025-07-24T00:00:00,completed,user_001,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00385,PER-0125,INT-000957,Follow up on DTC Good Earth pricing discussion,2025-07-27T00:00:00,completed,user_001,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00386,PER-0125,INT-000958,Schedule family meeting for final decision,2025-08-05T00:00:00,completed,user_001,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00387,PER-0126,INT-000959,Schedule family meeting for final decision,2025-09-21T00:00:00,overdue,user_001,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00388,PER-0126,INT-000960,Call back regarding east-facing unit availability,2025-09-22T00:00:00,completed,user_001,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00389,PER-0126,INT-000961,Update on road widening approval status,2025-10-11T00:00:00,completed,user_001,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00390,PER-0126,INT-000962,Update on road widening approval status,2025-10-22T00:00:00,completed,user_001,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00391,PER-0126,INT-000965,Call back regarding east-facing unit availability,2025-11-10T00:00:00,completed,user_001,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00392,PER-0127,INT-000966,Send revised payment plan,2026-02-02T00:00:00,completed,user_001,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00393,PER-0127,INT-000967,Share competitor comparison sheet,2026-02-03T00:00:00,completed,user_001,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00394,PER-0127,INT-000969,Schedule family meeting for final decision,2026-03-30T00:00:00,completed,user_001,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00395,PER-0128,INT-000971,Schedule family meeting for final decision,2026-02-05T00:00:00,completed,user_003,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00396,PER-0128,INT-000972,Share competitor comparison sheet,2026-03-12T00:00:00,completed,user_003,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00397,PER-0129,INT-000973,Call back regarding east-facing unit availability,2024-08-13T00:00:00,overdue,user_003,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00398,PER-0129,INT-000976,Share competitor comparison sheet,2024-08-21T00:00:00,completed,user_003,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00399,PER-0129,INT-000980,Schedule family meeting for final decision,2024-10-17T00:00:00,completed,user_003,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00400,PER-0129,INT-000981,Schedule family meeting for final decision,2024-10-19T00:00:00,completed,user_003,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00401,PER-0130,INT-000982,Schedule family meeting for final decision,2025-09-10T00:00:00,pending,user_003,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00402,PER-0130,INT-000983,Schedule family meeting for final decision,2025-09-28T00:00:00,overdue,user_003,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00403,PER-0130,INT-000984,Send home loan documents checklist,2025-10-07T00:00:00,completed,user_003,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00404,PER-0131,INT-000987,Confirm site visit for Saturday,2025-06-17T00:00:00,pending,user_003,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00405,PER-0131,INT-000990,Send home loan documents checklist,2025-07-10T00:00:00,pending,user_003,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00406,PER-0132,INT-001000,Send home loan documents checklist,2025-01-15T00:00:00,pending,user_001,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00407,PER-0132,INT-001001,Confirm site visit for Saturday,2025-01-30T00:00:00,completed,user_001,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00408,PER-0132,INT-001006,Call back regarding east-facing unit availability,2025-04-08T00:00:00,completed,user_001,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00409,PER-0133,INT-001009,Send revised payment plan,2024-04-26T00:00:00,completed,user_001,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00410,PER-0133,INT-001010,Send home loan documents checklist,2024-04-26T00:00:00,completed,user_001,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00411,PER-0133,INT-001014,Update on road widening approval status,2024-05-20T00:00:00,completed,user_001,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00412,PER-0134,INT-001018,Share competitor comparison sheet,2024-12-27T00:00:00,completed,user_003,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00413,PER-0135,INT-001020,Follow up on Siddha Suburbia Bungalow pricing discussion,2025-02-25T00:00:00,completed,user_004,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00414,PER-0135,INT-001021,Schedule family meeting for final decision,2025-03-13T00:00:00,completed,user_004,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00415,PER-0135,INT-001022,Share competitor comparison sheet,2025-03-22T00:00:00,pending,user_004,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00416,PER-0135,INT-001024,Share competitor comparison sheet,2025-04-17T00:00:00,pending,user_004,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00417,PER-0135,INT-001029,Send revised payment plan,2025-04-26T00:00:00,completed,user_004,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00418,PER-0137,INT-001037,Follow up on DTC Good Earth pricing discussion,2026-02-08T00:00:00,completed,user_002,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00419,PER-0137,INT-001038,Share competitor comparison sheet,2026-02-15T00:00:00,overdue,user_002,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00420,PER-0137,INT-001039,Follow up on DTC Good Earth pricing discussion,2026-03-13T00:00:00,completed,user_002,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00421,PER-0137,INT-001042,Follow up on DTC Good Earth pricing discussion,2026-04-24T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00422,PER-0137,INT-001043,Update on road widening approval status,2026-04-30T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00423,PER-0138,INT-001044,Send revised payment plan,2024-08-12T00:00:00,completed,user_005,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00424,PER-0138,INT-001047,Follow up on Ambuja Utpaala pricing discussion,2024-09-10T00:00:00,completed,user_005,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00425,PER-0139,INT-001053,Confirm site visit for Saturday,2025-03-27T00:00:00,pending,user_003,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00426,PER-0140,INT-001062,Send revised payment plan,2024-07-10T00:00:00,overdue,user_001,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00427,PER-0141,INT-001064,Update on road widening approval status,2024-12-10T00:00:00,completed,user_003,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00428,PER-0142,INT-001070,Update on road widening approval status,2025-07-05T00:00:00,completed,user_003,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00429,PER-0142,INT-001071,Schedule family meeting for final decision,2025-07-29T00:00:00,completed,user_003,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00430,PER-0142,INT-001073,Update on road widening approval status,2025-08-17T00:00:00,overdue,user_003,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00431,PER-0143,INT-001077,Update on road widening approval status,2024-05-05T00:00:00,completed,user_001,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00432,PER-0144,INT-001079,Send home loan documents checklist,2024-06-10T00:00:00,completed,user_002,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00433,PER-0144,INT-001082,Share competitor comparison sheet,2024-07-03T00:00:00,completed,user_002,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00434,PER-0145,INT-001084,Update on road widening approval status,2024-08-13T00:00:00,overdue,user_005,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00435,PER-0145,INT-001085,Share competitor comparison sheet,2024-08-20T00:00:00,completed,user_005,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00436,PER-0145,INT-001087,Confirm site visit for Saturday,2024-10-04T00:00:00,completed,user_005,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00437,PER-0146,INT-001091,Call back regarding east-facing unit availability,2024-07-10T00:00:00,overdue,user_004,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00438,PER-0146,INT-001092,Send revised payment plan,2024-08-04T00:00:00,overdue,user_004,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00439,PER-0148,INT-001096,Confirm site visit for Saturday,2024-11-10T00:00:00,completed,user_002,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00440,PER-0148,INT-001100,Update on road widening approval status,2024-12-11T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00441,PER-0148,INT-001104,Confirm site visit for Saturday,2024-12-28T00:00:00,completed,user_002,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00442,PER-0148,INT-001106,Update on road widening approval status,2025-01-08T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00443,PER-0148,INT-001107,Send revised payment plan,2025-01-12T00:00:00,completed,user_002,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00444,PER-0148,INT-001109,Send home loan documents checklist,2025-01-15T00:00:00,completed,user_002,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00445,PER-0148,INT-001110,Share competitor comparison sheet,2025-02-01T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00446,PER-0149,INT-001111,Send home loan documents checklist,2025-01-10T00:00:00,pending,user_003,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00447,PER-0149,INT-001116,Call back regarding east-facing unit availability,2025-02-28T00:00:00,pending,user_003,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00448,PER-0149,INT-001119,Update on road widening approval status,2025-03-22T00:00:00,completed,user_003,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00449,PER-0150,INT-001121,Schedule family meeting for final decision,2025-11-28T00:00:00,overdue,user_005,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00450,PER-0150,INT-001124,Schedule family meeting for final decision,2026-01-06T00:00:00,completed,user_005,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00451,PER-0150,INT-001126,Call back regarding east-facing unit availability,2026-01-25T00:00:00,completed,user_005,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00452,PER-0151,INT-001133,Share competitor comparison sheet,2025-08-15T00:00:00,completed,user_002,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00453,PER-0151,INT-001135,Schedule family meeting for final decision,2025-08-18T00:00:00,overdue,user_002,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00454,PER-0152,INT-001136,Schedule family meeting for final decision,2024-05-18T00:00:00,completed,user_001,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00455,PER-0153,INT-001141,Follow up on Merlin Avana pricing discussion,2025-07-15T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00456,PER-0154,INT-001148,Send home loan documents checklist,2025-08-15T00:00:00,completed,user_004,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00457,PER-0154,INT-001149,Send revised payment plan,2025-09-02T00:00:00,completed,user_004,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00458,PER-0154,INT-001152,Send home loan documents checklist,2025-09-01T00:00:00,completed,user_004,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00459,PER-0154,INT-001153,Send home loan documents checklist,2025-09-10T00:00:00,overdue,user_004,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00460,PER-0154,INT-001155,Confirm site visit for Saturday,2025-09-26T00:00:00,pending,user_004,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00461,PER-0155,INT-001157,Send home loan documents checklist,2024-02-07T00:00:00,overdue,user_002,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00462,PER-0155,INT-001158,Follow up on Sugam Prakriti pricing discussion,2024-02-14T00:00:00,pending,user_002,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00463,PER-0155,INT-001160,Send home loan documents checklist,2024-03-05T00:00:00,pending,user_002,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00464,PER-0155,INT-001163,Share competitor comparison sheet,2024-03-17T00:00:00,overdue,user_002,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00465,PER-0156,INT-001165,Follow up on DTC Good Earth pricing discussion,2025-02-21T00:00:00,pending,user_001,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00466,PER-0157,INT-001167,Update on road widening approval status,2024-10-08T00:00:00,completed,user_002,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00467,PER-0157,INT-001170,Send home loan documents checklist,2024-12-08T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00468,PER-0157,INT-001171,Send home loan documents checklist,2024-12-21T00:00:00,completed,user_002,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00469,PER-0158,INT-001175,Send home loan documents checklist,2026-01-17T00:00:00,pending,user_003,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00470,PER-0158,INT-001177,Update on road widening approval status,2026-01-27T00:00:00,completed,user_003,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00471,PER-0158,INT-001178,Update on road widening approval status,2026-01-26T00:00:00,overdue,user_003,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00472,PER-0158,INT-001179,Schedule family meeting for final decision,2026-02-13T00:00:00,completed,user_003,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00473,PER-0158,INT-001181,Confirm site visit for Saturday,2026-03-01T00:00:00,completed,user_003,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00474,PER-0159,INT-001184,Confirm site visit for Saturday,2024-06-28T00:00:00,pending,user_004,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00475,PER-0159,INT-001188,Call back regarding east-facing unit availability,2024-08-18T00:00:00,completed,user_004,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00476,PER-0159,INT-001189,Follow up on Siddha Suburbia Bungalow pricing discussion,2024-09-01T00:00:00,overdue,user_004,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00477,PER-0159,INT-001191,Schedule family meeting for final decision,2024-09-23T00:00:00,completed,user_004,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00478,PER-0160,INT-001192,Update on road widening approval status,2025-10-06T00:00:00,pending,user_003,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00479,PER-0160,INT-001194,Update on road widening approval status,2025-11-02T00:00:00,overdue,user_003,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00480,PER-0160,INT-001196,Send home loan documents checklist,2025-12-08T00:00:00,pending,user_003,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00481,PER-0160,INT-001199,Confirm site visit for Saturday,2026-01-04T00:00:00,completed,user_003,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00482,PER-0161,INT-001204,Confirm site visit for Saturday,2024-10-17T00:00:00,completed,user_004,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00483,PER-0162,INT-001206,Schedule family meeting for final decision,2024-09-17T00:00:00,pending,user_005,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00484,PER-0162,INT-001207,Confirm site visit for Saturday,2024-09-14T00:00:00,overdue,user_005,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00485,PER-0162,INT-001209,Call back regarding east-facing unit availability,2024-09-30T00:00:00,completed,user_005,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00486,PER-0162,INT-001217,Confirm site visit for Saturday,2024-11-29T00:00:00,overdue,user_005,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00487,PER-0163,INT-001220,Call back regarding east-facing unit availability,2025-08-07T00:00:00,overdue,user_004,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00488,PER-0164,INT-001225,Share competitor comparison sheet,2024-06-09T00:00:00,overdue,user_004,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00489,PER-0164,INT-001226,Call back regarding east-facing unit availability,2024-06-14T00:00:00,completed,user_004,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00490,PER-0164,INT-001227,Confirm site visit for Saturday,2024-06-27T00:00:00,completed,user_004,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00491,PER-0164,INT-001228,Send home loan documents checklist,2024-07-23T00:00:00,completed,user_004,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00492,PER-0164,INT-001230,Send revised payment plan,2024-08-03T00:00:00,completed,user_004,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00493,PER-0164,INT-001231,Confirm site visit for Saturday,2024-08-14T00:00:00,completed,user_004,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00494,PER-0165,INT-001232,Confirm site visit for Saturday,2025-11-15T00:00:00,completed,user_003,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00495,PER-0166,INT-001237,Send home loan documents checklist,2024-09-10T00:00:00,completed,user_001,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00496,PER-0166,INT-001238,Call back regarding east-facing unit availability,2024-09-26T00:00:00,completed,user_001,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00497,PER-0166,INT-001239,Call back regarding east-facing unit availability,2024-09-24T00:00:00,pending,user_001,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00498,PER-0167,INT-001242,Follow up on Siddha Suburbia Bungalow pricing discussion,2025-10-01T00:00:00,completed,user_005,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00499,PER-0167,INT-001244,Follow up on Siddha Suburbia Bungalow pricing discussion,2025-10-18T00:00:00,completed,user_005,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00500,PER-0168,INT-001246,Update on road widening approval status,2025-09-03T00:00:00,completed,user_005,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00501,PER-0168,INT-001248,Schedule family meeting for final decision,2025-10-29T00:00:00,completed,user_005,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00502,PER-0169,INT-001252,Follow up on Merlin Avana pricing discussion,2025-03-02T00:00:00,completed,user_005,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00503,PER-0169,INT-001254,Schedule family meeting for final decision,2025-03-26T00:00:00,completed,user_005,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00504,PER-0170,INT-001258,Send home loan documents checklist,2026-03-13T00:00:00,overdue,user_003,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00505,PER-0170,INT-001259,Follow up on Atri Aqua pricing discussion,2026-04-04T00:00:00,overdue,user_003,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00506,PER-0170,INT-001260,Share competitor comparison sheet,2026-04-10T00:00:00,completed,user_003,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00507,PER-0170,INT-001261,Send home loan documents checklist,2026-04-17T00:00:00,completed,user_003,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00508,PER-0171,INT-001267,Call back regarding east-facing unit availability,2024-02-17T00:00:00,pending,user_003,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00509,PER-0171,INT-001269,Confirm site visit for Saturday,2024-04-06T00:00:00,completed,user_003,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00510,PER-0172,INT-001271,Call back regarding east-facing unit availability,2024-04-05T00:00:00,pending,user_003,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00511,PER-0173,INT-001278,Confirm site visit for Saturday,2024-08-28T00:00:00,completed,user_004,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00512,PER-0173,INT-001281,Follow up on Siddha Suburbia Bungalow pricing discussion,2024-09-12T00:00:00,completed,user_004,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00513,PER-0173,INT-001282,Share competitor comparison sheet,2024-09-14T00:00:00,completed,user_004,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00514,PER-0173,INT-001283,Follow up on Siddha Suburbia Bungalow pricing discussion,2024-09-27T00:00:00,completed,user_004,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00515,PER-0173,INT-001287,Send home loan documents checklist,2024-10-30T00:00:00,completed,user_004,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00516,PER-0174,INT-001288,Send home loan documents checklist,2024-05-19T00:00:00,overdue,user_002,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00517,PER-0174,INT-001290,Call back regarding east-facing unit availability,2024-05-31T00:00:00,completed,user_002,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00518,PER-0174,INT-001291,Call back regarding east-facing unit availability,2024-06-09T00:00:00,completed,user_002,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00519,PER-0174,INT-001292,Update on road widening approval status,2024-06-24T00:00:00,completed,user_002,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00520,PER-0174,INT-001293,Call back regarding east-facing unit availability,2024-06-26T00:00:00,completed,user_002,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00521,PER-0174,INT-001295,Share competitor comparison sheet,2024-07-12T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00522,PER-0174,INT-001298,Send revised payment plan,2024-08-08T00:00:00,overdue,user_002,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00523,PER-0175,INT-001299,Call back regarding east-facing unit availability,2024-11-07T00:00:00,pending,user_005,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00524,PER-0175,INT-001303,Send revised payment plan,2024-11-30T00:00:00,completed,user_005,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00525,PER-0175,INT-001304,Send revised payment plan,2024-12-27T00:00:00,completed,user_005,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00526,PER-0175,INT-001305,Schedule family meeting for final decision,2025-01-10T00:00:00,overdue,user_005,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00527,PER-0175,INT-001306,Share competitor comparison sheet,2025-01-11T00:00:00,completed,user_005,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00528,PER-0175,INT-001307,Call back regarding east-facing unit availability,2025-01-15T00:00:00,pending,user_005,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00529,PER-0176,INT-001311,Follow up on Siddha Suburbia Bungalow pricing discussion,2025-11-20T00:00:00,overdue,user_005,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00530,PER-0176,INT-001312,Send home loan documents checklist,2026-01-03T00:00:00,overdue,user_005,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00531,PER-0176,INT-001313,Send revised payment plan,2026-01-31T00:00:00,overdue,user_005,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00532,PER-0177,INT-001317,Call back regarding east-facing unit availability,2025-11-23T00:00:00,completed,user_004,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00533,PER-0178,INT-001319,Schedule family meeting for final decision,2025-05-23T00:00:00,completed,user_001,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00534,PER-0178,INT-001322,Send home loan documents checklist,2025-06-18T00:00:00,pending,user_001,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00535,PER-0178,INT-001323,Confirm site visit for Saturday,2025-06-21T00:00:00,overdue,user_001,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00536,PER-0178,INT-001331,Call back regarding east-facing unit availability,2025-08-08T00:00:00,completed,user_001,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00537,PER-0178,INT-001333,Share competitor comparison sheet,2025-08-20T00:00:00,completed,user_001,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00538,PER-0179,INT-001337,Call back regarding east-facing unit availability,2024-03-02T00:00:00,pending,user_005,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00539,PER-0179,INT-001339,Share competitor comparison sheet,2024-03-31T00:00:00,pending,user_005,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00540,PER-0180,INT-001340,Update on road widening approval status,2024-04-20T00:00:00,completed,user_003,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00541,PER-0180,INT-001345,Send home loan documents checklist,2024-05-30T00:00:00,completed,user_003,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00542,PER-0180,INT-001346,Schedule family meeting for final decision,2024-05-31T00:00:00,pending,user_003,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00543,PER-0181,INT-001353,Send revised payment plan,2025-09-19T00:00:00,completed,user_005,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00544,PER-0181,INT-001357,Call back regarding east-facing unit availability,2025-10-20T00:00:00,completed,user_005,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00545,PER-0181,INT-001362,Schedule family meeting for final decision,2025-12-01T00:00:00,completed,user_005,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00546,PER-0181,INT-001364,Send revised payment plan,2025-12-06T00:00:00,completed,user_005,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00547,PER-0182,INT-001365,Follow up on Atri Surya Toron pricing discussion,2024-12-12T00:00:00,completed,user_001,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00548,PER-0182,INT-001366,Confirm site visit for Saturday,2024-12-20T00:00:00,pending,user_001,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00549,PER-0182,INT-001367,Schedule family meeting for final decision,2025-01-02T00:00:00,overdue,user_001,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00550,PER-0182,INT-001368,Call back regarding east-facing unit availability,2025-01-07T00:00:00,completed,user_001,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00551,PER-0183,INT-001371,Confirm site visit for Saturday,2025-08-09T00:00:00,completed,user_001,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00552,PER-0183,INT-001374,Schedule family meeting for final decision,2025-09-03T00:00:00,completed,user_001,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00553,PER-0183,INT-001376,Follow up on Atri Aqua pricing discussion,2025-09-05T00:00:00,completed,user_001,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00554,PER-0183,INT-001377,Share competitor comparison sheet,2025-09-13T00:00:00,completed,user_001,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00555,PER-0183,INT-001379,Schedule family meeting for final decision,2025-09-29T00:00:00,overdue,user_001,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00556,PER-0183,INT-001381,Follow up on Atri Aqua pricing discussion,2025-10-08T00:00:00,overdue,user_001,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00557,PER-0184,INT-001388,Call back regarding east-facing unit availability,2025-12-23T00:00:00,pending,user_002,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00558,PER-0184,INT-001391,Follow up on Godrej Blue pricing discussion,2026-01-13T00:00:00,completed,user_002,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00559,PER-0184,INT-001392,Share competitor comparison sheet,2026-01-20T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00560,PER-0184,INT-001394,Send revised payment plan,2026-02-04T00:00:00,pending,user_002,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00561,PER-0185,INT-001397,Send home loan documents checklist,2025-11-19T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00562,PER-0185,INT-001399,Share competitor comparison sheet,2025-12-08T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00563,PER-0185,INT-001401,Share competitor comparison sheet,2025-12-15T00:00:00,pending,user_002,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00564,PER-0185,INT-001402,Schedule family meeting for final decision,2025-12-18T00:00:00,overdue,user_002,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00565,PER-0185,INT-001403,Send revised payment plan,2026-01-10T00:00:00,completed,user_002,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00566,PER-0185,INT-001404,Follow up on Merlin Avana pricing discussion,2026-01-14T00:00:00,overdue,user_002,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00567,PER-0185,INT-001407,Follow up on Merlin Avana pricing discussion,2026-01-26T00:00:00,overdue,user_002,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00568,PER-0186,INT-001409,Send revised payment plan,2025-01-08T00:00:00,completed,user_004,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00569,PER-0186,INT-001410,Send home loan documents checklist,2025-01-09T00:00:00,completed,user_004,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00570,PER-0186,INT-001412,Call back regarding east-facing unit availability,2025-01-18T00:00:00,pending,user_004,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00571,PER-0186,INT-001419,Update on road widening approval status,2025-02-21T00:00:00,completed,user_004,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00572,PER-0187,INT-001422,Call back regarding east-facing unit availability,2024-08-31T00:00:00,overdue,user_005,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00573,PER-0187,INT-001423,Schedule family meeting for final decision,2024-09-05T00:00:00,pending,user_005,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00574,PER-0187,INT-001426,Confirm site visit for Saturday,2024-09-20T00:00:00,completed,user_005,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00575,PER-0187,INT-001427,Confirm site visit for Saturday,2024-09-19T00:00:00,pending,user_005,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00576,PER-0187,INT-001429,Share competitor comparison sheet,2024-09-27T00:00:00,completed,user_005,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00577,PER-0188,INT-001435,Send home loan documents checklist,2025-01-14T00:00:00,pending,user_002,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00578,PER-0188,INT-001436,Send revised payment plan,2025-01-12T00:00:00,completed,user_002,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00579,PER-0188,INT-001438,Update on road widening approval status,2025-01-27T00:00:00,pending,user_002,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00580,PER-0188,INT-001439,Schedule family meeting for final decision,2025-02-01T00:00:00,completed,user_002,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00581,PER-0188,INT-001443,Follow up on Siddha Suburbia Bungalow pricing discussion,2025-02-14T00:00:00,completed,user_002,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00582,PER-0188,INT-001446,Update on road widening approval status,2025-03-12T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00583,PER-0189,INT-001450,Follow up on Shriram Grand City pricing discussion,2025-12-18T00:00:00,overdue,user_003,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00584,PER-0189,INT-001452,Share competitor comparison sheet,2025-12-29T00:00:00,completed,user_003,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00585,PER-0189,INT-001458,Schedule family meeting for final decision,2026-01-23T00:00:00,completed,user_003,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00586,PER-0189,INT-001460,Update on road widening approval status,2026-02-14T00:00:00,completed,user_003,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00587,PER-0189,INT-001461,Call back regarding east-facing unit availability,2026-02-18T00:00:00,overdue,user_003,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00588,PER-0190,INT-001463,Send home loan documents checklist,2025-07-24T00:00:00,completed,user_001,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00589,PER-0190,INT-001465,Share competitor comparison sheet,2025-08-04T00:00:00,completed,user_001,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00590,PER-0190,INT-001466,Send home loan documents checklist,2025-08-09T00:00:00,overdue,user_001,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00591,PER-0192,INT-001479,Send revised payment plan,2026-03-08T00:00:00,completed,user_005,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00592,PER-0192,INT-001482,Send home loan documents checklist,2026-03-23T00:00:00,completed,user_005,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00593,PER-0192,INT-001483,Follow up on Siddha Suburbia Bungalow pricing discussion,2026-04-01T00:00:00,pending,user_005,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00594,PER-0192,INT-001484,Confirm site visit for Saturday,2026-04-07T00:00:00,completed,user_005,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00595,PER-0193,INT-001488,Update on road widening approval status,2024-08-13T00:00:00,pending,user_002,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00596,PER-0193,INT-001490,Update on road widening approval status,2024-08-15T00:00:00,completed,user_002,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00597,PER-0193,INT-001491,Confirm site visit for Saturday,2024-08-22T00:00:00,completed,user_002,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00598,PER-0193,INT-001493,Update on road widening approval status,2024-08-31T00:00:00,completed,user_002,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00599,PER-0194,INT-001501,Share competitor comparison sheet,2024-12-02T00:00:00,completed,user_003,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00600,PER-0195,INT-001502,Send home loan documents checklist,2024-12-22T00:00:00,completed,user_003,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00601,PER-0195,INT-001507,Schedule family meeting for final decision,2025-02-22T00:00:00,completed,user_003,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00602,PER-0195,INT-001509,Schedule family meeting for final decision,2025-03-16T00:00:00,completed,user_003,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00603,PER-0196,INT-001512,Schedule family meeting for final decision,2024-01-22T00:00:00,overdue,user_002,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00604,PER-0196,INT-001514,Send home loan documents checklist,2024-02-04T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00605,PER-0196,INT-001517,Confirm site visit for Saturday,2024-02-27T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00606,PER-0196,INT-001518,Send home loan documents checklist,2024-02-26T00:00:00,completed,user_002,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00607,PER-0196,INT-001519,Send home loan documents checklist,2024-03-11T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00608,PER-0197,INT-001524,Update on road widening approval status,2024-10-07T00:00:00,overdue,user_001,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00609,PER-0197,INT-001525,Update on road widening approval status,2024-10-26T00:00:00,completed,user_001,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00610,PER-0198,INT-001528,Confirm site visit for Saturday,2025-05-18T00:00:00,completed,user_003,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00611,PER-0198,INT-001531,Share competitor comparison sheet,2025-05-26T00:00:00,overdue,user_003,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00612,PER-0198,INT-001532,Share competitor comparison sheet,2025-06-10T00:00:00,pending,user_003,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00613,PER-0199,INT-001536,Schedule family meeting for final decision,2025-12-30T00:00:00,completed,user_003,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00614,PER-0199,INT-001538,Confirm site visit for Saturday,2026-03-07T00:00:00,completed,user_003,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00615,PER-0199,INT-001539,Share competitor comparison sheet,2026-03-08T00:00:00,overdue,user_003,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00616,PER-0200,INT-001543,Confirm site visit for Saturday,2025-01-12T00:00:00,completed,user_001,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00617,PER-0201,INT-001546,Call back regarding east-facing unit availability,2024-09-07T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00618,PER-0201,INT-001547,Schedule family meeting for final decision,2024-09-16T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00619,PER-0201,INT-001549,Update on road widening approval status,2024-09-21T00:00:00,completed,user_002,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00620,PER-0202,INT-001553,Confirm site visit for Saturday,2024-04-16T00:00:00,overdue,user_001,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00621,PER-0202,INT-001556,Send home loan documents checklist,2024-06-14T00:00:00,completed,user_001,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00622,PER-0203,INT-001558,Schedule family meeting for final decision,2025-08-27T00:00:00,completed,user_003,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00623,PER-0203,INT-001561,Send revised payment plan,2025-09-25T00:00:00,completed,user_003,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00624,PER-0204,INT-001564,Send home loan documents checklist,2024-07-27T00:00:00,overdue,user_005,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00625,PER-0204,INT-001566,Share competitor comparison sheet,2024-08-08T00:00:00,overdue,user_005,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00626,PER-0204,INT-001569,Confirm site visit for Saturday,2024-09-03T00:00:00,completed,user_005,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00627,PER-0204,INT-001572,Share competitor comparison sheet,2024-10-08T00:00:00,pending,user_005,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00628,PER-0205,INT-001574,Call back regarding east-facing unit availability,2025-05-11T00:00:00,completed,user_001,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00629,PER-0205,INT-001575,Schedule family meeting for final decision,2025-05-12T00:00:00,completed,user_001,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00630,PER-0205,INT-001577,Confirm site visit for Saturday,2025-05-20T00:00:00,completed,user_001,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00631,PER-0205,INT-001579,Send home loan documents checklist,2025-06-18T00:00:00,completed,user_001,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00632,PER-0206,INT-001584,Send revised payment plan,2024-06-17T00:00:00,completed,user_003,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00633,PER-0206,INT-001586,Update on road widening approval status,2024-07-21T00:00:00,completed,user_003,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00634,PER-0206,INT-001589,Call back regarding east-facing unit availability,2024-08-31T00:00:00,completed,user_003,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00635,PER-0207,INT-001591,Confirm site visit for Saturday,2025-09-25T00:00:00,completed,user_003,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00636,PER-0207,INT-001592,Send home loan documents checklist,2025-09-27T00:00:00,overdue,user_003,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00637,PER-0207,INT-001594,Follow up on Ambuja Utpaala pricing discussion,2025-10-14T00:00:00,completed,user_003,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00638,PER-0207,INT-001595,Update on road widening approval status,2025-10-26T00:00:00,pending,user_003,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00639,PER-0208,INT-001601,Confirm site visit for Saturday,2025-02-15T00:00:00,completed,user_002,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00640,PER-0208,INT-001602,Update on road widening approval status,2025-02-22T00:00:00,completed,user_002,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00641,PER-0208,INT-001603,Schedule family meeting for final decision,2025-03-30T00:00:00,completed,user_002,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00642,PER-0208,INT-001604,Schedule family meeting for final decision,2025-04-04T00:00:00,completed,user_002,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00643,PER-0209,INT-001606,Schedule family meeting for final decision,2024-02-28T00:00:00,overdue,user_004,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00644,PER-0209,INT-001608,Update on road widening approval status,2024-03-02T00:00:00,completed,user_004,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00645,PER-0209,INT-001609,Follow up on Ambuja Utpaala pricing discussion,2024-03-17T00:00:00,completed,user_004,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00646,PER-0209,INT-001611,Schedule family meeting for final decision,2024-03-28T00:00:00,completed,user_004,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00647,PER-0209,INT-001612,Confirm site visit for Saturday,2024-04-12T00:00:00,overdue,user_004,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00648,PER-0210,INT-001617,Update on road widening approval status,2025-10-01T00:00:00,completed,user_002,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00649,PER-0210,INT-001618,Send revised payment plan,2025-12-09T00:00:00,pending,user_002,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00650,PER-0211,INT-001624,Confirm site visit for Saturday,2025-10-30T00:00:00,completed,user_005,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00651,PER-0212,INT-001629,Share competitor comparison sheet,2024-06-02T00:00:00,pending,user_005,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00652,PER-0212,INT-001630,Share competitor comparison sheet,2024-06-13T00:00:00,completed,user_005,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00653,PER-0212,INT-001631,Share competitor comparison sheet,2024-06-14T00:00:00,completed,user_005,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00654,PER-0213,INT-001636,Confirm site visit for Saturday,2024-05-16T00:00:00,overdue,user_002,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00655,PER-0213,INT-001638,Schedule family meeting for final decision,2024-06-01T00:00:00,overdue,user_002,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00656,PER-0213,INT-001639,Call back regarding east-facing unit availability,2024-06-08T00:00:00,completed,user_002,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00657,PER-0213,INT-001644,Confirm site visit for Saturday,2024-07-29T00:00:00,pending,user_002,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00658,PER-0214,INT-001645,Send home loan documents checklist,2025-08-18T00:00:00,overdue,user_005,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00659,PER-0214,INT-001648,Schedule family meeting for final decision,2025-09-08T00:00:00,completed,user_005,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00660,PER-0215,INT-001652,Share competitor comparison sheet,2025-05-20T00:00:00,completed,user_001,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00661,PER-0215,INT-001653,Share competitor comparison sheet,2025-05-24T00:00:00,pending,user_001,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00662,PER-0215,INT-001659,Confirm site visit for Saturday,2025-08-08T00:00:00,completed,user_001,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00663,PER-0216,INT-001662,Share competitor comparison sheet,2025-03-07T00:00:00,completed,user_005,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00664,PER-0217,INT-001666,Send home loan documents checklist,2024-09-02T00:00:00,pending,user_005,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00665,PER-0217,INT-001667,Confirm site visit for Saturday,2024-10-13T00:00:00,overdue,user_005,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00666,PER-0218,INT-001669,Confirm site visit for Saturday,2026-01-25T00:00:00,completed,user_005,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00667,PER-0218,INT-001670,Send revised payment plan,2026-01-27T00:00:00,completed,user_005,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00668,PER-0218,INT-001673,Confirm site visit for Saturday,2026-02-08T00:00:00,completed,user_005,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00669,PER-0218,INT-001675,Update on road widening approval status,2026-02-09T00:00:00,pending,user_005,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00670,PER-0218,INT-001676,Send revised payment plan,2026-03-01T00:00:00,completed,user_005,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00671,PER-0218,INT-001678,Send home loan documents checklist,2026-03-10T00:00:00,completed,user_005,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00672,PER-0218,INT-001680,Confirm site visit for Saturday,2026-04-08T00:00:00,completed,user_005,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00673,PER-0218,INT-001681,Update on road widening approval status,2026-04-14T00:00:00,overdue,user_005,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00674,PER-0219,INT-001683,Send revised payment plan,2025-07-26T00:00:00,completed,user_004,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00675,PER-0219,INT-001685,Schedule family meeting for final decision,2025-08-06T00:00:00,completed,user_004,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00676,PER-0219,INT-001687,Confirm site visit for Saturday,2025-08-17T00:00:00,completed,user_004,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00677,PER-0219,INT-001688,Send revised payment plan,2025-08-23T00:00:00,completed,user_004,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00678,PER-0219,INT-001689,Send revised payment plan,2025-09-02T00:00:00,completed,user_004,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00679,PER-0220,INT-001698,Confirm site visit for Saturday,2024-11-04T00:00:00,completed,user_003,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00680,PER-0220,INT-001700,Call back regarding east-facing unit availability,2024-11-16T00:00:00,pending,user_003,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00681,PER-0220,INT-001701,Call back regarding east-facing unit availability,2024-12-05T00:00:00,overdue,user_003,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00682,PER-0221,INT-001705,Update on road widening approval status,2024-03-28T00:00:00,completed,user_005,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00683,PER-0221,INT-001706,Follow up on Godrej Elevate pricing discussion,2024-04-04T00:00:00,pending,user_005,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00684,PER-0222,INT-001709,Update on road widening approval status,2026-01-23T00:00:00,pending,user_002,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00685,PER-0222,INT-001710,Confirm site visit for Saturday,2026-01-21T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00686,PER-0223,INT-001714,Call back regarding east-facing unit availability,2025-05-22T00:00:00,completed,user_001,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00687,PER-0223,INT-001715,Call back regarding east-facing unit availability,2025-06-03T00:00:00,overdue,user_001,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00688,PER-0223,INT-001716,Send revised payment plan,2025-06-07T00:00:00,overdue,user_001,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00689,PER-0223,INT-001717,Follow up on Sugam Prakriti pricing discussion,2025-06-04T00:00:00,completed,user_001,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00690,PER-0223,INT-001722,Schedule family meeting for final decision,2025-08-01T00:00:00,overdue,user_001,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00691,PER-0223,INT-001724,Send revised payment plan,2025-08-03T00:00:00,completed,user_001,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00692,PER-0224,INT-001726,Send home loan documents checklist,2025-10-04T00:00:00,pending,user_002,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00693,PER-0224,INT-001727,Share competitor comparison sheet,2025-10-03T00:00:00,completed,user_002,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00694,PER-0224,INT-001730,Update on road widening approval status,2025-10-31T00:00:00,overdue,user_002,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00695,PER-0224,INT-001731,Send home loan documents checklist,2025-11-01T00:00:00,overdue,user_002,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00696,PER-0224,INT-001733,Send home loan documents checklist,2025-11-25T00:00:00,overdue,user_002,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00697,PER-0224,INT-001734,Follow up on Siddha Suburbia Bungalow pricing discussion,2025-12-06T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00698,PER-0225,INT-001735,Send home loan documents checklist,2024-12-05T00:00:00,pending,user_003,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00699,PER-0225,INT-001737,Call back regarding east-facing unit availability,2024-12-14T00:00:00,completed,user_003,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00700,PER-0225,INT-001742,Confirm site visit for Saturday,2025-01-08T00:00:00,completed,user_003,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00701,PER-0225,INT-001744,Follow up on Godrej Elevate pricing discussion,2025-01-07T00:00:00,overdue,user_003,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00702,PER-0225,INT-001745,Follow up on Godrej Elevate pricing discussion,2025-01-10T00:00:00,completed,user_003,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00703,PER-0226,INT-001749,Share competitor comparison sheet,2024-07-13T00:00:00,completed,user_004,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00704,PER-0226,INT-001752,Send home loan documents checklist,2024-07-21T00:00:00,completed,user_004,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00705,PER-0226,INT-001755,Share competitor comparison sheet,2024-08-13T00:00:00,completed,user_004,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00706,PER-0227,INT-001759,Send home loan documents checklist,2025-08-19T00:00:00,completed,user_005,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00707,PER-0228,INT-001762,Call back regarding east-facing unit availability,2025-02-26T00:00:00,overdue,user_003,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00708,PER-0228,INT-001763,Send revised payment plan,2025-03-27T00:00:00,overdue,user_003,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00709,PER-0228,INT-001764,Send revised payment plan,2025-03-25T00:00:00,completed,user_003,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00710,PER-0228,INT-001765,Share competitor comparison sheet,2025-04-09T00:00:00,completed,user_003,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00711,PER-0228,INT-001766,Share competitor comparison sheet,2025-04-19T00:00:00,completed,user_003,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00712,PER-0228,INT-001768,Send home loan documents checklist,2025-05-08T00:00:00,completed,user_003,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00713,PER-0229,INT-001769,Confirm site visit for Saturday,2025-12-23T00:00:00,pending,user_001,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00714,PER-0229,INT-001772,Confirm site visit for Saturday,2026-01-07T00:00:00,pending,user_001,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00715,PER-0229,INT-001774,Call back regarding east-facing unit availability,2026-01-18T00:00:00,overdue,user_001,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00716,PER-0230,INT-001781,Send revised payment plan,2025-07-08T00:00:00,overdue,user_004,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00717,PER-0231,INT-001784,Share competitor comparison sheet,2025-11-20T00:00:00,completed,user_003,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00718,PER-0231,INT-001787,Confirm site visit for Saturday,2025-12-06T00:00:00,completed,user_003,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00719,PER-0232,INT-001791,Call back regarding east-facing unit availability,2025-06-05T00:00:00,pending,user_004,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00720,PER-0232,INT-001794,Confirm site visit for Saturday,2025-08-03T00:00:00,overdue,user_004,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00721,PER-0233,INT-001797,Send home loan documents checklist,2025-11-04T00:00:00,pending,user_003,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00722,PER-0234,INT-001800,Update on road widening approval status,2025-07-16T00:00:00,completed,user_003,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00723,PER-0234,INT-001801,Send home loan documents checklist,2025-07-13T00:00:00,completed,user_003,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00724,PER-0236,INT-001809,Update on road widening approval status,2025-08-29T00:00:00,completed,user_002,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00725,PER-0236,INT-001813,Schedule family meeting for final decision,2025-09-30T00:00:00,pending,user_002,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00726,PER-0237,INT-001817,Follow up on Siddha Sky Waterfront pricing discussion,2025-01-22T00:00:00,completed,user_004,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00727,PER-0237,INT-001818,Send revised payment plan,2025-01-21T00:00:00,completed,user_004,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00728,PER-0237,INT-001820,Confirm site visit for Saturday,2025-01-31T00:00:00,completed,user_004,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00729,PER-0237,INT-001821,Update on road widening approval status,2025-02-10T00:00:00,completed,user_004,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00730,PER-0239,INT-001829,Send home loan documents checklist,2024-11-25T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00731,PER-0239,INT-001830,Schedule family meeting for final decision,2024-12-22T00:00:00,overdue,user_002,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00732,PER-0240,INT-001831,Send home loan documents checklist,2024-11-18T00:00:00,completed,user_004,"{""priority"": ""high"", ""auto_generated"": false}" +REM-00733,PER-0240,INT-001833,Schedule family meeting for final decision,2024-12-29T00:00:00,completed,user_004,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00734,PER-0241,INT-001835,Send revised payment plan,2026-01-12T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00735,PER-0241,INT-001836,Schedule family meeting for final decision,2026-01-15T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00736,PER-0241,INT-001837,Call back regarding east-facing unit availability,2026-01-24T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00737,PER-0242,INT-001840,Send revised payment plan,2025-05-06T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00738,PER-0242,INT-001842,Confirm site visit for Saturday,2025-05-18T00:00:00,overdue,user_002,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00739,PER-0242,INT-001843,Update on road widening approval status,2025-05-24T00:00:00,overdue,user_002,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00740,PER-0242,INT-001844,Call back regarding east-facing unit availability,2025-07-05T00:00:00,completed,user_002,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00741,PER-0242,INT-001845,Send home loan documents checklist,2025-07-10T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00742,PER-0243,INT-001847,Share competitor comparison sheet,2024-03-22T00:00:00,pending,user_003,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00743,PER-0244,INT-001854,Share competitor comparison sheet,2025-06-06T00:00:00,completed,user_001,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00744,PER-0244,INT-001856,Update on road widening approval status,2025-07-05T00:00:00,completed,user_001,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00745,PER-0245,INT-001859,Update on road widening approval status,2024-02-22T00:00:00,pending,user_004,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00746,PER-0245,INT-001861,Send revised payment plan,2024-03-05T00:00:00,pending,user_004,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00747,PER-0246,INT-001868,Update on road widening approval status,2025-06-23T00:00:00,completed,user_004,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00748,PER-0247,INT-001871,Share competitor comparison sheet,2024-08-23T00:00:00,completed,user_005,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00749,PER-0247,INT-001873,Send home loan documents checklist,2024-09-21T00:00:00,overdue,user_005,"{""priority"": ""low"", ""auto_generated"": true}" +REM-00750,PER-0247,INT-001875,Update on road widening approval status,2024-09-29T00:00:00,pending,user_005,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00751,PER-0247,INT-001876,Confirm site visit for Saturday,2024-10-07T00:00:00,completed,user_005,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00752,PER-0248,INT-001882,Call back regarding east-facing unit availability,2025-09-14T00:00:00,completed,user_005,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00753,PER-0249,INT-001883,Update on road widening approval status,2024-07-24T00:00:00,overdue,user_004,"{""priority"": ""medium"", ""auto_generated"": true}" +REM-00754,PER-0249,INT-001884,Confirm site visit for Saturday,2024-07-30T00:00:00,overdue,user_004,"{""priority"": ""high"", ""auto_generated"": true}" +REM-00755,PER-0249,INT-001885,Share competitor comparison sheet,2024-08-11T00:00:00,completed,user_004,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00756,PER-0249,INT-001887,Send home loan documents checklist,2024-08-27T00:00:00,completed,user_004,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00757,PER-0249,INT-001892,Send home loan documents checklist,2024-09-27T00:00:00,completed,user_004,"{""priority"": ""low"", ""auto_generated"": false}" +REM-00758,PER-0249,INT-001893,Share competitor comparison sheet,2024-09-28T00:00:00,completed,user_004,"{""priority"": ""medium"", ""auto_generated"": false}" +REM-00759,PER-0250,INT-001896,Schedule family meeting for final decision,2025-06-14T00:00:00,completed,user_003,"{""priority"": ""high"", ""auto_generated"": false}" diff --git a/db assets/synthetic_crm_v1/csv/intel_transcripts.csv b/db assets/synthetic_crm_v1/csv/intel_transcripts.csv new file mode 100644 index 00000000..92e5b728 --- /dev/null +++ b/db assets/synthetic_crm_v1/csv/intel_transcripts.csv @@ -0,0 +1,232 @@ +transcript_id,call_id,language,full_text,speaker_segments_json,confidence +TRX-00001,CAL-00001,en-IN,"Vikram: Hello Rohan, this is Vikram from Velocity regarding DTC Sojon. Rohan: Yes, tell me. Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat? Rohan: Yes, what's the price? Vikram: Starting at 3.86 Cr for 3 BHK. Possession by August 2026. Rohan: That's good. Send me the details on WhatsApp. Vikram: Done. When can you visit? Rohan: This weekend. Vikram: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hello Rohan, this is Vikram from Velocity regarding DTC Sojon."", ""start"": 0.0, ""end"": 3.48}, {""speaker"": ""client"", ""text"": ""Rohan: Yes, tell me."", ""start"": 4.78, ""end"": 7.11}, {""speaker"": ""agent"", ""text"": ""Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat?"", ""start"": 8.06, ""end"": 11.61}, {""speaker"": ""client"", ""text"": ""Rohan: Yes, what's the price?"", ""start"": 12.68, ""end"": 20.57}, {""speaker"": ""agent"", ""text"": ""Vikram: Starting at 3.86 Cr for 3 BHK. Possession by August 2026."", ""start"": 22.53, ""end"": 28.96}, {""speaker"": ""client"", ""text"": ""Rohan: That's good. Send me the details on WhatsApp."", ""start"": 30.07, ""end"": 33.18}, {""speaker"": ""agent"", ""text"": ""Vikram: Done. When can you visit?"", ""start"": 33.82, ""end"": 39.42}, {""speaker"": ""client"", ""text"": ""Rohan: This weekend."", ""start"": 40.07, ""end"": 44.07}, {""speaker"": ""agent"", ""text"": ""Vikram: I'll block Saturday 11 AM for you."", ""start"": 45.9, ""end"": 52.71}]",0.86 +TRX-00002,CAL-00002,en-IN,"Priya: Hello Rohan, this is Priya from Velocity regarding DTC Sojon. Rohan: Hi, I was about to call you. Priya: Great minds! What were you thinking? Rohan: The price is still high. Can you match Atri Surya Toron's rate? Priya: I understand. Let me see what best I can do. Are you flexible on floor preference? Rohan: Not really. I want mid-floor east facing. Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Rohan: Please do. We're ready to close quickly. Priya: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Priya: Hello Rohan, this is Priya from Velocity regarding DTC Sojon."", ""start"": 0.0, ""end"": 7.15}, {""speaker"": ""client"", ""text"": ""Rohan: Hi, I was about to call you."", ""start"": 8.64, ""end"": 10.94}, {""speaker"": ""agent"", ""text"": ""Priya: Great minds! What were you thinking?"", ""start"": 11.44, ""end"": 18.77}, {""speaker"": ""client"", ""text"": ""Rohan: The price is still high. Can you match Atri Surya Toron's rate?"", ""start"": 19.36, ""end"": 23.84}, {""speaker"": ""agent"", ""text"": ""Priya: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 25.67, ""end"": 30.22}, {""speaker"": ""client"", ""text"": ""Rohan: Not really. I want mid-floor east facing."", ""start"": 30.74, ""end"": 36.26}, {""speaker"": ""agent"", ""text"": ""Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 37.28, ""end"": 43.41}, {""speaker"": ""client"", ""text"": ""Rohan: Please do. We're ready to close quickly."", ""start"": 44.33, ""end"": 47.29}, {""speaker"": ""agent"", ""text"": ""Priya: Will revert by tomorrow 2 PM."", ""start"": 48.12, ""end"": 51.53}]",0.85 +TRX-00003,CAL-00003,en-IN,"Vikram: Hi Debjani, following up on your enquiry for Atri Surya Toron. Debjani: Yes, tell me. Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat? Debjani: Yes, what's the price? Vikram: Starting at 3.91 Cr for 3 BHK. Possession by June 2026. Debjani: That's good. Send me the details on WhatsApp. Vikram: Done. When can you visit? Debjani: This weekend. Vikram: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hi Debjani, following up on your enquiry for Atri Surya Toron."", ""start"": 0.0, ""end"": 6.14}, {""speaker"": ""client"", ""text"": ""Debjani: Yes, tell me."", ""start"": 6.79, ""end"": 13.99}, {""speaker"": ""agent"", ""text"": ""Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat?"", ""start"": 14.8, ""end"": 17.42}, {""speaker"": ""client"", ""text"": ""Debjani: Yes, what's the price?"", ""start"": 19.4, ""end"": 22.72}, {""speaker"": ""agent"", ""text"": ""Vikram: Starting at 3.91 Cr for 3 BHK. Possession by June 2026."", ""start"": 23.55, ""end"": 25.62}, {""speaker"": ""client"", ""text"": ""Debjani: That's good. Send me the details on WhatsApp."", ""start"": 27.0, ""end"": 32.53}, {""speaker"": ""agent"", ""text"": ""Vikram: Done. When can you visit?"", ""start"": 33.7, ""end"": 39.38}, {""speaker"": ""client"", ""text"": ""Debjani: This weekend."", ""start"": 40.02, ""end"": 46.49}, {""speaker"": ""agent"", ""text"": ""Vikram: I'll block Saturday 11 AM for you."", ""start"": 48.4, ""end"": 52.06}]",0.93 +TRX-00004,CAL-00004,en-IN,"Ananya: Hello Debjani, this is Ananya from Velocity regarding Atri Surya Toron. Debjani: Yes, tell me. Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat? Debjani: Yes, what's the price? Ananya: Starting at 5.35 Cr for 3 BHK. Possession by October 2026. Debjani: That's good. Send me the details on WhatsApp. Ananya: Done. When can you visit? Debjani: This weekend. Ananya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Ananya: Hello Debjani, this is Ananya from Velocity regarding Atri Surya Toron."", ""start"": 0.0, ""end"": 6.11}, {""speaker"": ""client"", ""text"": ""Debjani: Yes, tell me."", ""start"": 7.95, ""end"": 11.22}, {""speaker"": ""agent"", ""text"": ""Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat?"", ""start"": 11.95, ""end"": 18.82}, {""speaker"": ""client"", ""text"": ""Debjani: Yes, what's the price?"", ""start"": 19.72, ""end"": 24.91}, {""speaker"": ""agent"", ""text"": ""Ananya: Starting at 5.35 Cr for 3 BHK. Possession by October 2026."", ""start"": 26.76, ""end"": 34.67}, {""speaker"": ""client"", ""text"": ""Debjani: That's good. Send me the details on WhatsApp."", ""start"": 36.49, ""end"": 42.46}, {""speaker"": ""agent"", ""text"": ""Ananya: Done. When can you visit?"", ""start"": 43.28, ""end"": 50.3}, {""speaker"": ""client"", ""text"": ""Debjani: This weekend."", ""start"": 51.47, ""end"": 59.03}, {""speaker"": ""agent"", ""text"": ""Ananya: I'll block Saturday 11 AM for you."", ""start"": 60.72, ""end"": 64.5}]",0.89 +TRX-00005,CAL-00008,en-IN,"Vikram: Good morning Nilesh, wanted to share some updates about Ambuja Utpaala. Nilesh: Yes, tell me. Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Tollygunge? Nilesh: Yes, what's the price? Vikram: Starting at 4.46 Cr for 3 BHK. Possession by August 2026. Nilesh: That's good. Send me the details on WhatsApp. Vikram: Done. When can you visit? Nilesh: This weekend. Vikram: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Vikram: Good morning Nilesh, wanted to share some updates about Ambuja Utpaala."", ""start"": 0.0, ""end"": 3.23}, {""speaker"": ""client"", ""text"": ""Nilesh: Yes, tell me."", ""start"": 4.05, ""end"": 7.22}, {""speaker"": ""agent"", ""text"": ""Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Tollygunge?"", ""start"": 8.51, ""end"": 11.24}, {""speaker"": ""client"", ""text"": ""Nilesh: Yes, what's the price?"", ""start"": 12.83, ""end"": 15.37}, {""speaker"": ""agent"", ""text"": ""Vikram: Starting at 4.46 Cr for 3 BHK. Possession by August 2026."", ""start"": 16.94, ""end"": 24.21}, {""speaker"": ""client"", ""text"": ""Nilesh: That's good. Send me the details on WhatsApp."", ""start"": 24.9, ""end"": 30.46}, {""speaker"": ""agent"", ""text"": ""Vikram: Done. When can you visit?"", ""start"": 31.9, ""end"": 36.33}, {""speaker"": ""client"", ""text"": ""Nilesh: This weekend."", ""start"": 37.32, ""end"": 44.45}, {""speaker"": ""agent"", ""text"": ""Vikram: I'll block Saturday 11 AM for you."", ""start"": 46.03, ""end"": 51.7}]",0.93 +TRX-00006,CAL-00009,en-IN,"Priya: Hi Kunal, following up on your enquiry for Shriram Grand City. Kunal: Hi, I was about to call you. Priya: Great minds! What were you thinking? Kunal: The price is still high. Can you match Godrej Elevate's rate? Priya: I understand. Let me see what best I can do. Are you flexible on floor preference? Kunal: Not really. I want mid-floor east facing. Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Kunal: Please do. We're ready to close quickly. Priya: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Priya: Hi Kunal, following up on your enquiry for Shriram Grand City."", ""start"": 0.0, ""end"": 5.05}, {""speaker"": ""client"", ""text"": ""Kunal: Hi, I was about to call you."", ""start"": 5.83, ""end"": 12.91}, {""speaker"": ""agent"", ""text"": ""Priya: Great minds! What were you thinking?"", ""start"": 14.05, ""end"": 19.78}, {""speaker"": ""client"", ""text"": ""Kunal: The price is still high. Can you match Godrej Elevate's rate?"", ""start"": 21.75, ""end"": 29.53}, {""speaker"": ""agent"", ""text"": ""Priya: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 30.21, ""end"": 36.97}, {""speaker"": ""client"", ""text"": ""Kunal: Not really. I want mid-floor east facing."", ""start"": 38.95, ""end"": 42.37}, {""speaker"": ""agent"", ""text"": ""Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 44.17, ""end"": 46.98}, {""speaker"": ""client"", ""text"": ""Kunal: Please do. We're ready to close quickly."", ""start"": 47.55, ""end"": 53.9}, {""speaker"": ""agent"", ""text"": ""Priya: Will revert by tomorrow 2 PM."", ""start"": 54.48, ""end"": 60.64}]",0.83 +TRX-00007,CAL-00010,en-IN,"Vikram: Good morning Kunal, wanted to share some updates about Sugam Prakriti. Kunal: Yes, tell me. Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Barasat? Kunal: Yes, what's the price? Vikram: Starting at 5.39 Cr for 3 BHK. Possession by August 2026. Kunal: That's good. Send me the details on WhatsApp. Vikram: Done. When can you visit? Kunal: This weekend. Vikram: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Vikram: Good morning Kunal, wanted to share some updates about Sugam Prakriti."", ""start"": 0.0, ""end"": 4.72}, {""speaker"": ""client"", ""text"": ""Kunal: Yes, tell me."", ""start"": 6.38, ""end"": 13.61}, {""speaker"": ""agent"", ""text"": ""Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Barasat?"", ""start"": 15.53, ""end"": 17.84}, {""speaker"": ""client"", ""text"": ""Kunal: Yes, what's the price?"", ""start"": 18.89, ""end"": 26.26}, {""speaker"": ""agent"", ""text"": ""Vikram: Starting at 5.39 Cr for 3 BHK. Possession by August 2026."", ""start"": 27.42, ""end"": 29.77}, {""speaker"": ""client"", ""text"": ""Kunal: That's good. Send me the details on WhatsApp."", ""start"": 31.69, ""end"": 38.27}, {""speaker"": ""agent"", ""text"": ""Vikram: Done. When can you visit?"", ""start"": 39.38, ""end"": 41.5}, {""speaker"": ""client"", ""text"": ""Kunal: This weekend."", ""start"": 43.2, ""end"": 48.95}, {""speaker"": ""agent"", ""text"": ""Vikram: I'll block Saturday 11 AM for you."", ""start"": 50.16, ""end"": 55.55}]",0.83 +TRX-00008,CAL-00011,en-IN,"Priya: Hello Isha, this is Priya from Velocity regarding DTC Sojon. Isha: Hi, I was about to call you. Priya: Great minds! What were you thinking? Isha: The price is still high. Can you match Siddha Serena's rate? Priya: I understand. Let me see what best I can do. Are you flexible on floor preference? Isha: Not really. I want mid-floor east facing. Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Isha: Please do. We're ready to close quickly. Priya: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Priya: Hello Isha, this is Priya from Velocity regarding DTC Sojon."", ""start"": 0.0, ""end"": 2.86}, {""speaker"": ""client"", ""text"": ""Isha: Hi, I was about to call you."", ""start"": 4.35, ""end"": 8.45}, {""speaker"": ""agent"", ""text"": ""Priya: Great minds! What were you thinking?"", ""start"": 9.96, ""end"": 17.2}, {""speaker"": ""client"", ""text"": ""Isha: The price is still high. Can you match Siddha Serena's rate?"", ""start"": 18.25, ""end"": 25.87}, {""speaker"": ""agent"", ""text"": ""Priya: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 27.4, ""end"": 29.84}, {""speaker"": ""client"", ""text"": ""Isha: Not really. I want mid-floor east facing."", ""start"": 31.31, ""end"": 34.15}, {""speaker"": ""agent"", ""text"": ""Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 35.5, ""end"": 43.23}, {""speaker"": ""client"", ""text"": ""Isha: Please do. We're ready to close quickly."", ""start"": 44.56, ""end"": 47.97}, {""speaker"": ""agent"", ""text"": ""Priya: Will revert by tomorrow 2 PM."", ""start"": 49.41, ""end"": 56.62}]",0.84 +TRX-00009,CAL-00014,en-IN,"Rahul: Hello Parth, this is Rahul from Velocity regarding DTC Sojon. Parth: Hi, I was about to call you. Rahul: Great minds! What were you thinking? Parth: The price is still high. Can you match Sugam Prakriti's rate? Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference? Parth: Not really. I want mid-floor east facing. Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Parth: Please do. We're ready to close quickly. Rahul: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Rahul: Hello Parth, this is Rahul from Velocity regarding DTC Sojon."", ""start"": 0.0, ""end"": 3.95}, {""speaker"": ""client"", ""text"": ""Parth: Hi, I was about to call you."", ""start"": 5.13, ""end"": 7.78}, {""speaker"": ""agent"", ""text"": ""Rahul: Great minds! What were you thinking?"", ""start"": 9.37, ""end"": 16.27}, {""speaker"": ""client"", ""text"": ""Parth: The price is still high. Can you match Sugam Prakriti's rate?"", ""start"": 17.49, ""end"": 20.92}, {""speaker"": ""agent"", ""text"": ""Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 22.06, ""end"": 29.81}, {""speaker"": ""client"", ""text"": ""Parth: Not really. I want mid-floor east facing."", ""start"": 30.71, ""end"": 37.53}, {""speaker"": ""agent"", ""text"": ""Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 38.45, ""end"": 45.11}, {""speaker"": ""client"", ""text"": ""Parth: Please do. We're ready to close quickly."", ""start"": 45.88, ""end"": 52.05}, {""speaker"": ""agent"", ""text"": ""Rahul: Will revert by tomorrow 2 PM."", ""start"": 53.34, ""end"": 60.35}]",0.82 +TRX-00010,CAL-00017,en-IN,"Ananya: Good morning Rahul, wanted to share some updates about Atri Surya Toron. Rahul: Yes, tell me. Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat? Rahul: Yes, what's the price? Ananya: Starting at 5.76 Cr for 3 BHK. Possession by September 2026. Rahul: That's good. Send me the details on WhatsApp. Ananya: Done. When can you visit? Rahul: This weekend. Ananya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Ananya: Good morning Rahul, wanted to share some updates about Atri Surya Toron."", ""start"": 0.0, ""end"": 5.46}, {""speaker"": ""client"", ""text"": ""Rahul: Yes, tell me."", ""start"": 6.45, ""end"": 10.7}, {""speaker"": ""agent"", ""text"": ""Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat?"", ""start"": 11.23, ""end"": 18.31}, {""speaker"": ""client"", ""text"": ""Rahul: Yes, what's the price?"", ""start"": 20.3, ""end"": 22.7}, {""speaker"": ""agent"", ""text"": ""Ananya: Starting at 5.76 Cr for 3 BHK. Possession by September 2026."", ""start"": 24.31, ""end"": 30.6}, {""speaker"": ""client"", ""text"": ""Rahul: That's good. Send me the details on WhatsApp."", ""start"": 31.96, ""end"": 37.46}, {""speaker"": ""agent"", ""text"": ""Ananya: Done. When can you visit?"", ""start"": 39.19, ""end"": 41.91}, {""speaker"": ""client"", ""text"": ""Rahul: This weekend."", ""start"": 42.82, ""end"": 46.78}, {""speaker"": ""agent"", ""text"": ""Ananya: I'll block Saturday 11 AM for you."", ""start"": 47.83, ""end"": 51.1}]",0.95 +TRX-00011,CAL-00019,en-IN,"Vikram: Hello Ananya, this is Vikram from Velocity regarding Atri Aqua. Ananya: Hi, I was about to call you. Vikram: Great minds! What were you thinking? Ananya: The price is still high. Can you match Siddha Suburbia Bungalow's rate? Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference? Ananya: Not really. I want mid-floor east facing. Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Ananya: Please do. We're ready to close quickly. Vikram: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hello Ananya, this is Vikram from Velocity regarding Atri Aqua."", ""start"": 0.0, ""end"": 5.48}, {""speaker"": ""client"", ""text"": ""Ananya: Hi, I was about to call you."", ""start"": 6.34, ""end"": 11.62}, {""speaker"": ""agent"", ""text"": ""Vikram: Great minds! What were you thinking?"", ""start"": 12.13, ""end"": 15.46}, {""speaker"": ""client"", ""text"": ""Ananya: The price is still high. Can you match Siddha Suburbia Bungalow's rate?"", ""start"": 16.76, ""end"": 22.44}, {""speaker"": ""agent"", ""text"": ""Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 24.26, ""end"": 29.14}, {""speaker"": ""client"", ""text"": ""Ananya: Not really. I want mid-floor east facing."", ""start"": 31.13, ""end"": 36.58}, {""speaker"": ""agent"", ""text"": ""Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 37.72, ""end"": 41.52}, {""speaker"": ""client"", ""text"": ""Ananya: Please do. We're ready to close quickly."", ""start"": 42.34, ""end"": 50.31}, {""speaker"": ""agent"", ""text"": ""Vikram: Will revert by tomorrow 2 PM."", ""start"": 51.18, ""end"": 58.07}]",0.94 +TRX-00012,CAL-00023,en-IN,"Ananya: Hello Rahul, this is Ananya from Velocity regarding Atri Surya Toron. Rahul: Yes, tell me. Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat? Rahul: Yes, what's the price? Ananya: Starting at 7.75 Cr for 3 BHK. Possession by June 2026. Rahul: That's good. Send me the details on WhatsApp. Ananya: Done. When can you visit? Rahul: This weekend. Ananya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Ananya: Hello Rahul, this is Ananya from Velocity regarding Atri Surya Toron."", ""start"": 0.0, ""end"": 6.3}, {""speaker"": ""client"", ""text"": ""Rahul: Yes, tell me."", ""start"": 7.36, ""end"": 13.55}, {""speaker"": ""agent"", ""text"": ""Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat?"", ""start"": 14.18, ""end"": 20.18}, {""speaker"": ""client"", ""text"": ""Rahul: Yes, what's the price?"", ""start"": 20.95, ""end"": 28.35}, {""speaker"": ""agent"", ""text"": ""Ananya: Starting at 7.75 Cr for 3 BHK. Possession by June 2026."", ""start"": 29.39, ""end"": 36.55}, {""speaker"": ""client"", ""text"": ""Rahul: That's good. Send me the details on WhatsApp."", ""start"": 38.19, ""end"": 42.1}, {""speaker"": ""agent"", ""text"": ""Ananya: Done. When can you visit?"", ""start"": 43.11, ""end"": 50.55}, {""speaker"": ""client"", ""text"": ""Rahul: This weekend."", ""start"": 51.57, ""end"": 57.1}, {""speaker"": ""agent"", ""text"": ""Ananya: I'll block Saturday 11 AM for you."", ""start"": 58.26, ""end"": 62.89}]",0.94 +TRX-00013,CAL-00027,en-IN,"Priya: Hi Asha, following up on your enquiry for Atri Aqua. Asha: Yes, tell me. Priya: We have a new tower launch with pre-launch pricing. Are you still looking in New Town? Asha: Yes, what's the price? Priya: Starting at 5.18 Cr for 3 BHK. Possession by July 2026. Asha: That's good. Send me the details on WhatsApp. Priya: Done. When can you visit? Asha: This weekend. Priya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Priya: Hi Asha, following up on your enquiry for Atri Aqua."", ""start"": 0.0, ""end"": 7.6}, {""speaker"": ""client"", ""text"": ""Asha: Yes, tell me."", ""start"": 8.53, ""end"": 13.79}, {""speaker"": ""agent"", ""text"": ""Priya: We have a new tower launch with pre-launch pricing. Are you still looking in New Town?"", ""start"": 14.59, ""end"": 21.49}, {""speaker"": ""client"", ""text"": ""Asha: Yes, what's the price?"", ""start"": 22.44, ""end"": 28.75}, {""speaker"": ""agent"", ""text"": ""Priya: Starting at 5.18 Cr for 3 BHK. Possession by July 2026."", ""start"": 29.33, ""end"": 35.95}, {""speaker"": ""client"", ""text"": ""Asha: That's good. Send me the details on WhatsApp."", ""start"": 36.79, ""end"": 38.97}, {""speaker"": ""agent"", ""text"": ""Priya: Done. When can you visit?"", ""start"": 40.44, ""end"": 47.37}, {""speaker"": ""client"", ""text"": ""Asha: This weekend."", ""start"": 49.25, ""end"": 53.46}, {""speaker"": ""agent"", ""text"": ""Priya: I'll block Saturday 11 AM for you."", ""start"": 54.79, ""end"": 58.47}]",0.87 +TRX-00014,CAL-00028,en-IN,"Vikram: Hello Meera, this is Vikram from Velocity regarding Siddha Serena. Meera: Hi, I was about to call you. Vikram: Great minds! What were you thinking? Meera: The price is still high. Can you match Atri Surya Toron's rate? Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference? Meera: Not really. I want mid-floor east facing. Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Meera: Please do. We're ready to close quickly. Vikram: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hello Meera, this is Vikram from Velocity regarding Siddha Serena."", ""start"": 0.0, ""end"": 3.45}, {""speaker"": ""client"", ""text"": ""Meera: Hi, I was about to call you."", ""start"": 5.3, ""end"": 8.77}, {""speaker"": ""agent"", ""text"": ""Vikram: Great minds! What were you thinking?"", ""start"": 10.55, ""end"": 14.93}, {""speaker"": ""client"", ""text"": ""Meera: The price is still high. Can you match Atri Surya Toron's rate?"", ""start"": 16.62, ""end"": 18.66}, {""speaker"": ""agent"", ""text"": ""Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 20.16, ""end"": 26.79}, {""speaker"": ""client"", ""text"": ""Meera: Not really. I want mid-floor east facing."", ""start"": 28.27, ""end"": 30.7}, {""speaker"": ""agent"", ""text"": ""Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 32.37, ""end"": 37.42}, {""speaker"": ""client"", ""text"": ""Meera: Please do. We're ready to close quickly."", ""start"": 38.35, ""end"": 43.19}, {""speaker"": ""agent"", ""text"": ""Vikram: Will revert by tomorrow 2 PM."", ""start"": 44.24, ""end"": 50.98}]",0.86 +TRX-00015,CAL-00030,en-IN,"Rahul: Hello Kunal, this is Rahul from Velocity regarding Godrej Elevate. Kunal: Yes, tell me. Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Dum Dum? Kunal: Yes, what's the price? Rahul: Starting at 2.97 Cr for 3 BHK. Possession by July 2026. Kunal: That's good. Send me the details on WhatsApp. Rahul: Done. When can you visit? Kunal: This weekend. Rahul: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Rahul: Hello Kunal, this is Rahul from Velocity regarding Godrej Elevate."", ""start"": 0.0, ""end"": 2.25}, {""speaker"": ""client"", ""text"": ""Kunal: Yes, tell me."", ""start"": 3.8, ""end"": 10.64}, {""speaker"": ""agent"", ""text"": ""Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Dum Dum?"", ""start"": 12.26, ""end"": 16.98}, {""speaker"": ""client"", ""text"": ""Kunal: Yes, what's the price?"", ""start"": 17.56, ""end"": 19.77}, {""speaker"": ""agent"", ""text"": ""Rahul: Starting at 2.97 Cr for 3 BHK. Possession by July 2026."", ""start"": 21.22, ""end"": 23.84}, {""speaker"": ""client"", ""text"": ""Kunal: That's good. Send me the details on WhatsApp."", ""start"": 25.8, ""end"": 28.86}, {""speaker"": ""agent"", ""text"": ""Rahul: Done. When can you visit?"", ""start"": 29.84, ""end"": 34.81}, {""speaker"": ""client"", ""text"": ""Kunal: This weekend."", ""start"": 35.56, ""end"": 42.06}, {""speaker"": ""agent"", ""text"": ""Rahul: I'll block Saturday 11 AM for you."", ""start"": 42.93, ""end"": 45.06}]",0.84 +TRX-00016,CAL-00033,en-IN,"Priya: Hello Vikram, this is Priya from Velocity regarding Godrej Blue. Vikram: Yes, tell me. Priya: We have a new tower launch with pre-launch pricing. Are you still looking in New Town? Vikram: Yes, what's the price? Priya: Starting at 4.4 Cr for 3 BHK. Possession by September 2026. Vikram: That's good. Send me the details on WhatsApp. Priya: Done. When can you visit? Vikram: This weekend. Priya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Priya: Hello Vikram, this is Priya from Velocity regarding Godrej Blue."", ""start"": 0.0, ""end"": 6.14}, {""speaker"": ""client"", ""text"": ""Vikram: Yes, tell me."", ""start"": 6.71, ""end"": 10.01}, {""speaker"": ""agent"", ""text"": ""Priya: We have a new tower launch with pre-launch pricing. Are you still looking in New Town?"", ""start"": 11.97, ""end"": 19.47}, {""speaker"": ""client"", ""text"": ""Vikram: Yes, what's the price?"", ""start"": 20.82, ""end"": 23.36}, {""speaker"": ""agent"", ""text"": ""Priya: Starting at 4.4 Cr for 3 BHK. Possession by September 2026."", ""start"": 25.16, ""end"": 29.6}, {""speaker"": ""client"", ""text"": ""Vikram: That's good. Send me the details on WhatsApp."", ""start"": 31.01, ""end"": 37.15}, {""speaker"": ""agent"", ""text"": ""Priya: Done. When can you visit?"", ""start"": 37.8, ""end"": 40.46}, {""speaker"": ""client"", ""text"": ""Vikram: This weekend."", ""start"": 41.79, ""end"": 46.32}, {""speaker"": ""agent"", ""text"": ""Priya: I'll block Saturday 11 AM for you."", ""start"": 46.85, ""end"": 48.87}]",0.95 +TRX-00017,CAL-00034,en-IN,"Rahul: Hi Vikram, following up on your enquiry for Godrej Blue. Vikram: Yes, tell me. Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in New Town? Vikram: Yes, what's the price? Rahul: Starting at 2.57 Cr for 3 BHK. Possession by August 2026. Vikram: That's good. Send me the details on WhatsApp. Rahul: Done. When can you visit? Vikram: This weekend. Rahul: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Rahul: Hi Vikram, following up on your enquiry for Godrej Blue."", ""start"": 0.0, ""end"": 7.39}, {""speaker"": ""client"", ""text"": ""Vikram: Yes, tell me."", ""start"": 8.72, ""end"": 14.85}, {""speaker"": ""agent"", ""text"": ""Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in New Town?"", ""start"": 16.74, ""end"": 22.7}, {""speaker"": ""client"", ""text"": ""Vikram: Yes, what's the price?"", ""start"": 24.05, ""end"": 28.44}, {""speaker"": ""agent"", ""text"": ""Rahul: Starting at 2.57 Cr for 3 BHK. Possession by August 2026."", ""start"": 29.98, ""end"": 34.6}, {""speaker"": ""client"", ""text"": ""Vikram: That's good. Send me the details on WhatsApp."", ""start"": 35.47, ""end"": 43.42}, {""speaker"": ""agent"", ""text"": ""Rahul: Done. When can you visit?"", ""start"": 44.23, ""end"": 50.27}, {""speaker"": ""client"", ""text"": ""Vikram: This weekend."", ""start"": 52.1, ""end"": 56.54}, {""speaker"": ""agent"", ""text"": ""Rahul: I'll block Saturday 11 AM for you."", ""start"": 58.16, ""end"": 65.46}]",0.95 +TRX-00018,CAL-00037,en-IN,"Vikram: Hi Sonal, following up on your enquiry for Siddha Serena. Sonal: Yes, tell me. Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in New Town? Sonal: Yes, what's the price? Vikram: Starting at 6.38 Cr for 3 BHK. Possession by October 2026. Sonal: That's good. Send me the details on WhatsApp. Vikram: Done. When can you visit? Sonal: This weekend. Vikram: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hi Sonal, following up on your enquiry for Siddha Serena."", ""start"": 0.0, ""end"": 7.0}, {""speaker"": ""client"", ""text"": ""Sonal: Yes, tell me."", ""start"": 8.52, ""end"": 11.03}, {""speaker"": ""agent"", ""text"": ""Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in New Town?"", ""start"": 12.42, ""end"": 15.44}, {""speaker"": ""client"", ""text"": ""Sonal: Yes, what's the price?"", ""start"": 16.39, ""end"": 23.05}, {""speaker"": ""agent"", ""text"": ""Vikram: Starting at 6.38 Cr for 3 BHK. Possession by October 2026."", ""start"": 23.99, ""end"": 29.68}, {""speaker"": ""client"", ""text"": ""Sonal: That's good. Send me the details on WhatsApp."", ""start"": 30.87, ""end"": 38.33}, {""speaker"": ""agent"", ""text"": ""Vikram: Done. When can you visit?"", ""start"": 39.39, ""end"": 45.2}, {""speaker"": ""client"", ""text"": ""Sonal: This weekend."", ""start"": 46.56, ""end"": 53.01}, {""speaker"": ""agent"", ""text"": ""Vikram: I'll block Saturday 11 AM for you."", ""start"": 54.77, ""end"": 59.42}]",0.92 +TRX-00019,CAL-00040,en-IN,"Rahul: Good morning Abhishek, wanted to share some updates about Atri Aqua. Abhishek: Yes, tell me. Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in New Town? Abhishek: Yes, what's the price? Rahul: Starting at 6.81 Cr for 3 BHK. Possession by September 2026. Abhishek: That's good. Send me the details on WhatsApp. Rahul: Done. When can you visit? Abhishek: This weekend. Rahul: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Rahul: Good morning Abhishek, wanted to share some updates about Atri Aqua."", ""start"": 0.0, ""end"": 4.83}, {""speaker"": ""client"", ""text"": ""Abhishek: Yes, tell me."", ""start"": 5.6, ""end"": 11.17}, {""speaker"": ""agent"", ""text"": ""Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in New Town?"", ""start"": 13.16, ""end"": 17.22}, {""speaker"": ""client"", ""text"": ""Abhishek: Yes, what's the price?"", ""start"": 18.1, ""end"": 24.94}, {""speaker"": ""agent"", ""text"": ""Rahul: Starting at 6.81 Cr for 3 BHK. Possession by September 2026."", ""start"": 25.82, ""end"": 28.28}, {""speaker"": ""client"", ""text"": ""Abhishek: That's good. Send me the details on WhatsApp."", ""start"": 30.12, ""end"": 37.88}, {""speaker"": ""agent"", ""text"": ""Rahul: Done. When can you visit?"", ""start"": 38.86, ""end"": 46.1}, {""speaker"": ""client"", ""text"": ""Abhishek: This weekend."", ""start"": 47.55, ""end"": 49.8}, {""speaker"": ""agent"", ""text"": ""Rahul: I'll block Saturday 11 AM for you."", ""start"": 50.86, ""end"": 56.23}]",0.89 +TRX-00020,CAL-00041,en-IN,"Ananya: Hi Abhishek, following up on your enquiry for Atri Aqua. Abhishek: Hi, I was about to call you. Ananya: Great minds! What were you thinking? Abhishek: The price is still high. Can you match DTC Good Earth's rate? Ananya: I understand. Let me see what best I can do. Are you flexible on floor preference? Abhishek: Not really. I want mid-floor east facing. Ananya: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Abhishek: Please do. We're ready to close quickly. Ananya: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Ananya: Hi Abhishek, following up on your enquiry for Atri Aqua."", ""start"": 0.0, ""end"": 7.16}, {""speaker"": ""client"", ""text"": ""Abhishek: Hi, I was about to call you."", ""start"": 8.6, ""end"": 11.64}, {""speaker"": ""agent"", ""text"": ""Ananya: Great minds! What were you thinking?"", ""start"": 12.9, ""end"": 17.96}, {""speaker"": ""client"", ""text"": ""Abhishek: The price is still high. Can you match DTC Good Earth's rate?"", ""start"": 19.61, ""end"": 22.28}, {""speaker"": ""agent"", ""text"": ""Ananya: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 23.84, ""end"": 29.06}, {""speaker"": ""client"", ""text"": ""Abhishek: Not really. I want mid-floor east facing."", ""start"": 30.9, ""end"": 35.62}, {""speaker"": ""agent"", ""text"": ""Ananya: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 37.46, ""end"": 42.77}, {""speaker"": ""client"", ""text"": ""Abhishek: Please do. We're ready to close quickly."", ""start"": 44.11, ""end"": 48.41}, {""speaker"": ""agent"", ""text"": ""Ananya: Will revert by tomorrow 2 PM."", ""start"": 50.16, ""end"": 57.14}]",0.95 +TRX-00021,CAL-00042,en-IN,"Vikram: Hi Riya, following up on your enquiry for Eden Devprayag. Riya: Yes, tell me. Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat? Riya: Yes, what's the price? Vikram: Starting at 5.24 Cr for 3 BHK. Possession by July 2026. Riya: That's good. Send me the details on WhatsApp. Vikram: Done. When can you visit? Riya: This weekend. Vikram: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hi Riya, following up on your enquiry for Eden Devprayag."", ""start"": 0.0, ""end"": 4.45}, {""speaker"": ""client"", ""text"": ""Riya: Yes, tell me."", ""start"": 5.93, ""end"": 11.27}, {""speaker"": ""agent"", ""text"": ""Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat?"", ""start"": 13.23, ""end"": 20.19}, {""speaker"": ""client"", ""text"": ""Riya: Yes, what's the price?"", ""start"": 21.23, ""end"": 23.45}, {""speaker"": ""agent"", ""text"": ""Vikram: Starting at 5.24 Cr for 3 BHK. Possession by July 2026."", ""start"": 24.11, ""end"": 31.84}, {""speaker"": ""client"", ""text"": ""Riya: That's good. Send me the details on WhatsApp."", ""start"": 33.15, ""end"": 39.98}, {""speaker"": ""agent"", ""text"": ""Vikram: Done. When can you visit?"", ""start"": 41.29, ""end"": 45.01}, {""speaker"": ""client"", ""text"": ""Riya: This weekend."", ""start"": 46.42, ""end"": 51.29}, {""speaker"": ""agent"", ""text"": ""Vikram: I'll block Saturday 11 AM for you."", ""start"": 52.43, ""end"": 56.96}]",0.87 +TRX-00022,CAL-00045,en-IN,"Priya: Good morning Vidya, wanted to share some updates about Ambuja Utpaala. Vidya: Hi, I was about to call you. Priya: Great minds! What were you thinking? Vidya: The price is still high. Can you match Siddha Suburbia Bungalow's rate? Priya: I understand. Let me see what best I can do. Are you flexible on floor preference? Vidya: Not really. I want mid-floor east facing. Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Vidya: Please do. We're ready to close quickly. Priya: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Priya: Good morning Vidya, wanted to share some updates about Ambuja Utpaala."", ""start"": 0.0, ""end"": 5.82}, {""speaker"": ""client"", ""text"": ""Vidya: Hi, I was about to call you."", ""start"": 7.52, ""end"": 10.74}, {""speaker"": ""agent"", ""text"": ""Priya: Great minds! What were you thinking?"", ""start"": 12.39, ""end"": 17.07}, {""speaker"": ""client"", ""text"": ""Vidya: The price is still high. Can you match Siddha Suburbia Bungalow's rate?"", ""start"": 18.13, ""end"": 21.83}, {""speaker"": ""agent"", ""text"": ""Priya: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 23.67, ""end"": 28.31}, {""speaker"": ""client"", ""text"": ""Vidya: Not really. I want mid-floor east facing."", ""start"": 29.89, ""end"": 33.49}, {""speaker"": ""agent"", ""text"": ""Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 34.96, ""end"": 41.58}, {""speaker"": ""client"", ""text"": ""Vidya: Please do. We're ready to close quickly."", ""start"": 43.44, ""end"": 49.36}, {""speaker"": ""agent"", ""text"": ""Priya: Will revert by tomorrow 2 PM."", ""start"": 50.63, ""end"": 58.44}]",0.94 +TRX-00023,CAL-00046,en-IN,"Ananya: Hello Asha, this is Ananya from Velocity regarding Shriram Grand City. Asha: Yes, tell me. Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Howrah? Asha: Yes, what's the price? Ananya: Starting at 7.21 Cr for 3 BHK. Possession by September 2026. Asha: That's good. Send me the details on WhatsApp. Ananya: Done. When can you visit? Asha: This weekend. Ananya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Ananya: Hello Asha, this is Ananya from Velocity regarding Shriram Grand City."", ""start"": 0.0, ""end"": 4.17}, {""speaker"": ""client"", ""text"": ""Asha: Yes, tell me."", ""start"": 4.72, ""end"": 9.79}, {""speaker"": ""agent"", ""text"": ""Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Howrah?"", ""start"": 11.04, ""end"": 13.79}, {""speaker"": ""client"", ""text"": ""Asha: Yes, what's the price?"", ""start"": 14.76, ""end"": 17.08}, {""speaker"": ""agent"", ""text"": ""Ananya: Starting at 7.21 Cr for 3 BHK. Possession by September 2026."", ""start"": 18.67, ""end"": 23.96}, {""speaker"": ""client"", ""text"": ""Asha: That's good. Send me the details on WhatsApp."", ""start"": 25.88, ""end"": 31.7}, {""speaker"": ""agent"", ""text"": ""Ananya: Done. When can you visit?"", ""start"": 33.47, ""end"": 36.45}, {""speaker"": ""client"", ""text"": ""Asha: This weekend."", ""start"": 37.33, ""end"": 43.29}, {""speaker"": ""agent"", ""text"": ""Ananya: I'll block Saturday 11 AM for you."", ""start"": 44.21, ""end"": 50.81}]",0.92 +TRX-00024,CAL-00047,en-IN,"Priya: Hello Asha, this is Priya from Velocity regarding Shriram Grand City. Asha: Hi, I was about to call you. Priya: Great minds! What were you thinking? Asha: The price is still high. Can you match Siddha Suburbia Bungalow's rate? Priya: I understand. Let me see what best I can do. Are you flexible on floor preference? Asha: Not really. I want mid-floor east facing. Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Asha: Please do. We're ready to close quickly. Priya: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Priya: Hello Asha, this is Priya from Velocity regarding Shriram Grand City."", ""start"": 0.0, ""end"": 2.98}, {""speaker"": ""client"", ""text"": ""Asha: Hi, I was about to call you."", ""start"": 4.98, ""end"": 10.28}, {""speaker"": ""agent"", ""text"": ""Priya: Great minds! What were you thinking?"", ""start"": 11.67, ""end"": 14.21}, {""speaker"": ""client"", ""text"": ""Asha: The price is still high. Can you match Siddha Suburbia Bungalow's rate?"", ""start"": 15.12, ""end"": 22.64}, {""speaker"": ""agent"", ""text"": ""Priya: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 23.85, ""end"": 29.99}, {""speaker"": ""client"", ""text"": ""Asha: Not really. I want mid-floor east facing."", ""start"": 31.61, ""end"": 37.52}, {""speaker"": ""agent"", ""text"": ""Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 38.64, ""end"": 45.19}, {""speaker"": ""client"", ""text"": ""Asha: Please do. We're ready to close quickly."", ""start"": 47.02, ""end"": 53.12}, {""speaker"": ""agent"", ""text"": ""Priya: Will revert by tomorrow 2 PM."", ""start"": 54.54, ""end"": 59.59}]",0.91 +TRX-00025,CAL-00050,en-IN,"Rahul: Hello Tanvi, this is Rahul from Velocity regarding Atri Surya Toron. Tanvi: Yes, tell me. Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat? Tanvi: Yes, what's the price? Rahul: Starting at 2.55 Cr for 3 BHK. Possession by September 2026. Tanvi: That's good. Send me the details on WhatsApp. Rahul: Done. When can you visit? Tanvi: This weekend. Rahul: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Rahul: Hello Tanvi, this is Rahul from Velocity regarding Atri Surya Toron."", ""start"": 0.0, ""end"": 6.04}, {""speaker"": ""client"", ""text"": ""Tanvi: Yes, tell me."", ""start"": 7.62, ""end"": 14.82}, {""speaker"": ""agent"", ""text"": ""Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat?"", ""start"": 16.07, ""end"": 22.09}, {""speaker"": ""client"", ""text"": ""Tanvi: Yes, what's the price?"", ""start"": 23.02, ""end"": 30.28}, {""speaker"": ""agent"", ""text"": ""Rahul: Starting at 2.55 Cr for 3 BHK. Possession by September 2026."", ""start"": 32.23, ""end"": 36.57}, {""speaker"": ""client"", ""text"": ""Tanvi: That's good. Send me the details on WhatsApp."", ""start"": 37.13, ""end"": 43.71}, {""speaker"": ""agent"", ""text"": ""Rahul: Done. When can you visit?"", ""start"": 45.04, ""end"": 51.04}, {""speaker"": ""client"", ""text"": ""Tanvi: This weekend."", ""start"": 51.57, ""end"": 55.71}, {""speaker"": ""agent"", ""text"": ""Rahul: I'll block Saturday 11 AM for you."", ""start"": 56.86, ""end"": 63.96}]",0.87 +TRX-00026,CAL-00052,en-IN,"Vikram: Hello Anirban, this is Vikram from Velocity regarding Shriram Grand City. Anirban: Hi, I was about to call you. Vikram: Great minds! What were you thinking? Anirban: The price is still high. Can you match Godrej Blue's rate? Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference? Anirban: Not really. I want mid-floor east facing. Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Anirban: Please do. We're ready to close quickly. Vikram: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hello Anirban, this is Vikram from Velocity regarding Shriram Grand City."", ""start"": 0.0, ""end"": 4.42}, {""speaker"": ""client"", ""text"": ""Anirban: Hi, I was about to call you."", ""start"": 5.76, ""end"": 12.77}, {""speaker"": ""agent"", ""text"": ""Vikram: Great minds! What were you thinking?"", ""start"": 14.7, ""end"": 17.78}, {""speaker"": ""client"", ""text"": ""Anirban: The price is still high. Can you match Godrej Blue's rate?"", ""start"": 18.32, ""end"": 25.09}, {""speaker"": ""agent"", ""text"": ""Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 25.61, ""end"": 28.72}, {""speaker"": ""client"", ""text"": ""Anirban: Not really. I want mid-floor east facing."", ""start"": 29.81, ""end"": 34.35}, {""speaker"": ""agent"", ""text"": ""Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 34.88, ""end"": 37.0}, {""speaker"": ""client"", ""text"": ""Anirban: Please do. We're ready to close quickly."", ""start"": 37.82, ""end"": 42.5}, {""speaker"": ""agent"", ""text"": ""Vikram: Will revert by tomorrow 2 PM."", ""start"": 44.17, ""end"": 51.81}]",0.85 +TRX-00027,CAL-00054,en-IN,"Vikram: Hello Anirban, this is Vikram from Velocity regarding Shriram Grand City. Anirban: Yes, tell me. Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Howrah? Anirban: Yes, what's the price? Vikram: Starting at 5.14 Cr for 3 BHK. Possession by September 2026. Anirban: That's good. Send me the details on WhatsApp. Vikram: Done. When can you visit? Anirban: This weekend. Vikram: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hello Anirban, this is Vikram from Velocity regarding Shriram Grand City."", ""start"": 0.0, ""end"": 6.83}, {""speaker"": ""client"", ""text"": ""Anirban: Yes, tell me."", ""start"": 7.85, ""end"": 15.16}, {""speaker"": ""agent"", ""text"": ""Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Howrah?"", ""start"": 16.0, ""end"": 22.3}, {""speaker"": ""client"", ""text"": ""Anirban: Yes, what's the price?"", ""start"": 24.15, ""end"": 29.18}, {""speaker"": ""agent"", ""text"": ""Vikram: Starting at 5.14 Cr for 3 BHK. Possession by September 2026."", ""start"": 30.51, ""end"": 33.76}, {""speaker"": ""client"", ""text"": ""Anirban: That's good. Send me the details on WhatsApp."", ""start"": 34.55, ""end"": 38.31}, {""speaker"": ""agent"", ""text"": ""Vikram: Done. When can you visit?"", ""start"": 39.18, ""end"": 41.98}, {""speaker"": ""client"", ""text"": ""Anirban: This weekend."", ""start"": 43.69, ""end"": 50.14}, {""speaker"": ""agent"", ""text"": ""Vikram: I'll block Saturday 11 AM for you."", ""start"": 52.14, ""end"": 55.75}]",0.84 +TRX-00028,CAL-00057,en-IN,"Vikram: Good morning Aditya, wanted to share some updates about Atri Surya Toron. Aditya: Yes, tell me. Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat? Aditya: Yes, what's the price? Vikram: Starting at 7.63 Cr for 3 BHK. Possession by July 2026. Aditya: That's good. Send me the details on WhatsApp. Vikram: Done. When can you visit? Aditya: This weekend. Vikram: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Vikram: Good morning Aditya, wanted to share some updates about Atri Surya Toron."", ""start"": 0.0, ""end"": 3.82}, {""speaker"": ""client"", ""text"": ""Aditya: Yes, tell me."", ""start"": 5.13, ""end"": 10.93}, {""speaker"": ""agent"", ""text"": ""Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat?"", ""start"": 12.68, ""end"": 19.22}, {""speaker"": ""client"", ""text"": ""Aditya: Yes, what's the price?"", ""start"": 20.61, ""end"": 23.18}, {""speaker"": ""agent"", ""text"": ""Vikram: Starting at 7.63 Cr for 3 BHK. Possession by July 2026."", ""start"": 24.99, ""end"": 29.79}, {""speaker"": ""client"", ""text"": ""Aditya: That's good. Send me the details on WhatsApp."", ""start"": 31.1, ""end"": 33.45}, {""speaker"": ""agent"", ""text"": ""Vikram: Done. When can you visit?"", ""start"": 34.73, ""end"": 38.88}, {""speaker"": ""client"", ""text"": ""Aditya: This weekend."", ""start"": 40.18, ""end"": 43.21}, {""speaker"": ""agent"", ""text"": ""Vikram: I'll block Saturday 11 AM for you."", ""start"": 44.87, ""end"": 49.74}]",0.84 +TRX-00029,CAL-00058,en-IN,"Priya: Good morning Aditya, wanted to share some updates about Atri Surya Toron. Aditya: Yes, tell me. Priya: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat? Aditya: Yes, what's the price? Priya: Starting at 7.47 Cr for 3 BHK. Possession by October 2026. Aditya: That's good. Send me the details on WhatsApp. Priya: Done. When can you visit? Aditya: This weekend. Priya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Priya: Good morning Aditya, wanted to share some updates about Atri Surya Toron."", ""start"": 0.0, ""end"": 2.98}, {""speaker"": ""client"", ""text"": ""Aditya: Yes, tell me."", ""start"": 4.86, ""end"": 7.91}, {""speaker"": ""agent"", ""text"": ""Priya: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat?"", ""start"": 8.43, ""end"": 12.93}, {""speaker"": ""client"", ""text"": ""Aditya: Yes, what's the price?"", ""start"": 13.69, ""end"": 18.15}, {""speaker"": ""agent"", ""text"": ""Priya: Starting at 7.47 Cr for 3 BHK. Possession by October 2026."", ""start"": 18.65, ""end"": 25.61}, {""speaker"": ""client"", ""text"": ""Aditya: That's good. Send me the details on WhatsApp."", ""start"": 26.19, ""end"": 29.3}, {""speaker"": ""agent"", ""text"": ""Priya: Done. When can you visit?"", ""start"": 30.52, ""end"": 36.82}, {""speaker"": ""client"", ""text"": ""Aditya: This weekend."", ""start"": 38.24, ""end"": 43.69}, {""speaker"": ""agent"", ""text"": ""Priya: I'll block Saturday 11 AM for you."", ""start"": 44.56, ""end"": 47.63}]",0.94 +TRX-00030,CAL-00062,en-IN,"Priya: Good morning Deepak, wanted to share some updates about Atri Surya Toron. Deepak: Hi, I was about to call you. Priya: Great minds! What were you thinking? Deepak: The price is still high. Can you match Atri Aqua's rate? Priya: I understand. Let me see what best I can do. Are you flexible on floor preference? Deepak: Not really. I want mid-floor east facing. Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Deepak: Please do. We're ready to close quickly. Priya: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Priya: Good morning Deepak, wanted to share some updates about Atri Surya Toron."", ""start"": 0.0, ""end"": 6.57}, {""speaker"": ""client"", ""text"": ""Deepak: Hi, I was about to call you."", ""start"": 7.08, ""end"": 12.3}, {""speaker"": ""agent"", ""text"": ""Priya: Great minds! What were you thinking?"", ""start"": 13.92, ""end"": 18.42}, {""speaker"": ""client"", ""text"": ""Deepak: The price is still high. Can you match Atri Aqua's rate?"", ""start"": 19.78, ""end"": 22.96}, {""speaker"": ""agent"", ""text"": ""Priya: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 24.11, ""end"": 26.19}, {""speaker"": ""client"", ""text"": ""Deepak: Not really. I want mid-floor east facing."", ""start"": 28.12, ""end"": 35.37}, {""speaker"": ""agent"", ""text"": ""Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 36.81, ""end"": 39.85}, {""speaker"": ""client"", ""text"": ""Deepak: Please do. We're ready to close quickly."", ""start"": 40.94, ""end"": 46.48}, {""speaker"": ""agent"", ""text"": ""Priya: Will revert by tomorrow 2 PM."", ""start"": 47.0, ""end"": 50.33}]",0.86 +TRX-00031,CAL-00063,en-IN,"Vikram: Hi Deepak, following up on your enquiry for Atri Surya Toron. Deepak: Yes, tell me. Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat? Deepak: Yes, what's the price? Vikram: Starting at 3.89 Cr for 3 BHK. Possession by July 2026. Deepak: That's good. Send me the details on WhatsApp. Vikram: Done. When can you visit? Deepak: This weekend. Vikram: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hi Deepak, following up on your enquiry for Atri Surya Toron."", ""start"": 0.0, ""end"": 4.25}, {""speaker"": ""client"", ""text"": ""Deepak: Yes, tell me."", ""start"": 5.56, ""end"": 12.84}, {""speaker"": ""agent"", ""text"": ""Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat?"", ""start"": 13.72, ""end"": 19.8}, {""speaker"": ""client"", ""text"": ""Deepak: Yes, what's the price?"", ""start"": 20.88, ""end"": 28.29}, {""speaker"": ""agent"", ""text"": ""Vikram: Starting at 3.89 Cr for 3 BHK. Possession by July 2026."", ""start"": 29.96, ""end"": 32.48}, {""speaker"": ""client"", ""text"": ""Deepak: That's good. Send me the details on WhatsApp."", ""start"": 33.54, ""end"": 35.74}, {""speaker"": ""agent"", ""text"": ""Vikram: Done. When can you visit?"", ""start"": 36.33, ""end"": 39.33}, {""speaker"": ""client"", ""text"": ""Deepak: This weekend."", ""start"": 41.1, ""end"": 45.11}, {""speaker"": ""agent"", ""text"": ""Vikram: I'll block Saturday 11 AM for you."", ""start"": 46.65, ""end"": 50.96}]",0.85 +TRX-00032,CAL-00064,en-IN,"Ananya: Good morning Deepak, wanted to share some updates about Atri Surya Toron. Deepak: Yes, tell me. Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat? Deepak: Yes, what's the price? Ananya: Starting at 5.71 Cr for 3 BHK. Possession by August 2026. Deepak: That's good. Send me the details on WhatsApp. Ananya: Done. When can you visit? Deepak: This weekend. Ananya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Ananya: Good morning Deepak, wanted to share some updates about Atri Surya Toron."", ""start"": 0.0, ""end"": 6.21}, {""speaker"": ""client"", ""text"": ""Deepak: Yes, tell me."", ""start"": 8.04, ""end"": 11.13}, {""speaker"": ""agent"", ""text"": ""Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat?"", ""start"": 11.91, ""end"": 19.38}, {""speaker"": ""client"", ""text"": ""Deepak: Yes, what's the price?"", ""start"": 20.84, ""end"": 27.47}, {""speaker"": ""agent"", ""text"": ""Ananya: Starting at 5.71 Cr for 3 BHK. Possession by August 2026."", ""start"": 28.65, ""end"": 31.95}, {""speaker"": ""client"", ""text"": ""Deepak: That's good. Send me the details on WhatsApp."", ""start"": 33.59, ""end"": 37.92}, {""speaker"": ""agent"", ""text"": ""Ananya: Done. When can you visit?"", ""start"": 39.54, ""end"": 45.62}, {""speaker"": ""client"", ""text"": ""Deepak: This weekend."", ""start"": 46.38, ""end"": 52.91}, {""speaker"": ""agent"", ""text"": ""Ananya: I'll block Saturday 11 AM for you."", ""start"": 54.89, ""end"": 61.69}]",0.94 +TRX-00033,CAL-00066,en-IN,"Ananya: Good morning Moumita, wanted to share some updates about Godrej Blue. Moumita: Hi, I was about to call you. Ananya: Great minds! What were you thinking? Moumita: The price is still high. Can you match DTC Sojon's rate? Ananya: I understand. Let me see what best I can do. Are you flexible on floor preference? Moumita: Not really. I want mid-floor east facing. Ananya: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Moumita: Please do. We're ready to close quickly. Ananya: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Ananya: Good morning Moumita, wanted to share some updates about Godrej Blue."", ""start"": 0.0, ""end"": 4.24}, {""speaker"": ""client"", ""text"": ""Moumita: Hi, I was about to call you."", ""start"": 5.2, ""end"": 12.63}, {""speaker"": ""agent"", ""text"": ""Ananya: Great minds! What were you thinking?"", ""start"": 13.34, ""end"": 18.96}, {""speaker"": ""client"", ""text"": ""Moumita: The price is still high. Can you match DTC Sojon's rate?"", ""start"": 20.04, ""end"": 25.76}, {""speaker"": ""agent"", ""text"": ""Ananya: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 26.28, ""end"": 33.97}, {""speaker"": ""client"", ""text"": ""Moumita: Not really. I want mid-floor east facing."", ""start"": 35.33, ""end"": 39.59}, {""speaker"": ""agent"", ""text"": ""Ananya: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 41.57, ""end"": 48.49}, {""speaker"": ""client"", ""text"": ""Moumita: Please do. We're ready to close quickly."", ""start"": 49.87, ""end"": 55.16}, {""speaker"": ""agent"", ""text"": ""Ananya: Will revert by tomorrow 2 PM."", ""start"": 55.99, ""end"": 63.18}]",0.89 +TRX-00034,CAL-00067,en-IN,"Priya: Hello Moumita, this is Priya from Velocity regarding Godrej Blue. Moumita: Hi, I was about to call you. Priya: Great minds! What were you thinking? Moumita: The price is still high. Can you match Merlin Avana's rate? Priya: I understand. Let me see what best I can do. Are you flexible on floor preference? Moumita: Not really. I want mid-floor east facing. Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Moumita: Please do. We're ready to close quickly. Priya: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Priya: Hello Moumita, this is Priya from Velocity regarding Godrej Blue."", ""start"": 0.0, ""end"": 3.31}, {""speaker"": ""client"", ""text"": ""Moumita: Hi, I was about to call you."", ""start"": 3.98, ""end"": 8.96}, {""speaker"": ""agent"", ""text"": ""Priya: Great minds! What were you thinking?"", ""start"": 9.69, ""end"": 12.48}, {""speaker"": ""client"", ""text"": ""Moumita: The price is still high. Can you match Merlin Avana's rate?"", ""start"": 13.87, ""end"": 20.86}, {""speaker"": ""agent"", ""text"": ""Priya: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 21.94, ""end"": 29.58}, {""speaker"": ""client"", ""text"": ""Moumita: Not really. I want mid-floor east facing."", ""start"": 30.28, ""end"": 38.1}, {""speaker"": ""agent"", ""text"": ""Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 39.57, ""end"": 43.59}, {""speaker"": ""client"", ""text"": ""Moumita: Please do. We're ready to close quickly."", ""start"": 44.44, ""end"": 49.01}, {""speaker"": ""agent"", ""text"": ""Priya: Will revert by tomorrow 2 PM."", ""start"": 50.93, ""end"": 56.28}]",0.84 +TRX-00035,CAL-00068,en-IN,"Priya: Hello Moumita, this is Priya from Velocity regarding Godrej Blue. Moumita: Hi, I was about to call you. Priya: Great minds! What were you thinking? Moumita: The price is still high. Can you match Siddha Sky Waterfront's rate? Priya: I understand. Let me see what best I can do. Are you flexible on floor preference? Moumita: Not really. I want mid-floor east facing. Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Moumita: Please do. We're ready to close quickly. Priya: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Priya: Hello Moumita, this is Priya from Velocity regarding Godrej Blue."", ""start"": 0.0, ""end"": 3.35}, {""speaker"": ""client"", ""text"": ""Moumita: Hi, I was about to call you."", ""start"": 3.98, ""end"": 11.78}, {""speaker"": ""agent"", ""text"": ""Priya: Great minds! What were you thinking?"", ""start"": 12.5, ""end"": 19.51}, {""speaker"": ""client"", ""text"": ""Moumita: The price is still high. Can you match Siddha Sky Waterfront's rate?"", ""start"": 20.91, ""end"": 25.82}, {""speaker"": ""agent"", ""text"": ""Priya: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 26.63, ""end"": 29.73}, {""speaker"": ""client"", ""text"": ""Moumita: Not really. I want mid-floor east facing."", ""start"": 30.68, ""end"": 34.4}, {""speaker"": ""agent"", ""text"": ""Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 35.81, ""end"": 37.96}, {""speaker"": ""client"", ""text"": ""Moumita: Please do. We're ready to close quickly."", ""start"": 39.59, ""end"": 46.23}, {""speaker"": ""agent"", ""text"": ""Priya: Will revert by tomorrow 2 PM."", ""start"": 47.21, ""end"": 53.36}]",0.86 +TRX-00036,CAL-00070,en-IN,"Vikram: Good morning Shreya, wanted to share some updates about Shriram Grand City. Shreya: Hi, I was about to call you. Vikram: Great minds! What were you thinking? Shreya: The price is still high. Can you match DTC Good Earth's rate? Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference? Shreya: Not really. I want mid-floor east facing. Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Shreya: Please do. We're ready to close quickly. Vikram: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Vikram: Good morning Shreya, wanted to share some updates about Shriram Grand City."", ""start"": 0.0, ""end"": 2.54}, {""speaker"": ""client"", ""text"": ""Shreya: Hi, I was about to call you."", ""start"": 3.88, ""end"": 9.17}, {""speaker"": ""agent"", ""text"": ""Vikram: Great minds! What were you thinking?"", ""start"": 10.25, ""end"": 13.95}, {""speaker"": ""client"", ""text"": ""Shreya: The price is still high. Can you match DTC Good Earth's rate?"", ""start"": 15.71, ""end"": 23.59}, {""speaker"": ""agent"", ""text"": ""Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 24.33, ""end"": 28.55}, {""speaker"": ""client"", ""text"": ""Shreya: Not really. I want mid-floor east facing."", ""start"": 29.24, ""end"": 35.44}, {""speaker"": ""agent"", ""text"": ""Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 36.51, ""end"": 39.12}, {""speaker"": ""client"", ""text"": ""Shreya: Please do. We're ready to close quickly."", ""start"": 40.25, ""end"": 42.43}, {""speaker"": ""agent"", ""text"": ""Vikram: Will revert by tomorrow 2 PM."", ""start"": 42.95, ""end"": 49.5}]",0.88 +TRX-00037,CAL-00071,en-IN,"Priya: Hi Shreya, following up on your enquiry for Shriram Grand City. Shreya: Hi, I was about to call you. Priya: Great minds! What were you thinking? Shreya: The price is still high. Can you match Godrej Blue's rate? Priya: I understand. Let me see what best I can do. Are you flexible on floor preference? Shreya: Not really. I want mid-floor east facing. Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Shreya: Please do. We're ready to close quickly. Priya: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Priya: Hi Shreya, following up on your enquiry for Shriram Grand City."", ""start"": 0.0, ""end"": 3.96}, {""speaker"": ""client"", ""text"": ""Shreya: Hi, I was about to call you."", ""start"": 5.12, ""end"": 12.93}, {""speaker"": ""agent"", ""text"": ""Priya: Great minds! What were you thinking?"", ""start"": 14.53, ""end"": 21.4}, {""speaker"": ""client"", ""text"": ""Shreya: The price is still high. Can you match Godrej Blue's rate?"", ""start"": 22.94, ""end"": 25.27}, {""speaker"": ""agent"", ""text"": ""Priya: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 26.85, ""end"": 29.33}, {""speaker"": ""client"", ""text"": ""Shreya: Not really. I want mid-floor east facing."", ""start"": 30.8, ""end"": 35.18}, {""speaker"": ""agent"", ""text"": ""Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 37.13, ""end"": 41.56}, {""speaker"": ""client"", ""text"": ""Shreya: Please do. We're ready to close quickly."", ""start"": 42.38, ""end"": 47.7}, {""speaker"": ""agent"", ""text"": ""Priya: Will revert by tomorrow 2 PM."", ""start"": 48.5, ""end"": 52.08}]",0.88 +TRX-00038,CAL-00073,en-IN,"Rahul: Good morning Shreya, wanted to share some updates about Shriram Grand City. Shreya: Yes, tell me. Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Howrah? Shreya: Yes, what's the price? Rahul: Starting at 7.49 Cr for 3 BHK. Possession by July 2026. Shreya: That's good. Send me the details on WhatsApp. Rahul: Done. When can you visit? Shreya: This weekend. Rahul: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Rahul: Good morning Shreya, wanted to share some updates about Shriram Grand City."", ""start"": 0.0, ""end"": 4.59}, {""speaker"": ""client"", ""text"": ""Shreya: Yes, tell me."", ""start"": 5.46, ""end"": 11.6}, {""speaker"": ""agent"", ""text"": ""Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Howrah?"", ""start"": 13.0, ""end"": 15.8}, {""speaker"": ""client"", ""text"": ""Shreya: Yes, what's the price?"", ""start"": 17.15, ""end"": 19.39}, {""speaker"": ""agent"", ""text"": ""Rahul: Starting at 7.49 Cr for 3 BHK. Possession by July 2026."", ""start"": 21.19, ""end"": 27.77}, {""speaker"": ""client"", ""text"": ""Shreya: That's good. Send me the details on WhatsApp."", ""start"": 29.5, ""end"": 33.75}, {""speaker"": ""agent"", ""text"": ""Rahul: Done. When can you visit?"", ""start"": 35.54, ""end"": 40.18}, {""speaker"": ""client"", ""text"": ""Shreya: This weekend."", ""start"": 42.06, ""end"": 45.4}, {""speaker"": ""agent"", ""text"": ""Rahul: I'll block Saturday 11 AM for you."", ""start"": 46.7, ""end"": 49.52}]",0.82 +TRX-00039,CAL-00074,en-IN,"Ananya: Hi Tanvi, following up on your enquiry for DTC Good Earth. Tanvi: Hi, I was about to call you. Ananya: Great minds! What were you thinking? Tanvi: The price is still high. Can you match Godrej Elevate's rate? Ananya: I understand. Let me see what best I can do. Are you flexible on floor preference? Tanvi: Not really. I want mid-floor east facing. Ananya: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Tanvi: Please do. We're ready to close quickly. Ananya: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Ananya: Hi Tanvi, following up on your enquiry for DTC Good Earth."", ""start"": 0.0, ""end"": 2.42}, {""speaker"": ""client"", ""text"": ""Tanvi: Hi, I was about to call you."", ""start"": 3.74, ""end"": 10.04}, {""speaker"": ""agent"", ""text"": ""Ananya: Great minds! What were you thinking?"", ""start"": 11.13, ""end"": 17.17}, {""speaker"": ""client"", ""text"": ""Tanvi: The price is still high. Can you match Godrej Elevate's rate?"", ""start"": 17.95, ""end"": 24.62}, {""speaker"": ""agent"", ""text"": ""Ananya: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 26.5, ""end"": 29.81}, {""speaker"": ""client"", ""text"": ""Tanvi: Not really. I want mid-floor east facing."", ""start"": 31.71, ""end"": 37.91}, {""speaker"": ""agent"", ""text"": ""Ananya: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 38.46, ""end"": 44.84}, {""speaker"": ""client"", ""text"": ""Tanvi: Please do. We're ready to close quickly."", ""start"": 45.39, ""end"": 50.74}, {""speaker"": ""agent"", ""text"": ""Ananya: Will revert by tomorrow 2 PM."", ""start"": 51.32, ""end"": 57.0}]",0.89 +TRX-00040,CAL-00075,en-IN,"Rahul: Hi Tanvi, following up on your enquiry for DTC Good Earth. Tanvi: Yes, tell me. Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in New Town? Tanvi: Yes, what's the price? Rahul: Starting at 5.31 Cr for 3 BHK. Possession by June 2026. Tanvi: That's good. Send me the details on WhatsApp. Rahul: Done. When can you visit? Tanvi: This weekend. Rahul: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Rahul: Hi Tanvi, following up on your enquiry for DTC Good Earth."", ""start"": 0.0, ""end"": 6.24}, {""speaker"": ""client"", ""text"": ""Tanvi: Yes, tell me."", ""start"": 7.03, ""end"": 14.11}, {""speaker"": ""agent"", ""text"": ""Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in New Town?"", ""start"": 15.82, ""end"": 23.5}, {""speaker"": ""client"", ""text"": ""Tanvi: Yes, what's the price?"", ""start"": 25.09, ""end"": 28.98}, {""speaker"": ""agent"", ""text"": ""Rahul: Starting at 5.31 Cr for 3 BHK. Possession by June 2026."", ""start"": 30.21, ""end"": 37.76}, {""speaker"": ""client"", ""text"": ""Tanvi: That's good. Send me the details on WhatsApp."", ""start"": 39.73, ""end"": 44.64}, {""speaker"": ""agent"", ""text"": ""Rahul: Done. When can you visit?"", ""start"": 46.0, ""end"": 52.74}, {""speaker"": ""client"", ""text"": ""Tanvi: This weekend."", ""start"": 53.62, ""end"": 55.83}, {""speaker"": ""agent"", ""text"": ""Rahul: I'll block Saturday 11 AM for you."", ""start"": 57.44, ""end"": 59.53}]",0.92 +TRX-00041,CAL-00079,en-IN,"Vikram: Good morning Tanvi, wanted to share some updates about DTC Good Earth. Tanvi: Hi, I was about to call you. Vikram: Great minds! What were you thinking? Tanvi: The price is still high. Can you match Eden Devprayag's rate? Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference? Tanvi: Not really. I want mid-floor east facing. Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Tanvi: Please do. We're ready to close quickly. Vikram: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Vikram: Good morning Tanvi, wanted to share some updates about DTC Good Earth."", ""start"": 0.0, ""end"": 3.98}, {""speaker"": ""client"", ""text"": ""Tanvi: Hi, I was about to call you."", ""start"": 5.48, ""end"": 9.45}, {""speaker"": ""agent"", ""text"": ""Vikram: Great minds! What were you thinking?"", ""start"": 11.09, ""end"": 19.03}, {""speaker"": ""client"", ""text"": ""Tanvi: The price is still high. Can you match Eden Devprayag's rate?"", ""start"": 19.79, ""end"": 21.83}, {""speaker"": ""agent"", ""text"": ""Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 22.91, ""end"": 29.77}, {""speaker"": ""client"", ""text"": ""Tanvi: Not really. I want mid-floor east facing."", ""start"": 31.48, ""end"": 33.83}, {""speaker"": ""agent"", ""text"": ""Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 34.43, ""end"": 37.07}, {""speaker"": ""client"", ""text"": ""Tanvi: Please do. We're ready to close quickly."", ""start"": 37.83, ""end"": 40.25}, {""speaker"": ""agent"", ""text"": ""Vikram: Will revert by tomorrow 2 PM."", ""start"": 41.51, ""end"": 43.54}]",0.94 +TRX-00042,CAL-00083,en-IN,"Ananya: Hello Kunal, this is Ananya from Velocity regarding Siddha Serena. Kunal: Yes, tell me. Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in New Town? Kunal: Yes, what's the price? Ananya: Starting at 6.84 Cr for 3 BHK. Possession by August 2026. Kunal: That's good. Send me the details on WhatsApp. Ananya: Done. When can you visit? Kunal: This weekend. Ananya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Ananya: Hello Kunal, this is Ananya from Velocity regarding Siddha Serena."", ""start"": 0.0, ""end"": 3.28}, {""speaker"": ""client"", ""text"": ""Kunal: Yes, tell me."", ""start"": 5.23, ""end"": 7.79}, {""speaker"": ""agent"", ""text"": ""Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in New Town?"", ""start"": 9.5, ""end"": 12.05}, {""speaker"": ""client"", ""text"": ""Kunal: Yes, what's the price?"", ""start"": 13.36, ""end"": 20.67}, {""speaker"": ""agent"", ""text"": ""Ananya: Starting at 6.84 Cr for 3 BHK. Possession by August 2026."", ""start"": 22.41, ""end"": 26.9}, {""speaker"": ""client"", ""text"": ""Kunal: That's good. Send me the details on WhatsApp."", ""start"": 28.22, ""end"": 35.79}, {""speaker"": ""agent"", ""text"": ""Ananya: Done. When can you visit?"", ""start"": 36.64, ""end"": 42.56}, {""speaker"": ""client"", ""text"": ""Kunal: This weekend."", ""start"": 43.24, ""end"": 51.12}, {""speaker"": ""agent"", ""text"": ""Ananya: I'll block Saturday 11 AM for you."", ""start"": 52.95, ""end"": 55.29}]",0.93 +TRX-00043,CAL-00084,en-IN,"Vikram: Hello Sonal, this is Vikram from Velocity regarding Siddha Serena. Sonal: Hi, I was about to call you. Vikram: Great minds! What were you thinking? Sonal: The price is still high. Can you match Atri Aqua's rate? Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference? Sonal: Not really. I want mid-floor east facing. Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Sonal: Please do. We're ready to close quickly. Vikram: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hello Sonal, this is Vikram from Velocity regarding Siddha Serena."", ""start"": 0.0, ""end"": 5.69}, {""speaker"": ""client"", ""text"": ""Sonal: Hi, I was about to call you."", ""start"": 7.48, ""end"": 15.46}, {""speaker"": ""agent"", ""text"": ""Vikram: Great minds! What were you thinking?"", ""start"": 16.24, ""end"": 23.05}, {""speaker"": ""client"", ""text"": ""Sonal: The price is still high. Can you match Atri Aqua's rate?"", ""start"": 24.21, ""end"": 31.25}, {""speaker"": ""agent"", ""text"": ""Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 32.74, ""end"": 36.71}, {""speaker"": ""client"", ""text"": ""Sonal: Not really. I want mid-floor east facing."", ""start"": 38.16, ""end"": 42.8}, {""speaker"": ""agent"", ""text"": ""Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 44.66, ""end"": 49.81}, {""speaker"": ""client"", ""text"": ""Sonal: Please do. We're ready to close quickly."", ""start"": 51.23, ""end"": 56.33}, {""speaker"": ""agent"", ""text"": ""Vikram: Will revert by tomorrow 2 PM."", ""start"": 57.9, ""end"": 62.1}]",0.85 +TRX-00044,CAL-00085,en-IN,"Vikram: Good morning Sonal, wanted to share some updates about Siddha Serena. Sonal: Hi, I was about to call you. Vikram: Great minds! What were you thinking? Sonal: The price is still high. Can you match Merlin Avana's rate? Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference? Sonal: Not really. I want mid-floor east facing. Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Sonal: Please do. We're ready to close quickly. Vikram: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Vikram: Good morning Sonal, wanted to share some updates about Siddha Serena."", ""start"": 0.0, ""end"": 5.61}, {""speaker"": ""client"", ""text"": ""Sonal: Hi, I was about to call you."", ""start"": 7.23, ""end"": 12.93}, {""speaker"": ""agent"", ""text"": ""Vikram: Great minds! What were you thinking?"", ""start"": 14.24, ""end"": 20.07}, {""speaker"": ""client"", ""text"": ""Sonal: The price is still high. Can you match Merlin Avana's rate?"", ""start"": 21.03, ""end"": 25.58}, {""speaker"": ""agent"", ""text"": ""Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 26.52, ""end"": 33.38}, {""speaker"": ""client"", ""text"": ""Sonal: Not really. I want mid-floor east facing."", ""start"": 33.92, ""end"": 38.46}, {""speaker"": ""agent"", ""text"": ""Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 40.24, ""end"": 42.64}, {""speaker"": ""client"", ""text"": ""Sonal: Please do. We're ready to close quickly."", ""start"": 43.47, ""end"": 46.78}, {""speaker"": ""agent"", ""text"": ""Vikram: Will revert by tomorrow 2 PM."", ""start"": 48.03, ""end"": 52.16}]",0.87 +TRX-00045,CAL-00089,en-IN,"Priya: Good morning Prasenjit, wanted to share some updates about Siddha Sky Waterfront. Prasenjit: Hi, I was about to call you. Priya: Great minds! What were you thinking? Prasenjit: The price is still high. Can you match Shriram Grand City's rate? Priya: I understand. Let me see what best I can do. Are you flexible on floor preference? Prasenjit: Not really. I want mid-floor east facing. Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Prasenjit: Please do. We're ready to close quickly. Priya: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Priya: Good morning Prasenjit, wanted to share some updates about Siddha Sky Waterfront."", ""start"": 0.0, ""end"": 3.79}, {""speaker"": ""client"", ""text"": ""Prasenjit: Hi, I was about to call you."", ""start"": 4.79, ""end"": 11.98}, {""speaker"": ""agent"", ""text"": ""Priya: Great minds! What were you thinking?"", ""start"": 13.52, ""end"": 19.27}, {""speaker"": ""client"", ""text"": ""Prasenjit: The price is still high. Can you match Shriram Grand City's rate?"", ""start"": 21.17, ""end"": 24.89}, {""speaker"": ""agent"", ""text"": ""Priya: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 26.21, ""end"": 32.23}, {""speaker"": ""client"", ""text"": ""Prasenjit: Not really. I want mid-floor east facing."", ""start"": 32.77, ""end"": 38.0}, {""speaker"": ""agent"", ""text"": ""Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 38.94, ""end"": 44.63}, {""speaker"": ""client"", ""text"": ""Prasenjit: Please do. We're ready to close quickly."", ""start"": 46.26, ""end"": 48.73}, {""speaker"": ""agent"", ""text"": ""Priya: Will revert by tomorrow 2 PM."", ""start"": 49.37, ""end"": 51.87}]",0.93 +TRX-00046,CAL-00090,en-IN,"Priya: Hi Prasenjit, following up on your enquiry for Siddha Sky Waterfront. Prasenjit: Yes, tell me. Priya: We have a new tower launch with pre-launch pricing. Are you still looking in Beliaghata? Prasenjit: Yes, what's the price? Priya: Starting at 7.86 Cr for 3 BHK. Possession by August 2026. Prasenjit: That's good. Send me the details on WhatsApp. Priya: Done. When can you visit? Prasenjit: This weekend. Priya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Priya: Hi Prasenjit, following up on your enquiry for Siddha Sky Waterfront."", ""start"": 0.0, ""end"": 6.98}, {""speaker"": ""client"", ""text"": ""Prasenjit: Yes, tell me."", ""start"": 7.49, ""end"": 12.03}, {""speaker"": ""agent"", ""text"": ""Priya: We have a new tower launch with pre-launch pricing. Are you still looking in Beliaghata?"", ""start"": 13.25, ""end"": 18.59}, {""speaker"": ""client"", ""text"": ""Prasenjit: Yes, what's the price?"", ""start"": 19.3, ""end"": 22.0}, {""speaker"": ""agent"", ""text"": ""Priya: Starting at 7.86 Cr for 3 BHK. Possession by August 2026."", ""start"": 23.97, ""end"": 27.15}, {""speaker"": ""client"", ""text"": ""Prasenjit: That's good. Send me the details on WhatsApp."", ""start"": 28.8, ""end"": 31.91}, {""speaker"": ""agent"", ""text"": ""Priya: Done. When can you visit?"", ""start"": 33.37, ""end"": 41.32}, {""speaker"": ""client"", ""text"": ""Prasenjit: This weekend."", ""start"": 42.77, ""end"": 46.84}, {""speaker"": ""agent"", ""text"": ""Priya: I'll block Saturday 11 AM for you."", ""start"": 47.94, ""end"": 50.6}]",0.95 +TRX-00047,CAL-00091,en-IN,"Rahul: Good morning Prasenjit, wanted to share some updates about Siddha Sky Waterfront. Prasenjit: Hi, I was about to call you. Rahul: Great minds! What were you thinking? Prasenjit: The price is still high. Can you match Eden Devprayag's rate? Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference? Prasenjit: Not really. I want mid-floor east facing. Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Prasenjit: Please do. We're ready to close quickly. Rahul: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Rahul: Good morning Prasenjit, wanted to share some updates about Siddha Sky Waterfront."", ""start"": 0.0, ""end"": 7.19}, {""speaker"": ""client"", ""text"": ""Prasenjit: Hi, I was about to call you."", ""start"": 8.43, ""end"": 15.88}, {""speaker"": ""agent"", ""text"": ""Rahul: Great minds! What were you thinking?"", ""start"": 16.52, ""end"": 22.45}, {""speaker"": ""client"", ""text"": ""Prasenjit: The price is still high. Can you match Eden Devprayag's rate?"", ""start"": 23.83, ""end"": 26.12}, {""speaker"": ""agent"", ""text"": ""Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 27.08, ""end"": 29.99}, {""speaker"": ""client"", ""text"": ""Prasenjit: Not really. I want mid-floor east facing."", ""start"": 31.33, ""end"": 38.88}, {""speaker"": ""agent"", ""text"": ""Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 39.99, ""end"": 47.78}, {""speaker"": ""client"", ""text"": ""Prasenjit: Please do. We're ready to close quickly."", ""start"": 49.59, ""end"": 52.46}, {""speaker"": ""agent"", ""text"": ""Rahul: Will revert by tomorrow 2 PM."", ""start"": 54.39, ""end"": 61.76}]",0.86 +TRX-00048,CAL-00093,en-IN,"Vikram: Hi Deb, following up on your enquiry for Atri Surya Toron. Deb: Yes, tell me. Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat? Deb: Yes, what's the price? Vikram: Starting at 4.27 Cr for 3 BHK. Possession by September 2026. Deb: That's good. Send me the details on WhatsApp. Vikram: Done. When can you visit? Deb: This weekend. Vikram: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hi Deb, following up on your enquiry for Atri Surya Toron."", ""start"": 0.0, ""end"": 5.94}, {""speaker"": ""client"", ""text"": ""Deb: Yes, tell me."", ""start"": 7.55, ""end"": 13.34}, {""speaker"": ""agent"", ""text"": ""Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat?"", ""start"": 14.27, ""end"": 19.07}, {""speaker"": ""client"", ""text"": ""Deb: Yes, what's the price?"", ""start"": 20.38, ""end"": 25.54}, {""speaker"": ""agent"", ""text"": ""Vikram: Starting at 4.27 Cr for 3 BHK. Possession by September 2026."", ""start"": 27.4, ""end"": 32.44}, {""speaker"": ""client"", ""text"": ""Deb: That's good. Send me the details on WhatsApp."", ""start"": 34.41, ""end"": 38.63}, {""speaker"": ""agent"", ""text"": ""Vikram: Done. When can you visit?"", ""start"": 40.02, ""end"": 44.61}, {""speaker"": ""client"", ""text"": ""Deb: This weekend."", ""start"": 45.63, ""end"": 49.83}, {""speaker"": ""agent"", ""text"": ""Vikram: I'll block Saturday 11 AM for you."", ""start"": 51.49, ""end"": 56.18}]",0.88 +TRX-00049,CAL-00094,en-IN,"Vikram: Hello Deb, this is Vikram from Velocity regarding Atri Surya Toron. Deb: Yes, tell me. Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat? Deb: Yes, what's the price? Vikram: Starting at 5.87 Cr for 3 BHK. Possession by September 2026. Deb: That's good. Send me the details on WhatsApp. Vikram: Done. When can you visit? Deb: This weekend. Vikram: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hello Deb, this is Vikram from Velocity regarding Atri Surya Toron."", ""start"": 0.0, ""end"": 5.06}, {""speaker"": ""client"", ""text"": ""Deb: Yes, tell me."", ""start"": 6.99, ""end"": 9.23}, {""speaker"": ""agent"", ""text"": ""Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat?"", ""start"": 10.78, ""end"": 18.04}, {""speaker"": ""client"", ""text"": ""Deb: Yes, what's the price?"", ""start"": 18.55, ""end"": 23.0}, {""speaker"": ""agent"", ""text"": ""Vikram: Starting at 5.87 Cr for 3 BHK. Possession by September 2026."", ""start"": 24.4, ""end"": 27.01}, {""speaker"": ""client"", ""text"": ""Deb: That's good. Send me the details on WhatsApp."", ""start"": 27.71, ""end"": 30.72}, {""speaker"": ""agent"", ""text"": ""Vikram: Done. When can you visit?"", ""start"": 31.97, ""end"": 37.93}, {""speaker"": ""client"", ""text"": ""Deb: This weekend."", ""start"": 38.64, ""end"": 41.69}, {""speaker"": ""agent"", ""text"": ""Vikram: I'll block Saturday 11 AM for you."", ""start"": 42.42, ""end"": 46.38}]",0.85 +TRX-00050,CAL-00097,en-IN,"Vikram: Hello Trisha, this is Vikram from Velocity regarding Godrej Elevate. Trisha: Yes, tell me. Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Dum Dum? Trisha: Yes, what's the price? Vikram: Starting at 3.81 Cr for 3 BHK. Possession by June 2026. Trisha: That's good. Send me the details on WhatsApp. Vikram: Done. When can you visit? Trisha: This weekend. Vikram: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hello Trisha, this is Vikram from Velocity regarding Godrej Elevate."", ""start"": 0.0, ""end"": 2.52}, {""speaker"": ""client"", ""text"": ""Trisha: Yes, tell me."", ""start"": 3.72, ""end"": 7.87}, {""speaker"": ""agent"", ""text"": ""Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Dum Dum?"", ""start"": 8.73, ""end"": 14.36}, {""speaker"": ""client"", ""text"": ""Trisha: Yes, what's the price?"", ""start"": 15.57, ""end"": 18.9}, {""speaker"": ""agent"", ""text"": ""Vikram: Starting at 3.81 Cr for 3 BHK. Possession by June 2026."", ""start"": 19.59, ""end"": 22.32}, {""speaker"": ""client"", ""text"": ""Trisha: That's good. Send me the details on WhatsApp."", ""start"": 23.16, ""end"": 28.35}, {""speaker"": ""agent"", ""text"": ""Vikram: Done. When can you visit?"", ""start"": 30.26, ""end"": 32.53}, {""speaker"": ""client"", ""text"": ""Trisha: This weekend."", ""start"": 33.17, ""end"": 36.61}, {""speaker"": ""agent"", ""text"": ""Vikram: I'll block Saturday 11 AM for you."", ""start"": 37.47, ""end"": 43.1}]",0.83 +TRX-00051,CAL-00098,en-IN,"Vikram: Hello Trisha, this is Vikram from Velocity regarding Godrej Elevate. Trisha: Yes, tell me. Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Dum Dum? Trisha: Yes, what's the price? Vikram: Starting at 7.03 Cr for 3 BHK. Possession by August 2026. Trisha: That's good. Send me the details on WhatsApp. Vikram: Done. When can you visit? Trisha: This weekend. Vikram: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hello Trisha, this is Vikram from Velocity regarding Godrej Elevate."", ""start"": 0.0, ""end"": 3.47}, {""speaker"": ""client"", ""text"": ""Trisha: Yes, tell me."", ""start"": 5.21, ""end"": 11.73}, {""speaker"": ""agent"", ""text"": ""Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Dum Dum?"", ""start"": 13.08, ""end"": 19.29}, {""speaker"": ""client"", ""text"": ""Trisha: Yes, what's the price?"", ""start"": 19.9, ""end"": 25.5}, {""speaker"": ""agent"", ""text"": ""Vikram: Starting at 7.03 Cr for 3 BHK. Possession by August 2026."", ""start"": 26.94, ""end"": 30.19}, {""speaker"": ""client"", ""text"": ""Trisha: That's good. Send me the details on WhatsApp."", ""start"": 32.15, ""end"": 35.7}, {""speaker"": ""agent"", ""text"": ""Vikram: Done. When can you visit?"", ""start"": 36.93, ""end"": 41.91}, {""speaker"": ""client"", ""text"": ""Trisha: This weekend."", ""start"": 42.93, ""end"": 50.44}, {""speaker"": ""agent"", ""text"": ""Vikram: I'll block Saturday 11 AM for you."", ""start"": 51.15, ""end"": 57.16}]",0.87 +TRX-00052,CAL-00099,en-IN,"Vikram: Hi Trisha, following up on your enquiry for Godrej Elevate. Trisha: Hi, I was about to call you. Vikram: Great minds! What were you thinking? Trisha: The price is still high. Can you match Ambuja Utpaala's rate? Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference? Trisha: Not really. I want mid-floor east facing. Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Trisha: Please do. We're ready to close quickly. Vikram: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hi Trisha, following up on your enquiry for Godrej Elevate."", ""start"": 0.0, ""end"": 4.93}, {""speaker"": ""client"", ""text"": ""Trisha: Hi, I was about to call you."", ""start"": 6.69, ""end"": 11.0}, {""speaker"": ""agent"", ""text"": ""Vikram: Great minds! What were you thinking?"", ""start"": 12.2, ""end"": 17.27}, {""speaker"": ""client"", ""text"": ""Trisha: The price is still high. Can you match Ambuja Utpaala's rate?"", ""start"": 18.66, ""end"": 24.12}, {""speaker"": ""agent"", ""text"": ""Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 25.68, ""end"": 30.13}, {""speaker"": ""client"", ""text"": ""Trisha: Not really. I want mid-floor east facing."", ""start"": 30.83, ""end"": 33.61}, {""speaker"": ""agent"", ""text"": ""Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 34.96, ""end"": 42.11}, {""speaker"": ""client"", ""text"": ""Trisha: Please do. We're ready to close quickly."", ""start"": 42.83, ""end"": 49.42}, {""speaker"": ""agent"", ""text"": ""Vikram: Will revert by tomorrow 2 PM."", ""start"": 51.05, ""end"": 54.13}]",0.92 +TRX-00053,CAL-00100,en-IN,"Rahul: Hi Trisha, following up on your enquiry for Godrej Elevate. Trisha: Hi, I was about to call you. Rahul: Great minds! What were you thinking? Trisha: The price is still high. Can you match Siddha Serena's rate? Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference? Trisha: Not really. I want mid-floor east facing. Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Trisha: Please do. We're ready to close quickly. Rahul: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Rahul: Hi Trisha, following up on your enquiry for Godrej Elevate."", ""start"": 0.0, ""end"": 7.41}, {""speaker"": ""client"", ""text"": ""Trisha: Hi, I was about to call you."", ""start"": 8.19, ""end"": 12.95}, {""speaker"": ""agent"", ""text"": ""Rahul: Great minds! What were you thinking?"", ""start"": 14.93, ""end"": 20.94}, {""speaker"": ""client"", ""text"": ""Trisha: The price is still high. Can you match Siddha Serena's rate?"", ""start"": 22.49, ""end"": 28.83}, {""speaker"": ""agent"", ""text"": ""Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 30.02, ""end"": 37.21}, {""speaker"": ""client"", ""text"": ""Trisha: Not really. I want mid-floor east facing."", ""start"": 38.14, ""end"": 41.36}, {""speaker"": ""agent"", ""text"": ""Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 42.84, ""end"": 47.56}, {""speaker"": ""client"", ""text"": ""Trisha: Please do. We're ready to close quickly."", ""start"": 49.08, ""end"": 52.53}, {""speaker"": ""agent"", ""text"": ""Rahul: Will revert by tomorrow 2 PM."", ""start"": 53.7, ""end"": 56.04}]",0.92 +TRX-00054,CAL-00102,en-IN,"Rahul: Hi Trisha, following up on your enquiry for Godrej Elevate. Trisha: Hi, I was about to call you. Rahul: Great minds! What were you thinking? Trisha: The price is still high. Can you match Siddha Serena's rate? Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference? Trisha: Not really. I want mid-floor east facing. Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Trisha: Please do. We're ready to close quickly. Rahul: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Rahul: Hi Trisha, following up on your enquiry for Godrej Elevate."", ""start"": 0.0, ""end"": 2.37}, {""speaker"": ""client"", ""text"": ""Trisha: Hi, I was about to call you."", ""start"": 3.23, ""end"": 7.27}, {""speaker"": ""agent"", ""text"": ""Rahul: Great minds! What were you thinking?"", ""start"": 8.8, ""end"": 14.61}, {""speaker"": ""client"", ""text"": ""Trisha: The price is still high. Can you match Siddha Serena's rate?"", ""start"": 15.26, ""end"": 19.12}, {""speaker"": ""agent"", ""text"": ""Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 20.1, ""end"": 25.85}, {""speaker"": ""client"", ""text"": ""Trisha: Not really. I want mid-floor east facing."", ""start"": 26.37, ""end"": 30.66}, {""speaker"": ""agent"", ""text"": ""Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 31.83, ""end"": 37.12}, {""speaker"": ""client"", ""text"": ""Trisha: Please do. We're ready to close quickly."", ""start"": 37.68, ""end"": 40.6}, {""speaker"": ""agent"", ""text"": ""Rahul: Will revert by tomorrow 2 PM."", ""start"": 41.8, ""end"": 49.18}]",0.9 +TRX-00055,CAL-00104,en-IN,"Priya: Hi Parth, following up on your enquiry for Siddha Sky Waterfront. Parth: Yes, tell me. Priya: We have a new tower launch with pre-launch pricing. Are you still looking in Beliaghata? Parth: Yes, what's the price? Priya: Starting at 5.04 Cr for 3 BHK. Possession by September 2026. Parth: That's good. Send me the details on WhatsApp. Priya: Done. When can you visit? Parth: This weekend. Priya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Priya: Hi Parth, following up on your enquiry for Siddha Sky Waterfront."", ""start"": 0.0, ""end"": 5.56}, {""speaker"": ""client"", ""text"": ""Parth: Yes, tell me."", ""start"": 7.27, ""end"": 13.1}, {""speaker"": ""agent"", ""text"": ""Priya: We have a new tower launch with pre-launch pricing. Are you still looking in Beliaghata?"", ""start"": 14.82, ""end"": 17.57}, {""speaker"": ""client"", ""text"": ""Parth: Yes, what's the price?"", ""start"": 18.85, ""end"": 26.66}, {""speaker"": ""agent"", ""text"": ""Priya: Starting at 5.04 Cr for 3 BHK. Possession by September 2026."", ""start"": 27.16, ""end"": 34.81}, {""speaker"": ""client"", ""text"": ""Parth: That's good. Send me the details on WhatsApp."", ""start"": 35.32, ""end"": 38.07}, {""speaker"": ""agent"", ""text"": ""Priya: Done. When can you visit?"", ""start"": 39.66, ""end"": 46.63}, {""speaker"": ""client"", ""text"": ""Parth: This weekend."", ""start"": 47.96, ""end"": 54.72}, {""speaker"": ""agent"", ""text"": ""Priya: I'll block Saturday 11 AM for you."", ""start"": 55.93, ""end"": 58.65}]",0.86 +TRX-00056,CAL-00107,en-IN,"Vikram: Good morning Ananya, wanted to share some updates about Shriram Grand City. Ananya: Yes, tell me. Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Howrah? Ananya: Yes, what's the price? Vikram: Starting at 5.83 Cr for 3 BHK. Possession by June 2026. Ananya: That's good. Send me the details on WhatsApp. Vikram: Done. When can you visit? Ananya: This weekend. Vikram: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Vikram: Good morning Ananya, wanted to share some updates about Shriram Grand City."", ""start"": 0.0, ""end"": 6.87}, {""speaker"": ""client"", ""text"": ""Ananya: Yes, tell me."", ""start"": 8.01, ""end"": 12.99}, {""speaker"": ""agent"", ""text"": ""Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Howrah?"", ""start"": 14.08, ""end"": 19.34}, {""speaker"": ""client"", ""text"": ""Ananya: Yes, what's the price?"", ""start"": 21.28, ""end"": 26.55}, {""speaker"": ""agent"", ""text"": ""Vikram: Starting at 5.83 Cr for 3 BHK. Possession by June 2026."", ""start"": 28.4, ""end"": 34.78}, {""speaker"": ""client"", ""text"": ""Ananya: That's good. Send me the details on WhatsApp."", ""start"": 35.87, ""end"": 40.63}, {""speaker"": ""agent"", ""text"": ""Vikram: Done. When can you visit?"", ""start"": 41.73, ""end"": 46.33}, {""speaker"": ""client"", ""text"": ""Ananya: This weekend."", ""start"": 47.49, ""end"": 52.91}, {""speaker"": ""agent"", ""text"": ""Vikram: I'll block Saturday 11 AM for you."", ""start"": 54.44, ""end"": 62.14}]",0.87 +TRX-00057,CAL-00114,en-IN,"Rahul: Good morning Parth, wanted to share some updates about Shriram Grand City. Parth: Hi, I was about to call you. Rahul: Great minds! What were you thinking? Parth: The price is still high. Can you match Eden Devprayag's rate? Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference? Parth: Not really. I want mid-floor east facing. Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Parth: Please do. We're ready to close quickly. Rahul: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Rahul: Good morning Parth, wanted to share some updates about Shriram Grand City."", ""start"": 0.0, ""end"": 5.73}, {""speaker"": ""client"", ""text"": ""Parth: Hi, I was about to call you."", ""start"": 6.32, ""end"": 13.31}, {""speaker"": ""agent"", ""text"": ""Rahul: Great minds! What were you thinking?"", ""start"": 14.17, ""end"": 19.76}, {""speaker"": ""client"", ""text"": ""Parth: The price is still high. Can you match Eden Devprayag's rate?"", ""start"": 21.68, ""end"": 25.55}, {""speaker"": ""agent"", ""text"": ""Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 26.1, ""end"": 31.34}, {""speaker"": ""client"", ""text"": ""Parth: Not really. I want mid-floor east facing."", ""start"": 33.21, ""end"": 39.55}, {""speaker"": ""agent"", ""text"": ""Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 40.71, ""end"": 48.43}, {""speaker"": ""client"", ""text"": ""Parth: Please do. We're ready to close quickly."", ""start"": 49.25, ""end"": 54.44}, {""speaker"": ""agent"", ""text"": ""Rahul: Will revert by tomorrow 2 PM."", ""start"": 55.77, ""end"": 59.84}]",0.91 +TRX-00058,CAL-00115,en-IN,"Vikram: Hi Sonal, following up on your enquiry for Siddha Sky Waterfront. Sonal: Hi, I was about to call you. Vikram: Great minds! What were you thinking? Sonal: The price is still high. Can you match Atri Aqua's rate? Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference? Sonal: Not really. I want mid-floor east facing. Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Sonal: Please do. We're ready to close quickly. Vikram: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hi Sonal, following up on your enquiry for Siddha Sky Waterfront."", ""start"": 0.0, ""end"": 2.04}, {""speaker"": ""client"", ""text"": ""Sonal: Hi, I was about to call you."", ""start"": 3.7, ""end"": 7.16}, {""speaker"": ""agent"", ""text"": ""Vikram: Great minds! What were you thinking?"", ""start"": 8.41, ""end"": 14.87}, {""speaker"": ""client"", ""text"": ""Sonal: The price is still high. Can you match Atri Aqua's rate?"", ""start"": 15.84, ""end"": 21.41}, {""speaker"": ""agent"", ""text"": ""Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 22.66, ""end"": 26.09}, {""speaker"": ""client"", ""text"": ""Sonal: Not really. I want mid-floor east facing."", ""start"": 27.75, ""end"": 34.07}, {""speaker"": ""agent"", ""text"": ""Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 34.88, ""end"": 40.95}, {""speaker"": ""client"", ""text"": ""Sonal: Please do. We're ready to close quickly."", ""start"": 41.9, ""end"": 44.78}, {""speaker"": ""agent"", ""text"": ""Vikram: Will revert by tomorrow 2 PM."", ""start"": 46.46, ""end"": 48.91}]",0.9 +TRX-00059,CAL-00119,en-IN,"Priya: Hi Sonal, following up on your enquiry for Siddha Sky Waterfront. Sonal: Yes, tell me. Priya: We have a new tower launch with pre-launch pricing. Are you still looking in Beliaghata? Sonal: Yes, what's the price? Priya: Starting at 1.78 Cr for 3 BHK. Possession by July 2026. Sonal: That's good. Send me the details on WhatsApp. Priya: Done. When can you visit? Sonal: This weekend. Priya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Priya: Hi Sonal, following up on your enquiry for Siddha Sky Waterfront."", ""start"": 0.0, ""end"": 7.06}, {""speaker"": ""client"", ""text"": ""Sonal: Yes, tell me."", ""start"": 8.71, ""end"": 16.42}, {""speaker"": ""agent"", ""text"": ""Priya: We have a new tower launch with pre-launch pricing. Are you still looking in Beliaghata?"", ""start"": 18.09, ""end"": 24.06}, {""speaker"": ""client"", ""text"": ""Sonal: Yes, what's the price?"", ""start"": 24.81, ""end"": 30.4}, {""speaker"": ""agent"", ""text"": ""Priya: Starting at 1.78 Cr for 3 BHK. Possession by July 2026."", ""start"": 31.32, ""end"": 35.58}, {""speaker"": ""client"", ""text"": ""Sonal: That's good. Send me the details on WhatsApp."", ""start"": 37.48, ""end"": 42.74}, {""speaker"": ""agent"", ""text"": ""Priya: Done. When can you visit?"", ""start"": 43.5, ""end"": 46.24}, {""speaker"": ""client"", ""text"": ""Sonal: This weekend."", ""start"": 47.03, ""end"": 53.21}, {""speaker"": ""agent"", ""text"": ""Priya: I'll block Saturday 11 AM for you."", ""start"": 54.87, ""end"": 61.96}]",0.91 +TRX-00060,CAL-00120,en-IN,"Rahul: Hi Shreya, following up on your enquiry for Sugam Prakriti. Shreya: Hi, I was about to call you. Rahul: Great minds! What were you thinking? Shreya: The price is still high. Can you match Ambuja Utpaala's rate? Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference? Shreya: Not really. I want mid-floor east facing. Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Shreya: Please do. We're ready to close quickly. Rahul: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Rahul: Hi Shreya, following up on your enquiry for Sugam Prakriti."", ""start"": 0.0, ""end"": 6.17}, {""speaker"": ""client"", ""text"": ""Shreya: Hi, I was about to call you."", ""start"": 6.85, ""end"": 11.38}, {""speaker"": ""agent"", ""text"": ""Rahul: Great minds! What were you thinking?"", ""start"": 12.06, ""end"": 17.74}, {""speaker"": ""client"", ""text"": ""Shreya: The price is still high. Can you match Ambuja Utpaala's rate?"", ""start"": 19.03, ""end"": 26.12}, {""speaker"": ""agent"", ""text"": ""Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 27.08, ""end"": 31.94}, {""speaker"": ""client"", ""text"": ""Shreya: Not really. I want mid-floor east facing."", ""start"": 32.69, ""end"": 37.78}, {""speaker"": ""agent"", ""text"": ""Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 38.78, ""end"": 46.2}, {""speaker"": ""client"", ""text"": ""Shreya: Please do. We're ready to close quickly."", ""start"": 47.93, ""end"": 53.22}, {""speaker"": ""agent"", ""text"": ""Rahul: Will revert by tomorrow 2 PM."", ""start"": 54.97, ""end"": 62.96}]",0.91 +TRX-00061,CAL-00123,en-IN,"Rahul: Good morning Trisha, wanted to share some updates about Sugam Prakriti. Trisha: Yes, tell me. Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Barasat? Trisha: Yes, what's the price? Rahul: Starting at 3.98 Cr for 3 BHK. Possession by August 2026. Trisha: That's good. Send me the details on WhatsApp. Rahul: Done. When can you visit? Trisha: This weekend. Rahul: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Rahul: Good morning Trisha, wanted to share some updates about Sugam Prakriti."", ""start"": 0.0, ""end"": 4.31}, {""speaker"": ""client"", ""text"": ""Trisha: Yes, tell me."", ""start"": 4.93, ""end"": 7.09}, {""speaker"": ""agent"", ""text"": ""Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Barasat?"", ""start"": 7.89, ""end"": 10.98}, {""speaker"": ""client"", ""text"": ""Trisha: Yes, what's the price?"", ""start"": 12.34, ""end"": 20.08}, {""speaker"": ""agent"", ""text"": ""Rahul: Starting at 3.98 Cr for 3 BHK. Possession by August 2026."", ""start"": 20.95, ""end"": 26.45}, {""speaker"": ""client"", ""text"": ""Trisha: That's good. Send me the details on WhatsApp."", ""start"": 28.35, ""end"": 31.36}, {""speaker"": ""agent"", ""text"": ""Rahul: Done. When can you visit?"", ""start"": 32.38, ""end"": 37.79}, {""speaker"": ""client"", ""text"": ""Trisha: This weekend."", ""start"": 38.43, ""end"": 45.12}, {""speaker"": ""agent"", ""text"": ""Rahul: I'll block Saturday 11 AM for you."", ""start"": 45.91, ""end"": 52.67}]",0.86 +TRX-00062,CAL-00126,en-IN,"Ananya: Hello Trisha, this is Ananya from Velocity regarding Sugam Prakriti. Trisha: Yes, tell me. Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Barasat? Trisha: Yes, what's the price? Ananya: Starting at 5.96 Cr for 3 BHK. Possession by August 2026. Trisha: That's good. Send me the details on WhatsApp. Ananya: Done. When can you visit? Trisha: This weekend. Ananya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Ananya: Hello Trisha, this is Ananya from Velocity regarding Sugam Prakriti."", ""start"": 0.0, ""end"": 6.79}, {""speaker"": ""client"", ""text"": ""Trisha: Yes, tell me."", ""start"": 7.68, ""end"": 10.3}, {""speaker"": ""agent"", ""text"": ""Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Barasat?"", ""start"": 11.39, ""end"": 17.75}, {""speaker"": ""client"", ""text"": ""Trisha: Yes, what's the price?"", ""start"": 18.25, ""end"": 23.28}, {""speaker"": ""agent"", ""text"": ""Ananya: Starting at 5.96 Cr for 3 BHK. Possession by August 2026."", ""start"": 25.2, ""end"": 31.17}, {""speaker"": ""client"", ""text"": ""Trisha: That's good. Send me the details on WhatsApp."", ""start"": 32.06, ""end"": 35.29}, {""speaker"": ""agent"", ""text"": ""Ananya: Done. When can you visit?"", ""start"": 36.83, ""end"": 44.16}, {""speaker"": ""client"", ""text"": ""Trisha: This weekend."", ""start"": 46.13, ""end"": 53.43}, {""speaker"": ""agent"", ""text"": ""Ananya: I'll block Saturday 11 AM for you."", ""start"": 55.42, ""end"": 61.29}]",0.88 +TRX-00063,CAL-00128,en-IN,"Vikram: Hello Divya, this is Vikram from Velocity regarding Siddha Sky Waterfront. Divya: Yes, tell me. Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Beliaghata? Divya: Yes, what's the price? Vikram: Starting at 6.1 Cr for 3 BHK. Possession by August 2026. Divya: That's good. Send me the details on WhatsApp. Vikram: Done. When can you visit? Divya: This weekend. Vikram: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hello Divya, this is Vikram from Velocity regarding Siddha Sky Waterfront."", ""start"": 0.0, ""end"": 6.62}, {""speaker"": ""client"", ""text"": ""Divya: Yes, tell me."", ""start"": 8.39, ""end"": 12.66}, {""speaker"": ""agent"", ""text"": ""Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Beliaghata?"", ""start"": 13.66, ""end"": 16.91}, {""speaker"": ""client"", ""text"": ""Divya: Yes, what's the price?"", ""start"": 18.55, ""end"": 21.43}, {""speaker"": ""agent"", ""text"": ""Vikram: Starting at 6.1 Cr for 3 BHK. Possession by August 2026."", ""start"": 23.23, ""end"": 28.38}, {""speaker"": ""client"", ""text"": ""Divya: That's good. Send me the details on WhatsApp."", ""start"": 30.02, ""end"": 33.98}, {""speaker"": ""agent"", ""text"": ""Vikram: Done. When can you visit?"", ""start"": 34.7, ""end"": 38.0}, {""speaker"": ""client"", ""text"": ""Divya: This weekend."", ""start"": 38.95, ""end"": 42.5}, {""speaker"": ""agent"", ""text"": ""Vikram: I'll block Saturday 11 AM for you."", ""start"": 43.77, ""end"": 50.08}]",0.9 +TRX-00064,CAL-00129,en-IN,"Vikram: Good morning Abhishek, wanted to share some updates about Godrej Elevate. Abhishek: Hi, I was about to call you. Vikram: Great minds! What were you thinking? Abhishek: The price is still high. Can you match Ambuja Utpaala's rate? Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference? Abhishek: Not really. I want mid-floor east facing. Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Abhishek: Please do. We're ready to close quickly. Vikram: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Vikram: Good morning Abhishek, wanted to share some updates about Godrej Elevate."", ""start"": 0.0, ""end"": 2.46}, {""speaker"": ""client"", ""text"": ""Abhishek: Hi, I was about to call you."", ""start"": 4.09, ""end"": 7.34}, {""speaker"": ""agent"", ""text"": ""Vikram: Great minds! What were you thinking?"", ""start"": 8.77, ""end"": 15.07}, {""speaker"": ""client"", ""text"": ""Abhishek: The price is still high. Can you match Ambuja Utpaala's rate?"", ""start"": 16.43, ""end"": 20.88}, {""speaker"": ""agent"", ""text"": ""Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 21.98, ""end"": 28.45}, {""speaker"": ""client"", ""text"": ""Abhishek: Not really. I want mid-floor east facing."", ""start"": 30.04, ""end"": 34.04}, {""speaker"": ""agent"", ""text"": ""Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 35.52, ""end"": 43.01}, {""speaker"": ""client"", ""text"": ""Abhishek: Please do. We're ready to close quickly."", ""start"": 44.8, ""end"": 52.71}, {""speaker"": ""agent"", ""text"": ""Vikram: Will revert by tomorrow 2 PM."", ""start"": 54.15, ""end"": 56.23}]",0.86 +TRX-00065,CAL-00130,en-IN,"Rahul: Good morning Abhishek, wanted to share some updates about Godrej Elevate. Abhishek: Hi, I was about to call you. Rahul: Great minds! What were you thinking? Abhishek: The price is still high. Can you match Atri Surya Toron's rate? Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference? Abhishek: Not really. I want mid-floor east facing. Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Abhishek: Please do. We're ready to close quickly. Rahul: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Rahul: Good morning Abhishek, wanted to share some updates about Godrej Elevate."", ""start"": 0.0, ""end"": 3.85}, {""speaker"": ""client"", ""text"": ""Abhishek: Hi, I was about to call you."", ""start"": 5.65, ""end"": 9.17}, {""speaker"": ""agent"", ""text"": ""Rahul: Great minds! What were you thinking?"", ""start"": 10.77, ""end"": 15.5}, {""speaker"": ""client"", ""text"": ""Abhishek: The price is still high. Can you match Atri Surya Toron's rate?"", ""start"": 17.29, ""end"": 21.26}, {""speaker"": ""agent"", ""text"": ""Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 22.15, ""end"": 29.39}, {""speaker"": ""client"", ""text"": ""Abhishek: Not really. I want mid-floor east facing."", ""start"": 30.14, ""end"": 35.03}, {""speaker"": ""agent"", ""text"": ""Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 35.87, ""end"": 43.36}, {""speaker"": ""client"", ""text"": ""Abhishek: Please do. We're ready to close quickly."", ""start"": 44.89, ""end"": 48.75}, {""speaker"": ""agent"", ""text"": ""Rahul: Will revert by tomorrow 2 PM."", ""start"": 50.55, ""end"": 53.77}]",0.95 +TRX-00066,CAL-00133,en-IN,"Rahul: Good morning Swati, wanted to share some updates about Godrej Elevate. Swati: Yes, tell me. Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Dum Dum? Swati: Yes, what's the price? Rahul: Starting at 3.98 Cr for 3 BHK. Possession by July 2026. Swati: That's good. Send me the details on WhatsApp. Rahul: Done. When can you visit? Swati: This weekend. Rahul: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Rahul: Good morning Swati, wanted to share some updates about Godrej Elevate."", ""start"": 0.0, ""end"": 6.8}, {""speaker"": ""client"", ""text"": ""Swati: Yes, tell me."", ""start"": 7.49, ""end"": 15.04}, {""speaker"": ""agent"", ""text"": ""Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Dum Dum?"", ""start"": 15.76, ""end"": 19.9}, {""speaker"": ""client"", ""text"": ""Swati: Yes, what's the price?"", ""start"": 21.36, ""end"": 28.37}, {""speaker"": ""agent"", ""text"": ""Rahul: Starting at 3.98 Cr for 3 BHK. Possession by July 2026."", ""start"": 29.72, ""end"": 34.9}, {""speaker"": ""client"", ""text"": ""Swati: That's good. Send me the details on WhatsApp."", ""start"": 36.34, ""end"": 38.86}, {""speaker"": ""agent"", ""text"": ""Rahul: Done. When can you visit?"", ""start"": 39.37, ""end"": 45.34}, {""speaker"": ""client"", ""text"": ""Swati: This weekend."", ""start"": 46.79, ""end"": 51.75}, {""speaker"": ""agent"", ""text"": ""Rahul: I'll block Saturday 11 AM for you."", ""start"": 53.39, ""end"": 59.61}]",0.82 +TRX-00067,CAL-00136,en-IN,"Priya: Hello Priya, this is Priya from Velocity regarding Siddha Sky Waterfront. Priya: Hi, I was about to call you. Priya: Great minds! What were you thinking? Priya: The price is still high. Can you match Godrej Blue's rate? Priya: I understand. Let me see what best I can do. Are you flexible on floor preference? Priya: Not really. I want mid-floor east facing. Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Priya: Please do. We're ready to close quickly. Priya: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Priya: Hello Priya, this is Priya from Velocity regarding Siddha Sky Waterfront."", ""start"": 0.0, ""end"": 6.72}, {""speaker"": ""client"", ""text"": ""Priya: Hi, I was about to call you."", ""start"": 7.72, ""end"": 13.92}, {""speaker"": ""agent"", ""text"": ""Priya: Great minds! What were you thinking?"", ""start"": 15.15, ""end"": 17.67}, {""speaker"": ""client"", ""text"": ""Priya: The price is still high. Can you match Godrej Blue's rate?"", ""start"": 19.2, ""end"": 23.52}, {""speaker"": ""agent"", ""text"": ""Priya: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 25.35, ""end"": 29.29}, {""speaker"": ""client"", ""text"": ""Priya: Not really. I want mid-floor east facing."", ""start"": 29.97, ""end"": 35.67}, {""speaker"": ""agent"", ""text"": ""Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 36.91, ""end"": 42.59}, {""speaker"": ""client"", ""text"": ""Priya: Please do. We're ready to close quickly."", ""start"": 43.62, ""end"": 50.29}, {""speaker"": ""agent"", ""text"": ""Priya: Will revert by tomorrow 2 PM."", ""start"": 51.45, ""end"": 56.09}]",0.85 +TRX-00068,CAL-00137,en-IN,"Rahul: Hi Priya, following up on your enquiry for Siddha Sky Waterfront. Priya: Yes, tell me. Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Beliaghata? Priya: Yes, what's the price? Rahul: Starting at 5.23 Cr for 3 BHK. Possession by June 2026. Priya: That's good. Send me the details on WhatsApp. Rahul: Done. When can you visit? Priya: This weekend. Rahul: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Rahul: Hi Priya, following up on your enquiry for Siddha Sky Waterfront."", ""start"": 0.0, ""end"": 2.25}, {""speaker"": ""client"", ""text"": ""Priya: Yes, tell me."", ""start"": 4.08, ""end"": 11.03}, {""speaker"": ""agent"", ""text"": ""Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Beliaghata?"", ""start"": 12.13, ""end"": 14.42}, {""speaker"": ""client"", ""text"": ""Priya: Yes, what's the price?"", ""start"": 15.42, ""end"": 22.54}, {""speaker"": ""agent"", ""text"": ""Rahul: Starting at 5.23 Cr for 3 BHK. Possession by June 2026."", ""start"": 23.49, ""end"": 29.63}, {""speaker"": ""client"", ""text"": ""Priya: That's good. Send me the details on WhatsApp."", ""start"": 31.2, ""end"": 35.86}, {""speaker"": ""agent"", ""text"": ""Rahul: Done. When can you visit?"", ""start"": 37.3, ""end"": 41.49}, {""speaker"": ""client"", ""text"": ""Priya: This weekend."", ""start"": 42.05, ""end"": 49.87}, {""speaker"": ""agent"", ""text"": ""Rahul: I'll block Saturday 11 AM for you."", ""start"": 51.46, ""end"": 54.76}]",0.82 +TRX-00069,CAL-00141,en-IN,"Ananya: Hello Parth, this is Ananya from Velocity regarding Atri Surya Toron. Parth: Yes, tell me. Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat? Parth: Yes, what's the price? Ananya: Starting at 5.86 Cr for 3 BHK. Possession by July 2026. Parth: That's good. Send me the details on WhatsApp. Ananya: Done. When can you visit? Parth: This weekend. Ananya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Ananya: Hello Parth, this is Ananya from Velocity regarding Atri Surya Toron."", ""start"": 0.0, ""end"": 3.24}, {""speaker"": ""client"", ""text"": ""Parth: Yes, tell me."", ""start"": 4.97, ""end"": 10.53}, {""speaker"": ""agent"", ""text"": ""Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat?"", ""start"": 11.7, ""end"": 15.51}, {""speaker"": ""client"", ""text"": ""Parth: Yes, what's the price?"", ""start"": 16.16, ""end"": 23.79}, {""speaker"": ""agent"", ""text"": ""Ananya: Starting at 5.86 Cr for 3 BHK. Possession by July 2026."", ""start"": 24.68, ""end"": 32.36}, {""speaker"": ""client"", ""text"": ""Parth: That's good. Send me the details on WhatsApp."", ""start"": 33.25, ""end"": 37.19}, {""speaker"": ""agent"", ""text"": ""Ananya: Done. When can you visit?"", ""start"": 39.15, ""end"": 43.81}, {""speaker"": ""client"", ""text"": ""Parth: This weekend."", ""start"": 45.12, ""end"": 47.13}, {""speaker"": ""agent"", ""text"": ""Ananya: I'll block Saturday 11 AM for you."", ""start"": 48.35, ""end"": 53.17}]",0.92 +TRX-00070,CAL-00142,en-IN,"Vikram: Hi Amit, following up on your enquiry for DTC Sojon. Amit: Yes, tell me. Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat? Amit: Yes, what's the price? Vikram: Starting at 3.85 Cr for 3 BHK. Possession by September 2026. Amit: That's good. Send me the details on WhatsApp. Vikram: Done. When can you visit? Amit: This weekend. Vikram: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hi Amit, following up on your enquiry for DTC Sojon."", ""start"": 0.0, ""end"": 6.68}, {""speaker"": ""client"", ""text"": ""Amit: Yes, tell me."", ""start"": 8.05, ""end"": 14.36}, {""speaker"": ""agent"", ""text"": ""Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat?"", ""start"": 15.31, ""end"": 17.94}, {""speaker"": ""client"", ""text"": ""Amit: Yes, what's the price?"", ""start"": 18.52, ""end"": 22.87}, {""speaker"": ""agent"", ""text"": ""Vikram: Starting at 3.85 Cr for 3 BHK. Possession by September 2026."", ""start"": 24.69, ""end"": 28.8}, {""speaker"": ""client"", ""text"": ""Amit: That's good. Send me the details on WhatsApp."", ""start"": 29.81, ""end"": 34.55}, {""speaker"": ""agent"", ""text"": ""Vikram: Done. When can you visit?"", ""start"": 35.3, ""end"": 40.34}, {""speaker"": ""client"", ""text"": ""Amit: This weekend."", ""start"": 41.24, ""end"": 44.46}, {""speaker"": ""agent"", ""text"": ""Vikram: I'll block Saturday 11 AM for you."", ""start"": 44.97, ""end"": 50.15}]",0.88 +TRX-00071,CAL-00143,en-IN,"Ananya: Good morning Amit, wanted to share some updates about DTC Sojon. Amit: Yes, tell me. Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat? Amit: Yes, what's the price? Ananya: Starting at 3.08 Cr for 3 BHK. Possession by September 2026. Amit: That's good. Send me the details on WhatsApp. Ananya: Done. When can you visit? Amit: This weekend. Ananya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Ananya: Good morning Amit, wanted to share some updates about DTC Sojon."", ""start"": 0.0, ""end"": 7.91}, {""speaker"": ""client"", ""text"": ""Amit: Yes, tell me."", ""start"": 8.8, ""end"": 13.19}, {""speaker"": ""agent"", ""text"": ""Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat?"", ""start"": 14.21, ""end"": 19.43}, {""speaker"": ""client"", ""text"": ""Amit: Yes, what's the price?"", ""start"": 20.52, ""end"": 23.06}, {""speaker"": ""agent"", ""text"": ""Ananya: Starting at 3.08 Cr for 3 BHK. Possession by September 2026."", ""start"": 24.32, ""end"": 26.52}, {""speaker"": ""client"", ""text"": ""Amit: That's good. Send me the details on WhatsApp."", ""start"": 27.59, ""end"": 34.91}, {""speaker"": ""agent"", ""text"": ""Ananya: Done. When can you visit?"", ""start"": 36.24, ""end"": 43.92}, {""speaker"": ""client"", ""text"": ""Amit: This weekend."", ""start"": 44.79, ""end"": 51.31}, {""speaker"": ""agent"", ""text"": ""Ananya: I'll block Saturday 11 AM for you."", ""start"": 53.01, ""end"": 57.18}]",0.95 +TRX-00072,CAL-00144,en-IN,"Ananya: Hello Amit, this is Ananya from Velocity regarding DTC Sojon. Amit: Hi, I was about to call you. Ananya: Great minds! What were you thinking? Amit: The price is still high. Can you match Atri Surya Toron's rate? Ananya: I understand. Let me see what best I can do. Are you flexible on floor preference? Amit: Not really. I want mid-floor east facing. Ananya: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Amit: Please do. We're ready to close quickly. Ananya: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Ananya: Hello Amit, this is Ananya from Velocity regarding DTC Sojon."", ""start"": 0.0, ""end"": 2.46}, {""speaker"": ""client"", ""text"": ""Amit: Hi, I was about to call you."", ""start"": 4.16, ""end"": 10.94}, {""speaker"": ""agent"", ""text"": ""Ananya: Great minds! What were you thinking?"", ""start"": 11.7, ""end"": 17.17}, {""speaker"": ""client"", ""text"": ""Amit: The price is still high. Can you match Atri Surya Toron's rate?"", ""start"": 18.13, ""end"": 21.3}, {""speaker"": ""agent"", ""text"": ""Ananya: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 22.08, ""end"": 24.1}, {""speaker"": ""client"", ""text"": ""Amit: Not really. I want mid-floor east facing."", ""start"": 25.09, ""end"": 30.01}, {""speaker"": ""agent"", ""text"": ""Ananya: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 31.02, ""end"": 33.9}, {""speaker"": ""client"", ""text"": ""Amit: Please do. We're ready to close quickly."", ""start"": 34.64, ""end"": 37.14}, {""speaker"": ""agent"", ""text"": ""Ananya: Will revert by tomorrow 2 PM."", ""start"": 38.97, ""end"": 41.37}]",0.89 +TRX-00073,CAL-00145,en-IN,"Priya: Hi Swati, following up on your enquiry for Godrej Blue. Swati: Yes, tell me. Priya: We have a new tower launch with pre-launch pricing. Are you still looking in New Town? Swati: Yes, what's the price? Priya: Starting at 2.19 Cr for 3 BHK. Possession by August 2026. Swati: That's good. Send me the details on WhatsApp. Priya: Done. When can you visit? Swati: This weekend. Priya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Priya: Hi Swati, following up on your enquiry for Godrej Blue."", ""start"": 0.0, ""end"": 7.19}, {""speaker"": ""client"", ""text"": ""Swati: Yes, tell me."", ""start"": 8.19, ""end"": 11.0}, {""speaker"": ""agent"", ""text"": ""Priya: We have a new tower launch with pre-launch pricing. Are you still looking in New Town?"", ""start"": 12.23, ""end"": 16.28}, {""speaker"": ""client"", ""text"": ""Swati: Yes, what's the price?"", ""start"": 17.83, ""end"": 20.41}, {""speaker"": ""agent"", ""text"": ""Priya: Starting at 2.19 Cr for 3 BHK. Possession by August 2026."", ""start"": 20.97, ""end"": 26.63}, {""speaker"": ""client"", ""text"": ""Swati: That's good. Send me the details on WhatsApp."", ""start"": 28.4, ""end"": 34.11}, {""speaker"": ""agent"", ""text"": ""Priya: Done. When can you visit?"", ""start"": 35.13, ""end"": 42.22}, {""speaker"": ""client"", ""text"": ""Swati: This weekend."", ""start"": 42.95, ""end"": 46.38}, {""speaker"": ""agent"", ""text"": ""Priya: I'll block Saturday 11 AM for you."", ""start"": 47.94, ""end"": 54.93}]",0.94 +TRX-00074,CAL-00150,en-IN,"Rahul: Hi Neha, following up on your enquiry for Siddha Sky Waterfront. Neha: Yes, tell me. Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Beliaghata? Neha: Yes, what's the price? Rahul: Starting at 5.79 Cr for 3 BHK. Possession by August 2026. Neha: That's good. Send me the details on WhatsApp. Rahul: Done. When can you visit? Neha: This weekend. Rahul: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Rahul: Hi Neha, following up on your enquiry for Siddha Sky Waterfront."", ""start"": 0.0, ""end"": 6.03}, {""speaker"": ""client"", ""text"": ""Neha: Yes, tell me."", ""start"": 7.84, ""end"": 12.43}, {""speaker"": ""agent"", ""text"": ""Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Beliaghata?"", ""start"": 13.41, ""end"": 18.16}, {""speaker"": ""client"", ""text"": ""Neha: Yes, what's the price?"", ""start"": 20.06, ""end"": 22.39}, {""speaker"": ""agent"", ""text"": ""Rahul: Starting at 5.79 Cr for 3 BHK. Possession by August 2026."", ""start"": 23.8, ""end"": 27.95}, {""speaker"": ""client"", ""text"": ""Neha: That's good. Send me the details on WhatsApp."", ""start"": 29.43, ""end"": 33.27}, {""speaker"": ""agent"", ""text"": ""Rahul: Done. When can you visit?"", ""start"": 34.8, ""end"": 42.28}, {""speaker"": ""client"", ""text"": ""Neha: This weekend."", ""start"": 43.53, ""end"": 46.19}, {""speaker"": ""agent"", ""text"": ""Rahul: I'll block Saturday 11 AM for you."", ""start"": 46.81, ""end"": 53.2}]",0.92 +TRX-00075,CAL-00151,en-IN,"Ananya: Hi Prasenjit, following up on your enquiry for Atri Surya Toron. Prasenjit: Hi, I was about to call you. Ananya: Great minds! What were you thinking? Prasenjit: The price is still high. Can you match Godrej Blue's rate? Ananya: I understand. Let me see what best I can do. Are you flexible on floor preference? Prasenjit: Not really. I want mid-floor east facing. Ananya: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Prasenjit: Please do. We're ready to close quickly. Ananya: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Ananya: Hi Prasenjit, following up on your enquiry for Atri Surya Toron."", ""start"": 0.0, ""end"": 6.58}, {""speaker"": ""client"", ""text"": ""Prasenjit: Hi, I was about to call you."", ""start"": 8.42, ""end"": 13.0}, {""speaker"": ""agent"", ""text"": ""Ananya: Great minds! What were you thinking?"", ""start"": 14.03, ""end"": 17.27}, {""speaker"": ""client"", ""text"": ""Prasenjit: The price is still high. Can you match Godrej Blue's rate?"", ""start"": 18.23, ""end"": 20.52}, {""speaker"": ""agent"", ""text"": ""Ananya: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 21.96, ""end"": 24.06}, {""speaker"": ""client"", ""text"": ""Prasenjit: Not really. I want mid-floor east facing."", ""start"": 24.61, ""end"": 29.18}, {""speaker"": ""agent"", ""text"": ""Ananya: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 30.82, ""end"": 37.04}, {""speaker"": ""client"", ""text"": ""Prasenjit: Please do. We're ready to close quickly."", ""start"": 38.26, ""end"": 40.86}, {""speaker"": ""agent"", ""text"": ""Ananya: Will revert by tomorrow 2 PM."", ""start"": 42.1, ""end"": 48.8}]",0.84 +TRX-00076,CAL-00152,en-IN,"Rahul: Hi Prasenjit, following up on your enquiry for Atri Surya Toron. Prasenjit: Yes, tell me. Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat? Prasenjit: Yes, what's the price? Rahul: Starting at 4.66 Cr for 3 BHK. Possession by September 2026. Prasenjit: That's good. Send me the details on WhatsApp. Rahul: Done. When can you visit? Prasenjit: This weekend. Rahul: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Rahul: Hi Prasenjit, following up on your enquiry for Atri Surya Toron."", ""start"": 0.0, ""end"": 3.0}, {""speaker"": ""client"", ""text"": ""Prasenjit: Yes, tell me."", ""start"": 4.79, ""end"": 7.21}, {""speaker"": ""agent"", ""text"": ""Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat?"", ""start"": 8.31, ""end"": 11.0}, {""speaker"": ""client"", ""text"": ""Prasenjit: Yes, what's the price?"", ""start"": 11.77, ""end"": 17.09}, {""speaker"": ""agent"", ""text"": ""Rahul: Starting at 4.66 Cr for 3 BHK. Possession by September 2026."", ""start"": 18.74, ""end"": 24.25}, {""speaker"": ""client"", ""text"": ""Prasenjit: That's good. Send me the details on WhatsApp."", ""start"": 25.32, ""end"": 28.16}, {""speaker"": ""agent"", ""text"": ""Rahul: Done. When can you visit?"", ""start"": 29.25, ""end"": 36.12}, {""speaker"": ""client"", ""text"": ""Prasenjit: This weekend."", ""start"": 37.91, ""end"": 40.78}, {""speaker"": ""agent"", ""text"": ""Rahul: I'll block Saturday 11 AM for you."", ""start"": 42.47, ""end"": 45.98}]",0.88 +TRX-00077,CAL-00153,en-IN,"Rahul: Hello Prasenjit, this is Rahul from Velocity regarding Atri Surya Toron. Prasenjit: Yes, tell me. Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat? Prasenjit: Yes, what's the price? Rahul: Starting at 6.92 Cr for 3 BHK. Possession by July 2026. Prasenjit: That's good. Send me the details on WhatsApp. Rahul: Done. When can you visit? Prasenjit: This weekend. Rahul: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Rahul: Hello Prasenjit, this is Rahul from Velocity regarding Atri Surya Toron."", ""start"": 0.0, ""end"": 4.28}, {""speaker"": ""client"", ""text"": ""Prasenjit: Yes, tell me."", ""start"": 5.66, ""end"": 8.39}, {""speaker"": ""agent"", ""text"": ""Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat?"", ""start"": 10.04, ""end"": 14.34}, {""speaker"": ""client"", ""text"": ""Prasenjit: Yes, what's the price?"", ""start"": 14.87, ""end"": 17.43}, {""speaker"": ""agent"", ""text"": ""Rahul: Starting at 6.92 Cr for 3 BHK. Possession by July 2026."", ""start"": 18.68, ""end"": 25.57}, {""speaker"": ""client"", ""text"": ""Prasenjit: That's good. Send me the details on WhatsApp."", ""start"": 27.27, ""end"": 34.36}, {""speaker"": ""agent"", ""text"": ""Rahul: Done. When can you visit?"", ""start"": 35.42, ""end"": 42.75}, {""speaker"": ""client"", ""text"": ""Prasenjit: This weekend."", ""start"": 44.34, ""end"": 51.01}, {""speaker"": ""agent"", ""text"": ""Rahul: I'll block Saturday 11 AM for you."", ""start"": 51.94, ""end"": 54.41}]",0.93 +TRX-00078,CAL-00155,en-IN,"Vikram: Hello Sanjay, this is Vikram from Velocity regarding Merlin Avana. Sanjay: Yes, tell me. Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Tangra? Sanjay: Yes, what's the price? Vikram: Starting at 7.92 Cr for 3 BHK. Possession by October 2026. Sanjay: That's good. Send me the details on WhatsApp. Vikram: Done. When can you visit? Sanjay: This weekend. Vikram: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hello Sanjay, this is Vikram from Velocity regarding Merlin Avana."", ""start"": 0.0, ""end"": 4.4}, {""speaker"": ""client"", ""text"": ""Sanjay: Yes, tell me."", ""start"": 5.8, ""end"": 11.61}, {""speaker"": ""agent"", ""text"": ""Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Tangra?"", ""start"": 12.99, ""end"": 16.5}, {""speaker"": ""client"", ""text"": ""Sanjay: Yes, what's the price?"", ""start"": 17.11, ""end"": 21.54}, {""speaker"": ""agent"", ""text"": ""Vikram: Starting at 7.92 Cr for 3 BHK. Possession by October 2026."", ""start"": 22.2, ""end"": 28.99}, {""speaker"": ""client"", ""text"": ""Sanjay: That's good. Send me the details on WhatsApp."", ""start"": 29.49, ""end"": 36.66}, {""speaker"": ""agent"", ""text"": ""Vikram: Done. When can you visit?"", ""start"": 38.14, ""end"": 43.72}, {""speaker"": ""client"", ""text"": ""Sanjay: This weekend."", ""start"": 45.43, ""end"": 50.09}, {""speaker"": ""agent"", ""text"": ""Vikram: I'll block Saturday 11 AM for you."", ""start"": 50.75, ""end"": 53.39}]",0.88 +TRX-00079,CAL-00159,en-IN,"Ananya: Good morning Kavita, wanted to share some updates about Siddha Suburbia Bungalow. Kavita: Yes, tell me. Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Madanpur? Kavita: Yes, what's the price? Ananya: Starting at 2.31 Cr for 3 BHK. Possession by October 2026. Kavita: That's good. Send me the details on WhatsApp. Ananya: Done. When can you visit? Kavita: This weekend. Ananya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Ananya: Good morning Kavita, wanted to share some updates about Siddha Suburbia Bungalow."", ""start"": 0.0, ""end"": 3.64}, {""speaker"": ""client"", ""text"": ""Kavita: Yes, tell me."", ""start"": 4.44, ""end"": 11.95}, {""speaker"": ""agent"", ""text"": ""Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Madanpur?"", ""start"": 13.03, ""end"": 17.22}, {""speaker"": ""client"", ""text"": ""Kavita: Yes, what's the price?"", ""start"": 18.56, ""end"": 25.51}, {""speaker"": ""agent"", ""text"": ""Ananya: Starting at 2.31 Cr for 3 BHK. Possession by October 2026."", ""start"": 26.71, ""end"": 29.43}, {""speaker"": ""client"", ""text"": ""Kavita: That's good. Send me the details on WhatsApp."", ""start"": 30.14, ""end"": 35.66}, {""speaker"": ""agent"", ""text"": ""Ananya: Done. When can you visit?"", ""start"": 37.08, ""end"": 40.66}, {""speaker"": ""client"", ""text"": ""Kavita: This weekend."", ""start"": 41.61, ""end"": 47.78}, {""speaker"": ""agent"", ""text"": ""Ananya: I'll block Saturday 11 AM for you."", ""start"": 48.95, ""end"": 56.81}]",0.87 +TRX-00080,CAL-00163,en-IN,"Vikram: Hello Ananya, this is Vikram from Velocity regarding Sugam Prakriti. Ananya: Yes, tell me. Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Barasat? Ananya: Yes, what's the price? Vikram: Starting at 2.6 Cr for 3 BHK. Possession by June 2026. Ananya: That's good. Send me the details on WhatsApp. Vikram: Done. When can you visit? Ananya: This weekend. Vikram: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hello Ananya, this is Vikram from Velocity regarding Sugam Prakriti."", ""start"": 0.0, ""end"": 3.58}, {""speaker"": ""client"", ""text"": ""Ananya: Yes, tell me."", ""start"": 4.78, ""end"": 8.52}, {""speaker"": ""agent"", ""text"": ""Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Barasat?"", ""start"": 10.12, ""end"": 16.5}, {""speaker"": ""client"", ""text"": ""Ananya: Yes, what's the price?"", ""start"": 17.14, ""end"": 24.81}, {""speaker"": ""agent"", ""text"": ""Vikram: Starting at 2.6 Cr for 3 BHK. Possession by June 2026."", ""start"": 26.56, ""end"": 29.33}, {""speaker"": ""client"", ""text"": ""Ananya: That's good. Send me the details on WhatsApp."", ""start"": 29.98, ""end"": 35.9}, {""speaker"": ""agent"", ""text"": ""Vikram: Done. When can you visit?"", ""start"": 37.85, ""end"": 42.34}, {""speaker"": ""client"", ""text"": ""Ananya: This weekend."", ""start"": 43.94, ""end"": 50.96}, {""speaker"": ""agent"", ""text"": ""Vikram: I'll block Saturday 11 AM for you."", ""start"": 52.52, ""end"": 58.7}]",0.93 +TRX-00081,CAL-00165,en-IN,"Rahul: Hi Ananya, following up on your enquiry for Sugam Prakriti. Ananya: Yes, tell me. Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Barasat? Ananya: Yes, what's the price? Rahul: Starting at 7.37 Cr for 3 BHK. Possession by October 2026. Ananya: That's good. Send me the details on WhatsApp. Rahul: Done. When can you visit? Ananya: This weekend. Rahul: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Rahul: Hi Ananya, following up on your enquiry for Sugam Prakriti."", ""start"": 0.0, ""end"": 6.11}, {""speaker"": ""client"", ""text"": ""Ananya: Yes, tell me."", ""start"": 7.87, ""end"": 13.18}, {""speaker"": ""agent"", ""text"": ""Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Barasat?"", ""start"": 13.95, ""end"": 17.6}, {""speaker"": ""client"", ""text"": ""Ananya: Yes, what's the price?"", ""start"": 18.99, ""end"": 26.44}, {""speaker"": ""agent"", ""text"": ""Rahul: Starting at 7.37 Cr for 3 BHK. Possession by October 2026."", ""start"": 27.47, ""end"": 32.52}, {""speaker"": ""client"", ""text"": ""Ananya: That's good. Send me the details on WhatsApp."", ""start"": 34.08, ""end"": 38.67}, {""speaker"": ""agent"", ""text"": ""Rahul: Done. When can you visit?"", ""start"": 40.37, ""end"": 43.44}, {""speaker"": ""client"", ""text"": ""Ananya: This weekend."", ""start"": 45.42, ""end"": 53.18}, {""speaker"": ""agent"", ""text"": ""Rahul: I'll block Saturday 11 AM for you."", ""start"": 54.83, ""end"": 62.11}]",0.92 +TRX-00082,CAL-00166,en-IN,"Rahul: Hello Ananya, this is Rahul from Velocity regarding Sugam Prakriti. Ananya: Yes, tell me. Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Barasat? Ananya: Yes, what's the price? Rahul: Starting at 4.06 Cr for 3 BHK. Possession by June 2026. Ananya: That's good. Send me the details on WhatsApp. Rahul: Done. When can you visit? Ananya: This weekend. Rahul: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Rahul: Hello Ananya, this is Rahul from Velocity regarding Sugam Prakriti."", ""start"": 0.0, ""end"": 3.68}, {""speaker"": ""client"", ""text"": ""Ananya: Yes, tell me."", ""start"": 5.54, ""end"": 11.92}, {""speaker"": ""agent"", ""text"": ""Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Barasat?"", ""start"": 13.28, ""end"": 20.58}, {""speaker"": ""client"", ""text"": ""Ananya: Yes, what's the price?"", ""start"": 22.35, ""end"": 29.79}, {""speaker"": ""agent"", ""text"": ""Rahul: Starting at 4.06 Cr for 3 BHK. Possession by June 2026."", ""start"": 30.78, ""end"": 37.92}, {""speaker"": ""client"", ""text"": ""Ananya: That's good. Send me the details on WhatsApp."", ""start"": 38.75, ""end"": 44.0}, {""speaker"": ""agent"", ""text"": ""Rahul: Done. When can you visit?"", ""start"": 45.28, ""end"": 50.36}, {""speaker"": ""client"", ""text"": ""Ananya: This weekend."", ""start"": 51.96, ""end"": 57.03}, {""speaker"": ""agent"", ""text"": ""Rahul: I'll block Saturday 11 AM for you."", ""start"": 58.3, ""end"": 61.85}]",0.9 +TRX-00083,CAL-00168,en-IN,"Priya: Hi Sanjay, following up on your enquiry for Shriram Grand City. Sanjay: Yes, tell me. Priya: We have a new tower launch with pre-launch pricing. Are you still looking in Howrah? Sanjay: Yes, what's the price? Priya: Starting at 6.84 Cr for 3 BHK. Possession by September 2026. Sanjay: That's good. Send me the details on WhatsApp. Priya: Done. When can you visit? Sanjay: This weekend. Priya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Priya: Hi Sanjay, following up on your enquiry for Shriram Grand City."", ""start"": 0.0, ""end"": 6.27}, {""speaker"": ""client"", ""text"": ""Sanjay: Yes, tell me."", ""start"": 7.25, ""end"": 11.7}, {""speaker"": ""agent"", ""text"": ""Priya: We have a new tower launch with pre-launch pricing. Are you still looking in Howrah?"", ""start"": 13.09, ""end"": 19.18}, {""speaker"": ""client"", ""text"": ""Sanjay: Yes, what's the price?"", ""start"": 19.74, ""end"": 27.74}, {""speaker"": ""agent"", ""text"": ""Priya: Starting at 6.84 Cr for 3 BHK. Possession by September 2026."", ""start"": 28.45, ""end"": 32.34}, {""speaker"": ""client"", ""text"": ""Sanjay: That's good. Send me the details on WhatsApp."", ""start"": 33.08, ""end"": 39.34}, {""speaker"": ""agent"", ""text"": ""Priya: Done. When can you visit?"", ""start"": 41.06, ""end"": 44.63}, {""speaker"": ""client"", ""text"": ""Sanjay: This weekend."", ""start"": 46.17, ""end"": 49.77}, {""speaker"": ""agent"", ""text"": ""Priya: I'll block Saturday 11 AM for you."", ""start"": 51.0, ""end"": 54.98}]",0.85 +TRX-00084,CAL-00174,en-IN,"Rahul: Good morning Anirban, wanted to share some updates about Atri Surya Toron. Anirban: Yes, tell me. Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat? Anirban: Yes, what's the price? Rahul: Starting at 6.72 Cr for 3 BHK. Possession by July 2026. Anirban: That's good. Send me the details on WhatsApp. Rahul: Done. When can you visit? Anirban: This weekend. Rahul: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Rahul: Good morning Anirban, wanted to share some updates about Atri Surya Toron."", ""start"": 0.0, ""end"": 5.1}, {""speaker"": ""client"", ""text"": ""Anirban: Yes, tell me."", ""start"": 5.64, ""end"": 9.35}, {""speaker"": ""agent"", ""text"": ""Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat?"", ""start"": 10.3, ""end"": 17.03}, {""speaker"": ""client"", ""text"": ""Anirban: Yes, what's the price?"", ""start"": 18.05, ""end"": 25.94}, {""speaker"": ""agent"", ""text"": ""Rahul: Starting at 6.72 Cr for 3 BHK. Possession by July 2026."", ""start"": 27.05, ""end"": 29.85}, {""speaker"": ""client"", ""text"": ""Anirban: That's good. Send me the details on WhatsApp."", ""start"": 31.73, ""end"": 36.52}, {""speaker"": ""agent"", ""text"": ""Rahul: Done. When can you visit?"", ""start"": 38.01, ""end"": 40.19}, {""speaker"": ""client"", ""text"": ""Anirban: This weekend."", ""start"": 41.16, ""end"": 43.95}, {""speaker"": ""agent"", ""text"": ""Rahul: I'll block Saturday 11 AM for you."", ""start"": 44.65, ""end"": 48.13}]",0.88 +TRX-00085,CAL-00175,en-IN,"Priya: Hi Ritu, following up on your enquiry for Shriram Grand City. Ritu: Yes, tell me. Priya: We have a new tower launch with pre-launch pricing. Are you still looking in Howrah? Ritu: Yes, what's the price? Priya: Starting at 5.13 Cr for 3 BHK. Possession by October 2026. Ritu: That's good. Send me the details on WhatsApp. Priya: Done. When can you visit? Ritu: This weekend. Priya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Priya: Hi Ritu, following up on your enquiry for Shriram Grand City."", ""start"": 0.0, ""end"": 4.05}, {""speaker"": ""client"", ""text"": ""Ritu: Yes, tell me."", ""start"": 4.99, ""end"": 11.73}, {""speaker"": ""agent"", ""text"": ""Priya: We have a new tower launch with pre-launch pricing. Are you still looking in Howrah?"", ""start"": 13.25, ""end"": 20.61}, {""speaker"": ""client"", ""text"": ""Ritu: Yes, what's the price?"", ""start"": 22.58, ""end"": 25.21}, {""speaker"": ""agent"", ""text"": ""Priya: Starting at 5.13 Cr for 3 BHK. Possession by October 2026."", ""start"": 26.42, ""end"": 30.58}, {""speaker"": ""client"", ""text"": ""Ritu: That's good. Send me the details on WhatsApp."", ""start"": 31.95, ""end"": 36.35}, {""speaker"": ""agent"", ""text"": ""Priya: Done. When can you visit?"", ""start"": 37.82, ""end"": 45.74}, {""speaker"": ""client"", ""text"": ""Ritu: This weekend."", ""start"": 46.75, ""end"": 51.84}, {""speaker"": ""agent"", ""text"": ""Priya: I'll block Saturday 11 AM for you."", ""start"": 53.73, ""end"": 58.73}]",0.85 +TRX-00086,CAL-00181,en-IN,"Ananya: Hello Sourav, this is Ananya from Velocity regarding Siddha Sky Waterfront. Sourav: Hi, I was about to call you. Ananya: Great minds! What were you thinking? Sourav: The price is still high. Can you match Ambuja Utpaala's rate? Ananya: I understand. Let me see what best I can do. Are you flexible on floor preference? Sourav: Not really. I want mid-floor east facing. Ananya: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Sourav: Please do. We're ready to close quickly. Ananya: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Ananya: Hello Sourav, this is Ananya from Velocity regarding Siddha Sky Waterfront."", ""start"": 0.0, ""end"": 4.4}, {""speaker"": ""client"", ""text"": ""Sourav: Hi, I was about to call you."", ""start"": 5.06, ""end"": 10.51}, {""speaker"": ""agent"", ""text"": ""Ananya: Great minds! What were you thinking?"", ""start"": 11.73, ""end"": 16.81}, {""speaker"": ""client"", ""text"": ""Sourav: The price is still high. Can you match Ambuja Utpaala's rate?"", ""start"": 17.32, ""end"": 20.94}, {""speaker"": ""agent"", ""text"": ""Ananya: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 22.63, ""end"": 25.31}, {""speaker"": ""client"", ""text"": ""Sourav: Not really. I want mid-floor east facing."", ""start"": 26.28, ""end"": 28.71}, {""speaker"": ""agent"", ""text"": ""Ananya: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 30.02, ""end"": 37.53}, {""speaker"": ""client"", ""text"": ""Sourav: Please do. We're ready to close quickly."", ""start"": 39.32, ""end"": 44.42}, {""speaker"": ""agent"", ""text"": ""Ananya: Will revert by tomorrow 2 PM."", ""start"": 45.17, ""end"": 49.16}]",0.91 +TRX-00087,CAL-00182,en-IN,"Ananya: Hello Shreya, this is Ananya from Velocity regarding Sugam Prakriti. Shreya: Yes, tell me. Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Barasat? Shreya: Yes, what's the price? Ananya: Starting at 5.28 Cr for 3 BHK. Possession by October 2026. Shreya: That's good. Send me the details on WhatsApp. Ananya: Done. When can you visit? Shreya: This weekend. Ananya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Ananya: Hello Shreya, this is Ananya from Velocity regarding Sugam Prakriti."", ""start"": 0.0, ""end"": 5.52}, {""speaker"": ""client"", ""text"": ""Shreya: Yes, tell me."", ""start"": 7.38, ""end"": 13.29}, {""speaker"": ""agent"", ""text"": ""Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Barasat?"", ""start"": 14.88, ""end"": 18.13}, {""speaker"": ""client"", ""text"": ""Shreya: Yes, what's the price?"", ""start"": 19.83, ""end"": 26.54}, {""speaker"": ""agent"", ""text"": ""Ananya: Starting at 5.28 Cr for 3 BHK. Possession by October 2026."", ""start"": 27.13, ""end"": 32.91}, {""speaker"": ""client"", ""text"": ""Shreya: That's good. Send me the details on WhatsApp."", ""start"": 33.44, ""end"": 35.62}, {""speaker"": ""agent"", ""text"": ""Ananya: Done. When can you visit?"", ""start"": 37.19, ""end"": 44.71}, {""speaker"": ""client"", ""text"": ""Shreya: This weekend."", ""start"": 45.75, ""end"": 50.22}, {""speaker"": ""agent"", ""text"": ""Ananya: I'll block Saturday 11 AM for you."", ""start"": 51.76, ""end"": 58.4}]",0.86 +TRX-00088,CAL-00187,en-IN,"Rahul: Hello Divya, this is Rahul from Velocity regarding Shriram Grand City. Divya: Hi, I was about to call you. Rahul: Great minds! What were you thinking? Divya: The price is still high. Can you match Ambuja Utpaala's rate? Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference? Divya: Not really. I want mid-floor east facing. Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Divya: Please do. We're ready to close quickly. Rahul: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Rahul: Hello Divya, this is Rahul from Velocity regarding Shriram Grand City."", ""start"": 0.0, ""end"": 5.56}, {""speaker"": ""client"", ""text"": ""Divya: Hi, I was about to call you."", ""start"": 7.54, ""end"": 12.46}, {""speaker"": ""agent"", ""text"": ""Rahul: Great minds! What were you thinking?"", ""start"": 14.13, ""end"": 20.53}, {""speaker"": ""client"", ""text"": ""Divya: The price is still high. Can you match Ambuja Utpaala's rate?"", ""start"": 22.41, ""end"": 29.25}, {""speaker"": ""agent"", ""text"": ""Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 30.62, ""end"": 37.66}, {""speaker"": ""client"", ""text"": ""Divya: Not really. I want mid-floor east facing."", ""start"": 39.29, ""end"": 42.7}, {""speaker"": ""agent"", ""text"": ""Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 43.96, ""end"": 50.11}, {""speaker"": ""client"", ""text"": ""Divya: Please do. We're ready to close quickly."", ""start"": 51.34, ""end"": 58.95}, {""speaker"": ""agent"", ""text"": ""Rahul: Will revert by tomorrow 2 PM."", ""start"": 59.71, ""end"": 66.5}]",0.86 +TRX-00089,CAL-00188,en-IN,"Vikram: Hi Divya, following up on your enquiry for Shriram Grand City. Divya: Hi, I was about to call you. Vikram: Great minds! What were you thinking? Divya: The price is still high. Can you match Siddha Suburbia Bungalow's rate? Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference? Divya: Not really. I want mid-floor east facing. Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Divya: Please do. We're ready to close quickly. Vikram: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hi Divya, following up on your enquiry for Shriram Grand City."", ""start"": 0.0, ""end"": 2.24}, {""speaker"": ""client"", ""text"": ""Divya: Hi, I was about to call you."", ""start"": 3.2, ""end"": 5.57}, {""speaker"": ""agent"", ""text"": ""Vikram: Great minds! What were you thinking?"", ""start"": 6.73, ""end"": 9.08}, {""speaker"": ""client"", ""text"": ""Divya: The price is still high. Can you match Siddha Suburbia Bungalow's rate?"", ""start"": 9.76, ""end"": 13.83}, {""speaker"": ""agent"", ""text"": ""Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 15.76, ""end"": 19.21}, {""speaker"": ""client"", ""text"": ""Divya: Not really. I want mid-floor east facing."", ""start"": 20.63, ""end"": 27.15}, {""speaker"": ""agent"", ""text"": ""Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 28.88, ""end"": 33.17}, {""speaker"": ""client"", ""text"": ""Divya: Please do. We're ready to close quickly."", ""start"": 34.17, ""end"": 40.06}, {""speaker"": ""agent"", ""text"": ""Vikram: Will revert by tomorrow 2 PM."", ""start"": 40.96, ""end"": 43.7}]",0.9 +TRX-00090,CAL-00191,en-IN,"Vikram: Hi Debjani, following up on your enquiry for DTC Sojon. Debjani: Hi, I was about to call you. Vikram: Great minds! What were you thinking? Debjani: The price is still high. Can you match Sugam Prakriti's rate? Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference? Debjani: Not really. I want mid-floor east facing. Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Debjani: Please do. We're ready to close quickly. Vikram: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hi Debjani, following up on your enquiry for DTC Sojon."", ""start"": 0.0, ""end"": 5.24}, {""speaker"": ""client"", ""text"": ""Debjani: Hi, I was about to call you."", ""start"": 6.89, ""end"": 13.61}, {""speaker"": ""agent"", ""text"": ""Vikram: Great minds! What were you thinking?"", ""start"": 15.52, ""end"": 17.7}, {""speaker"": ""client"", ""text"": ""Debjani: The price is still high. Can you match Sugam Prakriti's rate?"", ""start"": 18.7, ""end"": 24.02}, {""speaker"": ""agent"", ""text"": ""Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 25.19, ""end"": 29.88}, {""speaker"": ""client"", ""text"": ""Debjani: Not really. I want mid-floor east facing."", ""start"": 30.52, ""end"": 35.53}, {""speaker"": ""agent"", ""text"": ""Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 37.5, ""end"": 41.63}, {""speaker"": ""client"", ""text"": ""Debjani: Please do. We're ready to close quickly."", ""start"": 43.03, ""end"": 46.32}, {""speaker"": ""agent"", ""text"": ""Vikram: Will revert by tomorrow 2 PM."", ""start"": 46.88, ""end"": 49.78}]",0.94 +TRX-00091,CAL-00199,en-IN,"Vikram: Hi Prasenjit, following up on your enquiry for Merlin Avana. Prasenjit: Yes, tell me. Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Tangra? Prasenjit: Yes, what's the price? Vikram: Starting at 7.8 Cr for 3 BHK. Possession by September 2026. Prasenjit: That's good. Send me the details on WhatsApp. Vikram: Done. When can you visit? Prasenjit: This weekend. Vikram: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hi Prasenjit, following up on your enquiry for Merlin Avana."", ""start"": 0.0, ""end"": 3.8}, {""speaker"": ""client"", ""text"": ""Prasenjit: Yes, tell me."", ""start"": 5.09, ""end"": 11.63}, {""speaker"": ""agent"", ""text"": ""Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Tangra?"", ""start"": 12.87, ""end"": 16.64}, {""speaker"": ""client"", ""text"": ""Prasenjit: Yes, what's the price?"", ""start"": 17.42, ""end"": 20.12}, {""speaker"": ""agent"", ""text"": ""Vikram: Starting at 7.8 Cr for 3 BHK. Possession by September 2026."", ""start"": 21.97, ""end"": 28.51}, {""speaker"": ""client"", ""text"": ""Prasenjit: That's good. Send me the details on WhatsApp."", ""start"": 29.85, ""end"": 33.86}, {""speaker"": ""agent"", ""text"": ""Vikram: Done. When can you visit?"", ""start"": 34.71, ""end"": 42.48}, {""speaker"": ""client"", ""text"": ""Prasenjit: This weekend."", ""start"": 43.22, ""end"": 48.06}, {""speaker"": ""agent"", ""text"": ""Vikram: I'll block Saturday 11 AM for you."", ""start"": 49.13, ""end"": 51.9}]",0.89 +TRX-00092,CAL-00201,en-IN,"Ananya: Hi Rahul, following up on your enquiry for Siddha Suburbia Bungalow. Rahul: Hi, I was about to call you. Ananya: Great minds! What were you thinking? Rahul: The price is still high. Can you match Atri Surya Toron's rate? Ananya: I understand. Let me see what best I can do. Are you flexible on floor preference? Rahul: Not really. I want mid-floor east facing. Ananya: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Rahul: Please do. We're ready to close quickly. Ananya: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Ananya: Hi Rahul, following up on your enquiry for Siddha Suburbia Bungalow."", ""start"": 0.0, ""end"": 7.8}, {""speaker"": ""client"", ""text"": ""Rahul: Hi, I was about to call you."", ""start"": 8.87, ""end"": 15.98}, {""speaker"": ""agent"", ""text"": ""Ananya: Great minds! What were you thinking?"", ""start"": 16.66, ""end"": 22.53}, {""speaker"": ""client"", ""text"": ""Rahul: The price is still high. Can you match Atri Surya Toron's rate?"", ""start"": 23.22, ""end"": 30.38}, {""speaker"": ""agent"", ""text"": ""Ananya: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 31.63, ""end"": 36.52}, {""speaker"": ""client"", ""text"": ""Rahul: Not really. I want mid-floor east facing."", ""start"": 38.2, ""end"": 41.77}, {""speaker"": ""agent"", ""text"": ""Ananya: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 43.46, ""end"": 50.89}, {""speaker"": ""client"", ""text"": ""Rahul: Please do. We're ready to close quickly."", ""start"": 52.48, ""end"": 57.9}, {""speaker"": ""agent"", ""text"": ""Ananya: Will revert by tomorrow 2 PM."", ""start"": 59.39, ""end"": 65.35}]",0.94 +TRX-00093,CAL-00203,en-IN,"Rahul: Hi Ananya, following up on your enquiry for Eden Devprayag. Ananya: Hi, I was about to call you. Rahul: Great minds! What were you thinking? Ananya: The price is still high. Can you match Ambuja Utpaala's rate? Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference? Ananya: Not really. I want mid-floor east facing. Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Ananya: Please do. We're ready to close quickly. Rahul: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Rahul: Hi Ananya, following up on your enquiry for Eden Devprayag."", ""start"": 0.0, ""end"": 6.38}, {""speaker"": ""client"", ""text"": ""Ananya: Hi, I was about to call you."", ""start"": 8.16, ""end"": 13.2}, {""speaker"": ""agent"", ""text"": ""Rahul: Great minds! What were you thinking?"", ""start"": 14.31, ""end"": 20.43}, {""speaker"": ""client"", ""text"": ""Ananya: The price is still high. Can you match Ambuja Utpaala's rate?"", ""start"": 21.56, ""end"": 26.71}, {""speaker"": ""agent"", ""text"": ""Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 28.22, ""end"": 33.22}, {""speaker"": ""client"", ""text"": ""Ananya: Not really. I want mid-floor east facing."", ""start"": 35.2, ""end"": 38.96}, {""speaker"": ""agent"", ""text"": ""Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 39.78, ""end"": 43.42}, {""speaker"": ""client"", ""text"": ""Ananya: Please do. We're ready to close quickly."", ""start"": 45.25, ""end"": 48.15}, {""speaker"": ""agent"", ""text"": ""Rahul: Will revert by tomorrow 2 PM."", ""start"": 49.24, ""end"": 55.84}]",0.88 +TRX-00094,CAL-00213,en-IN,"Vikram: Good morning Isha, wanted to share some updates about Shriram Grand City. Isha: Yes, tell me. Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Howrah? Isha: Yes, what's the price? Vikram: Starting at 6.77 Cr for 3 BHK. Possession by July 2026. Isha: That's good. Send me the details on WhatsApp. Vikram: Done. When can you visit? Isha: This weekend. Vikram: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Vikram: Good morning Isha, wanted to share some updates about Shriram Grand City."", ""start"": 0.0, ""end"": 4.66}, {""speaker"": ""client"", ""text"": ""Isha: Yes, tell me."", ""start"": 6.44, ""end"": 10.31}, {""speaker"": ""agent"", ""text"": ""Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Howrah?"", ""start"": 11.6, ""end"": 15.9}, {""speaker"": ""client"", ""text"": ""Isha: Yes, what's the price?"", ""start"": 17.32, ""end"": 23.54}, {""speaker"": ""agent"", ""text"": ""Vikram: Starting at 6.77 Cr for 3 BHK. Possession by July 2026."", ""start"": 24.41, ""end"": 29.03}, {""speaker"": ""client"", ""text"": ""Isha: That's good. Send me the details on WhatsApp."", ""start"": 30.0, ""end"": 32.06}, {""speaker"": ""agent"", ""text"": ""Vikram: Done. When can you visit?"", ""start"": 32.79, ""end"": 39.35}, {""speaker"": ""client"", ""text"": ""Isha: This weekend."", ""start"": 41.12, ""end"": 44.73}, {""speaker"": ""agent"", ""text"": ""Vikram: I'll block Saturday 11 AM for you."", ""start"": 46.66, ""end"": 54.63}]",0.95 +TRX-00095,CAL-00214,en-IN,"Rahul: Hello Isha, this is Rahul from Velocity regarding Shriram Grand City. Isha: Hi, I was about to call you. Rahul: Great minds! What were you thinking? Isha: The price is still high. Can you match Atri Surya Toron's rate? Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference? Isha: Not really. I want mid-floor east facing. Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Isha: Please do. We're ready to close quickly. Rahul: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Rahul: Hello Isha, this is Rahul from Velocity regarding Shriram Grand City."", ""start"": 0.0, ""end"": 5.35}, {""speaker"": ""client"", ""text"": ""Isha: Hi, I was about to call you."", ""start"": 6.25, ""end"": 8.64}, {""speaker"": ""agent"", ""text"": ""Rahul: Great minds! What were you thinking?"", ""start"": 9.91, ""end"": 17.21}, {""speaker"": ""client"", ""text"": ""Isha: The price is still high. Can you match Atri Surya Toron's rate?"", ""start"": 18.49, ""end"": 20.8}, {""speaker"": ""agent"", ""text"": ""Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 21.7, ""end"": 27.82}, {""speaker"": ""client"", ""text"": ""Isha: Not really. I want mid-floor east facing."", ""start"": 29.69, ""end"": 35.66}, {""speaker"": ""agent"", ""text"": ""Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 37.14, ""end"": 44.09}, {""speaker"": ""client"", ""text"": ""Isha: Please do. We're ready to close quickly."", ""start"": 45.29, ""end"": 47.61}, {""speaker"": ""agent"", ""text"": ""Rahul: Will revert by tomorrow 2 PM."", ""start"": 48.64, ""end"": 56.14}]",0.89 +TRX-00096,CAL-00215,en-IN,"Rahul: Hi Deb, following up on your enquiry for Godrej Blue. Deb: Yes, tell me. Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in New Town? Deb: Yes, what's the price? Rahul: Starting at 6.56 Cr for 3 BHK. Possession by October 2026. Deb: That's good. Send me the details on WhatsApp. Rahul: Done. When can you visit? Deb: This weekend. Rahul: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Rahul: Hi Deb, following up on your enquiry for Godrej Blue."", ""start"": 0.0, ""end"": 2.01}, {""speaker"": ""client"", ""text"": ""Deb: Yes, tell me."", ""start"": 2.57, ""end"": 8.26}, {""speaker"": ""agent"", ""text"": ""Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in New Town?"", ""start"": 8.88, ""end"": 13.06}, {""speaker"": ""client"", ""text"": ""Deb: Yes, what's the price?"", ""start"": 13.75, ""end"": 18.51}, {""speaker"": ""agent"", ""text"": ""Rahul: Starting at 6.56 Cr for 3 BHK. Possession by October 2026."", ""start"": 20.26, ""end"": 25.75}, {""speaker"": ""client"", ""text"": ""Deb: That's good. Send me the details on WhatsApp."", ""start"": 27.4, ""end"": 31.4}, {""speaker"": ""agent"", ""text"": ""Rahul: Done. When can you visit?"", ""start"": 32.1, ""end"": 37.8}, {""speaker"": ""client"", ""text"": ""Deb: This weekend."", ""start"": 38.94, ""end"": 42.23}, {""speaker"": ""agent"", ""text"": ""Rahul: I'll block Saturday 11 AM for you."", ""start"": 44.09, ""end"": 47.96}]",0.91 +TRX-00097,CAL-00216,en-IN,"Vikram: Hi Deb, following up on your enquiry for Godrej Blue. Deb: Hi, I was about to call you. Vikram: Great minds! What were you thinking? Deb: The price is still high. Can you match Shriram Grand City's rate? Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference? Deb: Not really. I want mid-floor east facing. Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Deb: Please do. We're ready to close quickly. Vikram: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hi Deb, following up on your enquiry for Godrej Blue."", ""start"": 0.0, ""end"": 7.37}, {""speaker"": ""client"", ""text"": ""Deb: Hi, I was about to call you."", ""start"": 8.88, ""end"": 15.36}, {""speaker"": ""agent"", ""text"": ""Vikram: Great minds! What were you thinking?"", ""start"": 16.08, ""end"": 18.12}, {""speaker"": ""client"", ""text"": ""Deb: The price is still high. Can you match Shriram Grand City's rate?"", ""start"": 20.06, ""end"": 27.6}, {""speaker"": ""agent"", ""text"": ""Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 28.93, ""end"": 32.84}, {""speaker"": ""client"", ""text"": ""Deb: Not really. I want mid-floor east facing."", ""start"": 34.78, ""end"": 40.97}, {""speaker"": ""agent"", ""text"": ""Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 41.6, ""end"": 47.2}, {""speaker"": ""client"", ""text"": ""Deb: Please do. We're ready to close quickly."", ""start"": 48.91, ""end"": 55.69}, {""speaker"": ""agent"", ""text"": ""Vikram: Will revert by tomorrow 2 PM."", ""start"": 57.05, ""end"": 59.15}]",0.86 +TRX-00098,CAL-00220,en-IN,"Ananya: Hi Neha, following up on your enquiry for Ambuja Utpaala. Neha: Hi, I was about to call you. Ananya: Great minds! What were you thinking? Neha: The price is still high. Can you match Siddha Serena's rate? Ananya: I understand. Let me see what best I can do. Are you flexible on floor preference? Neha: Not really. I want mid-floor east facing. Ananya: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Neha: Please do. We're ready to close quickly. Ananya: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Ananya: Hi Neha, following up on your enquiry for Ambuja Utpaala."", ""start"": 0.0, ""end"": 4.71}, {""speaker"": ""client"", ""text"": ""Neha: Hi, I was about to call you."", ""start"": 5.56, ""end"": 11.56}, {""speaker"": ""agent"", ""text"": ""Ananya: Great minds! What were you thinking?"", ""start"": 13.48, ""end"": 18.7}, {""speaker"": ""client"", ""text"": ""Neha: The price is still high. Can you match Siddha Serena's rate?"", ""start"": 19.76, ""end"": 26.27}, {""speaker"": ""agent"", ""text"": ""Ananya: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 27.04, ""end"": 32.71}, {""speaker"": ""client"", ""text"": ""Neha: Not really. I want mid-floor east facing."", ""start"": 33.3, ""end"": 39.15}, {""speaker"": ""agent"", ""text"": ""Ananya: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 39.83, ""end"": 45.29}, {""speaker"": ""client"", ""text"": ""Neha: Please do. We're ready to close quickly."", ""start"": 46.65, ""end"": 49.91}, {""speaker"": ""agent"", ""text"": ""Ananya: Will revert by tomorrow 2 PM."", ""start"": 50.77, ""end"": 54.24}]",0.9 +TRX-00099,CAL-00222,en-IN,"Rahul: Hi Ritu, following up on your enquiry for Atri Aqua. Ritu: Yes, tell me. Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in New Town? Ritu: Yes, what's the price? Rahul: Starting at 7.9 Cr for 3 BHK. Possession by June 2026. Ritu: That's good. Send me the details on WhatsApp. Rahul: Done. When can you visit? Ritu: This weekend. Rahul: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Rahul: Hi Ritu, following up on your enquiry for Atri Aqua."", ""start"": 0.0, ""end"": 4.31}, {""speaker"": ""client"", ""text"": ""Ritu: Yes, tell me."", ""start"": 6.18, ""end"": 13.73}, {""speaker"": ""agent"", ""text"": ""Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in New Town?"", ""start"": 15.48, ""end"": 21.81}, {""speaker"": ""client"", ""text"": ""Ritu: Yes, what's the price?"", ""start"": 22.38, ""end"": 29.94}, {""speaker"": ""agent"", ""text"": ""Rahul: Starting at 7.9 Cr for 3 BHK. Possession by June 2026."", ""start"": 31.23, ""end"": 36.7}, {""speaker"": ""client"", ""text"": ""Ritu: That's good. Send me the details on WhatsApp."", ""start"": 38.36, ""end"": 41.16}, {""speaker"": ""agent"", ""text"": ""Rahul: Done. When can you visit?"", ""start"": 42.05, ""end"": 45.11}, {""speaker"": ""client"", ""text"": ""Ritu: This weekend."", ""start"": 46.98, ""end"": 51.91}, {""speaker"": ""agent"", ""text"": ""Rahul: I'll block Saturday 11 AM for you."", ""start"": 53.01, ""end"": 57.03}]",0.94 +TRX-00100,CAL-00223,en-IN,"Rahul: Hello Ritu, this is Rahul from Velocity regarding Atri Aqua. Ritu: Hi, I was about to call you. Rahul: Great minds! What were you thinking? Ritu: The price is still high. Can you match DTC Good Earth's rate? Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference? Ritu: Not really. I want mid-floor east facing. Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Ritu: Please do. We're ready to close quickly. Rahul: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Rahul: Hello Ritu, this is Rahul from Velocity regarding Atri Aqua."", ""start"": 0.0, ""end"": 7.53}, {""speaker"": ""client"", ""text"": ""Ritu: Hi, I was about to call you."", ""start"": 8.52, ""end"": 13.83}, {""speaker"": ""agent"", ""text"": ""Rahul: Great minds! What were you thinking?"", ""start"": 14.99, ""end"": 21.35}, {""speaker"": ""client"", ""text"": ""Ritu: The price is still high. Can you match DTC Good Earth's rate?"", ""start"": 22.68, ""end"": 25.74}, {""speaker"": ""agent"", ""text"": ""Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 27.45, ""end"": 34.33}, {""speaker"": ""client"", ""text"": ""Ritu: Not really. I want mid-floor east facing."", ""start"": 36.13, ""end"": 39.83}, {""speaker"": ""agent"", ""text"": ""Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 41.18, ""end"": 43.86}, {""speaker"": ""client"", ""text"": ""Ritu: Please do. We're ready to close quickly."", ""start"": 44.52, ""end"": 51.42}, {""speaker"": ""agent"", ""text"": ""Rahul: Will revert by tomorrow 2 PM."", ""start"": 53.36, ""end"": 58.85}]",0.86 +TRX-00101,CAL-00224,en-IN,"Rahul: Good morning Ritu, wanted to share some updates about Atri Aqua. Ritu: Yes, tell me. Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in New Town? Ritu: Yes, what's the price? Rahul: Starting at 7.2 Cr for 3 BHK. Possession by October 2026. Ritu: That's good. Send me the details on WhatsApp. Rahul: Done. When can you visit? Ritu: This weekend. Rahul: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Rahul: Good morning Ritu, wanted to share some updates about Atri Aqua."", ""start"": 0.0, ""end"": 2.37}, {""speaker"": ""client"", ""text"": ""Ritu: Yes, tell me."", ""start"": 3.34, ""end"": 7.76}, {""speaker"": ""agent"", ""text"": ""Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in New Town?"", ""start"": 9.57, ""end"": 13.31}, {""speaker"": ""client"", ""text"": ""Ritu: Yes, what's the price?"", ""start"": 14.63, ""end"": 17.38}, {""speaker"": ""agent"", ""text"": ""Rahul: Starting at 7.2 Cr for 3 BHK. Possession by October 2026."", ""start"": 19.2, ""end"": 23.57}, {""speaker"": ""client"", ""text"": ""Ritu: That's good. Send me the details on WhatsApp."", ""start"": 25.48, ""end"": 28.94}, {""speaker"": ""agent"", ""text"": ""Rahul: Done. When can you visit?"", ""start"": 30.61, ""end"": 34.09}, {""speaker"": ""client"", ""text"": ""Ritu: This weekend."", ""start"": 35.84, ""end"": 39.29}, {""speaker"": ""agent"", ""text"": ""Rahul: I'll block Saturday 11 AM for you."", ""start"": 40.43, ""end"": 45.28}]",0.93 +TRX-00102,CAL-00225,en-IN,"Vikram: Hi Priya, following up on your enquiry for Atri Aqua. Priya: Yes, tell me. Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in New Town? Priya: Yes, what's the price? Vikram: Starting at 7.13 Cr for 3 BHK. Possession by August 2026. Priya: That's good. Send me the details on WhatsApp. Vikram: Done. When can you visit? Priya: This weekend. Vikram: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hi Priya, following up on your enquiry for Atri Aqua."", ""start"": 0.0, ""end"": 7.59}, {""speaker"": ""client"", ""text"": ""Priya: Yes, tell me."", ""start"": 8.43, ""end"": 10.49}, {""speaker"": ""agent"", ""text"": ""Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in New Town?"", ""start"": 12.27, ""end"": 17.22}, {""speaker"": ""client"", ""text"": ""Priya: Yes, what's the price?"", ""start"": 18.47, ""end"": 21.89}, {""speaker"": ""agent"", ""text"": ""Vikram: Starting at 7.13 Cr for 3 BHK. Possession by August 2026."", ""start"": 22.59, ""end"": 29.31}, {""speaker"": ""client"", ""text"": ""Priya: That's good. Send me the details on WhatsApp."", ""start"": 30.51, ""end"": 33.7}, {""speaker"": ""agent"", ""text"": ""Vikram: Done. When can you visit?"", ""start"": 35.64, ""end"": 42.59}, {""speaker"": ""client"", ""text"": ""Priya: This weekend."", ""start"": 43.26, ""end"": 50.58}, {""speaker"": ""agent"", ""text"": ""Vikram: I'll block Saturday 11 AM for you."", ""start"": 52.39, ""end"": 57.81}]",0.95 +TRX-00103,CAL-00228,en-IN,"Vikram: Hello Sourav, this is Vikram from Velocity regarding Siddha Sky Waterfront. Sourav: Hi, I was about to call you. Vikram: Great minds! What were you thinking? Sourav: The price is still high. Can you match DTC Good Earth's rate? Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference? Sourav: Not really. I want mid-floor east facing. Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Sourav: Please do. We're ready to close quickly. Vikram: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hello Sourav, this is Vikram from Velocity regarding Siddha Sky Waterfront."", ""start"": 0.0, ""end"": 7.4}, {""speaker"": ""client"", ""text"": ""Sourav: Hi, I was about to call you."", ""start"": 9.14, ""end"": 14.65}, {""speaker"": ""agent"", ""text"": ""Vikram: Great minds! What were you thinking?"", ""start"": 15.82, ""end"": 18.0}, {""speaker"": ""client"", ""text"": ""Sourav: The price is still high. Can you match DTC Good Earth's rate?"", ""start"": 19.12, ""end"": 26.5}, {""speaker"": ""agent"", ""text"": ""Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 27.01, ""end"": 34.79}, {""speaker"": ""client"", ""text"": ""Sourav: Not really. I want mid-floor east facing."", ""start"": 35.4, ""end"": 41.34}, {""speaker"": ""agent"", ""text"": ""Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 42.12, ""end"": 48.22}, {""speaker"": ""client"", ""text"": ""Sourav: Please do. We're ready to close quickly."", ""start"": 49.24, ""end"": 53.16}, {""speaker"": ""agent"", ""text"": ""Vikram: Will revert by tomorrow 2 PM."", ""start"": 54.08, ""end"": 60.63}]",0.92 +TRX-00104,CAL-00230,en-IN,"Rahul: Good morning Manish, wanted to share some updates about Atri Surya Toron. Manish: Hi, I was about to call you. Rahul: Great minds! What were you thinking? Manish: The price is still high. Can you match DTC Sojon's rate? Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference? Manish: Not really. I want mid-floor east facing. Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Manish: Please do. We're ready to close quickly. Rahul: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Rahul: Good morning Manish, wanted to share some updates about Atri Surya Toron."", ""start"": 0.0, ""end"": 3.26}, {""speaker"": ""client"", ""text"": ""Manish: Hi, I was about to call you."", ""start"": 4.9, ""end"": 12.73}, {""speaker"": ""agent"", ""text"": ""Rahul: Great minds! What were you thinking?"", ""start"": 13.83, ""end"": 18.04}, {""speaker"": ""client"", ""text"": ""Manish: The price is still high. Can you match DTC Sojon's rate?"", ""start"": 19.35, ""end"": 26.25}, {""speaker"": ""agent"", ""text"": ""Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 27.73, ""end"": 30.88}, {""speaker"": ""client"", ""text"": ""Manish: Not really. I want mid-floor east facing."", ""start"": 31.67, ""end"": 38.63}, {""speaker"": ""agent"", ""text"": ""Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 39.89, ""end"": 47.49}, {""speaker"": ""client"", ""text"": ""Manish: Please do. We're ready to close quickly."", ""start"": 48.49, ""end"": 50.67}, {""speaker"": ""agent"", ""text"": ""Rahul: Will revert by tomorrow 2 PM."", ""start"": 51.22, ""end"": 58.45}]",0.89 +TRX-00105,CAL-00232,en-IN,"Ananya: Hello Aditya, this is Ananya from Velocity regarding Atri Surya Toron. Aditya: Yes, tell me. Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat? Aditya: Yes, what's the price? Ananya: Starting at 6.86 Cr for 3 BHK. Possession by September 2026. Aditya: That's good. Send me the details on WhatsApp. Ananya: Done. When can you visit? Aditya: This weekend. Ananya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Ananya: Hello Aditya, this is Ananya from Velocity regarding Atri Surya Toron."", ""start"": 0.0, ""end"": 3.52}, {""speaker"": ""client"", ""text"": ""Aditya: Yes, tell me."", ""start"": 4.06, ""end"": 8.23}, {""speaker"": ""agent"", ""text"": ""Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat?"", ""start"": 10.13, ""end"": 13.91}, {""speaker"": ""client"", ""text"": ""Aditya: Yes, what's the price?"", ""start"": 14.6, ""end"": 17.39}, {""speaker"": ""agent"", ""text"": ""Ananya: Starting at 6.86 Cr for 3 BHK. Possession by September 2026."", ""start"": 17.98, ""end"": 25.85}, {""speaker"": ""client"", ""text"": ""Aditya: That's good. Send me the details on WhatsApp."", ""start"": 27.52, ""end"": 33.1}, {""speaker"": ""agent"", ""text"": ""Ananya: Done. When can you visit?"", ""start"": 35.0, ""end"": 39.76}, {""speaker"": ""client"", ""text"": ""Aditya: This weekend."", ""start"": 41.12, ""end"": 45.69}, {""speaker"": ""agent"", ""text"": ""Ananya: I'll block Saturday 11 AM for you."", ""start"": 47.37, ""end"": 52.78}]",0.87 +TRX-00106,CAL-00233,en-IN,"Rahul: Hi Aditya, following up on your enquiry for Atri Surya Toron. Aditya: Hi, I was about to call you. Rahul: Great minds! What were you thinking? Aditya: The price is still high. Can you match Ambuja Utpaala's rate? Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference? Aditya: Not really. I want mid-floor east facing. Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Aditya: Please do. We're ready to close quickly. Rahul: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Rahul: Hi Aditya, following up on your enquiry for Atri Surya Toron."", ""start"": 0.0, ""end"": 2.48}, {""speaker"": ""client"", ""text"": ""Aditya: Hi, I was about to call you."", ""start"": 3.81, ""end"": 11.6}, {""speaker"": ""agent"", ""text"": ""Rahul: Great minds! What were you thinking?"", ""start"": 12.63, ""end"": 15.42}, {""speaker"": ""client"", ""text"": ""Aditya: The price is still high. Can you match Ambuja Utpaala's rate?"", ""start"": 16.99, ""end"": 22.89}, {""speaker"": ""agent"", ""text"": ""Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 24.41, ""end"": 31.17}, {""speaker"": ""client"", ""text"": ""Aditya: Not really. I want mid-floor east facing."", ""start"": 33.07, ""end"": 39.75}, {""speaker"": ""agent"", ""text"": ""Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 41.6, ""end"": 44.69}, {""speaker"": ""client"", ""text"": ""Aditya: Please do. We're ready to close quickly."", ""start"": 46.13, ""end"": 53.59}, {""speaker"": ""agent"", ""text"": ""Rahul: Will revert by tomorrow 2 PM."", ""start"": 54.44, ""end"": 57.6}]",0.92 +TRX-00107,CAL-00236,en-IN,"Priya: Hello Pallavi, this is Priya from Velocity regarding Sugam Prakriti. Pallavi: Yes, tell me. Priya: We have a new tower launch with pre-launch pricing. Are you still looking in Barasat? Pallavi: Yes, what's the price? Priya: Starting at 6.81 Cr for 3 BHK. Possession by June 2026. Pallavi: That's good. Send me the details on WhatsApp. Priya: Done. When can you visit? Pallavi: This weekend. Priya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Priya: Hello Pallavi, this is Priya from Velocity regarding Sugam Prakriti."", ""start"": 0.0, ""end"": 6.93}, {""speaker"": ""client"", ""text"": ""Pallavi: Yes, tell me."", ""start"": 8.89, ""end"": 14.82}, {""speaker"": ""agent"", ""text"": ""Priya: We have a new tower launch with pre-launch pricing. Are you still looking in Barasat?"", ""start"": 15.5, ""end"": 23.12}, {""speaker"": ""client"", ""text"": ""Pallavi: Yes, what's the price?"", ""start"": 24.02, ""end"": 31.22}, {""speaker"": ""agent"", ""text"": ""Priya: Starting at 6.81 Cr for 3 BHK. Possession by June 2026."", ""start"": 32.92, ""end"": 37.91}, {""speaker"": ""client"", ""text"": ""Pallavi: That's good. Send me the details on WhatsApp."", ""start"": 38.47, ""end"": 46.11}, {""speaker"": ""agent"", ""text"": ""Priya: Done. When can you visit?"", ""start"": 46.76, ""end"": 53.99}, {""speaker"": ""client"", ""text"": ""Pallavi: This weekend."", ""start"": 54.53, ""end"": 60.08}, {""speaker"": ""agent"", ""text"": ""Priya: I'll block Saturday 11 AM for you."", ""start"": 61.68, ""end"": 64.86}]",0.83 +TRX-00108,CAL-00239,en-IN,"Ananya: Hi Vidya, following up on your enquiry for Atri Surya Toron. Vidya: Yes, tell me. Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat? Vidya: Yes, what's the price? Ananya: Starting at 7.35 Cr for 3 BHK. Possession by September 2026. Vidya: That's good. Send me the details on WhatsApp. Ananya: Done. When can you visit? Vidya: This weekend. Ananya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Ananya: Hi Vidya, following up on your enquiry for Atri Surya Toron."", ""start"": 0.0, ""end"": 2.28}, {""speaker"": ""client"", ""text"": ""Vidya: Yes, tell me."", ""start"": 3.72, ""end"": 11.25}, {""speaker"": ""agent"", ""text"": ""Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat?"", ""start"": 12.23, ""end"": 19.73}, {""speaker"": ""client"", ""text"": ""Vidya: Yes, what's the price?"", ""start"": 20.51, ""end"": 22.6}, {""speaker"": ""agent"", ""text"": ""Ananya: Starting at 7.35 Cr for 3 BHK. Possession by September 2026."", ""start"": 23.98, ""end"": 27.25}, {""speaker"": ""client"", ""text"": ""Vidya: That's good. Send me the details on WhatsApp."", ""start"": 29.21, ""end"": 35.08}, {""speaker"": ""agent"", ""text"": ""Ananya: Done. When can you visit?"", ""start"": 36.3, ""end"": 40.71}, {""speaker"": ""client"", ""text"": ""Vidya: This weekend."", ""start"": 42.04, ""end"": 47.99}, {""speaker"": ""agent"", ""text"": ""Ananya: I'll block Saturday 11 AM for you."", ""start"": 49.93, ""end"": 53.58}]",0.85 +TRX-00109,CAL-00242,en-IN,"Rahul: Hello Isha, this is Rahul from Velocity regarding DTC Sojon. Isha: Hi, I was about to call you. Rahul: Great minds! What were you thinking? Isha: The price is still high. Can you match Godrej Elevate's rate? Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference? Isha: Not really. I want mid-floor east facing. Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Isha: Please do. We're ready to close quickly. Rahul: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Rahul: Hello Isha, this is Rahul from Velocity regarding DTC Sojon."", ""start"": 0.0, ""end"": 2.59}, {""speaker"": ""client"", ""text"": ""Isha: Hi, I was about to call you."", ""start"": 4.25, ""end"": 11.67}, {""speaker"": ""agent"", ""text"": ""Rahul: Great minds! What were you thinking?"", ""start"": 13.22, ""end"": 19.36}, {""speaker"": ""client"", ""text"": ""Isha: The price is still high. Can you match Godrej Elevate's rate?"", ""start"": 20.84, ""end"": 23.32}, {""speaker"": ""agent"", ""text"": ""Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 24.51, ""end"": 31.44}, {""speaker"": ""client"", ""text"": ""Isha: Not really. I want mid-floor east facing."", ""start"": 32.2, ""end"": 35.63}, {""speaker"": ""agent"", ""text"": ""Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 37.62, ""end"": 42.5}, {""speaker"": ""client"", ""text"": ""Isha: Please do. We're ready to close quickly."", ""start"": 43.56, ""end"": 48.52}, {""speaker"": ""agent"", ""text"": ""Rahul: Will revert by tomorrow 2 PM."", ""start"": 49.67, ""end"": 52.02}]",0.9 +TRX-00110,CAL-00244,en-IN,"Ananya: Hello Siddharth, this is Ananya from Velocity regarding Atri Aqua. Siddharth: Yes, tell me. Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in New Town? Siddharth: Yes, what's the price? Ananya: Starting at 7.88 Cr for 3 BHK. Possession by July 2026. Siddharth: That's good. Send me the details on WhatsApp. Ananya: Done. When can you visit? Siddharth: This weekend. Ananya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Ananya: Hello Siddharth, this is Ananya from Velocity regarding Atri Aqua."", ""start"": 0.0, ""end"": 7.98}, {""speaker"": ""client"", ""text"": ""Siddharth: Yes, tell me."", ""start"": 9.45, ""end"": 16.44}, {""speaker"": ""agent"", ""text"": ""Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in New Town?"", ""start"": 17.45, ""end"": 23.75}, {""speaker"": ""client"", ""text"": ""Siddharth: Yes, what's the price?"", ""start"": 24.27, ""end"": 27.27}, {""speaker"": ""agent"", ""text"": ""Ananya: Starting at 7.88 Cr for 3 BHK. Possession by July 2026."", ""start"": 28.73, ""end"": 31.56}, {""speaker"": ""client"", ""text"": ""Siddharth: That's good. Send me the details on WhatsApp."", ""start"": 32.34, ""end"": 37.62}, {""speaker"": ""agent"", ""text"": ""Ananya: Done. When can you visit?"", ""start"": 38.47, ""end"": 44.98}, {""speaker"": ""client"", ""text"": ""Siddharth: This weekend."", ""start"": 45.58, ""end"": 52.95}, {""speaker"": ""agent"", ""text"": ""Ananya: I'll block Saturday 11 AM for you."", ""start"": 54.72, ""end"": 60.3}]",0.85 +TRX-00111,CAL-00246,en-IN,"Rahul: Hi Siddharth, following up on your enquiry for Atri Aqua. Siddharth: Hi, I was about to call you. Rahul: Great minds! What were you thinking? Siddharth: The price is still high. Can you match Godrej Elevate's rate? Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference? Siddharth: Not really. I want mid-floor east facing. Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Siddharth: Please do. We're ready to close quickly. Rahul: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Rahul: Hi Siddharth, following up on your enquiry for Atri Aqua."", ""start"": 0.0, ""end"": 7.31}, {""speaker"": ""client"", ""text"": ""Siddharth: Hi, I was about to call you."", ""start"": 8.8, ""end"": 16.72}, {""speaker"": ""agent"", ""text"": ""Rahul: Great minds! What were you thinking?"", ""start"": 18.65, ""end"": 23.29}, {""speaker"": ""client"", ""text"": ""Siddharth: The price is still high. Can you match Godrej Elevate's rate?"", ""start"": 24.78, ""end"": 27.67}, {""speaker"": ""agent"", ""text"": ""Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 29.1, ""end"": 35.24}, {""speaker"": ""client"", ""text"": ""Siddharth: Not really. I want mid-floor east facing."", ""start"": 36.53, ""end"": 43.24}, {""speaker"": ""agent"", ""text"": ""Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 44.28, ""end"": 52.02}, {""speaker"": ""client"", ""text"": ""Siddharth: Please do. We're ready to close quickly."", ""start"": 53.45, ""end"": 59.22}, {""speaker"": ""agent"", ""text"": ""Rahul: Will revert by tomorrow 2 PM."", ""start"": 60.23, ""end"": 62.33}]",0.86 +TRX-00112,CAL-00247,en-IN,"Vikram: Good morning Siddharth, wanted to share some updates about Atri Aqua. Siddharth: Hi, I was about to call you. Vikram: Great minds! What were you thinking? Siddharth: The price is still high. Can you match Sugam Prakriti's rate? Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference? Siddharth: Not really. I want mid-floor east facing. Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Siddharth: Please do. We're ready to close quickly. Vikram: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Vikram: Good morning Siddharth, wanted to share some updates about Atri Aqua."", ""start"": 0.0, ""end"": 4.87}, {""speaker"": ""client"", ""text"": ""Siddharth: Hi, I was about to call you."", ""start"": 5.8, ""end"": 11.13}, {""speaker"": ""agent"", ""text"": ""Vikram: Great minds! What were you thinking?"", ""start"": 12.7, ""end"": 16.51}, {""speaker"": ""client"", ""text"": ""Siddharth: The price is still high. Can you match Sugam Prakriti's rate?"", ""start"": 17.36, ""end"": 20.33}, {""speaker"": ""agent"", ""text"": ""Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 21.0, ""end"": 27.51}, {""speaker"": ""client"", ""text"": ""Siddharth: Not really. I want mid-floor east facing."", ""start"": 28.98, ""end"": 33.3}, {""speaker"": ""agent"", ""text"": ""Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 34.07, ""end"": 37.11}, {""speaker"": ""client"", ""text"": ""Siddharth: Please do. We're ready to close quickly."", ""start"": 38.27, ""end"": 45.71}, {""speaker"": ""agent"", ""text"": ""Vikram: Will revert by tomorrow 2 PM."", ""start"": 47.14, ""end"": 53.01}]",0.87 +TRX-00113,CAL-00251,en-IN,"Vikram: Good morning Priya, wanted to share some updates about Siddha Serena. Priya: Yes, tell me. Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in New Town? Priya: Yes, what's the price? Vikram: Starting at 3.12 Cr for 3 BHK. Possession by September 2026. Priya: That's good. Send me the details on WhatsApp. Vikram: Done. When can you visit? Priya: This weekend. Vikram: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Vikram: Good morning Priya, wanted to share some updates about Siddha Serena."", ""start"": 0.0, ""end"": 3.5}, {""speaker"": ""client"", ""text"": ""Priya: Yes, tell me."", ""start"": 4.54, ""end"": 11.95}, {""speaker"": ""agent"", ""text"": ""Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in New Town?"", ""start"": 12.66, ""end"": 16.89}, {""speaker"": ""client"", ""text"": ""Priya: Yes, what's the price?"", ""start"": 17.74, ""end"": 24.25}, {""speaker"": ""agent"", ""text"": ""Vikram: Starting at 3.12 Cr for 3 BHK. Possession by September 2026."", ""start"": 25.03, ""end"": 28.27}, {""speaker"": ""client"", ""text"": ""Priya: That's good. Send me the details on WhatsApp."", ""start"": 29.79, ""end"": 34.91}, {""speaker"": ""agent"", ""text"": ""Vikram: Done. When can you visit?"", ""start"": 35.91, ""end"": 38.77}, {""speaker"": ""client"", ""text"": ""Priya: This weekend."", ""start"": 39.65, ""end"": 44.18}, {""speaker"": ""agent"", ""text"": ""Vikram: I'll block Saturday 11 AM for you."", ""start"": 45.26, ""end"": 51.05}]",0.94 +TRX-00114,CAL-00252,en-IN,"Ananya: Hello Priya, this is Ananya from Velocity regarding Siddha Serena. Priya: Yes, tell me. Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in New Town? Priya: Yes, what's the price? Ananya: Starting at 2.67 Cr for 3 BHK. Possession by July 2026. Priya: That's good. Send me the details on WhatsApp. Ananya: Done. When can you visit? Priya: This weekend. Ananya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Ananya: Hello Priya, this is Ananya from Velocity regarding Siddha Serena."", ""start"": 0.0, ""end"": 4.62}, {""speaker"": ""client"", ""text"": ""Priya: Yes, tell me."", ""start"": 5.61, ""end"": 8.62}, {""speaker"": ""agent"", ""text"": ""Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in New Town?"", ""start"": 9.17, ""end"": 16.91}, {""speaker"": ""client"", ""text"": ""Priya: Yes, what's the price?"", ""start"": 18.18, ""end"": 20.85}, {""speaker"": ""agent"", ""text"": ""Ananya: Starting at 2.67 Cr for 3 BHK. Possession by July 2026."", ""start"": 21.91, ""end"": 29.83}, {""speaker"": ""client"", ""text"": ""Priya: That's good. Send me the details on WhatsApp."", ""start"": 31.16, ""end"": 38.51}, {""speaker"": ""agent"", ""text"": ""Ananya: Done. When can you visit?"", ""start"": 40.08, ""end"": 44.23}, {""speaker"": ""client"", ""text"": ""Priya: This weekend."", ""start"": 44.86, ""end"": 50.35}, {""speaker"": ""agent"", ""text"": ""Ananya: I'll block Saturday 11 AM for you."", ""start"": 51.98, ""end"": 58.99}]",0.96 +TRX-00115,CAL-00253,en-IN,"Vikram: Hello Priya, this is Vikram from Velocity regarding Siddha Serena. Priya: Hi, I was about to call you. Vikram: Great minds! What were you thinking? Priya: The price is still high. Can you match Shriram Grand City's rate? Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference? Priya: Not really. I want mid-floor east facing. Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Priya: Please do. We're ready to close quickly. Vikram: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hello Priya, this is Vikram from Velocity regarding Siddha Serena."", ""start"": 0.0, ""end"": 7.87}, {""speaker"": ""client"", ""text"": ""Priya: Hi, I was about to call you."", ""start"": 9.69, ""end"": 14.92}, {""speaker"": ""agent"", ""text"": ""Vikram: Great minds! What were you thinking?"", ""start"": 15.91, ""end"": 18.33}, {""speaker"": ""client"", ""text"": ""Priya: The price is still high. Can you match Shriram Grand City's rate?"", ""start"": 19.71, ""end"": 23.79}, {""speaker"": ""agent"", ""text"": ""Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 24.36, ""end"": 29.07}, {""speaker"": ""client"", ""text"": ""Priya: Not really. I want mid-floor east facing."", ""start"": 29.63, ""end"": 33.0}, {""speaker"": ""agent"", ""text"": ""Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 34.24, ""end"": 40.69}, {""speaker"": ""client"", ""text"": ""Priya: Please do. We're ready to close quickly."", ""start"": 42.56, ""end"": 48.7}, {""speaker"": ""agent"", ""text"": ""Vikram: Will revert by tomorrow 2 PM."", ""start"": 50.2, ""end"": 52.4}]",0.85 +TRX-00116,CAL-00254,en-IN,"Priya: Hi Parth, following up on your enquiry for Merlin Avana. Parth: Hi, I was about to call you. Priya: Great minds! What were you thinking? Parth: The price is still high. Can you match Siddha Serena's rate? Priya: I understand. Let me see what best I can do. Are you flexible on floor preference? Parth: Not really. I want mid-floor east facing. Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Parth: Please do. We're ready to close quickly. Priya: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Priya: Hi Parth, following up on your enquiry for Merlin Avana."", ""start"": 0.0, ""end"": 5.02}, {""speaker"": ""client"", ""text"": ""Parth: Hi, I was about to call you."", ""start"": 6.9, ""end"": 13.46}, {""speaker"": ""agent"", ""text"": ""Priya: Great minds! What were you thinking?"", ""start"": 15.09, ""end"": 19.12}, {""speaker"": ""client"", ""text"": ""Parth: The price is still high. Can you match Siddha Serena's rate?"", ""start"": 19.76, ""end"": 27.2}, {""speaker"": ""agent"", ""text"": ""Priya: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 28.29, ""end"": 32.44}, {""speaker"": ""client"", ""text"": ""Parth: Not really. I want mid-floor east facing."", ""start"": 33.64, ""end"": 39.71}, {""speaker"": ""agent"", ""text"": ""Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 40.33, ""end"": 47.68}, {""speaker"": ""client"", ""text"": ""Parth: Please do. We're ready to close quickly."", ""start"": 49.65, ""end"": 53.08}, {""speaker"": ""agent"", ""text"": ""Priya: Will revert by tomorrow 2 PM."", ""start"": 53.96, ""end"": 61.25}]",0.92 +TRX-00117,CAL-00255,en-IN,"Rahul: Hello Vivek, this is Rahul from Velocity regarding Siddha Suburbia Bungalow. Vivek: Yes, tell me. Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Madanpur? Vivek: Yes, what's the price? Rahul: Starting at 3.75 Cr for 3 BHK. Possession by September 2026. Vivek: That's good. Send me the details on WhatsApp. Rahul: Done. When can you visit? Vivek: This weekend. Rahul: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Rahul: Hello Vivek, this is Rahul from Velocity regarding Siddha Suburbia Bungalow."", ""start"": 0.0, ""end"": 7.5}, {""speaker"": ""client"", ""text"": ""Vivek: Yes, tell me."", ""start"": 9.15, ""end"": 16.99}, {""speaker"": ""agent"", ""text"": ""Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Madanpur?"", ""start"": 18.62, ""end"": 25.79}, {""speaker"": ""client"", ""text"": ""Vivek: Yes, what's the price?"", ""start"": 26.66, ""end"": 33.68}, {""speaker"": ""agent"", ""text"": ""Rahul: Starting at 3.75 Cr for 3 BHK. Possession by September 2026."", ""start"": 34.72, ""end"": 36.75}, {""speaker"": ""client"", ""text"": ""Vivek: That's good. Send me the details on WhatsApp."", ""start"": 38.43, ""end"": 41.56}, {""speaker"": ""agent"", ""text"": ""Rahul: Done. When can you visit?"", ""start"": 42.69, ""end"": 47.63}, {""speaker"": ""client"", ""text"": ""Vivek: This weekend."", ""start"": 48.69, ""end"": 55.29}, {""speaker"": ""agent"", ""text"": ""Rahul: I'll block Saturday 11 AM for you."", ""start"": 56.57, ""end"": 60.36}]",0.96 +TRX-00118,CAL-00257,en-IN,"Priya: Hi Ritu, following up on your enquiry for Shriram Grand City. Ritu: Yes, tell me. Priya: We have a new tower launch with pre-launch pricing. Are you still looking in Howrah? Ritu: Yes, what's the price? Priya: Starting at 7.1 Cr for 3 BHK. Possession by July 2026. Ritu: That's good. Send me the details on WhatsApp. Priya: Done. When can you visit? Ritu: This weekend. Priya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Priya: Hi Ritu, following up on your enquiry for Shriram Grand City."", ""start"": 0.0, ""end"": 4.66}, {""speaker"": ""client"", ""text"": ""Ritu: Yes, tell me."", ""start"": 5.61, ""end"": 9.78}, {""speaker"": ""agent"", ""text"": ""Priya: We have a new tower launch with pre-launch pricing. Are you still looking in Howrah?"", ""start"": 11.0, ""end"": 16.77}, {""speaker"": ""client"", ""text"": ""Ritu: Yes, what's the price?"", ""start"": 17.28, ""end"": 22.22}, {""speaker"": ""agent"", ""text"": ""Priya: Starting at 7.1 Cr for 3 BHK. Possession by July 2026."", ""start"": 23.15, ""end"": 27.6}, {""speaker"": ""client"", ""text"": ""Ritu: That's good. Send me the details on WhatsApp."", ""start"": 28.82, ""end"": 32.02}, {""speaker"": ""agent"", ""text"": ""Priya: Done. When can you visit?"", ""start"": 32.89, ""end"": 34.92}, {""speaker"": ""client"", ""text"": ""Ritu: This weekend."", ""start"": 36.84, ""end"": 44.21}, {""speaker"": ""agent"", ""text"": ""Priya: I'll block Saturday 11 AM for you."", ""start"": 45.69, ""end"": 51.65}]",0.89 +TRX-00119,CAL-00260,en-IN,"Priya: Good morning Swati, wanted to share some updates about Siddha Suburbia Bungalow. Swati: Yes, tell me. Priya: We have a new tower launch with pre-launch pricing. Are you still looking in Madanpur? Swati: Yes, what's the price? Priya: Starting at 4.8 Cr for 3 BHK. Possession by September 2026. Swati: That's good. Send me the details on WhatsApp. Priya: Done. When can you visit? Swati: This weekend. Priya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Priya: Good morning Swati, wanted to share some updates about Siddha Suburbia Bungalow."", ""start"": 0.0, ""end"": 2.48}, {""speaker"": ""client"", ""text"": ""Swati: Yes, tell me."", ""start"": 3.67, ""end"": 10.08}, {""speaker"": ""agent"", ""text"": ""Priya: We have a new tower launch with pre-launch pricing. Are you still looking in Madanpur?"", ""start"": 10.68, ""end"": 16.85}, {""speaker"": ""client"", ""text"": ""Swati: Yes, what's the price?"", ""start"": 17.79, ""end"": 19.82}, {""speaker"": ""agent"", ""text"": ""Priya: Starting at 4.8 Cr for 3 BHK. Possession by September 2026."", ""start"": 21.5, ""end"": 23.93}, {""speaker"": ""client"", ""text"": ""Swati: That's good. Send me the details on WhatsApp."", ""start"": 25.61, ""end"": 32.77}, {""speaker"": ""agent"", ""text"": ""Priya: Done. When can you visit?"", ""start"": 34.29, ""end"": 41.52}, {""speaker"": ""client"", ""text"": ""Swati: This weekend."", ""start"": 42.85, ""end"": 47.35}, {""speaker"": ""agent"", ""text"": ""Priya: I'll block Saturday 11 AM for you."", ""start"": 48.49, ""end"": 55.05}]",0.85 +TRX-00120,CAL-00261,en-IN,"Rahul: Hi Sneha, following up on your enquiry for Siddha Serena. Sneha: Hi, I was about to call you. Rahul: Great minds! What were you thinking? Sneha: The price is still high. Can you match DTC Sojon's rate? Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference? Sneha: Not really. I want mid-floor east facing. Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Sneha: Please do. We're ready to close quickly. Rahul: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Rahul: Hi Sneha, following up on your enquiry for Siddha Serena."", ""start"": 0.0, ""end"": 2.17}, {""speaker"": ""client"", ""text"": ""Sneha: Hi, I was about to call you."", ""start"": 3.14, ""end"": 7.94}, {""speaker"": ""agent"", ""text"": ""Rahul: Great minds! What were you thinking?"", ""start"": 8.69, ""end"": 12.21}, {""speaker"": ""client"", ""text"": ""Sneha: The price is still high. Can you match DTC Sojon's rate?"", ""start"": 13.1, ""end"": 15.74}, {""speaker"": ""agent"", ""text"": ""Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 16.35, ""end"": 23.47}, {""speaker"": ""client"", ""text"": ""Sneha: Not really. I want mid-floor east facing."", ""start"": 23.99, ""end"": 28.36}, {""speaker"": ""agent"", ""text"": ""Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 29.88, ""end"": 34.25}, {""speaker"": ""client"", ""text"": ""Sneha: Please do. We're ready to close quickly."", ""start"": 35.76, ""end"": 39.53}, {""speaker"": ""agent"", ""text"": ""Rahul: Will revert by tomorrow 2 PM."", ""start"": 40.44, ""end"": 45.1}]",0.87 +TRX-00121,CAL-00263,en-IN,"Ananya: Good morning Riya, wanted to share some updates about Atri Surya Toron. Riya: Hi, I was about to call you. Ananya: Great minds! What were you thinking? Riya: The price is still high. Can you match DTC Good Earth's rate? Ananya: I understand. Let me see what best I can do. Are you flexible on floor preference? Riya: Not really. I want mid-floor east facing. Ananya: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Riya: Please do. We're ready to close quickly. Ananya: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Ananya: Good morning Riya, wanted to share some updates about Atri Surya Toron."", ""start"": 0.0, ""end"": 6.37}, {""speaker"": ""client"", ""text"": ""Riya: Hi, I was about to call you."", ""start"": 7.17, ""end"": 9.39}, {""speaker"": ""agent"", ""text"": ""Ananya: Great minds! What were you thinking?"", ""start"": 11.03, ""end"": 18.93}, {""speaker"": ""client"", ""text"": ""Riya: The price is still high. Can you match DTC Good Earth's rate?"", ""start"": 20.12, ""end"": 27.05}, {""speaker"": ""agent"", ""text"": ""Ananya: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 28.14, ""end"": 35.81}, {""speaker"": ""client"", ""text"": ""Riya: Not really. I want mid-floor east facing."", ""start"": 36.66, ""end"": 42.64}, {""speaker"": ""agent"", ""text"": ""Ananya: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 44.3, ""end"": 47.54}, {""speaker"": ""client"", ""text"": ""Riya: Please do. We're ready to close quickly."", ""start"": 49.38, ""end"": 54.86}, {""speaker"": ""agent"", ""text"": ""Ananya: Will revert by tomorrow 2 PM."", ""start"": 56.75, ""end"": 60.51}]",0.91 +TRX-00122,CAL-00265,en-IN,"Vikram: Hi Riya, following up on your enquiry for Atri Surya Toron. Riya: Yes, tell me. Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat? Riya: Yes, what's the price? Vikram: Starting at 7.01 Cr for 3 BHK. Possession by July 2026. Riya: That's good. Send me the details on WhatsApp. Vikram: Done. When can you visit? Riya: This weekend. Vikram: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hi Riya, following up on your enquiry for Atri Surya Toron."", ""start"": 0.0, ""end"": 6.24}, {""speaker"": ""client"", ""text"": ""Riya: Yes, tell me."", ""start"": 7.15, ""end"": 9.9}, {""speaker"": ""agent"", ""text"": ""Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat?"", ""start"": 10.88, ""end"": 15.84}, {""speaker"": ""client"", ""text"": ""Riya: Yes, what's the price?"", ""start"": 16.52, ""end"": 20.05}, {""speaker"": ""agent"", ""text"": ""Vikram: Starting at 7.01 Cr for 3 BHK. Possession by July 2026."", ""start"": 21.62, ""end"": 25.45}, {""speaker"": ""client"", ""text"": ""Riya: That's good. Send me the details on WhatsApp."", ""start"": 25.96, ""end"": 32.66}, {""speaker"": ""agent"", ""text"": ""Vikram: Done. When can you visit?"", ""start"": 33.72, ""end"": 40.89}, {""speaker"": ""client"", ""text"": ""Riya: This weekend."", ""start"": 41.57, ""end"": 43.81}, {""speaker"": ""agent"", ""text"": ""Vikram: I'll block Saturday 11 AM for you."", ""start"": 45.47, ""end"": 49.93}]",0.84 +TRX-00123,CAL-00268,en-IN,"Priya: Good morning Vivek, wanted to share some updates about Godrej Elevate. Vivek: Yes, tell me. Priya: We have a new tower launch with pre-launch pricing. Are you still looking in Dum Dum? Vivek: Yes, what's the price? Priya: Starting at 6.67 Cr for 3 BHK. Possession by July 2026. Vivek: That's good. Send me the details on WhatsApp. Priya: Done. When can you visit? Vivek: This weekend. Priya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Priya: Good morning Vivek, wanted to share some updates about Godrej Elevate."", ""start"": 0.0, ""end"": 3.64}, {""speaker"": ""client"", ""text"": ""Vivek: Yes, tell me."", ""start"": 4.86, ""end"": 9.16}, {""speaker"": ""agent"", ""text"": ""Priya: We have a new tower launch with pre-launch pricing. Are you still looking in Dum Dum?"", ""start"": 10.36, ""end"": 12.63}, {""speaker"": ""client"", ""text"": ""Vivek: Yes, what's the price?"", ""start"": 13.44, ""end"": 20.89}, {""speaker"": ""agent"", ""text"": ""Priya: Starting at 6.67 Cr for 3 BHK. Possession by July 2026."", ""start"": 21.87, ""end"": 27.85}, {""speaker"": ""client"", ""text"": ""Vivek: That's good. Send me the details on WhatsApp."", ""start"": 28.62, ""end"": 30.8}, {""speaker"": ""agent"", ""text"": ""Priya: Done. When can you visit?"", ""start"": 32.24, ""end"": 39.43}, {""speaker"": ""client"", ""text"": ""Vivek: This weekend."", ""start"": 40.16, ""end"": 44.75}, {""speaker"": ""agent"", ""text"": ""Priya: I'll block Saturday 11 AM for you."", ""start"": 45.91, ""end"": 51.85}]",0.92 +TRX-00124,CAL-00274,en-IN,"Vikram: Good morning Rahul, wanted to share some updates about Shriram Grand City. Rahul: Hi, I was about to call you. Vikram: Great minds! What were you thinking? Rahul: The price is still high. Can you match Merlin Avana's rate? Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference? Rahul: Not really. I want mid-floor east facing. Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Rahul: Please do. We're ready to close quickly. Vikram: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Vikram: Good morning Rahul, wanted to share some updates about Shriram Grand City."", ""start"": 0.0, ""end"": 6.6}, {""speaker"": ""client"", ""text"": ""Rahul: Hi, I was about to call you."", ""start"": 8.25, ""end"": 10.83}, {""speaker"": ""agent"", ""text"": ""Vikram: Great minds! What were you thinking?"", ""start"": 12.38, ""end"": 18.36}, {""speaker"": ""client"", ""text"": ""Rahul: The price is still high. Can you match Merlin Avana's rate?"", ""start"": 18.87, ""end"": 23.96}, {""speaker"": ""agent"", ""text"": ""Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 25.19, ""end"": 28.24}, {""speaker"": ""client"", ""text"": ""Rahul: Not really. I want mid-floor east facing."", ""start"": 30.02, ""end"": 36.18}, {""speaker"": ""agent"", ""text"": ""Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 38.11, ""end"": 40.89}, {""speaker"": ""client"", ""text"": ""Rahul: Please do. We're ready to close quickly."", ""start"": 41.83, ""end"": 49.53}, {""speaker"": ""agent"", ""text"": ""Vikram: Will revert by tomorrow 2 PM."", ""start"": 50.55, ""end"": 53.48}]",0.85 +TRX-00125,CAL-00279,en-IN,"Priya: Hello Moumita, this is Priya from Velocity regarding Siddha Suburbia Bungalow. Moumita: Hi, I was about to call you. Priya: Great minds! What were you thinking? Moumita: The price is still high. Can you match Sugam Prakriti's rate? Priya: I understand. Let me see what best I can do. Are you flexible on floor preference? Moumita: Not really. I want mid-floor east facing. Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Moumita: Please do. We're ready to close quickly. Priya: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Priya: Hello Moumita, this is Priya from Velocity regarding Siddha Suburbia Bungalow."", ""start"": 0.0, ""end"": 6.46}, {""speaker"": ""client"", ""text"": ""Moumita: Hi, I was about to call you."", ""start"": 7.58, ""end"": 14.94}, {""speaker"": ""agent"", ""text"": ""Priya: Great minds! What were you thinking?"", ""start"": 15.66, ""end"": 20.24}, {""speaker"": ""client"", ""text"": ""Moumita: The price is still high. Can you match Sugam Prakriti's rate?"", ""start"": 22.08, ""end"": 26.15}, {""speaker"": ""agent"", ""text"": ""Priya: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 26.92, ""end"": 34.24}, {""speaker"": ""client"", ""text"": ""Moumita: Not really. I want mid-floor east facing."", ""start"": 35.49, ""end"": 39.43}, {""speaker"": ""agent"", ""text"": ""Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 40.17, ""end"": 47.62}, {""speaker"": ""client"", ""text"": ""Moumita: Please do. We're ready to close quickly."", ""start"": 48.13, ""end"": 50.29}, {""speaker"": ""agent"", ""text"": ""Priya: Will revert by tomorrow 2 PM."", ""start"": 51.51, ""end"": 54.49}]",0.87 +TRX-00126,CAL-00280,en-IN,"Ananya: Hello Rahul, this is Ananya from Velocity regarding DTC Sojon. Rahul: Yes, tell me. Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat? Rahul: Yes, what's the price? Ananya: Starting at 6.31 Cr for 3 BHK. Possession by August 2026. Rahul: That's good. Send me the details on WhatsApp. Ananya: Done. When can you visit? Rahul: This weekend. Ananya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Ananya: Hello Rahul, this is Ananya from Velocity regarding DTC Sojon."", ""start"": 0.0, ""end"": 7.0}, {""speaker"": ""client"", ""text"": ""Rahul: Yes, tell me."", ""start"": 8.2, ""end"": 13.43}, {""speaker"": ""agent"", ""text"": ""Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat?"", ""start"": 15.39, ""end"": 17.63}, {""speaker"": ""client"", ""text"": ""Rahul: Yes, what's the price?"", ""start"": 19.3, ""end"": 21.37}, {""speaker"": ""agent"", ""text"": ""Ananya: Starting at 6.31 Cr for 3 BHK. Possession by August 2026."", ""start"": 22.3, ""end"": 26.58}, {""speaker"": ""client"", ""text"": ""Rahul: That's good. Send me the details on WhatsApp."", ""start"": 27.91, ""end"": 33.31}, {""speaker"": ""agent"", ""text"": ""Ananya: Done. When can you visit?"", ""start"": 34.67, ""end"": 38.41}, {""speaker"": ""client"", ""text"": ""Rahul: This weekend."", ""start"": 39.1, ""end"": 41.72}, {""speaker"": ""agent"", ""text"": ""Ananya: I'll block Saturday 11 AM for you."", ""start"": 42.42, ""end"": 49.07}]",0.87 +TRX-00127,CAL-00281,en-IN,"Rahul: Hello Swati, this is Rahul from Velocity regarding Siddha Serena. Swati: Hi, I was about to call you. Rahul: Great minds! What were you thinking? Swati: The price is still high. Can you match Shriram Grand City's rate? Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference? Swati: Not really. I want mid-floor east facing. Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Swati: Please do. We're ready to close quickly. Rahul: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Rahul: Hello Swati, this is Rahul from Velocity regarding Siddha Serena."", ""start"": 0.0, ""end"": 5.31}, {""speaker"": ""client"", ""text"": ""Swati: Hi, I was about to call you."", ""start"": 6.96, ""end"": 9.95}, {""speaker"": ""agent"", ""text"": ""Rahul: Great minds! What were you thinking?"", ""start"": 11.65, ""end"": 18.93}, {""speaker"": ""client"", ""text"": ""Swati: The price is still high. Can you match Shriram Grand City's rate?"", ""start"": 20.61, ""end"": 22.81}, {""speaker"": ""agent"", ""text"": ""Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 24.07, ""end"": 28.05}, {""speaker"": ""client"", ""text"": ""Swati: Not really. I want mid-floor east facing."", ""start"": 29.02, ""end"": 31.04}, {""speaker"": ""agent"", ""text"": ""Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 31.83, ""end"": 36.69}, {""speaker"": ""client"", ""text"": ""Swati: Please do. We're ready to close quickly."", ""start"": 37.85, ""end"": 40.05}, {""speaker"": ""agent"", ""text"": ""Rahul: Will revert by tomorrow 2 PM."", ""start"": 41.23, ""end"": 43.72}]",0.83 +TRX-00128,CAL-00283,en-IN,"Vikram: Hello Moumita, this is Vikram from Velocity regarding Godrej Blue. Moumita: Hi, I was about to call you. Vikram: Great minds! What were you thinking? Moumita: The price is still high. Can you match Siddha Suburbia Bungalow's rate? Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference? Moumita: Not really. I want mid-floor east facing. Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Moumita: Please do. We're ready to close quickly. Vikram: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hello Moumita, this is Vikram from Velocity regarding Godrej Blue."", ""start"": 0.0, ""end"": 7.42}, {""speaker"": ""client"", ""text"": ""Moumita: Hi, I was about to call you."", ""start"": 8.67, ""end"": 14.55}, {""speaker"": ""agent"", ""text"": ""Vikram: Great minds! What were you thinking?"", ""start"": 15.84, ""end"": 18.78}, {""speaker"": ""client"", ""text"": ""Moumita: The price is still high. Can you match Siddha Suburbia Bungalow's rate?"", ""start"": 19.39, ""end"": 21.58}, {""speaker"": ""agent"", ""text"": ""Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 23.08, ""end"": 28.26}, {""speaker"": ""client"", ""text"": ""Moumita: Not really. I want mid-floor east facing."", ""start"": 28.91, ""end"": 33.73}, {""speaker"": ""agent"", ""text"": ""Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 34.91, ""end"": 37.66}, {""speaker"": ""client"", ""text"": ""Moumita: Please do. We're ready to close quickly."", ""start"": 38.83, ""end"": 43.44}, {""speaker"": ""agent"", ""text"": ""Vikram: Will revert by tomorrow 2 PM."", ""start"": 44.86, ""end"": 52.02}]",0.94 +TRX-00129,CAL-00284,en-IN,"Vikram: Hi Moumita, following up on your enquiry for Godrej Blue. Moumita: Yes, tell me. Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in New Town? Moumita: Yes, what's the price? Vikram: Starting at 5.7 Cr for 3 BHK. Possession by July 2026. Moumita: That's good. Send me the details on WhatsApp. Vikram: Done. When can you visit? Moumita: This weekend. Vikram: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hi Moumita, following up on your enquiry for Godrej Blue."", ""start"": 0.0, ""end"": 4.93}, {""speaker"": ""client"", ""text"": ""Moumita: Yes, tell me."", ""start"": 6.39, ""end"": 12.89}, {""speaker"": ""agent"", ""text"": ""Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in New Town?"", ""start"": 14.0, ""end"": 21.78}, {""speaker"": ""client"", ""text"": ""Moumita: Yes, what's the price?"", ""start"": 22.29, ""end"": 28.18}, {""speaker"": ""agent"", ""text"": ""Vikram: Starting at 5.7 Cr for 3 BHK. Possession by July 2026."", ""start"": 30.03, ""end"": 33.15}, {""speaker"": ""client"", ""text"": ""Moumita: That's good. Send me the details on WhatsApp."", ""start"": 33.94, ""end"": 40.2}, {""speaker"": ""agent"", ""text"": ""Vikram: Done. When can you visit?"", ""start"": 41.01, ""end"": 43.1}, {""speaker"": ""client"", ""text"": ""Moumita: This weekend."", ""start"": 43.97, ""end"": 50.05}, {""speaker"": ""agent"", ""text"": ""Vikram: I'll block Saturday 11 AM for you."", ""start"": 50.88, ""end"": 57.66}]",0.94 +TRX-00130,CAL-00287,en-IN,"Vikram: Hello Deb, this is Vikram from Velocity regarding Atri Aqua. Deb: Hi, I was about to call you. Vikram: Great minds! What were you thinking? Deb: The price is still high. Can you match Siddha Serena's rate? Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference? Deb: Not really. I want mid-floor east facing. Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Deb: Please do. We're ready to close quickly. Vikram: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hello Deb, this is Vikram from Velocity regarding Atri Aqua."", ""start"": 0.0, ""end"": 4.21}, {""speaker"": ""client"", ""text"": ""Deb: Hi, I was about to call you."", ""start"": 5.42, ""end"": 9.0}, {""speaker"": ""agent"", ""text"": ""Vikram: Great minds! What were you thinking?"", ""start"": 9.86, ""end"": 12.98}, {""speaker"": ""client"", ""text"": ""Deb: The price is still high. Can you match Siddha Serena's rate?"", ""start"": 14.87, ""end"": 19.74}, {""speaker"": ""agent"", ""text"": ""Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 20.39, ""end"": 24.93}, {""speaker"": ""client"", ""text"": ""Deb: Not really. I want mid-floor east facing."", ""start"": 25.69, ""end"": 32.99}, {""speaker"": ""agent"", ""text"": ""Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 34.15, ""end"": 39.63}, {""speaker"": ""client"", ""text"": ""Deb: Please do. We're ready to close quickly."", ""start"": 40.68, ""end"": 43.58}, {""speaker"": ""agent"", ""text"": ""Vikram: Will revert by tomorrow 2 PM."", ""start"": 45.15, ""end"": 52.24}]",0.93 +TRX-00131,CAL-00289,en-IN,"Rahul: Good morning Deb, wanted to share some updates about Atri Aqua. Deb: Hi, I was about to call you. Rahul: Great minds! What were you thinking? Deb: The price is still high. Can you match Sugam Prakriti's rate? Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference? Deb: Not really. I want mid-floor east facing. Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Deb: Please do. We're ready to close quickly. Rahul: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Rahul: Good morning Deb, wanted to share some updates about Atri Aqua."", ""start"": 0.0, ""end"": 3.15}, {""speaker"": ""client"", ""text"": ""Deb: Hi, I was about to call you."", ""start"": 3.66, ""end"": 11.26}, {""speaker"": ""agent"", ""text"": ""Rahul: Great minds! What were you thinking?"", ""start"": 12.37, ""end"": 16.69}, {""speaker"": ""client"", ""text"": ""Deb: The price is still high. Can you match Sugam Prakriti's rate?"", ""start"": 17.5, ""end"": 23.53}, {""speaker"": ""agent"", ""text"": ""Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 24.71, ""end"": 30.7}, {""speaker"": ""client"", ""text"": ""Deb: Not really. I want mid-floor east facing."", ""start"": 31.98, ""end"": 34.95}, {""speaker"": ""agent"", ""text"": ""Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 36.86, ""end"": 41.14}, {""speaker"": ""client"", ""text"": ""Deb: Please do. We're ready to close quickly."", ""start"": 43.08, ""end"": 45.46}, {""speaker"": ""agent"", ""text"": ""Rahul: Will revert by tomorrow 2 PM."", ""start"": 46.06, ""end"": 53.52}]",0.84 +TRX-00132,CAL-00293,en-IN,"Vikram: Hello Rohan, this is Vikram from Velocity regarding DTC Good Earth. Rohan: Hi, I was about to call you. Vikram: Great minds! What were you thinking? Rohan: The price is still high. Can you match Godrej Elevate's rate? Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference? Rohan: Not really. I want mid-floor east facing. Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Rohan: Please do. We're ready to close quickly. Vikram: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hello Rohan, this is Vikram from Velocity regarding DTC Good Earth."", ""start"": 0.0, ""end"": 5.45}, {""speaker"": ""client"", ""text"": ""Rohan: Hi, I was about to call you."", ""start"": 6.86, ""end"": 11.17}, {""speaker"": ""agent"", ""text"": ""Vikram: Great minds! What were you thinking?"", ""start"": 13.04, ""end"": 15.82}, {""speaker"": ""client"", ""text"": ""Rohan: The price is still high. Can you match Godrej Elevate's rate?"", ""start"": 17.54, ""end"": 23.91}, {""speaker"": ""agent"", ""text"": ""Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 25.34, ""end"": 33.16}, {""speaker"": ""client"", ""text"": ""Rohan: Not really. I want mid-floor east facing."", ""start"": 33.69, ""end"": 37.62}, {""speaker"": ""agent"", ""text"": ""Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 39.5, ""end"": 46.02}, {""speaker"": ""client"", ""text"": ""Rohan: Please do. We're ready to close quickly."", ""start"": 47.71, ""end"": 55.33}, {""speaker"": ""agent"", ""text"": ""Vikram: Will revert by tomorrow 2 PM."", ""start"": 56.95, ""end"": 64.66}]",0.96 +TRX-00133,CAL-00295,en-IN,"Vikram: Hi Sonal, following up on your enquiry for Siddha Sky Waterfront. Sonal: Hi, I was about to call you. Vikram: Great minds! What were you thinking? Sonal: The price is still high. Can you match Sugam Prakriti's rate? Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference? Sonal: Not really. I want mid-floor east facing. Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Sonal: Please do. We're ready to close quickly. Vikram: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hi Sonal, following up on your enquiry for Siddha Sky Waterfront."", ""start"": 0.0, ""end"": 4.19}, {""speaker"": ""client"", ""text"": ""Sonal: Hi, I was about to call you."", ""start"": 6.12, ""end"": 9.2}, {""speaker"": ""agent"", ""text"": ""Vikram: Great minds! What were you thinking?"", ""start"": 10.72, ""end"": 14.09}, {""speaker"": ""client"", ""text"": ""Sonal: The price is still high. Can you match Sugam Prakriti's rate?"", ""start"": 15.35, ""end"": 22.49}, {""speaker"": ""agent"", ""text"": ""Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 24.18, ""end"": 27.81}, {""speaker"": ""client"", ""text"": ""Sonal: Not really. I want mid-floor east facing."", ""start"": 29.43, ""end"": 37.03}, {""speaker"": ""agent"", ""text"": ""Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 38.43, ""end"": 43.17}, {""speaker"": ""client"", ""text"": ""Sonal: Please do. We're ready to close quickly."", ""start"": 44.75, ""end"": 51.9}, {""speaker"": ""agent"", ""text"": ""Vikram: Will revert by tomorrow 2 PM."", ""start"": 53.77, ""end"": 61.73}]",0.82 +TRX-00134,CAL-00298,en-IN,"Vikram: Hello Aditya, this is Vikram from Velocity regarding Siddha Suburbia Bungalow. Aditya: Hi, I was about to call you. Vikram: Great minds! What were you thinking? Aditya: The price is still high. Can you match Sugam Prakriti's rate? Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference? Aditya: Not really. I want mid-floor east facing. Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Aditya: Please do. We're ready to close quickly. Vikram: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hello Aditya, this is Vikram from Velocity regarding Siddha Suburbia Bungalow."", ""start"": 0.0, ""end"": 6.99}, {""speaker"": ""client"", ""text"": ""Aditya: Hi, I was about to call you."", ""start"": 8.69, ""end"": 13.66}, {""speaker"": ""agent"", ""text"": ""Vikram: Great minds! What were you thinking?"", ""start"": 15.33, ""end"": 19.0}, {""speaker"": ""client"", ""text"": ""Aditya: The price is still high. Can you match Sugam Prakriti's rate?"", ""start"": 19.66, ""end"": 25.18}, {""speaker"": ""agent"", ""text"": ""Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 26.27, ""end"": 30.27}, {""speaker"": ""client"", ""text"": ""Aditya: Not really. I want mid-floor east facing."", ""start"": 32.05, ""end"": 36.11}, {""speaker"": ""agent"", ""text"": ""Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 36.87, ""end"": 39.32}, {""speaker"": ""client"", ""text"": ""Aditya: Please do. We're ready to close quickly."", ""start"": 40.46, ""end"": 46.21}, {""speaker"": ""agent"", ""text"": ""Vikram: Will revert by tomorrow 2 PM."", ""start"": 46.92, ""end"": 49.05}]",0.85 +TRX-00135,CAL-00300,en-IN,"Ananya: Hello Debjani, this is Ananya from Velocity regarding Siddha Serena. Debjani: Hi, I was about to call you. Ananya: Great minds! What were you thinking? Debjani: The price is still high. Can you match Atri Aqua's rate? Ananya: I understand. Let me see what best I can do. Are you flexible on floor preference? Debjani: Not really. I want mid-floor east facing. Ananya: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Debjani: Please do. We're ready to close quickly. Ananya: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Ananya: Hello Debjani, this is Ananya from Velocity regarding Siddha Serena."", ""start"": 0.0, ""end"": 3.95}, {""speaker"": ""client"", ""text"": ""Debjani: Hi, I was about to call you."", ""start"": 5.55, ""end"": 12.79}, {""speaker"": ""agent"", ""text"": ""Ananya: Great minds! What were you thinking?"", ""start"": 14.01, ""end"": 21.98}, {""speaker"": ""client"", ""text"": ""Debjani: The price is still high. Can you match Atri Aqua's rate?"", ""start"": 23.34, ""end"": 27.49}, {""speaker"": ""agent"", ""text"": ""Ananya: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 29.41, ""end"": 33.96}, {""speaker"": ""client"", ""text"": ""Debjani: Not really. I want mid-floor east facing."", ""start"": 35.39, ""end"": 41.19}, {""speaker"": ""agent"", ""text"": ""Ananya: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 42.7, ""end"": 47.5}, {""speaker"": ""client"", ""text"": ""Debjani: Please do. We're ready to close quickly."", ""start"": 48.59, ""end"": 54.83}, {""speaker"": ""agent"", ""text"": ""Ananya: Will revert by tomorrow 2 PM."", ""start"": 56.22, ""end"": 61.38}]",0.94 +TRX-00136,CAL-00301,en-IN,"Ananya: Good morning Debjani, wanted to share some updates about Siddha Serena. Debjani: Yes, tell me. Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in New Town? Debjani: Yes, what's the price? Ananya: Starting at 2.16 Cr for 3 BHK. Possession by June 2026. Debjani: That's good. Send me the details on WhatsApp. Ananya: Done. When can you visit? Debjani: This weekend. Ananya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Ananya: Good morning Debjani, wanted to share some updates about Siddha Serena."", ""start"": 0.0, ""end"": 7.74}, {""speaker"": ""client"", ""text"": ""Debjani: Yes, tell me."", ""start"": 8.81, ""end"": 11.42}, {""speaker"": ""agent"", ""text"": ""Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in New Town?"", ""start"": 12.39, ""end"": 14.69}, {""speaker"": ""client"", ""text"": ""Debjani: Yes, what's the price?"", ""start"": 15.22, ""end"": 22.6}, {""speaker"": ""agent"", ""text"": ""Ananya: Starting at 2.16 Cr for 3 BHK. Possession by June 2026."", ""start"": 23.79, ""end"": 29.36}, {""speaker"": ""client"", ""text"": ""Debjani: That's good. Send me the details on WhatsApp."", ""start"": 31.06, ""end"": 35.8}, {""speaker"": ""agent"", ""text"": ""Ananya: Done. When can you visit?"", ""start"": 37.78, ""end"": 42.96}, {""speaker"": ""client"", ""text"": ""Debjani: This weekend."", ""start"": 43.61, ""end"": 47.75}, {""speaker"": ""agent"", ""text"": ""Ananya: I'll block Saturday 11 AM for you."", ""start"": 48.3, ""end"": 55.71}]",0.82 +TRX-00137,CAL-00302,en-IN,"Rahul: Good morning Debjani, wanted to share some updates about Siddha Serena. Debjani: Hi, I was about to call you. Rahul: Great minds! What were you thinking? Debjani: The price is still high. Can you match Godrej Blue's rate? Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference? Debjani: Not really. I want mid-floor east facing. Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Debjani: Please do. We're ready to close quickly. Rahul: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Rahul: Good morning Debjani, wanted to share some updates about Siddha Serena."", ""start"": 0.0, ""end"": 7.0}, {""speaker"": ""client"", ""text"": ""Debjani: Hi, I was about to call you."", ""start"": 8.22, ""end"": 15.27}, {""speaker"": ""agent"", ""text"": ""Rahul: Great minds! What were you thinking?"", ""start"": 17.09, ""end"": 22.48}, {""speaker"": ""client"", ""text"": ""Debjani: The price is still high. Can you match Godrej Blue's rate?"", ""start"": 23.6, ""end"": 29.3}, {""speaker"": ""agent"", ""text"": ""Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 30.04, ""end"": 37.42}, {""speaker"": ""client"", ""text"": ""Debjani: Not really. I want mid-floor east facing."", ""start"": 37.94, ""end"": 43.08}, {""speaker"": ""agent"", ""text"": ""Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 44.09, ""end"": 51.65}, {""speaker"": ""client"", ""text"": ""Debjani: Please do. We're ready to close quickly."", ""start"": 52.22, ""end"": 60.08}, {""speaker"": ""agent"", ""text"": ""Rahul: Will revert by tomorrow 2 PM."", ""start"": 60.99, ""end"": 67.99}]",0.83 +TRX-00138,CAL-00304,en-IN,"Priya: Good morning Aditya, wanted to share some updates about Godrej Blue. Aditya: Yes, tell me. Priya: We have a new tower launch with pre-launch pricing. Are you still looking in New Town? Aditya: Yes, what's the price? Priya: Starting at 5.97 Cr for 3 BHK. Possession by October 2026. Aditya: That's good. Send me the details on WhatsApp. Priya: Done. When can you visit? Aditya: This weekend. Priya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Priya: Good morning Aditya, wanted to share some updates about Godrej Blue."", ""start"": 0.0, ""end"": 3.55}, {""speaker"": ""client"", ""text"": ""Aditya: Yes, tell me."", ""start"": 4.07, ""end"": 6.73}, {""speaker"": ""agent"", ""text"": ""Priya: We have a new tower launch with pre-launch pricing. Are you still looking in New Town?"", ""start"": 7.47, ""end"": 13.2}, {""speaker"": ""client"", ""text"": ""Aditya: Yes, what's the price?"", ""start"": 14.51, ""end"": 21.98}, {""speaker"": ""agent"", ""text"": ""Priya: Starting at 5.97 Cr for 3 BHK. Possession by October 2026."", ""start"": 22.9, ""end"": 28.96}, {""speaker"": ""client"", ""text"": ""Aditya: That's good. Send me the details on WhatsApp."", ""start"": 29.62, ""end"": 35.18}, {""speaker"": ""agent"", ""text"": ""Priya: Done. When can you visit?"", ""start"": 36.89, ""end"": 42.66}, {""speaker"": ""client"", ""text"": ""Aditya: This weekend."", ""start"": 44.32, ""end"": 52.25}, {""speaker"": ""agent"", ""text"": ""Priya: I'll block Saturday 11 AM for you."", ""start"": 53.56, ""end"": 56.55}]",0.93 +TRX-00139,CAL-00305,en-IN,"Vikram: Hi Arjun, following up on your enquiry for Ambuja Utpaala. Arjun: Hi, I was about to call you. Vikram: Great minds! What were you thinking? Arjun: The price is still high. Can you match Eden Devprayag's rate? Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference? Arjun: Not really. I want mid-floor east facing. Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Arjun: Please do. We're ready to close quickly. Vikram: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hi Arjun, following up on your enquiry for Ambuja Utpaala."", ""start"": 0.0, ""end"": 5.05}, {""speaker"": ""client"", ""text"": ""Arjun: Hi, I was about to call you."", ""start"": 5.55, ""end"": 7.69}, {""speaker"": ""agent"", ""text"": ""Vikram: Great minds! What were you thinking?"", ""start"": 8.43, ""end"": 10.45}, {""speaker"": ""client"", ""text"": ""Arjun: The price is still high. Can you match Eden Devprayag's rate?"", ""start"": 11.2, ""end"": 15.42}, {""speaker"": ""agent"", ""text"": ""Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 16.13, ""end"": 23.18}, {""speaker"": ""client"", ""text"": ""Arjun: Not really. I want mid-floor east facing."", ""start"": 25.03, ""end"": 28.55}, {""speaker"": ""agent"", ""text"": ""Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 29.17, ""end"": 34.01}, {""speaker"": ""client"", ""text"": ""Arjun: Please do. We're ready to close quickly."", ""start"": 35.65, ""end"": 39.82}, {""speaker"": ""agent"", ""text"": ""Vikram: Will revert by tomorrow 2 PM."", ""start"": 40.63, ""end"": 43.36}]",0.86 +TRX-00140,CAL-00306,en-IN,"Priya: Hi Prasenjit, following up on your enquiry for Merlin Avana. Prasenjit: Yes, tell me. Priya: We have a new tower launch with pre-launch pricing. Are you still looking in Tangra? Prasenjit: Yes, what's the price? Priya: Starting at 2.05 Cr for 3 BHK. Possession by July 2026. Prasenjit: That's good. Send me the details on WhatsApp. Priya: Done. When can you visit? Prasenjit: This weekend. Priya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Priya: Hi Prasenjit, following up on your enquiry for Merlin Avana."", ""start"": 0.0, ""end"": 7.07}, {""speaker"": ""client"", ""text"": ""Prasenjit: Yes, tell me."", ""start"": 8.5, ""end"": 16.43}, {""speaker"": ""agent"", ""text"": ""Priya: We have a new tower launch with pre-launch pricing. Are you still looking in Tangra?"", ""start"": 17.03, ""end"": 22.5}, {""speaker"": ""client"", ""text"": ""Prasenjit: Yes, what's the price?"", ""start"": 24.31, ""end"": 28.41}, {""speaker"": ""agent"", ""text"": ""Priya: Starting at 2.05 Cr for 3 BHK. Possession by July 2026."", ""start"": 29.95, ""end"": 37.76}, {""speaker"": ""client"", ""text"": ""Prasenjit: That's good. Send me the details on WhatsApp."", ""start"": 39.3, ""end"": 43.54}, {""speaker"": ""agent"", ""text"": ""Priya: Done. When can you visit?"", ""start"": 44.67, ""end"": 51.19}, {""speaker"": ""client"", ""text"": ""Prasenjit: This weekend."", ""start"": 52.57, ""end"": 56.86}, {""speaker"": ""agent"", ""text"": ""Priya: I'll block Saturday 11 AM for you."", ""start"": 57.7, ""end"": 62.39}]",0.89 +TRX-00141,CAL-00312,en-IN,"Priya: Hello Sonal, this is Priya from Velocity regarding Godrej Blue. Sonal: Hi, I was about to call you. Priya: Great minds! What were you thinking? Sonal: The price is still high. Can you match DTC Good Earth's rate? Priya: I understand. Let me see what best I can do. Are you flexible on floor preference? Sonal: Not really. I want mid-floor east facing. Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Sonal: Please do. We're ready to close quickly. Priya: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Priya: Hello Sonal, this is Priya from Velocity regarding Godrej Blue."", ""start"": 0.0, ""end"": 3.36}, {""speaker"": ""client"", ""text"": ""Sonal: Hi, I was about to call you."", ""start"": 5.07, ""end"": 9.93}, {""speaker"": ""agent"", ""text"": ""Priya: Great minds! What were you thinking?"", ""start"": 11.08, ""end"": 18.61}, {""speaker"": ""client"", ""text"": ""Sonal: The price is still high. Can you match DTC Good Earth's rate?"", ""start"": 19.77, ""end"": 23.29}, {""speaker"": ""agent"", ""text"": ""Priya: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 23.81, ""end"": 27.58}, {""speaker"": ""client"", ""text"": ""Sonal: Not really. I want mid-floor east facing."", ""start"": 29.54, ""end"": 35.72}, {""speaker"": ""agent"", ""text"": ""Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 36.99, ""end"": 42.78}, {""speaker"": ""client"", ""text"": ""Sonal: Please do. We're ready to close quickly."", ""start"": 43.75, ""end"": 46.65}, {""speaker"": ""agent"", ""text"": ""Priya: Will revert by tomorrow 2 PM."", ""start"": 47.65, ""end"": 50.7}]",0.9 +TRX-00142,CAL-00316,en-IN,"Rahul: Hello Nilesh, this is Rahul from Velocity regarding Siddha Suburbia Bungalow. Nilesh: Hi, I was about to call you. Rahul: Great minds! What were you thinking? Nilesh: The price is still high. Can you match Sugam Prakriti's rate? Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference? Nilesh: Not really. I want mid-floor east facing. Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Nilesh: Please do. We're ready to close quickly. Rahul: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Rahul: Hello Nilesh, this is Rahul from Velocity regarding Siddha Suburbia Bungalow."", ""start"": 0.0, ""end"": 3.89}, {""speaker"": ""client"", ""text"": ""Nilesh: Hi, I was about to call you."", ""start"": 5.48, ""end"": 10.16}, {""speaker"": ""agent"", ""text"": ""Rahul: Great minds! What were you thinking?"", ""start"": 11.86, ""end"": 16.03}, {""speaker"": ""client"", ""text"": ""Nilesh: The price is still high. Can you match Sugam Prakriti's rate?"", ""start"": 17.02, ""end"": 24.88}, {""speaker"": ""agent"", ""text"": ""Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 26.05, ""end"": 32.81}, {""speaker"": ""client"", ""text"": ""Nilesh: Not really. I want mid-floor east facing."", ""start"": 33.63, ""end"": 41.01}, {""speaker"": ""agent"", ""text"": ""Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 42.83, ""end"": 45.39}, {""speaker"": ""client"", ""text"": ""Nilesh: Please do. We're ready to close quickly."", ""start"": 46.59, ""end"": 49.27}, {""speaker"": ""agent"", ""text"": ""Rahul: Will revert by tomorrow 2 PM."", ""start"": 49.8, ""end"": 54.79}]",0.91 +TRX-00143,CAL-00317,en-IN,"Ananya: Hello Deb, this is Ananya from Velocity regarding Ambuja Utpaala. Deb: Hi, I was about to call you. Ananya: Great minds! What were you thinking? Deb: The price is still high. Can you match Merlin Avana's rate? Ananya: I understand. Let me see what best I can do. Are you flexible on floor preference? Deb: Not really. I want mid-floor east facing. Ananya: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Deb: Please do. We're ready to close quickly. Ananya: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Ananya: Hello Deb, this is Ananya from Velocity regarding Ambuja Utpaala."", ""start"": 0.0, ""end"": 6.12}, {""speaker"": ""client"", ""text"": ""Deb: Hi, I was about to call you."", ""start"": 7.81, ""end"": 10.14}, {""speaker"": ""agent"", ""text"": ""Ananya: Great minds! What were you thinking?"", ""start"": 11.05, ""end"": 13.53}, {""speaker"": ""client"", ""text"": ""Deb: The price is still high. Can you match Merlin Avana's rate?"", ""start"": 15.51, ""end"": 20.23}, {""speaker"": ""agent"", ""text"": ""Ananya: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 21.78, ""end"": 28.85}, {""speaker"": ""client"", ""text"": ""Deb: Not really. I want mid-floor east facing."", ""start"": 30.61, ""end"": 37.9}, {""speaker"": ""agent"", ""text"": ""Ananya: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 39.49, ""end"": 47.34}, {""speaker"": ""client"", ""text"": ""Deb: Please do. We're ready to close quickly."", ""start"": 47.96, ""end"": 53.08}, {""speaker"": ""agent"", ""text"": ""Ananya: Will revert by tomorrow 2 PM."", ""start"": 54.5, ""end"": 57.41}]",0.91 +TRX-00144,CAL-00323,en-IN,"Vikram: Hi Prasenjit, following up on your enquiry for Godrej Blue. Prasenjit: Yes, tell me. Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in New Town? Prasenjit: Yes, what's the price? Vikram: Starting at 6.3 Cr for 3 BHK. Possession by August 2026. Prasenjit: That's good. Send me the details on WhatsApp. Vikram: Done. When can you visit? Prasenjit: This weekend. Vikram: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hi Prasenjit, following up on your enquiry for Godrej Blue."", ""start"": 0.0, ""end"": 4.82}, {""speaker"": ""client"", ""text"": ""Prasenjit: Yes, tell me."", ""start"": 5.34, ""end"": 8.8}, {""speaker"": ""agent"", ""text"": ""Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in New Town?"", ""start"": 9.99, ""end"": 12.89}, {""speaker"": ""client"", ""text"": ""Prasenjit: Yes, what's the price?"", ""start"": 14.86, ""end"": 18.37}, {""speaker"": ""agent"", ""text"": ""Vikram: Starting at 6.3 Cr for 3 BHK. Possession by August 2026."", ""start"": 19.08, ""end"": 25.87}, {""speaker"": ""client"", ""text"": ""Prasenjit: That's good. Send me the details on WhatsApp."", ""start"": 27.09, ""end"": 34.75}, {""speaker"": ""agent"", ""text"": ""Vikram: Done. When can you visit?"", ""start"": 35.5, ""end"": 39.74}, {""speaker"": ""client"", ""text"": ""Prasenjit: This weekend."", ""start"": 40.26, ""end"": 44.22}, {""speaker"": ""agent"", ""text"": ""Vikram: I'll block Saturday 11 AM for you."", ""start"": 45.21, ""end"": 51.9}]",0.94 +TRX-00145,CAL-00324,en-IN,"Priya: Hi Prasenjit, following up on your enquiry for Godrej Blue. Prasenjit: Hi, I was about to call you. Priya: Great minds! What were you thinking? Prasenjit: The price is still high. Can you match DTC Sojon's rate? Priya: I understand. Let me see what best I can do. Are you flexible on floor preference? Prasenjit: Not really. I want mid-floor east facing. Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Prasenjit: Please do. We're ready to close quickly. Priya: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Priya: Hi Prasenjit, following up on your enquiry for Godrej Blue."", ""start"": 0.0, ""end"": 6.14}, {""speaker"": ""client"", ""text"": ""Prasenjit: Hi, I was about to call you."", ""start"": 7.92, ""end"": 15.53}, {""speaker"": ""agent"", ""text"": ""Priya: Great minds! What were you thinking?"", ""start"": 16.85, ""end"": 23.08}, {""speaker"": ""client"", ""text"": ""Prasenjit: The price is still high. Can you match DTC Sojon's rate?"", ""start"": 24.56, ""end"": 28.9}, {""speaker"": ""agent"", ""text"": ""Priya: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 30.64, ""end"": 37.71}, {""speaker"": ""client"", ""text"": ""Prasenjit: Not really. I want mid-floor east facing."", ""start"": 39.35, ""end"": 42.97}, {""speaker"": ""agent"", ""text"": ""Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 43.9, ""end"": 51.47}, {""speaker"": ""client"", ""text"": ""Prasenjit: Please do. We're ready to close quickly."", ""start"": 52.2, ""end"": 59.99}, {""speaker"": ""agent"", ""text"": ""Priya: Will revert by tomorrow 2 PM."", ""start"": 61.47, ""end"": 68.46}]",0.93 +TRX-00146,CAL-00325,en-IN,"Priya: Hello Neha, this is Priya from Velocity regarding Siddha Suburbia Bungalow. Neha: Hi, I was about to call you. Priya: Great minds! What were you thinking? Neha: The price is still high. Can you match Atri Aqua's rate? Priya: I understand. Let me see what best I can do. Are you flexible on floor preference? Neha: Not really. I want mid-floor east facing. Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Neha: Please do. We're ready to close quickly. Priya: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Priya: Hello Neha, this is Priya from Velocity regarding Siddha Suburbia Bungalow."", ""start"": 0.0, ""end"": 5.07}, {""speaker"": ""client"", ""text"": ""Neha: Hi, I was about to call you."", ""start"": 6.33, ""end"": 11.36}, {""speaker"": ""agent"", ""text"": ""Priya: Great minds! What were you thinking?"", ""start"": 12.25, ""end"": 19.25}, {""speaker"": ""client"", ""text"": ""Neha: The price is still high. Can you match Atri Aqua's rate?"", ""start"": 19.95, ""end"": 24.54}, {""speaker"": ""agent"", ""text"": ""Priya: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 26.23, ""end"": 29.5}, {""speaker"": ""client"", ""text"": ""Neha: Not really. I want mid-floor east facing."", ""start"": 30.84, ""end"": 37.13}, {""speaker"": ""agent"", ""text"": ""Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 37.74, ""end"": 41.57}, {""speaker"": ""client"", ""text"": ""Neha: Please do. We're ready to close quickly."", ""start"": 42.84, ""end"": 49.47}, {""speaker"": ""agent"", ""text"": ""Priya: Will revert by tomorrow 2 PM."", ""start"": 51.44, ""end"": 59.19}]",0.92 +TRX-00147,CAL-00326,en-IN,"Rahul: Hi Neha, following up on your enquiry for Siddha Suburbia Bungalow. Neha: Yes, tell me. Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Madanpur? Neha: Yes, what's the price? Rahul: Starting at 7.13 Cr for 3 BHK. Possession by July 2026. Neha: That's good. Send me the details on WhatsApp. Rahul: Done. When can you visit? Neha: This weekend. Rahul: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Rahul: Hi Neha, following up on your enquiry for Siddha Suburbia Bungalow."", ""start"": 0.0, ""end"": 3.85}, {""speaker"": ""client"", ""text"": ""Neha: Yes, tell me."", ""start"": 5.41, ""end"": 10.56}, {""speaker"": ""agent"", ""text"": ""Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Madanpur?"", ""start"": 11.89, ""end"": 17.55}, {""speaker"": ""client"", ""text"": ""Neha: Yes, what's the price?"", ""start"": 18.3, ""end"": 21.0}, {""speaker"": ""agent"", ""text"": ""Rahul: Starting at 7.13 Cr for 3 BHK. Possession by July 2026."", ""start"": 22.02, ""end"": 24.55}, {""speaker"": ""client"", ""text"": ""Neha: That's good. Send me the details on WhatsApp."", ""start"": 26.39, ""end"": 29.74}, {""speaker"": ""agent"", ""text"": ""Rahul: Done. When can you visit?"", ""start"": 31.64, ""end"": 36.4}, {""speaker"": ""client"", ""text"": ""Neha: This weekend."", ""start"": 37.89, ""end"": 41.24}, {""speaker"": ""agent"", ""text"": ""Rahul: I'll block Saturday 11 AM for you."", ""start"": 43.04, ""end"": 48.95}]",0.91 +TRX-00148,CAL-00327,en-IN,"Vikram: Hello Meera, this is Vikram from Velocity regarding DTC Good Earth. Meera: Yes, tell me. Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in New Town? Meera: Yes, what's the price? Vikram: Starting at 2.41 Cr for 3 BHK. Possession by July 2026. Meera: That's good. Send me the details on WhatsApp. Vikram: Done. When can you visit? Meera: This weekend. Vikram: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hello Meera, this is Vikram from Velocity regarding DTC Good Earth."", ""start"": 0.0, ""end"": 5.8}, {""speaker"": ""client"", ""text"": ""Meera: Yes, tell me."", ""start"": 7.78, ""end"": 14.08}, {""speaker"": ""agent"", ""text"": ""Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in New Town?"", ""start"": 15.67, ""end"": 19.39}, {""speaker"": ""client"", ""text"": ""Meera: Yes, what's the price?"", ""start"": 20.13, ""end"": 26.01}, {""speaker"": ""agent"", ""text"": ""Vikram: Starting at 2.41 Cr for 3 BHK. Possession by July 2026."", ""start"": 27.4, ""end"": 29.97}, {""speaker"": ""client"", ""text"": ""Meera: That's good. Send me the details on WhatsApp."", ""start"": 31.94, ""end"": 39.53}, {""speaker"": ""agent"", ""text"": ""Vikram: Done. When can you visit?"", ""start"": 40.04, ""end"": 42.71}, {""speaker"": ""client"", ""text"": ""Meera: This weekend."", ""start"": 43.94, ""end"": 46.66}, {""speaker"": ""agent"", ""text"": ""Vikram: I'll block Saturday 11 AM for you."", ""start"": 48.63, ""end"": 55.52}]",0.91 +TRX-00149,CAL-00328,en-IN,"Priya: Hello Meera, this is Priya from Velocity regarding DTC Good Earth. Meera: Hi, I was about to call you. Priya: Great minds! What were you thinking? Meera: The price is still high. Can you match Godrej Elevate's rate? Priya: I understand. Let me see what best I can do. Are you flexible on floor preference? Meera: Not really. I want mid-floor east facing. Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Meera: Please do. We're ready to close quickly. Priya: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Priya: Hello Meera, this is Priya from Velocity regarding DTC Good Earth."", ""start"": 0.0, ""end"": 2.48}, {""speaker"": ""client"", ""text"": ""Meera: Hi, I was about to call you."", ""start"": 3.03, ""end"": 7.06}, {""speaker"": ""agent"", ""text"": ""Priya: Great minds! What were you thinking?"", ""start"": 7.99, ""end"": 11.5}, {""speaker"": ""client"", ""text"": ""Meera: The price is still high. Can you match Godrej Elevate's rate?"", ""start"": 13.18, ""end"": 18.0}, {""speaker"": ""agent"", ""text"": ""Priya: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 19.53, ""end"": 23.55}, {""speaker"": ""client"", ""text"": ""Meera: Not really. I want mid-floor east facing."", ""start"": 24.15, ""end"": 28.28}, {""speaker"": ""agent"", ""text"": ""Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 30.21, ""end"": 35.98}, {""speaker"": ""client"", ""text"": ""Meera: Please do. We're ready to close quickly."", ""start"": 37.83, ""end"": 41.93}, {""speaker"": ""agent"", ""text"": ""Priya: Will revert by tomorrow 2 PM."", ""start"": 43.13, ""end"": 45.94}]",0.84 +TRX-00150,CAL-00329,en-IN,"Rahul: Good morning Meera, wanted to share some updates about DTC Good Earth. Meera: Hi, I was about to call you. Rahul: Great minds! What were you thinking? Meera: The price is still high. Can you match DTC Sojon's rate? Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference? Meera: Not really. I want mid-floor east facing. Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Meera: Please do. We're ready to close quickly. Rahul: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Rahul: Good morning Meera, wanted to share some updates about DTC Good Earth."", ""start"": 0.0, ""end"": 6.08}, {""speaker"": ""client"", ""text"": ""Meera: Hi, I was about to call you."", ""start"": 7.56, ""end"": 11.04}, {""speaker"": ""agent"", ""text"": ""Rahul: Great minds! What were you thinking?"", ""start"": 13.02, ""end"": 15.95}, {""speaker"": ""client"", ""text"": ""Meera: The price is still high. Can you match DTC Sojon's rate?"", ""start"": 17.15, ""end"": 24.46}, {""speaker"": ""agent"", ""text"": ""Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 25.73, ""end"": 29.8}, {""speaker"": ""client"", ""text"": ""Meera: Not really. I want mid-floor east facing."", ""start"": 30.8, ""end"": 35.97}, {""speaker"": ""agent"", ""text"": ""Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 37.76, ""end"": 39.83}, {""speaker"": ""client"", ""text"": ""Meera: Please do. We're ready to close quickly."", ""start"": 40.6, ""end"": 45.85}, {""speaker"": ""agent"", ""text"": ""Rahul: Will revert by tomorrow 2 PM."", ""start"": 46.97, ""end"": 53.54}]",0.94 +TRX-00151,CAL-00330,en-IN,"Ananya: Hello Tanvi, this is Ananya from Velocity regarding Ambuja Utpaala. Tanvi: Yes, tell me. Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Tollygunge? Tanvi: Yes, what's the price? Ananya: Starting at 4.08 Cr for 3 BHK. Possession by August 2026. Tanvi: That's good. Send me the details on WhatsApp. Ananya: Done. When can you visit? Tanvi: This weekend. Ananya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Ananya: Hello Tanvi, this is Ananya from Velocity regarding Ambuja Utpaala."", ""start"": 0.0, ""end"": 5.23}, {""speaker"": ""client"", ""text"": ""Tanvi: Yes, tell me."", ""start"": 7.06, ""end"": 10.93}, {""speaker"": ""agent"", ""text"": ""Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Tollygunge?"", ""start"": 11.85, ""end"": 18.61}, {""speaker"": ""client"", ""text"": ""Tanvi: Yes, what's the price?"", ""start"": 19.74, ""end"": 22.13}, {""speaker"": ""agent"", ""text"": ""Ananya: Starting at 4.08 Cr for 3 BHK. Possession by August 2026."", ""start"": 22.77, ""end"": 28.33}, {""speaker"": ""client"", ""text"": ""Tanvi: That's good. Send me the details on WhatsApp."", ""start"": 29.43, ""end"": 31.55}, {""speaker"": ""agent"", ""text"": ""Ananya: Done. When can you visit?"", ""start"": 32.87, ""end"": 36.48}, {""speaker"": ""client"", ""text"": ""Tanvi: This weekend."", ""start"": 37.8, ""end"": 43.81}, {""speaker"": ""agent"", ""text"": ""Ananya: I'll block Saturday 11 AM for you."", ""start"": 45.02, ""end"": 49.45}]",0.82 +TRX-00152,CAL-00333,en-IN,"Vikram: Good morning Rohan, wanted to share some updates about Godrej Blue. Rohan: Yes, tell me. Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in New Town? Rohan: Yes, what's the price? Vikram: Starting at 7.74 Cr for 3 BHK. Possession by July 2026. Rohan: That's good. Send me the details on WhatsApp. Vikram: Done. When can you visit? Rohan: This weekend. Vikram: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Vikram: Good morning Rohan, wanted to share some updates about Godrej Blue."", ""start"": 0.0, ""end"": 4.88}, {""speaker"": ""client"", ""text"": ""Rohan: Yes, tell me."", ""start"": 5.5, ""end"": 10.16}, {""speaker"": ""agent"", ""text"": ""Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in New Town?"", ""start"": 11.61, ""end"": 19.05}, {""speaker"": ""client"", ""text"": ""Rohan: Yes, what's the price?"", ""start"": 20.4, ""end"": 25.73}, {""speaker"": ""agent"", ""text"": ""Vikram: Starting at 7.74 Cr for 3 BHK. Possession by July 2026."", ""start"": 26.47, ""end"": 31.16}, {""speaker"": ""client"", ""text"": ""Rohan: That's good. Send me the details on WhatsApp."", ""start"": 33.09, ""end"": 37.18}, {""speaker"": ""agent"", ""text"": ""Vikram: Done. When can you visit?"", ""start"": 38.57, ""end"": 44.11}, {""speaker"": ""client"", ""text"": ""Rohan: This weekend."", ""start"": 45.7, ""end"": 47.96}, {""speaker"": ""agent"", ""text"": ""Vikram: I'll block Saturday 11 AM for you."", ""start"": 48.71, ""end"": 51.31}]",0.87 +TRX-00153,CAL-00334,en-IN,"Priya: Hello Rohan, this is Priya from Velocity regarding Godrej Blue. Rohan: Hi, I was about to call you. Priya: Great minds! What were you thinking? Rohan: The price is still high. Can you match Merlin Avana's rate? Priya: I understand. Let me see what best I can do. Are you flexible on floor preference? Rohan: Not really. I want mid-floor east facing. Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Rohan: Please do. We're ready to close quickly. Priya: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Priya: Hello Rohan, this is Priya from Velocity regarding Godrej Blue."", ""start"": 0.0, ""end"": 6.22}, {""speaker"": ""client"", ""text"": ""Rohan: Hi, I was about to call you."", ""start"": 7.44, ""end"": 14.22}, {""speaker"": ""agent"", ""text"": ""Priya: Great minds! What were you thinking?"", ""start"": 15.41, ""end"": 23.26}, {""speaker"": ""client"", ""text"": ""Rohan: The price is still high. Can you match Merlin Avana's rate?"", ""start"": 24.04, ""end"": 29.88}, {""speaker"": ""agent"", ""text"": ""Priya: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 31.44, ""end"": 33.74}, {""speaker"": ""client"", ""text"": ""Rohan: Not really. I want mid-floor east facing."", ""start"": 34.78, ""end"": 39.25}, {""speaker"": ""agent"", ""text"": ""Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 40.58, ""end"": 45.0}, {""speaker"": ""client"", ""text"": ""Rohan: Please do. We're ready to close quickly."", ""start"": 46.57, ""end"": 53.57}, {""speaker"": ""agent"", ""text"": ""Priya: Will revert by tomorrow 2 PM."", ""start"": 54.63, ""end"": 58.26}]",0.89 +TRX-00154,CAL-00336,en-IN,"Ananya: Hello Sanjay, this is Ananya from Velocity regarding Godrej Elevate. Sanjay: Yes, tell me. Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Dum Dum? Sanjay: Yes, what's the price? Ananya: Starting at 3.6 Cr for 3 BHK. Possession by October 2026. Sanjay: That's good. Send me the details on WhatsApp. Ananya: Done. When can you visit? Sanjay: This weekend. Ananya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Ananya: Hello Sanjay, this is Ananya from Velocity regarding Godrej Elevate."", ""start"": 0.0, ""end"": 7.2}, {""speaker"": ""client"", ""text"": ""Sanjay: Yes, tell me."", ""start"": 7.93, ""end"": 15.21}, {""speaker"": ""agent"", ""text"": ""Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Dum Dum?"", ""start"": 16.61, ""end"": 24.27}, {""speaker"": ""client"", ""text"": ""Sanjay: Yes, what's the price?"", ""start"": 24.88, ""end"": 28.52}, {""speaker"": ""agent"", ""text"": ""Ananya: Starting at 3.6 Cr for 3 BHK. Possession by October 2026."", ""start"": 30.3, ""end"": 35.94}, {""speaker"": ""client"", ""text"": ""Sanjay: That's good. Send me the details on WhatsApp."", ""start"": 37.33, ""end"": 41.39}, {""speaker"": ""agent"", ""text"": ""Ananya: Done. When can you visit?"", ""start"": 42.47, ""end"": 47.38}, {""speaker"": ""client"", ""text"": ""Sanjay: This weekend."", ""start"": 49.29, ""end"": 56.94}, {""speaker"": ""agent"", ""text"": ""Ananya: I'll block Saturday 11 AM for you."", ""start"": 57.96, ""end"": 64.15}]",0.87 +TRX-00155,CAL-00339,en-IN,"Rahul: Hi Sanjay, following up on your enquiry for Godrej Elevate. Sanjay: Yes, tell me. Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Dum Dum? Sanjay: Yes, what's the price? Rahul: Starting at 5.14 Cr for 3 BHK. Possession by June 2026. Sanjay: That's good. Send me the details on WhatsApp. Rahul: Done. When can you visit? Sanjay: This weekend. Rahul: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Rahul: Hi Sanjay, following up on your enquiry for Godrej Elevate."", ""start"": 0.0, ""end"": 5.5}, {""speaker"": ""client"", ""text"": ""Sanjay: Yes, tell me."", ""start"": 7.12, ""end"": 9.44}, {""speaker"": ""agent"", ""text"": ""Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Dum Dum?"", ""start"": 10.36, ""end"": 13.48}, {""speaker"": ""client"", ""text"": ""Sanjay: Yes, what's the price?"", ""start"": 14.06, ""end"": 18.12}, {""speaker"": ""agent"", ""text"": ""Rahul: Starting at 5.14 Cr for 3 BHK. Possession by June 2026."", ""start"": 18.85, ""end"": 24.46}, {""speaker"": ""client"", ""text"": ""Sanjay: That's good. Send me the details on WhatsApp."", ""start"": 25.34, ""end"": 30.19}, {""speaker"": ""agent"", ""text"": ""Rahul: Done. When can you visit?"", ""start"": 32.05, ""end"": 35.52}, {""speaker"": ""client"", ""text"": ""Sanjay: This weekend."", ""start"": 36.21, ""end"": 39.64}, {""speaker"": ""agent"", ""text"": ""Rahul: I'll block Saturday 11 AM for you."", ""start"": 40.96, ""end"": 44.33}]",0.95 +TRX-00156,CAL-00340,en-IN,"Priya: Good morning Rahul, wanted to share some updates about Atri Aqua. Rahul: Yes, tell me. Priya: We have a new tower launch with pre-launch pricing. Are you still looking in New Town? Rahul: Yes, what's the price? Priya: Starting at 7.27 Cr for 3 BHK. Possession by July 2026. Rahul: That's good. Send me the details on WhatsApp. Priya: Done. When can you visit? Rahul: This weekend. Priya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Priya: Good morning Rahul, wanted to share some updates about Atri Aqua."", ""start"": 0.0, ""end"": 3.63}, {""speaker"": ""client"", ""text"": ""Rahul: Yes, tell me."", ""start"": 5.23, ""end"": 10.96}, {""speaker"": ""agent"", ""text"": ""Priya: We have a new tower launch with pre-launch pricing. Are you still looking in New Town?"", ""start"": 12.78, ""end"": 18.87}, {""speaker"": ""client"", ""text"": ""Rahul: Yes, what's the price?"", ""start"": 20.52, ""end"": 28.48}, {""speaker"": ""agent"", ""text"": ""Priya: Starting at 7.27 Cr for 3 BHK. Possession by July 2026."", ""start"": 30.21, ""end"": 35.2}, {""speaker"": ""client"", ""text"": ""Rahul: That's good. Send me the details on WhatsApp."", ""start"": 36.27, ""end"": 41.55}, {""speaker"": ""agent"", ""text"": ""Priya: Done. When can you visit?"", ""start"": 42.38, ""end"": 45.84}, {""speaker"": ""client"", ""text"": ""Rahul: This weekend."", ""start"": 47.21, ""end"": 52.68}, {""speaker"": ""agent"", ""text"": ""Priya: I'll block Saturday 11 AM for you."", ""start"": 53.71, ""end"": 57.83}]",0.88 +TRX-00157,CAL-00343,en-IN,"Rahul: Good morning Rahul, wanted to share some updates about Atri Aqua. Rahul: Hi, I was about to call you. Rahul: Great minds! What were you thinking? Rahul: The price is still high. Can you match DTC Sojon's rate? Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference? Rahul: Not really. I want mid-floor east facing. Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Rahul: Please do. We're ready to close quickly. Rahul: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Rahul: Good morning Rahul, wanted to share some updates about Atri Aqua."", ""start"": 0.0, ""end"": 3.51}, {""speaker"": ""client"", ""text"": ""Rahul: Hi, I was about to call you."", ""start"": 5.5, ""end"": 8.4}, {""speaker"": ""agent"", ""text"": ""Rahul: Great minds! What were you thinking?"", ""start"": 9.84, ""end"": 13.45}, {""speaker"": ""client"", ""text"": ""Rahul: The price is still high. Can you match DTC Sojon's rate?"", ""start"": 14.98, ""end"": 19.88}, {""speaker"": ""agent"", ""text"": ""Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 21.74, ""end"": 23.74}, {""speaker"": ""client"", ""text"": ""Rahul: Not really. I want mid-floor east facing."", ""start"": 24.35, ""end"": 28.73}, {""speaker"": ""agent"", ""text"": ""Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 30.6, ""end"": 37.01}, {""speaker"": ""client"", ""text"": ""Rahul: Please do. We're ready to close quickly."", ""start"": 38.43, ""end"": 45.79}, {""speaker"": ""agent"", ""text"": ""Rahul: Will revert by tomorrow 2 PM."", ""start"": 46.42, ""end"": 52.39}]",0.83 +TRX-00158,CAL-00344,en-IN,"Priya: Hello Rahul, this is Priya from Velocity regarding Atri Aqua. Rahul: Yes, tell me. Priya: We have a new tower launch with pre-launch pricing. Are you still looking in New Town? Rahul: Yes, what's the price? Priya: Starting at 5.07 Cr for 3 BHK. Possession by June 2026. Rahul: That's good. Send me the details on WhatsApp. Priya: Done. When can you visit? Rahul: This weekend. Priya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Priya: Hello Rahul, this is Priya from Velocity regarding Atri Aqua."", ""start"": 0.0, ""end"": 5.81}, {""speaker"": ""client"", ""text"": ""Rahul: Yes, tell me."", ""start"": 7.1, ""end"": 15.04}, {""speaker"": ""agent"", ""text"": ""Priya: We have a new tower launch with pre-launch pricing. Are you still looking in New Town?"", ""start"": 16.94, ""end"": 19.35}, {""speaker"": ""client"", ""text"": ""Rahul: Yes, what's the price?"", ""start"": 20.96, ""end"": 24.57}, {""speaker"": ""agent"", ""text"": ""Priya: Starting at 5.07 Cr for 3 BHK. Possession by June 2026."", ""start"": 26.49, ""end"": 30.27}, {""speaker"": ""client"", ""text"": ""Rahul: That's good. Send me the details on WhatsApp."", ""start"": 31.61, ""end"": 36.55}, {""speaker"": ""agent"", ""text"": ""Priya: Done. When can you visit?"", ""start"": 37.37, ""end"": 44.39}, {""speaker"": ""client"", ""text"": ""Rahul: This weekend."", ""start"": 45.27, ""end"": 49.55}, {""speaker"": ""agent"", ""text"": ""Priya: I'll block Saturday 11 AM for you."", ""start"": 51.24, ""end"": 54.66}]",0.89 +TRX-00159,CAL-00345,en-IN,"Priya: Hello Rahul, this is Priya from Velocity regarding Atri Aqua. Rahul: Hi, I was about to call you. Priya: Great minds! What were you thinking? Rahul: The price is still high. Can you match Ambuja Utpaala's rate? Priya: I understand. Let me see what best I can do. Are you flexible on floor preference? Rahul: Not really. I want mid-floor east facing. Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Rahul: Please do. We're ready to close quickly. Priya: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Priya: Hello Rahul, this is Priya from Velocity regarding Atri Aqua."", ""start"": 0.0, ""end"": 5.67}, {""speaker"": ""client"", ""text"": ""Rahul: Hi, I was about to call you."", ""start"": 6.99, ""end"": 9.0}, {""speaker"": ""agent"", ""text"": ""Priya: Great minds! What were you thinking?"", ""start"": 9.73, ""end"": 13.76}, {""speaker"": ""client"", ""text"": ""Rahul: The price is still high. Can you match Ambuja Utpaala's rate?"", ""start"": 14.93, ""end"": 20.62}, {""speaker"": ""agent"", ""text"": ""Priya: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 22.33, ""end"": 25.6}, {""speaker"": ""client"", ""text"": ""Rahul: Not really. I want mid-floor east facing."", ""start"": 26.31, ""end"": 33.23}, {""speaker"": ""agent"", ""text"": ""Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 34.68, ""end"": 38.77}, {""speaker"": ""client"", ""text"": ""Rahul: Please do. We're ready to close quickly."", ""start"": 39.52, ""end"": 47.26}, {""speaker"": ""agent"", ""text"": ""Priya: Will revert by tomorrow 2 PM."", ""start"": 48.79, ""end"": 56.23}]",0.92 +TRX-00160,CAL-00347,en-IN,"Ananya: Good morning Deb, wanted to share some updates about Godrej Blue. Deb: Yes, tell me. Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in New Town? Deb: Yes, what's the price? Ananya: Starting at 4.12 Cr for 3 BHK. Possession by July 2026. Deb: That's good. Send me the details on WhatsApp. Ananya: Done. When can you visit? Deb: This weekend. Ananya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Ananya: Good morning Deb, wanted to share some updates about Godrej Blue."", ""start"": 0.0, ""end"": 5.34}, {""speaker"": ""client"", ""text"": ""Deb: Yes, tell me."", ""start"": 6.36, ""end"": 9.2}, {""speaker"": ""agent"", ""text"": ""Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in New Town?"", ""start"": 10.42, ""end"": 14.44}, {""speaker"": ""client"", ""text"": ""Deb: Yes, what's the price?"", ""start"": 15.09, ""end"": 22.56}, {""speaker"": ""agent"", ""text"": ""Ananya: Starting at 4.12 Cr for 3 BHK. Possession by July 2026."", ""start"": 23.65, ""end"": 27.18}, {""speaker"": ""client"", ""text"": ""Deb: That's good. Send me the details on WhatsApp."", ""start"": 27.84, ""end"": 31.35}, {""speaker"": ""agent"", ""text"": ""Ananya: Done. When can you visit?"", ""start"": 33.23, ""end"": 36.32}, {""speaker"": ""client"", ""text"": ""Deb: This weekend."", ""start"": 37.98, ""end"": 42.39}, {""speaker"": ""agent"", ""text"": ""Ananya: I'll block Saturday 11 AM for you."", ""start"": 44.08, ""end"": 49.64}]",0.87 +TRX-00161,CAL-00349,en-IN,"Ananya: Good morning Deb, wanted to share some updates about Godrej Blue. Deb: Hi, I was about to call you. Ananya: Great minds! What were you thinking? Deb: The price is still high. Can you match Merlin Avana's rate? Ananya: I understand. Let me see what best I can do. Are you flexible on floor preference? Deb: Not really. I want mid-floor east facing. Ananya: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Deb: Please do. We're ready to close quickly. Ananya: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Ananya: Good morning Deb, wanted to share some updates about Godrej Blue."", ""start"": 0.0, ""end"": 3.5}, {""speaker"": ""client"", ""text"": ""Deb: Hi, I was about to call you."", ""start"": 4.27, ""end"": 10.9}, {""speaker"": ""agent"", ""text"": ""Ananya: Great minds! What were you thinking?"", ""start"": 11.7, ""end"": 17.52}, {""speaker"": ""client"", ""text"": ""Deb: The price is still high. Can you match Merlin Avana's rate?"", ""start"": 19.33, ""end"": 22.09}, {""speaker"": ""agent"", ""text"": ""Ananya: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 23.83, ""end"": 26.55}, {""speaker"": ""client"", ""text"": ""Deb: Not really. I want mid-floor east facing."", ""start"": 28.35, ""end"": 35.2}, {""speaker"": ""agent"", ""text"": ""Ananya: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 36.16, ""end"": 40.03}, {""speaker"": ""client"", ""text"": ""Deb: Please do. We're ready to close quickly."", ""start"": 40.69, ""end"": 47.28}, {""speaker"": ""agent"", ""text"": ""Ananya: Will revert by tomorrow 2 PM."", ""start"": 48.77, ""end"": 54.81}]",0.85 +TRX-00162,CAL-00352,en-IN,"Rahul: Hi Abhishek, following up on your enquiry for Merlin Avana. Abhishek: Hi, I was about to call you. Rahul: Great minds! What were you thinking? Abhishek: The price is still high. Can you match DTC Sojon's rate? Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference? Abhishek: Not really. I want mid-floor east facing. Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Abhishek: Please do. We're ready to close quickly. Rahul: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Rahul: Hi Abhishek, following up on your enquiry for Merlin Avana."", ""start"": 0.0, ""end"": 4.19}, {""speaker"": ""client"", ""text"": ""Abhishek: Hi, I was about to call you."", ""start"": 4.72, ""end"": 7.24}, {""speaker"": ""agent"", ""text"": ""Rahul: Great minds! What were you thinking?"", ""start"": 8.82, ""end"": 16.7}, {""speaker"": ""client"", ""text"": ""Abhishek: The price is still high. Can you match DTC Sojon's rate?"", ""start"": 18.52, ""end"": 22.3}, {""speaker"": ""agent"", ""text"": ""Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 23.44, ""end"": 26.39}, {""speaker"": ""client"", ""text"": ""Abhishek: Not really. I want mid-floor east facing."", ""start"": 26.95, ""end"": 32.64}, {""speaker"": ""agent"", ""text"": ""Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 34.24, ""end"": 41.77}, {""speaker"": ""client"", ""text"": ""Abhishek: Please do. We're ready to close quickly."", ""start"": 42.39, ""end"": 47.23}, {""speaker"": ""agent"", ""text"": ""Rahul: Will revert by tomorrow 2 PM."", ""start"": 47.97, ""end"": 51.78}]",0.86 +TRX-00163,CAL-00354,en-IN,"Rahul: Hello Meera, this is Rahul from Velocity regarding DTC Sojon. Meera: Yes, tell me. Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat? Meera: Yes, what's the price? Rahul: Starting at 6.0 Cr for 3 BHK. Possession by June 2026. Meera: That's good. Send me the details on WhatsApp. Rahul: Done. When can you visit? Meera: This weekend. Rahul: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Rahul: Hello Meera, this is Rahul from Velocity regarding DTC Sojon."", ""start"": 0.0, ""end"": 7.2}, {""speaker"": ""client"", ""text"": ""Meera: Yes, tell me."", ""start"": 7.86, ""end"": 11.96}, {""speaker"": ""agent"", ""text"": ""Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat?"", ""start"": 13.83, ""end"": 20.42}, {""speaker"": ""client"", ""text"": ""Meera: Yes, what's the price?"", ""start"": 22.41, ""end"": 25.62}, {""speaker"": ""agent"", ""text"": ""Rahul: Starting at 6.0 Cr for 3 BHK. Possession by June 2026."", ""start"": 27.33, ""end"": 30.42}, {""speaker"": ""client"", ""text"": ""Meera: That's good. Send me the details on WhatsApp."", ""start"": 31.44, ""end"": 38.04}, {""speaker"": ""agent"", ""text"": ""Rahul: Done. When can you visit?"", ""start"": 40.03, ""end"": 46.66}, {""speaker"": ""client"", ""text"": ""Meera: This weekend."", ""start"": 47.66, ""end"": 50.41}, {""speaker"": ""agent"", ""text"": ""Rahul: I'll block Saturday 11 AM for you."", ""start"": 52.14, ""end"": 54.47}]",0.89 +TRX-00164,CAL-00356,en-IN,"Rahul: Good morning Meera, wanted to share some updates about DTC Sojon. Meera: Yes, tell me. Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat? Meera: Yes, what's the price? Rahul: Starting at 3.88 Cr for 3 BHK. Possession by August 2026. Meera: That's good. Send me the details on WhatsApp. Rahul: Done. When can you visit? Meera: This weekend. Rahul: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Rahul: Good morning Meera, wanted to share some updates about DTC Sojon."", ""start"": 0.0, ""end"": 3.72}, {""speaker"": ""client"", ""text"": ""Meera: Yes, tell me."", ""start"": 4.93, ""end"": 12.28}, {""speaker"": ""agent"", ""text"": ""Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat?"", ""start"": 14.17, ""end"": 16.44}, {""speaker"": ""client"", ""text"": ""Meera: Yes, what's the price?"", ""start"": 17.55, ""end"": 23.23}, {""speaker"": ""agent"", ""text"": ""Rahul: Starting at 3.88 Cr for 3 BHK. Possession by August 2026."", ""start"": 23.74, ""end"": 26.55}, {""speaker"": ""client"", ""text"": ""Meera: That's good. Send me the details on WhatsApp."", ""start"": 27.59, ""end"": 29.9}, {""speaker"": ""agent"", ""text"": ""Rahul: Done. When can you visit?"", ""start"": 31.14, ""end"": 37.91}, {""speaker"": ""client"", ""text"": ""Meera: This weekend."", ""start"": 39.88, ""end"": 44.07}, {""speaker"": ""agent"", ""text"": ""Rahul: I'll block Saturday 11 AM for you."", ""start"": 45.11, ""end"": 50.44}]",0.84 +TRX-00165,CAL-00360,en-IN,"Priya: Hello Meera, this is Priya from Velocity regarding DTC Sojon. Meera: Yes, tell me. Priya: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat? Meera: Yes, what's the price? Priya: Starting at 7.03 Cr for 3 BHK. Possession by October 2026. Meera: That's good. Send me the details on WhatsApp. Priya: Done. When can you visit? Meera: This weekend. Priya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Priya: Hello Meera, this is Priya from Velocity regarding DTC Sojon."", ""start"": 0.0, ""end"": 3.18}, {""speaker"": ""client"", ""text"": ""Meera: Yes, tell me."", ""start"": 4.76, ""end"": 7.82}, {""speaker"": ""agent"", ""text"": ""Priya: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat?"", ""start"": 8.57, ""end"": 11.43}, {""speaker"": ""client"", ""text"": ""Meera: Yes, what's the price?"", ""start"": 12.96, ""end"": 16.7}, {""speaker"": ""agent"", ""text"": ""Priya: Starting at 7.03 Cr for 3 BHK. Possession by October 2026."", ""start"": 18.68, ""end"": 24.81}, {""speaker"": ""client"", ""text"": ""Meera: That's good. Send me the details on WhatsApp."", ""start"": 26.81, ""end"": 30.84}, {""speaker"": ""agent"", ""text"": ""Priya: Done. When can you visit?"", ""start"": 31.58, ""end"": 38.44}, {""speaker"": ""client"", ""text"": ""Meera: This weekend."", ""start"": 39.53, ""end"": 46.47}, {""speaker"": ""agent"", ""text"": ""Priya: I'll block Saturday 11 AM for you."", ""start"": 47.82, ""end"": 53.69}]",0.88 +TRX-00166,CAL-00361,en-IN,"Vikram: Hi Meera, following up on your enquiry for DTC Sojon. Meera: Hi, I was about to call you. Vikram: Great minds! What were you thinking? Meera: The price is still high. Can you match Shriram Grand City's rate? Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference? Meera: Not really. I want mid-floor east facing. Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Meera: Please do. We're ready to close quickly. Vikram: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hi Meera, following up on your enquiry for DTC Sojon."", ""start"": 0.0, ""end"": 6.52}, {""speaker"": ""client"", ""text"": ""Meera: Hi, I was about to call you."", ""start"": 7.27, ""end"": 10.77}, {""speaker"": ""agent"", ""text"": ""Vikram: Great minds! What were you thinking?"", ""start"": 11.82, ""end"": 14.07}, {""speaker"": ""client"", ""text"": ""Meera: The price is still high. Can you match Shriram Grand City's rate?"", ""start"": 15.52, ""end"": 22.55}, {""speaker"": ""agent"", ""text"": ""Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 23.74, ""end"": 25.75}, {""speaker"": ""client"", ""text"": ""Meera: Not really. I want mid-floor east facing."", ""start"": 26.51, ""end"": 30.72}, {""speaker"": ""agent"", ""text"": ""Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 32.42, ""end"": 35.04}, {""speaker"": ""client"", ""text"": ""Meera: Please do. We're ready to close quickly."", ""start"": 35.71, ""end"": 42.95}, {""speaker"": ""agent"", ""text"": ""Vikram: Will revert by tomorrow 2 PM."", ""start"": 43.99, ""end"": 51.86}]",0.91 +TRX-00167,CAL-00362,en-IN,"Vikram: Hello Raj, this is Vikram from Velocity regarding Siddha Suburbia Bungalow. Raj: Hi, I was about to call you. Vikram: Great minds! What were you thinking? Raj: The price is still high. Can you match Siddha Serena's rate? Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference? Raj: Not really. I want mid-floor east facing. Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Raj: Please do. We're ready to close quickly. Vikram: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hello Raj, this is Vikram from Velocity regarding Siddha Suburbia Bungalow."", ""start"": 0.0, ""end"": 2.7}, {""speaker"": ""client"", ""text"": ""Raj: Hi, I was about to call you."", ""start"": 4.57, ""end"": 9.39}, {""speaker"": ""agent"", ""text"": ""Vikram: Great minds! What were you thinking?"", ""start"": 10.04, ""end"": 13.19}, {""speaker"": ""client"", ""text"": ""Raj: The price is still high. Can you match Siddha Serena's rate?"", ""start"": 13.86, ""end"": 21.64}, {""speaker"": ""agent"", ""text"": ""Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 22.16, ""end"": 25.28}, {""speaker"": ""client"", ""text"": ""Raj: Not really. I want mid-floor east facing."", ""start"": 26.25, ""end"": 28.47}, {""speaker"": ""agent"", ""text"": ""Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 29.27, ""end"": 31.31}, {""speaker"": ""client"", ""text"": ""Raj: Please do. We're ready to close quickly."", ""start"": 32.03, ""end"": 39.96}, {""speaker"": ""agent"", ""text"": ""Vikram: Will revert by tomorrow 2 PM."", ""start"": 40.94, ""end"": 48.5}]",0.88 +TRX-00168,CAL-00364,en-IN,"Vikram: Hi Kunal, following up on your enquiry for Shriram Grand City. Kunal: Hi, I was about to call you. Vikram: Great minds! What were you thinking? Kunal: The price is still high. Can you match Atri Aqua's rate? Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference? Kunal: Not really. I want mid-floor east facing. Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Kunal: Please do. We're ready to close quickly. Vikram: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hi Kunal, following up on your enquiry for Shriram Grand City."", ""start"": 0.0, ""end"": 3.2}, {""speaker"": ""client"", ""text"": ""Kunal: Hi, I was about to call you."", ""start"": 4.44, ""end"": 9.39}, {""speaker"": ""agent"", ""text"": ""Vikram: Great minds! What were you thinking?"", ""start"": 11.25, ""end"": 13.39}, {""speaker"": ""client"", ""text"": ""Kunal: The price is still high. Can you match Atri Aqua's rate?"", ""start"": 15.09, ""end"": 17.37}, {""speaker"": ""agent"", ""text"": ""Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 18.17, ""end"": 24.07}, {""speaker"": ""client"", ""text"": ""Kunal: Not really. I want mid-floor east facing."", ""start"": 25.77, ""end"": 30.45}, {""speaker"": ""agent"", ""text"": ""Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 31.45, ""end"": 34.59}, {""speaker"": ""client"", ""text"": ""Kunal: Please do. We're ready to close quickly."", ""start"": 36.22, ""end"": 42.01}, {""speaker"": ""agent"", ""text"": ""Vikram: Will revert by tomorrow 2 PM."", ""start"": 43.74, ""end"": 48.09}]",0.85 +TRX-00169,CAL-00365,en-IN,"Ananya: Good morning Kunal, wanted to share some updates about Shriram Grand City. Kunal: Yes, tell me. Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Howrah? Kunal: Yes, what's the price? Ananya: Starting at 1.94 Cr for 3 BHK. Possession by October 2026. Kunal: That's good. Send me the details on WhatsApp. Ananya: Done. When can you visit? Kunal: This weekend. Ananya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Ananya: Good morning Kunal, wanted to share some updates about Shriram Grand City."", ""start"": 0.0, ""end"": 6.77}, {""speaker"": ""client"", ""text"": ""Kunal: Yes, tell me."", ""start"": 8.3, ""end"": 11.76}, {""speaker"": ""agent"", ""text"": ""Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Howrah?"", ""start"": 12.71, ""end"": 15.68}, {""speaker"": ""client"", ""text"": ""Kunal: Yes, what's the price?"", ""start"": 16.86, ""end"": 20.07}, {""speaker"": ""agent"", ""text"": ""Ananya: Starting at 1.94 Cr for 3 BHK. Possession by October 2026."", ""start"": 21.72, ""end"": 23.89}, {""speaker"": ""client"", ""text"": ""Kunal: That's good. Send me the details on WhatsApp."", ""start"": 25.13, ""end"": 29.4}, {""speaker"": ""agent"", ""text"": ""Ananya: Done. When can you visit?"", ""start"": 29.94, ""end"": 35.47}, {""speaker"": ""client"", ""text"": ""Kunal: This weekend."", ""start"": 36.46, ""end"": 43.89}, {""speaker"": ""agent"", ""text"": ""Ananya: I'll block Saturday 11 AM for you."", ""start"": 45.4, ""end"": 52.38}]",0.85 +TRX-00170,CAL-00366,en-IN,"Vikram: Hi Kunal, following up on your enquiry for Shriram Grand City. Kunal: Yes, tell me. Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Howrah? Kunal: Yes, what's the price? Vikram: Starting at 2.66 Cr for 3 BHK. Possession by August 2026. Kunal: That's good. Send me the details on WhatsApp. Vikram: Done. When can you visit? Kunal: This weekend. Vikram: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hi Kunal, following up on your enquiry for Shriram Grand City."", ""start"": 0.0, ""end"": 4.71}, {""speaker"": ""client"", ""text"": ""Kunal: Yes, tell me."", ""start"": 6.2, ""end"": 12.08}, {""speaker"": ""agent"", ""text"": ""Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Howrah?"", ""start"": 12.83, ""end"": 19.46}, {""speaker"": ""client"", ""text"": ""Kunal: Yes, what's the price?"", ""start"": 21.4, ""end"": 25.66}, {""speaker"": ""agent"", ""text"": ""Vikram: Starting at 2.66 Cr for 3 BHK. Possession by August 2026."", ""start"": 26.7, ""end"": 30.22}, {""speaker"": ""client"", ""text"": ""Kunal: That's good. Send me the details on WhatsApp."", ""start"": 31.73, ""end"": 35.56}, {""speaker"": ""agent"", ""text"": ""Vikram: Done. When can you visit?"", ""start"": 37.01, ""end"": 42.64}, {""speaker"": ""client"", ""text"": ""Kunal: This weekend."", ""start"": 43.68, ""end"": 49.62}, {""speaker"": ""agent"", ""text"": ""Vikram: I'll block Saturday 11 AM for you."", ""start"": 51.06, ""end"": 58.2}]",0.82 +TRX-00171,CAL-00369,en-IN,"Ananya: Good morning Shreya, wanted to share some updates about Atri Aqua. Shreya: Hi, I was about to call you. Ananya: Great minds! What were you thinking? Shreya: The price is still high. Can you match Siddha Suburbia Bungalow's rate? Ananya: I understand. Let me see what best I can do. Are you flexible on floor preference? Shreya: Not really. I want mid-floor east facing. Ananya: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Shreya: Please do. We're ready to close quickly. Ananya: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Ananya: Good morning Shreya, wanted to share some updates about Atri Aqua."", ""start"": 0.0, ""end"": 6.96}, {""speaker"": ""client"", ""text"": ""Shreya: Hi, I was about to call you."", ""start"": 7.64, ""end"": 15.05}, {""speaker"": ""agent"", ""text"": ""Ananya: Great minds! What were you thinking?"", ""start"": 15.99, ""end"": 20.39}, {""speaker"": ""client"", ""text"": ""Shreya: The price is still high. Can you match Siddha Suburbia Bungalow's rate?"", ""start"": 21.34, ""end"": 29.1}, {""speaker"": ""agent"", ""text"": ""Ananya: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 29.97, ""end"": 36.32}, {""speaker"": ""client"", ""text"": ""Shreya: Not really. I want mid-floor east facing."", ""start"": 37.08, ""end"": 40.04}, {""speaker"": ""agent"", ""text"": ""Ananya: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 41.97, ""end"": 48.58}, {""speaker"": ""client"", ""text"": ""Shreya: Please do. We're ready to close quickly."", ""start"": 49.97, ""end"": 55.61}, {""speaker"": ""agent"", ""text"": ""Ananya: Will revert by tomorrow 2 PM."", ""start"": 57.38, ""end"": 62.21}]",0.92 +TRX-00172,CAL-00370,en-IN,"Vikram: Hello Shreya, this is Vikram from Velocity regarding Atri Aqua. Shreya: Hi, I was about to call you. Vikram: Great minds! What were you thinking? Shreya: The price is still high. Can you match Merlin Avana's rate? Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference? Shreya: Not really. I want mid-floor east facing. Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Shreya: Please do. We're ready to close quickly. Vikram: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hello Shreya, this is Vikram from Velocity regarding Atri Aqua."", ""start"": 0.0, ""end"": 7.49}, {""speaker"": ""client"", ""text"": ""Shreya: Hi, I was about to call you."", ""start"": 8.28, ""end"": 13.34}, {""speaker"": ""agent"", ""text"": ""Vikram: Great minds! What were you thinking?"", ""start"": 14.87, ""end"": 19.87}, {""speaker"": ""client"", ""text"": ""Shreya: The price is still high. Can you match Merlin Avana's rate?"", ""start"": 20.72, ""end"": 28.62}, {""speaker"": ""agent"", ""text"": ""Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 29.59, ""end"": 36.85}, {""speaker"": ""client"", ""text"": ""Shreya: Not really. I want mid-floor east facing."", ""start"": 37.39, ""end"": 40.19}, {""speaker"": ""agent"", ""text"": ""Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 41.31, ""end"": 44.14}, {""speaker"": ""client"", ""text"": ""Shreya: Please do. We're ready to close quickly."", ""start"": 44.68, ""end"": 48.33}, {""speaker"": ""agent"", ""text"": ""Vikram: Will revert by tomorrow 2 PM."", ""start"": 50.13, ""end"": 55.79}]",0.83 +TRX-00173,CAL-00373,en-IN,"Vikram: Hello Asha, this is Vikram from Velocity regarding Siddha Suburbia Bungalow. Asha: Hi, I was about to call you. Vikram: Great minds! What were you thinking? Asha: The price is still high. Can you match Sugam Prakriti's rate? Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference? Asha: Not really. I want mid-floor east facing. Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Asha: Please do. We're ready to close quickly. Vikram: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hello Asha, this is Vikram from Velocity regarding Siddha Suburbia Bungalow."", ""start"": 0.0, ""end"": 6.54}, {""speaker"": ""client"", ""text"": ""Asha: Hi, I was about to call you."", ""start"": 8.05, ""end"": 15.52}, {""speaker"": ""agent"", ""text"": ""Vikram: Great minds! What were you thinking?"", ""start"": 16.87, ""end"": 22.63}, {""speaker"": ""client"", ""text"": ""Asha: The price is still high. Can you match Sugam Prakriti's rate?"", ""start"": 23.48, ""end"": 29.64}, {""speaker"": ""agent"", ""text"": ""Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 31.36, ""end"": 33.52}, {""speaker"": ""client"", ""text"": ""Asha: Not really. I want mid-floor east facing."", ""start"": 35.32, ""end"": 43.22}, {""speaker"": ""agent"", ""text"": ""Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 45.09, ""end"": 50.27}, {""speaker"": ""client"", ""text"": ""Asha: Please do. We're ready to close quickly."", ""start"": 51.85, ""end"": 55.41}, {""speaker"": ""agent"", ""text"": ""Vikram: Will revert by tomorrow 2 PM."", ""start"": 56.79, ""end"": 62.85}]",0.96 +TRX-00174,CAL-00374,en-IN,"Vikram: Hello Asha, this is Vikram from Velocity regarding Siddha Suburbia Bungalow. Asha: Hi, I was about to call you. Vikram: Great minds! What were you thinking? Asha: The price is still high. Can you match Atri Surya Toron's rate? Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference? Asha: Not really. I want mid-floor east facing. Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Asha: Please do. We're ready to close quickly. Vikram: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hello Asha, this is Vikram from Velocity regarding Siddha Suburbia Bungalow."", ""start"": 0.0, ""end"": 4.59}, {""speaker"": ""client"", ""text"": ""Asha: Hi, I was about to call you."", ""start"": 5.5, ""end"": 13.26}, {""speaker"": ""agent"", ""text"": ""Vikram: Great minds! What were you thinking?"", ""start"": 14.91, ""end"": 19.58}, {""speaker"": ""client"", ""text"": ""Asha: The price is still high. Can you match Atri Surya Toron's rate?"", ""start"": 20.17, ""end"": 26.14}, {""speaker"": ""agent"", ""text"": ""Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 26.82, ""end"": 31.8}, {""speaker"": ""client"", ""text"": ""Asha: Not really. I want mid-floor east facing."", ""start"": 32.95, ""end"": 38.04}, {""speaker"": ""agent"", ""text"": ""Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 38.89, ""end"": 44.48}, {""speaker"": ""client"", ""text"": ""Asha: Please do. We're ready to close quickly."", ""start"": 46.11, ""end"": 50.57}, {""speaker"": ""agent"", ""text"": ""Vikram: Will revert by tomorrow 2 PM."", ""start"": 51.19, ""end"": 55.67}]",0.86 +TRX-00175,CAL-00376,en-IN,"Rahul: Good morning Nilesh, wanted to share some updates about Eden Devprayag. Nilesh: Hi, I was about to call you. Rahul: Great minds! What were you thinking? Nilesh: The price is still high. Can you match Ambuja Utpaala's rate? Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference? Nilesh: Not really. I want mid-floor east facing. Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Nilesh: Please do. We're ready to close quickly. Rahul: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Rahul: Good morning Nilesh, wanted to share some updates about Eden Devprayag."", ""start"": 0.0, ""end"": 6.65}, {""speaker"": ""client"", ""text"": ""Nilesh: Hi, I was about to call you."", ""start"": 8.13, ""end"": 10.33}, {""speaker"": ""agent"", ""text"": ""Rahul: Great minds! What were you thinking?"", ""start"": 11.76, ""end"": 14.43}, {""speaker"": ""client"", ""text"": ""Nilesh: The price is still high. Can you match Ambuja Utpaala's rate?"", ""start"": 16.41, ""end"": 23.59}, {""speaker"": ""agent"", ""text"": ""Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 24.3, ""end"": 26.66}, {""speaker"": ""client"", ""text"": ""Nilesh: Not really. I want mid-floor east facing."", ""start"": 27.37, ""end"": 29.46}, {""speaker"": ""agent"", ""text"": ""Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 30.13, ""end"": 37.13}, {""speaker"": ""client"", ""text"": ""Nilesh: Please do. We're ready to close quickly."", ""start"": 37.91, ""end"": 42.78}, {""speaker"": ""agent"", ""text"": ""Rahul: Will revert by tomorrow 2 PM."", ""start"": 44.29, ""end"": 48.31}]",0.84 +TRX-00176,CAL-00377,en-IN,"Vikram: Good morning Nilesh, wanted to share some updates about Eden Devprayag. Nilesh: Yes, tell me. Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat? Nilesh: Yes, what's the price? Vikram: Starting at 6.75 Cr for 3 BHK. Possession by July 2026. Nilesh: That's good. Send me the details on WhatsApp. Vikram: Done. When can you visit? Nilesh: This weekend. Vikram: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Vikram: Good morning Nilesh, wanted to share some updates about Eden Devprayag."", ""start"": 0.0, ""end"": 2.86}, {""speaker"": ""client"", ""text"": ""Nilesh: Yes, tell me."", ""start"": 4.63, ""end"": 12.47}, {""speaker"": ""agent"", ""text"": ""Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat?"", ""start"": 14.07, ""end"": 21.66}, {""speaker"": ""client"", ""text"": ""Nilesh: Yes, what's the price?"", ""start"": 23.24, ""end"": 26.51}, {""speaker"": ""agent"", ""text"": ""Vikram: Starting at 6.75 Cr for 3 BHK. Possession by July 2026."", ""start"": 27.83, ""end"": 30.5}, {""speaker"": ""client"", ""text"": ""Nilesh: That's good. Send me the details on WhatsApp."", ""start"": 32.35, ""end"": 38.78}, {""speaker"": ""agent"", ""text"": ""Vikram: Done. When can you visit?"", ""start"": 40.21, ""end"": 44.06}, {""speaker"": ""client"", ""text"": ""Nilesh: This weekend."", ""start"": 45.87, ""end"": 48.56}, {""speaker"": ""agent"", ""text"": ""Vikram: I'll block Saturday 11 AM for you."", ""start"": 49.96, ""end"": 53.95}]",0.84 +TRX-00177,CAL-00379,en-IN,"Rahul: Hi Nilesh, following up on your enquiry for Eden Devprayag. Nilesh: Hi, I was about to call you. Rahul: Great minds! What were you thinking? Nilesh: The price is still high. Can you match DTC Sojon's rate? Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference? Nilesh: Not really. I want mid-floor east facing. Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Nilesh: Please do. We're ready to close quickly. Rahul: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Rahul: Hi Nilesh, following up on your enquiry for Eden Devprayag."", ""start"": 0.0, ""end"": 7.99}, {""speaker"": ""client"", ""text"": ""Nilesh: Hi, I was about to call you."", ""start"": 9.18, ""end"": 13.62}, {""speaker"": ""agent"", ""text"": ""Rahul: Great minds! What were you thinking?"", ""start"": 14.91, ""end"": 20.78}, {""speaker"": ""client"", ""text"": ""Nilesh: The price is still high. Can you match DTC Sojon's rate?"", ""start"": 21.72, ""end"": 26.23}, {""speaker"": ""agent"", ""text"": ""Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 28.19, ""end"": 30.94}, {""speaker"": ""client"", ""text"": ""Nilesh: Not really. I want mid-floor east facing."", ""start"": 32.78, ""end"": 38.59}, {""speaker"": ""agent"", ""text"": ""Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 39.24, ""end"": 41.87}, {""speaker"": ""client"", ""text"": ""Nilesh: Please do. We're ready to close quickly."", ""start"": 42.99, ""end"": 49.91}, {""speaker"": ""agent"", ""text"": ""Rahul: Will revert by tomorrow 2 PM."", ""start"": 51.59, ""end"": 55.7}]",0.9 +TRX-00178,CAL-00381,en-IN,"Priya: Hi Nilesh, following up on your enquiry for Atri Surya Toron. Nilesh: Hi, I was about to call you. Priya: Great minds! What were you thinking? Nilesh: The price is still high. Can you match Godrej Elevate's rate? Priya: I understand. Let me see what best I can do. Are you flexible on floor preference? Nilesh: Not really. I want mid-floor east facing. Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Nilesh: Please do. We're ready to close quickly. Priya: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Priya: Hi Nilesh, following up on your enquiry for Atri Surya Toron."", ""start"": 0.0, ""end"": 6.77}, {""speaker"": ""client"", ""text"": ""Nilesh: Hi, I was about to call you."", ""start"": 8.48, ""end"": 11.6}, {""speaker"": ""agent"", ""text"": ""Priya: Great minds! What were you thinking?"", ""start"": 12.52, ""end"": 16.02}, {""speaker"": ""client"", ""text"": ""Nilesh: The price is still high. Can you match Godrej Elevate's rate?"", ""start"": 16.57, ""end"": 19.59}, {""speaker"": ""agent"", ""text"": ""Priya: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 20.24, ""end"": 26.03}, {""speaker"": ""client"", ""text"": ""Nilesh: Not really. I want mid-floor east facing."", ""start"": 26.73, ""end"": 32.25}, {""speaker"": ""agent"", ""text"": ""Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 33.46, ""end"": 39.48}, {""speaker"": ""client"", ""text"": ""Nilesh: Please do. We're ready to close quickly."", ""start"": 40.09, ""end"": 46.64}, {""speaker"": ""agent"", ""text"": ""Priya: Will revert by tomorrow 2 PM."", ""start"": 47.61, ""end"": 50.5}]",0.88 +TRX-00179,CAL-00382,en-IN,"Ananya: Hi Nilesh, following up on your enquiry for Atri Surya Toron. Nilesh: Hi, I was about to call you. Ananya: Great minds! What were you thinking? Nilesh: The price is still high. Can you match Siddha Sky Waterfront's rate? Ananya: I understand. Let me see what best I can do. Are you flexible on floor preference? Nilesh: Not really. I want mid-floor east facing. Ananya: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Nilesh: Please do. We're ready to close quickly. Ananya: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Ananya: Hi Nilesh, following up on your enquiry for Atri Surya Toron."", ""start"": 0.0, ""end"": 4.94}, {""speaker"": ""client"", ""text"": ""Nilesh: Hi, I was about to call you."", ""start"": 6.0, ""end"": 9.55}, {""speaker"": ""agent"", ""text"": ""Ananya: Great minds! What were you thinking?"", ""start"": 11.42, ""end"": 19.28}, {""speaker"": ""client"", ""text"": ""Nilesh: The price is still high. Can you match Siddha Sky Waterfront's rate?"", ""start"": 21.1, ""end"": 26.61}, {""speaker"": ""agent"", ""text"": ""Ananya: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 27.43, ""end"": 32.52}, {""speaker"": ""client"", ""text"": ""Nilesh: Not really. I want mid-floor east facing."", ""start"": 34.12, ""end"": 37.43}, {""speaker"": ""agent"", ""text"": ""Ananya: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 39.2, ""end"": 44.66}, {""speaker"": ""client"", ""text"": ""Nilesh: Please do. We're ready to close quickly."", ""start"": 46.44, ""end"": 52.3}, {""speaker"": ""agent"", ""text"": ""Ananya: Will revert by tomorrow 2 PM."", ""start"": 52.84, ""end"": 57.05}]",0.83 +TRX-00180,CAL-00384,en-IN,"Ananya: Hi Nilesh, following up on your enquiry for DTC Sojon. Nilesh: Hi, I was about to call you. Ananya: Great minds! What were you thinking? Nilesh: The price is still high. Can you match DTC Good Earth's rate? Ananya: I understand. Let me see what best I can do. Are you flexible on floor preference? Nilesh: Not really. I want mid-floor east facing. Ananya: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Nilesh: Please do. We're ready to close quickly. Ananya: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Ananya: Hi Nilesh, following up on your enquiry for DTC Sojon."", ""start"": 0.0, ""end"": 4.37}, {""speaker"": ""client"", ""text"": ""Nilesh: Hi, I was about to call you."", ""start"": 6.09, ""end"": 10.62}, {""speaker"": ""agent"", ""text"": ""Ananya: Great minds! What were you thinking?"", ""start"": 11.94, ""end"": 18.64}, {""speaker"": ""client"", ""text"": ""Nilesh: The price is still high. Can you match DTC Good Earth's rate?"", ""start"": 20.46, ""end"": 25.02}, {""speaker"": ""agent"", ""text"": ""Ananya: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 26.6, ""end"": 30.54}, {""speaker"": ""client"", ""text"": ""Nilesh: Not really. I want mid-floor east facing."", ""start"": 31.26, ""end"": 35.09}, {""speaker"": ""agent"", ""text"": ""Ananya: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 37.03, ""end"": 42.11}, {""speaker"": ""client"", ""text"": ""Nilesh: Please do. We're ready to close quickly."", ""start"": 42.92, ""end"": 47.64}, {""speaker"": ""agent"", ""text"": ""Ananya: Will revert by tomorrow 2 PM."", ""start"": 48.43, ""end"": 50.96}]",0.88 +TRX-00181,CAL-00385,en-IN,"Vikram: Good morning Nilesh, wanted to share some updates about DTC Sojon. Nilesh: Hi, I was about to call you. Vikram: Great minds! What were you thinking? Nilesh: The price is still high. Can you match Eden Devprayag's rate? Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference? Nilesh: Not really. I want mid-floor east facing. Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Nilesh: Please do. We're ready to close quickly. Vikram: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Vikram: Good morning Nilesh, wanted to share some updates about DTC Sojon."", ""start"": 0.0, ""end"": 7.15}, {""speaker"": ""client"", ""text"": ""Nilesh: Hi, I was about to call you."", ""start"": 8.67, ""end"": 15.53}, {""speaker"": ""agent"", ""text"": ""Vikram: Great minds! What were you thinking?"", ""start"": 17.22, ""end"": 19.77}, {""speaker"": ""client"", ""text"": ""Nilesh: The price is still high. Can you match Eden Devprayag's rate?"", ""start"": 21.37, ""end"": 28.87}, {""speaker"": ""agent"", ""text"": ""Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 29.76, ""end"": 32.37}, {""speaker"": ""client"", ""text"": ""Nilesh: Not really. I want mid-floor east facing."", ""start"": 33.86, ""end"": 37.28}, {""speaker"": ""agent"", ""text"": ""Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 38.62, ""end"": 42.03}, {""speaker"": ""client"", ""text"": ""Nilesh: Please do. We're ready to close quickly."", ""start"": 43.24, ""end"": 49.65}, {""speaker"": ""agent"", ""text"": ""Vikram: Will revert by tomorrow 2 PM."", ""start"": 50.64, ""end"": 55.2}]",0.91 +TRX-00182,CAL-00388,en-IN,"Rahul: Hi Trisha, following up on your enquiry for Sugam Prakriti. Trisha: Hi, I was about to call you. Rahul: Great minds! What were you thinking? Trisha: The price is still high. Can you match Merlin Avana's rate? Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference? Trisha: Not really. I want mid-floor east facing. Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Trisha: Please do. We're ready to close quickly. Rahul: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Rahul: Hi Trisha, following up on your enquiry for Sugam Prakriti."", ""start"": 0.0, ""end"": 5.58}, {""speaker"": ""client"", ""text"": ""Trisha: Hi, I was about to call you."", ""start"": 6.58, ""end"": 14.13}, {""speaker"": ""agent"", ""text"": ""Rahul: Great minds! What were you thinking?"", ""start"": 15.84, ""end"": 21.53}, {""speaker"": ""client"", ""text"": ""Trisha: The price is still high. Can you match Merlin Avana's rate?"", ""start"": 22.79, ""end"": 28.02}, {""speaker"": ""agent"", ""text"": ""Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 28.87, ""end"": 35.26}, {""speaker"": ""client"", ""text"": ""Trisha: Not really. I want mid-floor east facing."", ""start"": 36.81, ""end"": 42.58}, {""speaker"": ""agent"", ""text"": ""Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 43.26, ""end"": 48.96}, {""speaker"": ""client"", ""text"": ""Trisha: Please do. We're ready to close quickly."", ""start"": 50.83, ""end"": 57.06}, {""speaker"": ""agent"", ""text"": ""Rahul: Will revert by tomorrow 2 PM."", ""start"": 57.95, ""end"": 61.81}]",0.94 +TRX-00183,CAL-00389,en-IN,"Rahul: Hi Trisha, following up on your enquiry for Sugam Prakriti. Trisha: Yes, tell me. Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Barasat? Trisha: Yes, what's the price? Rahul: Starting at 3.58 Cr for 3 BHK. Possession by September 2026. Trisha: That's good. Send me the details on WhatsApp. Rahul: Done. When can you visit? Trisha: This weekend. Rahul: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Rahul: Hi Trisha, following up on your enquiry for Sugam Prakriti."", ""start"": 0.0, ""end"": 5.82}, {""speaker"": ""client"", ""text"": ""Trisha: Yes, tell me."", ""start"": 7.02, ""end"": 11.23}, {""speaker"": ""agent"", ""text"": ""Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Barasat?"", ""start"": 13.11, ""end"": 19.99}, {""speaker"": ""client"", ""text"": ""Trisha: Yes, what's the price?"", ""start"": 20.57, ""end"": 25.99}, {""speaker"": ""agent"", ""text"": ""Rahul: Starting at 3.58 Cr for 3 BHK. Possession by September 2026."", ""start"": 27.4, ""end"": 29.41}, {""speaker"": ""client"", ""text"": ""Trisha: That's good. Send me the details on WhatsApp."", ""start"": 29.95, ""end"": 36.85}, {""speaker"": ""agent"", ""text"": ""Rahul: Done. When can you visit?"", ""start"": 38.71, ""end"": 43.64}, {""speaker"": ""client"", ""text"": ""Trisha: This weekend."", ""start"": 45.38, ""end"": 49.83}, {""speaker"": ""agent"", ""text"": ""Rahul: I'll block Saturday 11 AM for you."", ""start"": 50.87, ""end"": 57.32}]",0.89 +TRX-00184,CAL-00390,en-IN,"Vikram: Good morning Trisha, wanted to share some updates about Sugam Prakriti. Trisha: Yes, tell me. Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Barasat? Trisha: Yes, what's the price? Vikram: Starting at 2.49 Cr for 3 BHK. Possession by June 2026. Trisha: That's good. Send me the details on WhatsApp. Vikram: Done. When can you visit? Trisha: This weekend. Vikram: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Vikram: Good morning Trisha, wanted to share some updates about Sugam Prakriti."", ""start"": 0.0, ""end"": 7.79}, {""speaker"": ""client"", ""text"": ""Trisha: Yes, tell me."", ""start"": 9.32, ""end"": 12.54}, {""speaker"": ""agent"", ""text"": ""Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Barasat?"", ""start"": 14.12, ""end"": 20.37}, {""speaker"": ""client"", ""text"": ""Trisha: Yes, what's the price?"", ""start"": 20.93, ""end"": 23.6}, {""speaker"": ""agent"", ""text"": ""Vikram: Starting at 2.49 Cr for 3 BHK. Possession by June 2026."", ""start"": 25.18, ""end"": 32.28}, {""speaker"": ""client"", ""text"": ""Trisha: That's good. Send me the details on WhatsApp."", ""start"": 33.02, ""end"": 40.33}, {""speaker"": ""agent"", ""text"": ""Vikram: Done. When can you visit?"", ""start"": 41.83, ""end"": 46.99}, {""speaker"": ""client"", ""text"": ""Trisha: This weekend."", ""start"": 48.06, ""end"": 50.74}, {""speaker"": ""agent"", ""text"": ""Vikram: I'll block Saturday 11 AM for you."", ""start"": 51.37, ""end"": 58.18}]",0.84 +TRX-00185,CAL-00391,en-IN,"Rahul: Good morning Ritu, wanted to share some updates about Atri Aqua. Ritu: Yes, tell me. Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in New Town? Ritu: Yes, what's the price? Rahul: Starting at 3.74 Cr for 3 BHK. Possession by June 2026. Ritu: That's good. Send me the details on WhatsApp. Rahul: Done. When can you visit? Ritu: This weekend. Rahul: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Rahul: Good morning Ritu, wanted to share some updates about Atri Aqua."", ""start"": 0.0, ""end"": 4.71}, {""speaker"": ""client"", ""text"": ""Ritu: Yes, tell me."", ""start"": 5.49, ""end"": 11.69}, {""speaker"": ""agent"", ""text"": ""Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in New Town?"", ""start"": 12.44, ""end"": 15.83}, {""speaker"": ""client"", ""text"": ""Ritu: Yes, what's the price?"", ""start"": 17.38, ""end"": 20.73}, {""speaker"": ""agent"", ""text"": ""Rahul: Starting at 3.74 Cr for 3 BHK. Possession by June 2026."", ""start"": 21.95, ""end"": 25.87}, {""speaker"": ""client"", ""text"": ""Ritu: That's good. Send me the details on WhatsApp."", ""start"": 27.28, ""end"": 30.43}, {""speaker"": ""agent"", ""text"": ""Rahul: Done. When can you visit?"", ""start"": 31.94, ""end"": 39.31}, {""speaker"": ""client"", ""text"": ""Ritu: This weekend."", ""start"": 40.73, ""end"": 48.44}, {""speaker"": ""agent"", ""text"": ""Rahul: I'll block Saturday 11 AM for you."", ""start"": 50.11, ""end"": 54.41}]",0.85 +TRX-00186,CAL-00395,en-IN,"Ananya: Hi Anirban, following up on your enquiry for Atri Surya Toron. Anirban: Yes, tell me. Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat? Anirban: Yes, what's the price? Ananya: Starting at 2.67 Cr for 3 BHK. Possession by July 2026. Anirban: That's good. Send me the details on WhatsApp. Ananya: Done. When can you visit? Anirban: This weekend. Ananya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Ananya: Hi Anirban, following up on your enquiry for Atri Surya Toron."", ""start"": 0.0, ""end"": 3.32}, {""speaker"": ""client"", ""text"": ""Anirban: Yes, tell me."", ""start"": 4.88, ""end"": 9.11}, {""speaker"": ""agent"", ""text"": ""Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat?"", ""start"": 10.68, ""end"": 15.47}, {""speaker"": ""client"", ""text"": ""Anirban: Yes, what's the price?"", ""start"": 15.97, ""end"": 18.13}, {""speaker"": ""agent"", ""text"": ""Ananya: Starting at 2.67 Cr for 3 BHK. Possession by July 2026."", ""start"": 19.56, ""end"": 22.66}, {""speaker"": ""client"", ""text"": ""Anirban: That's good. Send me the details on WhatsApp."", ""start"": 24.33, ""end"": 29.81}, {""speaker"": ""agent"", ""text"": ""Ananya: Done. When can you visit?"", ""start"": 31.32, ""end"": 39.19}, {""speaker"": ""client"", ""text"": ""Anirban: This weekend."", ""start"": 41.01, ""end"": 44.47}, {""speaker"": ""agent"", ""text"": ""Ananya: I'll block Saturday 11 AM for you."", ""start"": 46.41, ""end"": 51.48}]",0.94 +TRX-00187,CAL-00396,en-IN,"Vikram: Hello Anirban, this is Vikram from Velocity regarding Atri Surya Toron. Anirban: Yes, tell me. Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat? Anirban: Yes, what's the price? Vikram: Starting at 2.72 Cr for 3 BHK. Possession by September 2026. Anirban: That's good. Send me the details on WhatsApp. Vikram: Done. When can you visit? Anirban: This weekend. Vikram: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hello Anirban, this is Vikram from Velocity regarding Atri Surya Toron."", ""start"": 0.0, ""end"": 4.94}, {""speaker"": ""client"", ""text"": ""Anirban: Yes, tell me."", ""start"": 6.61, ""end"": 14.56}, {""speaker"": ""agent"", ""text"": ""Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat?"", ""start"": 15.6, ""end"": 17.7}, {""speaker"": ""client"", ""text"": ""Anirban: Yes, what's the price?"", ""start"": 18.65, ""end"": 25.53}, {""speaker"": ""agent"", ""text"": ""Vikram: Starting at 2.72 Cr for 3 BHK. Possession by September 2026."", ""start"": 27.34, ""end"": 31.27}, {""speaker"": ""client"", ""text"": ""Anirban: That's good. Send me the details on WhatsApp."", ""start"": 32.62, ""end"": 35.67}, {""speaker"": ""agent"", ""text"": ""Vikram: Done. When can you visit?"", ""start"": 36.66, ""end"": 40.67}, {""speaker"": ""client"", ""text"": ""Anirban: This weekend."", ""start"": 42.5, ""end"": 47.25}, {""speaker"": ""agent"", ""text"": ""Vikram: I'll block Saturday 11 AM for you."", ""start"": 49.0, ""end"": 55.97}]",0.87 +TRX-00188,CAL-00400,en-IN,"Priya: Good morning Shreya, wanted to share some updates about Siddha Sky Waterfront. Shreya: Yes, tell me. Priya: We have a new tower launch with pre-launch pricing. Are you still looking in Beliaghata? Shreya: Yes, what's the price? Priya: Starting at 3.86 Cr for 3 BHK. Possession by July 2026. Shreya: That's good. Send me the details on WhatsApp. Priya: Done. When can you visit? Shreya: This weekend. Priya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Priya: Good morning Shreya, wanted to share some updates about Siddha Sky Waterfront."", ""start"": 0.0, ""end"": 7.01}, {""speaker"": ""client"", ""text"": ""Shreya: Yes, tell me."", ""start"": 8.99, ""end"": 13.47}, {""speaker"": ""agent"", ""text"": ""Priya: We have a new tower launch with pre-launch pricing. Are you still looking in Beliaghata?"", ""start"": 14.82, ""end"": 21.7}, {""speaker"": ""client"", ""text"": ""Shreya: Yes, what's the price?"", ""start"": 22.69, ""end"": 26.52}, {""speaker"": ""agent"", ""text"": ""Priya: Starting at 3.86 Cr for 3 BHK. Possession by July 2026."", ""start"": 28.06, ""end"": 30.47}, {""speaker"": ""client"", ""text"": ""Shreya: That's good. Send me the details on WhatsApp."", ""start"": 31.41, ""end"": 37.63}, {""speaker"": ""agent"", ""text"": ""Priya: Done. When can you visit?"", ""start"": 38.89, ""end"": 43.26}, {""speaker"": ""client"", ""text"": ""Shreya: This weekend."", ""start"": 44.33, ""end"": 49.99}, {""speaker"": ""agent"", ""text"": ""Priya: I'll block Saturday 11 AM for you."", ""start"": 51.83, ""end"": 59.4}]",0.83 +TRX-00189,CAL-00401,en-IN,"Priya: Hello Shreya, this is Priya from Velocity regarding Siddha Sky Waterfront. Shreya: Hi, I was about to call you. Priya: Great minds! What were you thinking? Shreya: The price is still high. Can you match Atri Aqua's rate? Priya: I understand. Let me see what best I can do. Are you flexible on floor preference? Shreya: Not really. I want mid-floor east facing. Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Shreya: Please do. We're ready to close quickly. Priya: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Priya: Hello Shreya, this is Priya from Velocity regarding Siddha Sky Waterfront."", ""start"": 0.0, ""end"": 7.93}, {""speaker"": ""client"", ""text"": ""Shreya: Hi, I was about to call you."", ""start"": 8.43, ""end"": 11.7}, {""speaker"": ""agent"", ""text"": ""Priya: Great minds! What were you thinking?"", ""start"": 13.33, ""end"": 16.41}, {""speaker"": ""client"", ""text"": ""Shreya: The price is still high. Can you match Atri Aqua's rate?"", ""start"": 18.38, ""end"": 20.64}, {""speaker"": ""agent"", ""text"": ""Priya: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 21.58, ""end"": 24.88}, {""speaker"": ""client"", ""text"": ""Shreya: Not really. I want mid-floor east facing."", ""start"": 26.1, ""end"": 29.52}, {""speaker"": ""agent"", ""text"": ""Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 30.37, ""end"": 36.35}, {""speaker"": ""client"", ""text"": ""Shreya: Please do. We're ready to close quickly."", ""start"": 37.69, ""end"": 41.04}, {""speaker"": ""agent"", ""text"": ""Priya: Will revert by tomorrow 2 PM."", ""start"": 42.1, ""end"": 46.15}]",0.96 +TRX-00190,CAL-00402,en-IN,"Ananya: Hi Vidya, following up on your enquiry for Atri Surya Toron. Vidya: Yes, tell me. Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat? Vidya: Yes, what's the price? Ananya: Starting at 3.25 Cr for 3 BHK. Possession by October 2026. Vidya: That's good. Send me the details on WhatsApp. Ananya: Done. When can you visit? Vidya: This weekend. Ananya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Ananya: Hi Vidya, following up on your enquiry for Atri Surya Toron."", ""start"": 0.0, ""end"": 3.29}, {""speaker"": ""client"", ""text"": ""Vidya: Yes, tell me."", ""start"": 5.08, ""end"": 12.25}, {""speaker"": ""agent"", ""text"": ""Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat?"", ""start"": 13.11, ""end"": 16.53}, {""speaker"": ""client"", ""text"": ""Vidya: Yes, what's the price?"", ""start"": 17.43, ""end"": 19.98}, {""speaker"": ""agent"", ""text"": ""Ananya: Starting at 3.25 Cr for 3 BHK. Possession by October 2026."", ""start"": 21.52, ""end"": 26.54}, {""speaker"": ""client"", ""text"": ""Vidya: That's good. Send me the details on WhatsApp."", ""start"": 28.34, ""end"": 30.98}, {""speaker"": ""agent"", ""text"": ""Ananya: Done. When can you visit?"", ""start"": 32.37, ""end"": 36.81}, {""speaker"": ""client"", ""text"": ""Vidya: This weekend."", ""start"": 38.78, ""end"": 45.74}, {""speaker"": ""agent"", ""text"": ""Ananya: I'll block Saturday 11 AM for you."", ""start"": 46.38, ""end"": 52.84}]",0.93 +TRX-00191,CAL-00404,en-IN,"Vikram: Good morning Vidya, wanted to share some updates about Atri Surya Toron. Vidya: Hi, I was about to call you. Vikram: Great minds! What were you thinking? Vidya: The price is still high. Can you match Godrej Blue's rate? Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference? Vidya: Not really. I want mid-floor east facing. Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Vidya: Please do. We're ready to close quickly. Vikram: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Vikram: Good morning Vidya, wanted to share some updates about Atri Surya Toron."", ""start"": 0.0, ""end"": 2.37}, {""speaker"": ""client"", ""text"": ""Vidya: Hi, I was about to call you."", ""start"": 3.91, ""end"": 11.15}, {""speaker"": ""agent"", ""text"": ""Vikram: Great minds! What were you thinking?"", ""start"": 13.01, ""end"": 16.92}, {""speaker"": ""client"", ""text"": ""Vidya: The price is still high. Can you match Godrej Blue's rate?"", ""start"": 17.5, ""end"": 19.54}, {""speaker"": ""agent"", ""text"": ""Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 21.33, ""end"": 27.99}, {""speaker"": ""client"", ""text"": ""Vidya: Not really. I want mid-floor east facing."", ""start"": 29.82, ""end"": 36.9}, {""speaker"": ""agent"", ""text"": ""Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 38.74, ""end"": 45.56}, {""speaker"": ""client"", ""text"": ""Vidya: Please do. We're ready to close quickly."", ""start"": 46.68, ""end"": 52.06}, {""speaker"": ""agent"", ""text"": ""Vikram: Will revert by tomorrow 2 PM."", ""start"": 53.45, ""end"": 58.08}]",0.94 +TRX-00192,CAL-00405,en-IN,"Ananya: Hi Sonal, following up on your enquiry for DTC Sojon. Sonal: Yes, tell me. Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat? Sonal: Yes, what's the price? Ananya: Starting at 5.34 Cr for 3 BHK. Possession by June 2026. Sonal: That's good. Send me the details on WhatsApp. Ananya: Done. When can you visit? Sonal: This weekend. Ananya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Ananya: Hi Sonal, following up on your enquiry for DTC Sojon."", ""start"": 0.0, ""end"": 6.26}, {""speaker"": ""client"", ""text"": ""Sonal: Yes, tell me."", ""start"": 8.01, ""end"": 10.35}, {""speaker"": ""agent"", ""text"": ""Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat?"", ""start"": 11.49, ""end"": 16.9}, {""speaker"": ""client"", ""text"": ""Sonal: Yes, what's the price?"", ""start"": 18.48, ""end"": 25.12}, {""speaker"": ""agent"", ""text"": ""Ananya: Starting at 5.34 Cr for 3 BHK. Possession by June 2026."", ""start"": 26.41, ""end"": 34.17}, {""speaker"": ""client"", ""text"": ""Sonal: That's good. Send me the details on WhatsApp."", ""start"": 35.35, ""end"": 41.86}, {""speaker"": ""agent"", ""text"": ""Ananya: Done. When can you visit?"", ""start"": 43.78, ""end"": 46.39}, {""speaker"": ""client"", ""text"": ""Sonal: This weekend."", ""start"": 47.28, ""end"": 52.6}, {""speaker"": ""agent"", ""text"": ""Ananya: I'll block Saturday 11 AM for you."", ""start"": 53.81, ""end"": 61.64}]",0.88 +TRX-00193,CAL-00406,en-IN,"Vikram: Hello Sneha, this is Vikram from Velocity regarding Ambuja Utpaala. Sneha: Yes, tell me. Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Tollygunge? Sneha: Yes, what's the price? Vikram: Starting at 4.42 Cr for 3 BHK. Possession by October 2026. Sneha: That's good. Send me the details on WhatsApp. Vikram: Done. When can you visit? Sneha: This weekend. Vikram: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hello Sneha, this is Vikram from Velocity regarding Ambuja Utpaala."", ""start"": 0.0, ""end"": 3.92}, {""speaker"": ""client"", ""text"": ""Sneha: Yes, tell me."", ""start"": 5.18, ""end"": 12.95}, {""speaker"": ""agent"", ""text"": ""Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Tollygunge?"", ""start"": 13.68, ""end"": 19.82}, {""speaker"": ""client"", ""text"": ""Sneha: Yes, what's the price?"", ""start"": 21.24, ""end"": 23.88}, {""speaker"": ""agent"", ""text"": ""Vikram: Starting at 4.42 Cr for 3 BHK. Possession by October 2026."", ""start"": 25.16, ""end"": 31.88}, {""speaker"": ""client"", ""text"": ""Sneha: That's good. Send me the details on WhatsApp."", ""start"": 33.07, ""end"": 36.14}, {""speaker"": ""agent"", ""text"": ""Vikram: Done. When can you visit?"", ""start"": 37.76, ""end"": 43.45}, {""speaker"": ""client"", ""text"": ""Sneha: This weekend."", ""start"": 44.01, ""end"": 48.61}, {""speaker"": ""agent"", ""text"": ""Vikram: I'll block Saturday 11 AM for you."", ""start"": 49.15, ""end"": 53.5}]",0.94 +TRX-00194,CAL-00410,en-IN,"Priya: Hi Moumita, following up on your enquiry for Ambuja Utpaala. Moumita: Hi, I was about to call you. Priya: Great minds! What were you thinking? Moumita: The price is still high. Can you match Atri Surya Toron's rate? Priya: I understand. Let me see what best I can do. Are you flexible on floor preference? Moumita: Not really. I want mid-floor east facing. Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Moumita: Please do. We're ready to close quickly. Priya: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Priya: Hi Moumita, following up on your enquiry for Ambuja Utpaala."", ""start"": 0.0, ""end"": 3.05}, {""speaker"": ""client"", ""text"": ""Moumita: Hi, I was about to call you."", ""start"": 4.09, ""end"": 11.13}, {""speaker"": ""agent"", ""text"": ""Priya: Great minds! What were you thinking?"", ""start"": 12.84, ""end"": 19.73}, {""speaker"": ""client"", ""text"": ""Moumita: The price is still high. Can you match Atri Surya Toron's rate?"", ""start"": 20.32, ""end"": 26.32}, {""speaker"": ""agent"", ""text"": ""Priya: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 27.37, ""end"": 34.37}, {""speaker"": ""client"", ""text"": ""Moumita: Not really. I want mid-floor east facing."", ""start"": 35.81, ""end"": 40.39}, {""speaker"": ""agent"", ""text"": ""Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 41.35, ""end"": 46.2}, {""speaker"": ""client"", ""text"": ""Moumita: Please do. We're ready to close quickly."", ""start"": 47.39, ""end"": 54.69}, {""speaker"": ""agent"", ""text"": ""Priya: Will revert by tomorrow 2 PM."", ""start"": 55.52, ""end"": 61.6}]",0.83 +TRX-00195,CAL-00411,en-IN,"Rahul: Good morning Meera, wanted to share some updates about Merlin Avana. Meera: Hi, I was about to call you. Rahul: Great minds! What were you thinking? Meera: The price is still high. Can you match Siddha Serena's rate? Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference? Meera: Not really. I want mid-floor east facing. Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Meera: Please do. We're ready to close quickly. Rahul: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Rahul: Good morning Meera, wanted to share some updates about Merlin Avana."", ""start"": 0.0, ""end"": 6.5}, {""speaker"": ""client"", ""text"": ""Meera: Hi, I was about to call you."", ""start"": 7.19, ""end"": 9.7}, {""speaker"": ""agent"", ""text"": ""Rahul: Great minds! What were you thinking?"", ""start"": 10.4, ""end"": 15.46}, {""speaker"": ""client"", ""text"": ""Meera: The price is still high. Can you match Siddha Serena's rate?"", ""start"": 17.32, ""end"": 21.34}, {""speaker"": ""agent"", ""text"": ""Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 22.97, ""end"": 25.43}, {""speaker"": ""client"", ""text"": ""Meera: Not really. I want mid-floor east facing."", ""start"": 26.06, ""end"": 33.46}, {""speaker"": ""agent"", ""text"": ""Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 34.82, ""end"": 41.1}, {""speaker"": ""client"", ""text"": ""Meera: Please do. We're ready to close quickly."", ""start"": 42.79, ""end"": 45.88}, {""speaker"": ""agent"", ""text"": ""Rahul: Will revert by tomorrow 2 PM."", ""start"": 47.58, ""end"": 52.12}]",0.83 +TRX-00196,CAL-00412,en-IN,"Rahul: Hi Meera, following up on your enquiry for Merlin Avana. Meera: Yes, tell me. Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Tangra? Meera: Yes, what's the price? Rahul: Starting at 5.35 Cr for 3 BHK. Possession by October 2026. Meera: That's good. Send me the details on WhatsApp. Rahul: Done. When can you visit? Meera: This weekend. Rahul: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Rahul: Hi Meera, following up on your enquiry for Merlin Avana."", ""start"": 0.0, ""end"": 3.51}, {""speaker"": ""client"", ""text"": ""Meera: Yes, tell me."", ""start"": 5.05, ""end"": 12.26}, {""speaker"": ""agent"", ""text"": ""Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Tangra?"", ""start"": 14.24, ""end"": 20.95}, {""speaker"": ""client"", ""text"": ""Meera: Yes, what's the price?"", ""start"": 21.48, ""end"": 27.76}, {""speaker"": ""agent"", ""text"": ""Rahul: Starting at 5.35 Cr for 3 BHK. Possession by October 2026."", ""start"": 28.73, ""end"": 36.5}, {""speaker"": ""client"", ""text"": ""Meera: That's good. Send me the details on WhatsApp."", ""start"": 37.66, ""end"": 41.43}, {""speaker"": ""agent"", ""text"": ""Rahul: Done. When can you visit?"", ""start"": 42.98, ""end"": 45.84}, {""speaker"": ""client"", ""text"": ""Meera: This weekend."", ""start"": 47.11, ""end"": 52.8}, {""speaker"": ""agent"", ""text"": ""Rahul: I'll block Saturday 11 AM for you."", ""start"": 54.14, ""end"": 61.5}]",0.89 +TRX-00197,CAL-00414,en-IN,"Ananya: Hi Meera, following up on your enquiry for Merlin Avana. Meera: Hi, I was about to call you. Ananya: Great minds! What were you thinking? Meera: The price is still high. Can you match Atri Surya Toron's rate? Ananya: I understand. Let me see what best I can do. Are you flexible on floor preference? Meera: Not really. I want mid-floor east facing. Ananya: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Meera: Please do. We're ready to close quickly. Ananya: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Ananya: Hi Meera, following up on your enquiry for Merlin Avana."", ""start"": 0.0, ""end"": 7.17}, {""speaker"": ""client"", ""text"": ""Meera: Hi, I was about to call you."", ""start"": 9.02, ""end"": 14.53}, {""speaker"": ""agent"", ""text"": ""Ananya: Great minds! What were you thinking?"", ""start"": 16.38, ""end"": 21.5}, {""speaker"": ""client"", ""text"": ""Meera: The price is still high. Can you match Atri Surya Toron's rate?"", ""start"": 23.48, ""end"": 29.51}, {""speaker"": ""agent"", ""text"": ""Ananya: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 31.38, ""end"": 35.39}, {""speaker"": ""client"", ""text"": ""Meera: Not really. I want mid-floor east facing."", ""start"": 37.03, ""end"": 39.71}, {""speaker"": ""agent"", ""text"": ""Ananya: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 41.53, ""end"": 48.42}, {""speaker"": ""client"", ""text"": ""Meera: Please do. We're ready to close quickly."", ""start"": 50.3, ""end"": 54.92}, {""speaker"": ""agent"", ""text"": ""Ananya: Will revert by tomorrow 2 PM."", ""start"": 56.01, ""end"": 58.59}]",0.95 +TRX-00198,CAL-00416,en-IN,"Ananya: Hello Prasenjit, this is Ananya from Velocity regarding Siddha Suburbia Bungalow. Prasenjit: Hi, I was about to call you. Ananya: Great minds! What were you thinking? Prasenjit: The price is still high. Can you match Eden Devprayag's rate? Ananya: I understand. Let me see what best I can do. Are you flexible on floor preference? Prasenjit: Not really. I want mid-floor east facing. Ananya: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Prasenjit: Please do. We're ready to close quickly. Ananya: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Ananya: Hello Prasenjit, this is Ananya from Velocity regarding Siddha Suburbia Bungalow."", ""start"": 0.0, ""end"": 7.07}, {""speaker"": ""client"", ""text"": ""Prasenjit: Hi, I was about to call you."", ""start"": 8.71, ""end"": 15.83}, {""speaker"": ""agent"", ""text"": ""Ananya: Great minds! What were you thinking?"", ""start"": 17.32, ""end"": 20.17}, {""speaker"": ""client"", ""text"": ""Prasenjit: The price is still high. Can you match Eden Devprayag's rate?"", ""start"": 22.09, ""end"": 28.98}, {""speaker"": ""agent"", ""text"": ""Ananya: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 30.22, ""end"": 36.82}, {""speaker"": ""client"", ""text"": ""Prasenjit: Not really. I want mid-floor east facing."", ""start"": 37.45, ""end"": 44.05}, {""speaker"": ""agent"", ""text"": ""Ananya: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 46.02, ""end"": 51.43}, {""speaker"": ""client"", ""text"": ""Prasenjit: Please do. We're ready to close quickly."", ""start"": 52.28, ""end"": 54.64}, {""speaker"": ""agent"", ""text"": ""Ananya: Will revert by tomorrow 2 PM."", ""start"": 56.44, ""end"": 63.34}]",0.88 +TRX-00199,CAL-00417,en-IN,"Priya: Hi Prasenjit, following up on your enquiry for Siddha Suburbia Bungalow. Prasenjit: Hi, I was about to call you. Priya: Great minds! What were you thinking? Prasenjit: The price is still high. Can you match Godrej Elevate's rate? Priya: I understand. Let me see what best I can do. Are you flexible on floor preference? Prasenjit: Not really. I want mid-floor east facing. Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Prasenjit: Please do. We're ready to close quickly. Priya: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Priya: Hi Prasenjit, following up on your enquiry for Siddha Suburbia Bungalow."", ""start"": 0.0, ""end"": 2.58}, {""speaker"": ""client"", ""text"": ""Prasenjit: Hi, I was about to call you."", ""start"": 4.41, ""end"": 9.86}, {""speaker"": ""agent"", ""text"": ""Priya: Great minds! What were you thinking?"", ""start"": 11.21, ""end"": 18.44}, {""speaker"": ""client"", ""text"": ""Prasenjit: The price is still high. Can you match Godrej Elevate's rate?"", ""start"": 20.13, ""end"": 24.99}, {""speaker"": ""agent"", ""text"": ""Priya: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 26.49, ""end"": 28.56}, {""speaker"": ""client"", ""text"": ""Prasenjit: Not really. I want mid-floor east facing."", ""start"": 29.25, ""end"": 35.9}, {""speaker"": ""agent"", ""text"": ""Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 37.51, ""end"": 42.54}, {""speaker"": ""client"", ""text"": ""Prasenjit: Please do. We're ready to close quickly."", ""start"": 44.31, ""end"": 52.13}, {""speaker"": ""agent"", ""text"": ""Priya: Will revert by tomorrow 2 PM."", ""start"": 52.96, ""end"": 59.49}]",0.93 +TRX-00200,CAL-00420,en-IN,"Vikram: Hello Abhishek, this is Vikram from Velocity regarding Godrej Blue. Abhishek: Hi, I was about to call you. Vikram: Great minds! What were you thinking? Abhishek: The price is still high. Can you match Shriram Grand City's rate? Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference? Abhishek: Not really. I want mid-floor east facing. Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Abhishek: Please do. We're ready to close quickly. Vikram: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hello Abhishek, this is Vikram from Velocity regarding Godrej Blue."", ""start"": 0.0, ""end"": 3.09}, {""speaker"": ""client"", ""text"": ""Abhishek: Hi, I was about to call you."", ""start"": 4.3, ""end"": 8.39}, {""speaker"": ""agent"", ""text"": ""Vikram: Great minds! What were you thinking?"", ""start"": 10.03, ""end"": 15.17}, {""speaker"": ""client"", ""text"": ""Abhishek: The price is still high. Can you match Shriram Grand City's rate?"", ""start"": 15.73, ""end"": 21.97}, {""speaker"": ""agent"", ""text"": ""Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 23.73, ""end"": 27.86}, {""speaker"": ""client"", ""text"": ""Abhishek: Not really. I want mid-floor east facing."", ""start"": 29.52, ""end"": 35.26}, {""speaker"": ""agent"", ""text"": ""Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 36.64, ""end"": 44.24}, {""speaker"": ""client"", ""text"": ""Abhishek: Please do. We're ready to close quickly."", ""start"": 45.59, ""end"": 52.37}, {""speaker"": ""agent"", ""text"": ""Vikram: Will revert by tomorrow 2 PM."", ""start"": 54.36, ""end"": 56.74}]",0.82 +TRX-00201,CAL-00426,en-IN,"Ananya: Hi Swati, following up on your enquiry for Shriram Grand City. Swati: Yes, tell me. Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Howrah? Swati: Yes, what's the price? Ananya: Starting at 7.46 Cr for 3 BHK. Possession by June 2026. Swati: That's good. Send me the details on WhatsApp. Ananya: Done. When can you visit? Swati: This weekend. Ananya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Ananya: Hi Swati, following up on your enquiry for Shriram Grand City."", ""start"": 0.0, ""end"": 7.56}, {""speaker"": ""client"", ""text"": ""Swati: Yes, tell me."", ""start"": 8.13, ""end"": 14.02}, {""speaker"": ""agent"", ""text"": ""Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Howrah?"", ""start"": 14.99, ""end"": 19.15}, {""speaker"": ""client"", ""text"": ""Swati: Yes, what's the price?"", ""start"": 20.94, ""end"": 26.98}, {""speaker"": ""agent"", ""text"": ""Ananya: Starting at 7.46 Cr for 3 BHK. Possession by June 2026."", ""start"": 28.56, ""end"": 32.93}, {""speaker"": ""client"", ""text"": ""Swati: That's good. Send me the details on WhatsApp."", ""start"": 34.0, ""end"": 41.07}, {""speaker"": ""agent"", ""text"": ""Ananya: Done. When can you visit?"", ""start"": 42.82, ""end"": 44.94}, {""speaker"": ""client"", ""text"": ""Swati: This weekend."", ""start"": 46.21, ""end"": 50.96}, {""speaker"": ""agent"", ""text"": ""Ananya: I'll block Saturday 11 AM for you."", ""start"": 51.95, ""end"": 58.91}]",0.92 +TRX-00202,CAL-00429,en-IN,"Ananya: Hi Sanjay, following up on your enquiry for Atri Aqua. Sanjay: Yes, tell me. Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in New Town? Sanjay: Yes, what's the price? Ananya: Starting at 1.61 Cr for 3 BHK. Possession by July 2026. Sanjay: That's good. Send me the details on WhatsApp. Ananya: Done. When can you visit? Sanjay: This weekend. Ananya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Ananya: Hi Sanjay, following up on your enquiry for Atri Aqua."", ""start"": 0.0, ""end"": 5.21}, {""speaker"": ""client"", ""text"": ""Sanjay: Yes, tell me."", ""start"": 6.07, ""end"": 10.37}, {""speaker"": ""agent"", ""text"": ""Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in New Town?"", ""start"": 11.68, ""end"": 17.96}, {""speaker"": ""client"", ""text"": ""Sanjay: Yes, what's the price?"", ""start"": 19.93, ""end"": 25.55}, {""speaker"": ""agent"", ""text"": ""Ananya: Starting at 1.61 Cr for 3 BHK. Possession by July 2026."", ""start"": 26.74, ""end"": 34.36}, {""speaker"": ""client"", ""text"": ""Sanjay: That's good. Send me the details on WhatsApp."", ""start"": 35.27, ""end"": 41.25}, {""speaker"": ""agent"", ""text"": ""Ananya: Done. When can you visit?"", ""start"": 42.32, ""end"": 48.66}, {""speaker"": ""client"", ""text"": ""Sanjay: This weekend."", ""start"": 50.17, ""end"": 57.2}, {""speaker"": ""agent"", ""text"": ""Ananya: I'll block Saturday 11 AM for you."", ""start"": 58.42, ""end"": 63.38}]",0.85 +TRX-00203,CAL-00430,en-IN,"Vikram: Hello Sanjay, this is Vikram from Velocity regarding Atri Aqua. Sanjay: Hi, I was about to call you. Vikram: Great minds! What were you thinking? Sanjay: The price is still high. Can you match Siddha Suburbia Bungalow's rate? Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference? Sanjay: Not really. I want mid-floor east facing. Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Sanjay: Please do. We're ready to close quickly. Vikram: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hello Sanjay, this is Vikram from Velocity regarding Atri Aqua."", ""start"": 0.0, ""end"": 4.32}, {""speaker"": ""client"", ""text"": ""Sanjay: Hi, I was about to call you."", ""start"": 4.88, ""end"": 8.29}, {""speaker"": ""agent"", ""text"": ""Vikram: Great minds! What were you thinking?"", ""start"": 9.1, ""end"": 15.65}, {""speaker"": ""client"", ""text"": ""Sanjay: The price is still high. Can you match Siddha Suburbia Bungalow's rate?"", ""start"": 17.13, ""end"": 19.45}, {""speaker"": ""agent"", ""text"": ""Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 21.14, ""end"": 28.91}, {""speaker"": ""client"", ""text"": ""Sanjay: Not really. I want mid-floor east facing."", ""start"": 30.25, ""end"": 37.31}, {""speaker"": ""agent"", ""text"": ""Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 37.96, ""end"": 43.64}, {""speaker"": ""client"", ""text"": ""Sanjay: Please do. We're ready to close quickly."", ""start"": 44.8, ""end"": 49.07}, {""speaker"": ""agent"", ""text"": ""Vikram: Will revert by tomorrow 2 PM."", ""start"": 49.67, ""end"": 55.91}]",0.86 +TRX-00204,CAL-00434,en-IN,"Rahul: Hi Vikram, following up on your enquiry for Sugam Prakriti. Vikram: Yes, tell me. Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Barasat? Vikram: Yes, what's the price? Rahul: Starting at 3.59 Cr for 3 BHK. Possession by October 2026. Vikram: That's good. Send me the details on WhatsApp. Rahul: Done. When can you visit? Vikram: This weekend. Rahul: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Rahul: Hi Vikram, following up on your enquiry for Sugam Prakriti."", ""start"": 0.0, ""end"": 4.28}, {""speaker"": ""client"", ""text"": ""Vikram: Yes, tell me."", ""start"": 6.2, ""end"": 13.91}, {""speaker"": ""agent"", ""text"": ""Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Barasat?"", ""start"": 15.5, ""end"": 21.91}, {""speaker"": ""client"", ""text"": ""Vikram: Yes, what's the price?"", ""start"": 22.64, ""end"": 30.41}, {""speaker"": ""agent"", ""text"": ""Rahul: Starting at 3.59 Cr for 3 BHK. Possession by October 2026."", ""start"": 31.63, ""end"": 33.73}, {""speaker"": ""client"", ""text"": ""Vikram: That's good. Send me the details on WhatsApp."", ""start"": 34.3, ""end"": 37.58}, {""speaker"": ""agent"", ""text"": ""Rahul: Done. When can you visit?"", ""start"": 38.11, ""end"": 40.95}, {""speaker"": ""client"", ""text"": ""Vikram: This weekend."", ""start"": 42.32, ""end"": 44.9}, {""speaker"": ""agent"", ""text"": ""Rahul: I'll block Saturday 11 AM for you."", ""start"": 46.62, ""end"": 49.77}]",0.95 +TRX-00205,CAL-00436,en-IN,"Priya: Good morning Amit, wanted to share some updates about Siddha Serena. Amit: Yes, tell me. Priya: We have a new tower launch with pre-launch pricing. Are you still looking in New Town? Amit: Yes, what's the price? Priya: Starting at 2.72 Cr for 3 BHK. Possession by July 2026. Amit: That's good. Send me the details on WhatsApp. Priya: Done. When can you visit? Amit: This weekend. Priya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Priya: Good morning Amit, wanted to share some updates about Siddha Serena."", ""start"": 0.0, ""end"": 4.77}, {""speaker"": ""client"", ""text"": ""Amit: Yes, tell me."", ""start"": 6.13, ""end"": 11.4}, {""speaker"": ""agent"", ""text"": ""Priya: We have a new tower launch with pre-launch pricing. Are you still looking in New Town?"", ""start"": 12.77, ""end"": 17.48}, {""speaker"": ""client"", ""text"": ""Amit: Yes, what's the price?"", ""start"": 18.26, ""end"": 21.48}, {""speaker"": ""agent"", ""text"": ""Priya: Starting at 2.72 Cr for 3 BHK. Possession by July 2026."", ""start"": 23.33, ""end"": 26.99}, {""speaker"": ""client"", ""text"": ""Amit: That's good. Send me the details on WhatsApp."", ""start"": 27.99, ""end"": 34.24}, {""speaker"": ""agent"", ""text"": ""Priya: Done. When can you visit?"", ""start"": 36.19, ""end"": 39.02}, {""speaker"": ""client"", ""text"": ""Amit: This weekend."", ""start"": 40.97, ""end"": 43.62}, {""speaker"": ""agent"", ""text"": ""Priya: I'll block Saturday 11 AM for you."", ""start"": 44.18, ""end"": 51.42}]",0.92 +TRX-00206,CAL-00437,en-IN,"Ananya: Hello Arjun, this is Ananya from Velocity regarding Godrej Elevate. Arjun: Yes, tell me. Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Dum Dum? Arjun: Yes, what's the price? Ananya: Starting at 2.85 Cr for 3 BHK. Possession by July 2026. Arjun: That's good. Send me the details on WhatsApp. Ananya: Done. When can you visit? Arjun: This weekend. Ananya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Ananya: Hello Arjun, this is Ananya from Velocity regarding Godrej Elevate."", ""start"": 0.0, ""end"": 2.11}, {""speaker"": ""client"", ""text"": ""Arjun: Yes, tell me."", ""start"": 3.93, ""end"": 11.71}, {""speaker"": ""agent"", ""text"": ""Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Dum Dum?"", ""start"": 13.62, ""end"": 16.08}, {""speaker"": ""client"", ""text"": ""Arjun: Yes, what's the price?"", ""start"": 17.81, ""end"": 22.08}, {""speaker"": ""agent"", ""text"": ""Ananya: Starting at 2.85 Cr for 3 BHK. Possession by July 2026."", ""start"": 23.33, ""end"": 30.62}, {""speaker"": ""client"", ""text"": ""Arjun: That's good. Send me the details on WhatsApp."", ""start"": 32.18, ""end"": 36.13}, {""speaker"": ""agent"", ""text"": ""Ananya: Done. When can you visit?"", ""start"": 36.9, ""end"": 39.74}, {""speaker"": ""client"", ""text"": ""Arjun: This weekend."", ""start"": 40.72, ""end"": 46.68}, {""speaker"": ""agent"", ""text"": ""Ananya: I'll block Saturday 11 AM for you."", ""start"": 48.27, ""end"": 54.85}]",0.92 +TRX-00207,CAL-00439,en-IN,"Rahul: Hi Ananya, following up on your enquiry for Sugam Prakriti. Ananya: Yes, tell me. Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Barasat? Ananya: Yes, what's the price? Rahul: Starting at 2.92 Cr for 3 BHK. Possession by July 2026. Ananya: That's good. Send me the details on WhatsApp. Rahul: Done. When can you visit? Ananya: This weekend. Rahul: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Rahul: Hi Ananya, following up on your enquiry for Sugam Prakriti."", ""start"": 0.0, ""end"": 5.82}, {""speaker"": ""client"", ""text"": ""Ananya: Yes, tell me."", ""start"": 7.53, ""end"": 12.56}, {""speaker"": ""agent"", ""text"": ""Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Barasat?"", ""start"": 13.72, ""end"": 18.81}, {""speaker"": ""client"", ""text"": ""Ananya: Yes, what's the price?"", ""start"": 19.4, ""end"": 23.03}, {""speaker"": ""agent"", ""text"": ""Rahul: Starting at 2.92 Cr for 3 BHK. Possession by July 2026."", ""start"": 24.91, ""end"": 32.3}, {""speaker"": ""client"", ""text"": ""Ananya: That's good. Send me the details on WhatsApp."", ""start"": 33.67, ""end"": 39.88}, {""speaker"": ""agent"", ""text"": ""Rahul: Done. When can you visit?"", ""start"": 41.33, ""end"": 43.45}, {""speaker"": ""client"", ""text"": ""Ananya: This weekend."", ""start"": 44.46, ""end"": 52.17}, {""speaker"": ""agent"", ""text"": ""Rahul: I'll block Saturday 11 AM for you."", ""start"": 53.53, ""end"": 57.23}]",0.84 +TRX-00208,CAL-00440,en-IN,"Priya: Hi Ritu, following up on your enquiry for Siddha Suburbia Bungalow. Ritu: Yes, tell me. Priya: We have a new tower launch with pre-launch pricing. Are you still looking in Madanpur? Ritu: Yes, what's the price? Priya: Starting at 4.38 Cr for 3 BHK. Possession by June 2026. Ritu: That's good. Send me the details on WhatsApp. Priya: Done. When can you visit? Ritu: This weekend. Priya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Priya: Hi Ritu, following up on your enquiry for Siddha Suburbia Bungalow."", ""start"": 0.0, ""end"": 4.78}, {""speaker"": ""client"", ""text"": ""Ritu: Yes, tell me."", ""start"": 6.62, ""end"": 11.7}, {""speaker"": ""agent"", ""text"": ""Priya: We have a new tower launch with pre-launch pricing. Are you still looking in Madanpur?"", ""start"": 13.23, ""end"": 15.69}, {""speaker"": ""client"", ""text"": ""Ritu: Yes, what's the price?"", ""start"": 17.11, ""end"": 20.96}, {""speaker"": ""agent"", ""text"": ""Priya: Starting at 4.38 Cr for 3 BHK. Possession by June 2026."", ""start"": 22.46, ""end"": 30.31}, {""speaker"": ""client"", ""text"": ""Ritu: That's good. Send me the details on WhatsApp."", ""start"": 30.83, ""end"": 34.36}, {""speaker"": ""agent"", ""text"": ""Priya: Done. When can you visit?"", ""start"": 35.21, ""end"": 37.39}, {""speaker"": ""client"", ""text"": ""Ritu: This weekend."", ""start"": 39.39, ""end"": 42.07}, {""speaker"": ""agent"", ""text"": ""Priya: I'll block Saturday 11 AM for you."", ""start"": 42.69, ""end"": 46.56}]",0.83 +TRX-00209,CAL-00442,en-IN,"Vikram: Hi Ritu, following up on your enquiry for Siddha Suburbia Bungalow. Ritu: Hi, I was about to call you. Vikram: Great minds! What were you thinking? Ritu: The price is still high. Can you match Shriram Grand City's rate? Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference? Ritu: Not really. I want mid-floor east facing. Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Ritu: Please do. We're ready to close quickly. Vikram: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hi Ritu, following up on your enquiry for Siddha Suburbia Bungalow."", ""start"": 0.0, ""end"": 4.99}, {""speaker"": ""client"", ""text"": ""Ritu: Hi, I was about to call you."", ""start"": 6.18, ""end"": 11.61}, {""speaker"": ""agent"", ""text"": ""Vikram: Great minds! What were you thinking?"", ""start"": 13.39, ""end"": 15.54}, {""speaker"": ""client"", ""text"": ""Ritu: The price is still high. Can you match Shriram Grand City's rate?"", ""start"": 17.5, ""end"": 25.31}, {""speaker"": ""agent"", ""text"": ""Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 26.69, ""end"": 33.1}, {""speaker"": ""client"", ""text"": ""Ritu: Not really. I want mid-floor east facing."", ""start"": 33.84, ""end"": 36.01}, {""speaker"": ""agent"", ""text"": ""Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 37.17, ""end"": 45.1}, {""speaker"": ""client"", ""text"": ""Ritu: Please do. We're ready to close quickly."", ""start"": 46.39, ""end"": 49.19}, {""speaker"": ""agent"", ""text"": ""Vikram: Will revert by tomorrow 2 PM."", ""start"": 50.74, ""end"": 56.2}]",0.89 +TRX-00210,CAL-00443,en-IN,"Rahul: Good morning Pallavi, wanted to share some updates about Godrej Elevate. Pallavi: Hi, I was about to call you. Rahul: Great minds! What were you thinking? Pallavi: The price is still high. Can you match Sugam Prakriti's rate? Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference? Pallavi: Not really. I want mid-floor east facing. Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Pallavi: Please do. We're ready to close quickly. Rahul: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Rahul: Good morning Pallavi, wanted to share some updates about Godrej Elevate."", ""start"": 0.0, ""end"": 4.21}, {""speaker"": ""client"", ""text"": ""Pallavi: Hi, I was about to call you."", ""start"": 4.75, ""end"": 12.27}, {""speaker"": ""agent"", ""text"": ""Rahul: Great minds! What were you thinking?"", ""start"": 13.07, ""end"": 20.1}, {""speaker"": ""client"", ""text"": ""Pallavi: The price is still high. Can you match Sugam Prakriti's rate?"", ""start"": 20.72, ""end"": 24.16}, {""speaker"": ""agent"", ""text"": ""Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 25.92, ""end"": 33.07}, {""speaker"": ""client"", ""text"": ""Pallavi: Not really. I want mid-floor east facing."", ""start"": 33.88, ""end"": 39.16}, {""speaker"": ""agent"", ""text"": ""Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 40.81, ""end"": 42.9}, {""speaker"": ""client"", ""text"": ""Pallavi: Please do. We're ready to close quickly."", ""start"": 43.99, ""end"": 50.11}, {""speaker"": ""agent"", ""text"": ""Rahul: Will revert by tomorrow 2 PM."", ""start"": 50.91, ""end"": 54.02}]",0.84 +TRX-00211,CAL-00445,en-IN,"Vikram: Good morning Pallavi, wanted to share some updates about Godrej Elevate. Pallavi: Yes, tell me. Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Dum Dum? Pallavi: Yes, what's the price? Vikram: Starting at 6.26 Cr for 3 BHK. Possession by August 2026. Pallavi: That's good. Send me the details on WhatsApp. Vikram: Done. When can you visit? Pallavi: This weekend. Vikram: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Vikram: Good morning Pallavi, wanted to share some updates about Godrej Elevate."", ""start"": 0.0, ""end"": 5.39}, {""speaker"": ""client"", ""text"": ""Pallavi: Yes, tell me."", ""start"": 5.92, ""end"": 12.39}, {""speaker"": ""agent"", ""text"": ""Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Dum Dum?"", ""start"": 13.85, ""end"": 16.02}, {""speaker"": ""client"", ""text"": ""Pallavi: Yes, what's the price?"", ""start"": 17.94, ""end"": 24.94}, {""speaker"": ""agent"", ""text"": ""Vikram: Starting at 6.26 Cr for 3 BHK. Possession by August 2026."", ""start"": 25.67, ""end"": 28.83}, {""speaker"": ""client"", ""text"": ""Pallavi: That's good. Send me the details on WhatsApp."", ""start"": 30.49, ""end"": 37.99}, {""speaker"": ""agent"", ""text"": ""Vikram: Done. When can you visit?"", ""start"": 39.12, ""end"": 46.73}, {""speaker"": ""client"", ""text"": ""Pallavi: This weekend."", ""start"": 47.81, ""end"": 51.48}, {""speaker"": ""agent"", ""text"": ""Vikram: I'll block Saturday 11 AM for you."", ""start"": 53.43, ""end"": 57.94}]",0.9 +TRX-00212,CAL-00447,en-IN,"Rahul: Good morning Deepak, wanted to share some updates about Godrej Blue. Deepak: Hi, I was about to call you. Rahul: Great minds! What were you thinking? Deepak: The price is still high. Can you match Ambuja Utpaala's rate? Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference? Deepak: Not really. I want mid-floor east facing. Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Deepak: Please do. We're ready to close quickly. Rahul: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Rahul: Good morning Deepak, wanted to share some updates about Godrej Blue."", ""start"": 0.0, ""end"": 6.9}, {""speaker"": ""client"", ""text"": ""Deepak: Hi, I was about to call you."", ""start"": 7.62, ""end"": 13.94}, {""speaker"": ""agent"", ""text"": ""Rahul: Great minds! What were you thinking?"", ""start"": 14.94, ""end"": 20.48}, {""speaker"": ""client"", ""text"": ""Deepak: The price is still high. Can you match Ambuja Utpaala's rate?"", ""start"": 21.73, ""end"": 25.53}, {""speaker"": ""agent"", ""text"": ""Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 27.4, ""end"": 33.76}, {""speaker"": ""client"", ""text"": ""Deepak: Not really. I want mid-floor east facing."", ""start"": 35.29, ""end"": 40.76}, {""speaker"": ""agent"", ""text"": ""Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 41.52, ""end"": 46.93}, {""speaker"": ""client"", ""text"": ""Deepak: Please do. We're ready to close quickly."", ""start"": 47.49, ""end"": 50.35}, {""speaker"": ""agent"", ""text"": ""Rahul: Will revert by tomorrow 2 PM."", ""start"": 50.91, ""end"": 56.84}]",0.91 +TRX-00213,CAL-00448,en-IN,"Rahul: Hello Deepak, this is Rahul from Velocity regarding Sugam Prakriti. Deepak: Yes, tell me. Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Barasat? Deepak: Yes, what's the price? Rahul: Starting at 2.86 Cr for 3 BHK. Possession by July 2026. Deepak: That's good. Send me the details on WhatsApp. Rahul: Done. When can you visit? Deepak: This weekend. Rahul: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Rahul: Hello Deepak, this is Rahul from Velocity regarding Sugam Prakriti."", ""start"": 0.0, ""end"": 2.16}, {""speaker"": ""client"", ""text"": ""Deepak: Yes, tell me."", ""start"": 3.02, ""end"": 9.5}, {""speaker"": ""agent"", ""text"": ""Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Barasat?"", ""start"": 10.36, ""end"": 14.22}, {""speaker"": ""client"", ""text"": ""Deepak: Yes, what's the price?"", ""start"": 15.13, ""end"": 17.5}, {""speaker"": ""agent"", ""text"": ""Rahul: Starting at 2.86 Cr for 3 BHK. Possession by July 2026."", ""start"": 19.21, ""end"": 24.48}, {""speaker"": ""client"", ""text"": ""Deepak: That's good. Send me the details on WhatsApp."", ""start"": 25.97, ""end"": 30.65}, {""speaker"": ""agent"", ""text"": ""Rahul: Done. When can you visit?"", ""start"": 31.81, ""end"": 38.29}, {""speaker"": ""client"", ""text"": ""Deepak: This weekend."", ""start"": 39.61, ""end"": 44.15}, {""speaker"": ""agent"", ""text"": ""Rahul: I'll block Saturday 11 AM for you."", ""start"": 45.76, ""end"": 50.28}]",0.86 +TRX-00214,CAL-00449,en-IN,"Ananya: Hello Deb, this is Ananya from Velocity regarding DTC Good Earth. Deb: Hi, I was about to call you. Ananya: Great minds! What were you thinking? Deb: The price is still high. Can you match Atri Aqua's rate? Ananya: I understand. Let me see what best I can do. Are you flexible on floor preference? Deb: Not really. I want mid-floor east facing. Ananya: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Deb: Please do. We're ready to close quickly. Ananya: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Ananya: Hello Deb, this is Ananya from Velocity regarding DTC Good Earth."", ""start"": 0.0, ""end"": 4.23}, {""speaker"": ""client"", ""text"": ""Deb: Hi, I was about to call you."", ""start"": 5.05, ""end"": 10.48}, {""speaker"": ""agent"", ""text"": ""Ananya: Great minds! What were you thinking?"", ""start"": 11.27, ""end"": 16.29}, {""speaker"": ""client"", ""text"": ""Deb: The price is still high. Can you match Atri Aqua's rate?"", ""start"": 17.51, ""end"": 23.68}, {""speaker"": ""agent"", ""text"": ""Ananya: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 24.89, ""end"": 30.69}, {""speaker"": ""client"", ""text"": ""Deb: Not really. I want mid-floor east facing."", ""start"": 32.1, ""end"": 38.57}, {""speaker"": ""agent"", ""text"": ""Ananya: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 39.33, ""end"": 46.91}, {""speaker"": ""client"", ""text"": ""Deb: Please do. We're ready to close quickly."", ""start"": 48.18, ""end"": 51.68}, {""speaker"": ""agent"", ""text"": ""Ananya: Will revert by tomorrow 2 PM."", ""start"": 53.64, ""end"": 59.93}]",0.96 +TRX-00215,CAL-00450,en-IN,"Vikram: Hi Anirban, following up on your enquiry for Merlin Avana. Anirban: Yes, tell me. Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Tangra? Anirban: Yes, what's the price? Vikram: Starting at 2.86 Cr for 3 BHK. Possession by July 2026. Anirban: That's good. Send me the details on WhatsApp. Vikram: Done. When can you visit? Anirban: This weekend. Vikram: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hi Anirban, following up on your enquiry for Merlin Avana."", ""start"": 0.0, ""end"": 5.05}, {""speaker"": ""client"", ""text"": ""Anirban: Yes, tell me."", ""start"": 5.81, ""end"": 12.9}, {""speaker"": ""agent"", ""text"": ""Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Tangra?"", ""start"": 14.81, ""end"": 18.15}, {""speaker"": ""client"", ""text"": ""Anirban: Yes, what's the price?"", ""start"": 19.29, ""end"": 25.67}, {""speaker"": ""agent"", ""text"": ""Vikram: Starting at 2.86 Cr for 3 BHK. Possession by July 2026."", ""start"": 27.48, ""end"": 31.45}, {""speaker"": ""client"", ""text"": ""Anirban: That's good. Send me the details on WhatsApp."", ""start"": 32.13, ""end"": 36.56}, {""speaker"": ""agent"", ""text"": ""Vikram: Done. When can you visit?"", ""start"": 37.75, ""end"": 40.22}, {""speaker"": ""client"", ""text"": ""Anirban: This weekend."", ""start"": 41.77, ""end"": 47.36}, {""speaker"": ""agent"", ""text"": ""Vikram: I'll block Saturday 11 AM for you."", ""start"": 49.14, ""end"": 52.11}]",0.89 +TRX-00216,CAL-00452,en-IN,"Rahul: Hi Asha, following up on your enquiry for Ambuja Utpaala. Asha: Yes, tell me. Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Tollygunge? Asha: Yes, what's the price? Rahul: Starting at 4.46 Cr for 3 BHK. Possession by July 2026. Asha: That's good. Send me the details on WhatsApp. Rahul: Done. When can you visit? Asha: This weekend. Rahul: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Rahul: Hi Asha, following up on your enquiry for Ambuja Utpaala."", ""start"": 0.0, ""end"": 7.63}, {""speaker"": ""client"", ""text"": ""Asha: Yes, tell me."", ""start"": 8.27, ""end"": 12.98}, {""speaker"": ""agent"", ""text"": ""Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Tollygunge?"", ""start"": 13.62, ""end"": 16.67}, {""speaker"": ""client"", ""text"": ""Asha: Yes, what's the price?"", ""start"": 18.61, ""end"": 21.01}, {""speaker"": ""agent"", ""text"": ""Rahul: Starting at 4.46 Cr for 3 BHK. Possession by July 2026."", ""start"": 21.97, ""end"": 26.82}, {""speaker"": ""client"", ""text"": ""Asha: That's good. Send me the details on WhatsApp."", ""start"": 28.24, ""end"": 30.27}, {""speaker"": ""agent"", ""text"": ""Rahul: Done. When can you visit?"", ""start"": 31.96, ""end"": 35.33}, {""speaker"": ""client"", ""text"": ""Asha: This weekend."", ""start"": 35.91, ""end"": 42.24}, {""speaker"": ""agent"", ""text"": ""Rahul: I'll block Saturday 11 AM for you."", ""start"": 43.16, ""end"": 50.65}]",0.92 +TRX-00217,CAL-00453,en-IN,"Rahul: Good morning Asha, wanted to share some updates about Ambuja Utpaala. Asha: Hi, I was about to call you. Rahul: Great minds! What were you thinking? Asha: The price is still high. Can you match Siddha Sky Waterfront's rate? Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference? Asha: Not really. I want mid-floor east facing. Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Asha: Please do. We're ready to close quickly. Rahul: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Rahul: Good morning Asha, wanted to share some updates about Ambuja Utpaala."", ""start"": 0.0, ""end"": 6.39}, {""speaker"": ""client"", ""text"": ""Asha: Hi, I was about to call you."", ""start"": 8.06, ""end"": 13.45}, {""speaker"": ""agent"", ""text"": ""Rahul: Great minds! What were you thinking?"", ""start"": 14.37, ""end"": 21.93}, {""speaker"": ""client"", ""text"": ""Asha: The price is still high. Can you match Siddha Sky Waterfront's rate?"", ""start"": 23.51, ""end"": 27.93}, {""speaker"": ""agent"", ""text"": ""Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 28.94, ""end"": 35.86}, {""speaker"": ""client"", ""text"": ""Asha: Not really. I want mid-floor east facing."", ""start"": 37.71, ""end"": 39.73}, {""speaker"": ""agent"", ""text"": ""Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 41.35, ""end"": 49.32}, {""speaker"": ""client"", ""text"": ""Asha: Please do. We're ready to close quickly."", ""start"": 51.22, ""end"": 53.24}, {""speaker"": ""agent"", ""text"": ""Rahul: Will revert by tomorrow 2 PM."", ""start"": 54.24, ""end"": 59.74}]",0.89 +TRX-00218,CAL-00454,en-IN,"Vikram: Good morning Asha, wanted to share some updates about Ambuja Utpaala. Asha: Hi, I was about to call you. Vikram: Great minds! What were you thinking? Asha: The price is still high. Can you match Eden Devprayag's rate? Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference? Asha: Not really. I want mid-floor east facing. Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Asha: Please do. We're ready to close quickly. Vikram: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Vikram: Good morning Asha, wanted to share some updates about Ambuja Utpaala."", ""start"": 0.0, ""end"": 4.24}, {""speaker"": ""client"", ""text"": ""Asha: Hi, I was about to call you."", ""start"": 5.92, ""end"": 9.43}, {""speaker"": ""agent"", ""text"": ""Vikram: Great minds! What were you thinking?"", ""start"": 10.55, ""end"": 16.72}, {""speaker"": ""client"", ""text"": ""Asha: The price is still high. Can you match Eden Devprayag's rate?"", ""start"": 17.81, ""end"": 22.84}, {""speaker"": ""agent"", ""text"": ""Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 23.91, ""end"": 26.41}, {""speaker"": ""client"", ""text"": ""Asha: Not really. I want mid-floor east facing."", ""start"": 27.98, ""end"": 35.23}, {""speaker"": ""agent"", ""text"": ""Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 36.32, ""end"": 43.52}, {""speaker"": ""client"", ""text"": ""Asha: Please do. We're ready to close quickly."", ""start"": 44.13, ""end"": 46.18}, {""speaker"": ""agent"", ""text"": ""Vikram: Will revert by tomorrow 2 PM."", ""start"": 47.85, ""end"": 53.45}]",0.83 +TRX-00219,CAL-00455,en-IN,"Vikram: Hi Deb, following up on your enquiry for Sugam Prakriti. Deb: Hi, I was about to call you. Vikram: Great minds! What were you thinking? Deb: The price is still high. Can you match Eden Devprayag's rate? Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference? Deb: Not really. I want mid-floor east facing. Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Deb: Please do. We're ready to close quickly. Vikram: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hi Deb, following up on your enquiry for Sugam Prakriti."", ""start"": 0.0, ""end"": 7.75}, {""speaker"": ""client"", ""text"": ""Deb: Hi, I was about to call you."", ""start"": 9.54, ""end"": 15.06}, {""speaker"": ""agent"", ""text"": ""Vikram: Great minds! What were you thinking?"", ""start"": 16.18, ""end"": 21.9}, {""speaker"": ""client"", ""text"": ""Deb: The price is still high. Can you match Eden Devprayag's rate?"", ""start"": 22.93, ""end"": 29.07}, {""speaker"": ""agent"", ""text"": ""Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 30.14, ""end"": 33.99}, {""speaker"": ""client"", ""text"": ""Deb: Not really. I want mid-floor east facing."", ""start"": 35.09, ""end"": 38.66}, {""speaker"": ""agent"", ""text"": ""Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 39.65, ""end"": 41.65}, {""speaker"": ""client"", ""text"": ""Deb: Please do. We're ready to close quickly."", ""start"": 43.63, ""end"": 48.01}, {""speaker"": ""agent"", ""text"": ""Vikram: Will revert by tomorrow 2 PM."", ""start"": 49.21, ""end"": 54.88}]",0.91 +TRX-00220,CAL-00456,en-IN,"Ananya: Hello Ananya, this is Ananya from Velocity regarding Eden Devprayag. Ananya: Yes, tell me. Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat? Ananya: Yes, what's the price? Ananya: Starting at 5.23 Cr for 3 BHK. Possession by June 2026. Ananya: That's good. Send me the details on WhatsApp. Ananya: Done. When can you visit? Ananya: This weekend. Ananya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Ananya: Hello Ananya, this is Ananya from Velocity regarding Eden Devprayag."", ""start"": 0.0, ""end"": 5.95}, {""speaker"": ""client"", ""text"": ""Ananya: Yes, tell me."", ""start"": 7.68, ""end"": 13.18}, {""speaker"": ""agent"", ""text"": ""Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat?"", ""start"": 14.01, ""end"": 18.94}, {""speaker"": ""client"", ""text"": ""Ananya: Yes, what's the price?"", ""start"": 20.62, ""end"": 23.63}, {""speaker"": ""agent"", ""text"": ""Ananya: Starting at 5.23 Cr for 3 BHK. Possession by June 2026."", ""start"": 24.57, ""end"": 29.64}, {""speaker"": ""client"", ""text"": ""Ananya: That's good. Send me the details on WhatsApp."", ""start"": 31.25, ""end"": 35.82}, {""speaker"": ""agent"", ""text"": ""Ananya: Done. When can you visit?"", ""start"": 37.63, ""end"": 40.9}, {""speaker"": ""client"", ""text"": ""Ananya: This weekend."", ""start"": 42.78, ""end"": 46.97}, {""speaker"": ""agent"", ""text"": ""Ananya: I'll block Saturday 11 AM for you."", ""start"": 48.09, ""end"": 52.49}]",0.9 +TRX-00221,CAL-00458,en-IN,"Rahul: Hi Ritu, following up on your enquiry for Atri Aqua. Ritu: Hi, I was about to call you. Rahul: Great minds! What were you thinking? Ritu: The price is still high. Can you match Ambuja Utpaala's rate? Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference? Ritu: Not really. I want mid-floor east facing. Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Ritu: Please do. We're ready to close quickly. Rahul: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Rahul: Hi Ritu, following up on your enquiry for Atri Aqua."", ""start"": 0.0, ""end"": 3.06}, {""speaker"": ""client"", ""text"": ""Ritu: Hi, I was about to call you."", ""start"": 3.93, ""end"": 9.91}, {""speaker"": ""agent"", ""text"": ""Rahul: Great minds! What were you thinking?"", ""start"": 11.54, ""end"": 17.0}, {""speaker"": ""client"", ""text"": ""Ritu: The price is still high. Can you match Ambuja Utpaala's rate?"", ""start"": 18.38, ""end"": 23.68}, {""speaker"": ""agent"", ""text"": ""Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 25.23, ""end"": 28.81}, {""speaker"": ""client"", ""text"": ""Ritu: Not really. I want mid-floor east facing."", ""start"": 29.51, ""end"": 33.45}, {""speaker"": ""agent"", ""text"": ""Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 34.62, ""end"": 38.7}, {""speaker"": ""client"", ""text"": ""Ritu: Please do. We're ready to close quickly."", ""start"": 40.27, ""end"": 43.39}, {""speaker"": ""agent"", ""text"": ""Rahul: Will revert by tomorrow 2 PM."", ""start"": 44.35, ""end"": 52.28}]",0.94 +TRX-00222,CAL-00460,en-IN,"Ananya: Good morning Deb, wanted to share some updates about Siddha Sky Waterfront. Deb: Yes, tell me. Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Beliaghata? Deb: Yes, what's the price? Ananya: Starting at 5.45 Cr for 3 BHK. Possession by June 2026. Deb: That's good. Send me the details on WhatsApp. Ananya: Done. When can you visit? Deb: This weekend. Ananya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Ananya: Good morning Deb, wanted to share some updates about Siddha Sky Waterfront."", ""start"": 0.0, ""end"": 4.4}, {""speaker"": ""client"", ""text"": ""Deb: Yes, tell me."", ""start"": 5.74, ""end"": 13.13}, {""speaker"": ""agent"", ""text"": ""Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Beliaghata?"", ""start"": 14.04, ""end"": 21.77}, {""speaker"": ""client"", ""text"": ""Deb: Yes, what's the price?"", ""start"": 22.58, ""end"": 26.21}, {""speaker"": ""agent"", ""text"": ""Ananya: Starting at 5.45 Cr for 3 BHK. Possession by June 2026."", ""start"": 27.5, ""end"": 35.23}, {""speaker"": ""client"", ""text"": ""Deb: That's good. Send me the details on WhatsApp."", ""start"": 36.36, ""end"": 38.92}, {""speaker"": ""agent"", ""text"": ""Ananya: Done. When can you visit?"", ""start"": 40.22, ""end"": 42.74}, {""speaker"": ""client"", ""text"": ""Deb: This weekend."", ""start"": 43.94, ""end"": 50.74}, {""speaker"": ""agent"", ""text"": ""Ananya: I'll block Saturday 11 AM for you."", ""start"": 51.67, ""end"": 55.1}]",0.87 +TRX-00223,CAL-00461,en-IN,"Rahul: Hello Deb, this is Rahul from Velocity regarding Siddha Sky Waterfront. Deb: Hi, I was about to call you. Rahul: Great minds! What were you thinking? Deb: The price is still high. Can you match Shriram Grand City's rate? Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference? Deb: Not really. I want mid-floor east facing. Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Deb: Please do. We're ready to close quickly. Rahul: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Rahul: Hello Deb, this is Rahul from Velocity regarding Siddha Sky Waterfront."", ""start"": 0.0, ""end"": 2.75}, {""speaker"": ""client"", ""text"": ""Deb: Hi, I was about to call you."", ""start"": 3.95, ""end"": 9.3}, {""speaker"": ""agent"", ""text"": ""Rahul: Great minds! What were you thinking?"", ""start"": 10.36, ""end"": 13.79}, {""speaker"": ""client"", ""text"": ""Deb: The price is still high. Can you match Shriram Grand City's rate?"", ""start"": 14.38, ""end"": 21.27}, {""speaker"": ""agent"", ""text"": ""Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 21.81, ""end"": 26.59}, {""speaker"": ""client"", ""text"": ""Deb: Not really. I want mid-floor east facing."", ""start"": 27.73, ""end"": 31.69}, {""speaker"": ""agent"", ""text"": ""Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 33.57, ""end"": 40.01}, {""speaker"": ""client"", ""text"": ""Deb: Please do. We're ready to close quickly."", ""start"": 41.76, ""end"": 46.4}, {""speaker"": ""agent"", ""text"": ""Rahul: Will revert by tomorrow 2 PM."", ""start"": 47.53, ""end"": 52.8}]",0.89 +TRX-00224,CAL-00465,en-IN,"Rahul: Hello Abhishek, this is Rahul from Velocity regarding Atri Surya Toron. Abhishek: Yes, tell me. Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat? Abhishek: Yes, what's the price? Rahul: Starting at 2.11 Cr for 3 BHK. Possession by October 2026. Abhishek: That's good. Send me the details on WhatsApp. Rahul: Done. When can you visit? Abhishek: This weekend. Rahul: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Rahul: Hello Abhishek, this is Rahul from Velocity regarding Atri Surya Toron."", ""start"": 0.0, ""end"": 4.65}, {""speaker"": ""client"", ""text"": ""Abhishek: Yes, tell me."", ""start"": 6.42, ""end"": 11.89}, {""speaker"": ""agent"", ""text"": ""Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat?"", ""start"": 13.48, ""end"": 19.26}, {""speaker"": ""client"", ""text"": ""Abhishek: Yes, what's the price?"", ""start"": 19.95, ""end"": 26.68}, {""speaker"": ""agent"", ""text"": ""Rahul: Starting at 2.11 Cr for 3 BHK. Possession by October 2026."", ""start"": 28.27, ""end"": 35.28}, {""speaker"": ""client"", ""text"": ""Abhishek: That's good. Send me the details on WhatsApp."", ""start"": 37.08, ""end"": 39.32}, {""speaker"": ""agent"", ""text"": ""Rahul: Done. When can you visit?"", ""start"": 41.12, ""end"": 44.7}, {""speaker"": ""client"", ""text"": ""Abhishek: This weekend."", ""start"": 45.25, ""end"": 52.79}, {""speaker"": ""agent"", ""text"": ""Rahul: I'll block Saturday 11 AM for you."", ""start"": 53.76, ""end"": 58.97}]",0.87 +TRX-00225,CAL-00466,en-IN,"Rahul: Good morning Moumita, wanted to share some updates about Godrej Blue. Moumita: Yes, tell me. Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in New Town? Moumita: Yes, what's the price? Rahul: Starting at 3.46 Cr for 3 BHK. Possession by July 2026. Moumita: That's good. Send me the details on WhatsApp. Rahul: Done. When can you visit? Moumita: This weekend. Rahul: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Rahul: Good morning Moumita, wanted to share some updates about Godrej Blue."", ""start"": 0.0, ""end"": 6.28}, {""speaker"": ""client"", ""text"": ""Moumita: Yes, tell me."", ""start"": 7.8, ""end"": 11.47}, {""speaker"": ""agent"", ""text"": ""Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in New Town?"", ""start"": 13.15, ""end"": 16.98}, {""speaker"": ""client"", ""text"": ""Moumita: Yes, what's the price?"", ""start"": 18.01, ""end"": 24.76}, {""speaker"": ""agent"", ""text"": ""Rahul: Starting at 3.46 Cr for 3 BHK. Possession by July 2026."", ""start"": 26.36, ""end"": 32.56}, {""speaker"": ""client"", ""text"": ""Moumita: That's good. Send me the details on WhatsApp."", ""start"": 33.32, ""end"": 39.05}, {""speaker"": ""agent"", ""text"": ""Rahul: Done. When can you visit?"", ""start"": 40.43, ""end"": 42.76}, {""speaker"": ""client"", ""text"": ""Moumita: This weekend."", ""start"": 43.36, ""end"": 46.97}, {""speaker"": ""agent"", ""text"": ""Rahul: I'll block Saturday 11 AM for you."", ""start"": 48.83, ""end"": 52.52}]",0.95 +TRX-00226,CAL-00468,en-IN,"Vikram: Good morning Aditya, wanted to share some updates about DTC Good Earth. Aditya: Hi, I was about to call you. Vikram: Great minds! What were you thinking? Aditya: The price is still high. Can you match Eden Devprayag's rate? Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference? Aditya: Not really. I want mid-floor east facing. Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Aditya: Please do. We're ready to close quickly. Vikram: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Vikram: Good morning Aditya, wanted to share some updates about DTC Good Earth."", ""start"": 0.0, ""end"": 2.85}, {""speaker"": ""client"", ""text"": ""Aditya: Hi, I was about to call you."", ""start"": 3.67, ""end"": 6.38}, {""speaker"": ""agent"", ""text"": ""Vikram: Great minds! What were you thinking?"", ""start"": 7.39, ""end"": 13.76}, {""speaker"": ""client"", ""text"": ""Aditya: The price is still high. Can you match Eden Devprayag's rate?"", ""start"": 14.85, ""end"": 19.4}, {""speaker"": ""agent"", ""text"": ""Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 20.85, ""end"": 22.99}, {""speaker"": ""client"", ""text"": ""Aditya: Not really. I want mid-floor east facing."", ""start"": 24.44, ""end"": 27.15}, {""speaker"": ""agent"", ""text"": ""Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 28.58, ""end"": 36.3}, {""speaker"": ""client"", ""text"": ""Aditya: Please do. We're ready to close quickly."", ""start"": 37.93, ""end"": 42.18}, {""speaker"": ""agent"", ""text"": ""Vikram: Will revert by tomorrow 2 PM."", ""start"": 44.15, ""end"": 51.97}]",0.91 +TRX-00227,CAL-00470,en-IN,"Priya: Hello Aditya, this is Priya from Velocity regarding DTC Good Earth. Aditya: Hi, I was about to call you. Priya: Great minds! What were you thinking? Aditya: The price is still high. Can you match Shriram Grand City's rate? Priya: I understand. Let me see what best I can do. Are you flexible on floor preference? Aditya: Not really. I want mid-floor east facing. Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Aditya: Please do. We're ready to close quickly. Priya: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Priya: Hello Aditya, this is Priya from Velocity regarding DTC Good Earth."", ""start"": 0.0, ""end"": 7.77}, {""speaker"": ""client"", ""text"": ""Aditya: Hi, I was about to call you."", ""start"": 9.14, ""end"": 14.94}, {""speaker"": ""agent"", ""text"": ""Priya: Great minds! What were you thinking?"", ""start"": 16.28, ""end"": 21.31}, {""speaker"": ""client"", ""text"": ""Aditya: The price is still high. Can you match Shriram Grand City's rate?"", ""start"": 22.6, ""end"": 28.67}, {""speaker"": ""agent"", ""text"": ""Priya: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 30.59, ""end"": 35.77}, {""speaker"": ""client"", ""text"": ""Aditya: Not really. I want mid-floor east facing."", ""start"": 36.69, ""end"": 40.58}, {""speaker"": ""agent"", ""text"": ""Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 42.07, ""end"": 49.76}, {""speaker"": ""client"", ""text"": ""Aditya: Please do. We're ready to close quickly."", ""start"": 51.56, ""end"": 59.16}, {""speaker"": ""agent"", ""text"": ""Priya: Will revert by tomorrow 2 PM."", ""start"": 60.01, ""end"": 62.98}]",0.92 +TRX-00228,CAL-00471,en-IN,"Ananya: Hi Moumita, following up on your enquiry for Siddha Sky Waterfront. Moumita: Yes, tell me. Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Beliaghata? Moumita: Yes, what's the price? Ananya: Starting at 3.97 Cr for 3 BHK. Possession by September 2026. Moumita: That's good. Send me the details on WhatsApp. Ananya: Done. When can you visit? Moumita: This weekend. Ananya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Ananya: Hi Moumita, following up on your enquiry for Siddha Sky Waterfront."", ""start"": 0.0, ""end"": 6.15}, {""speaker"": ""client"", ""text"": ""Moumita: Yes, tell me."", ""start"": 8.05, ""end"": 13.62}, {""speaker"": ""agent"", ""text"": ""Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Beliaghata?"", ""start"": 14.58, ""end"": 20.04}, {""speaker"": ""client"", ""text"": ""Moumita: Yes, what's the price?"", ""start"": 21.69, ""end"": 26.49}, {""speaker"": ""agent"", ""text"": ""Ananya: Starting at 3.97 Cr for 3 BHK. Possession by September 2026."", ""start"": 28.41, ""end"": 32.08}, {""speaker"": ""client"", ""text"": ""Moumita: That's good. Send me the details on WhatsApp."", ""start"": 33.23, ""end"": 40.74}, {""speaker"": ""agent"", ""text"": ""Ananya: Done. When can you visit?"", ""start"": 42.34, ""end"": 46.4}, {""speaker"": ""client"", ""text"": ""Moumita: This weekend."", ""start"": 47.53, ""end"": 51.31}, {""speaker"": ""agent"", ""text"": ""Ananya: I'll block Saturday 11 AM for you."", ""start"": 52.4, ""end"": 54.97}]",0.89 +TRX-00229,CAL-00473,en-IN,"Vikram: Hello Abhishek, this is Vikram from Velocity regarding Siddha Suburbia Bungalow. Abhishek: Yes, tell me. Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Madanpur? Abhishek: Yes, what's the price? Vikram: Starting at 4.66 Cr for 3 BHK. Possession by June 2026. Abhishek: That's good. Send me the details on WhatsApp. Vikram: Done. When can you visit? Abhishek: This weekend. Vikram: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hello Abhishek, this is Vikram from Velocity regarding Siddha Suburbia Bungalow."", ""start"": 0.0, ""end"": 4.4}, {""speaker"": ""client"", ""text"": ""Abhishek: Yes, tell me."", ""start"": 4.91, ""end"": 6.92}, {""speaker"": ""agent"", ""text"": ""Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Madanpur?"", ""start"": 8.85, ""end"": 14.83}, {""speaker"": ""client"", ""text"": ""Abhishek: Yes, what's the price?"", ""start"": 16.06, ""end"": 21.54}, {""speaker"": ""agent"", ""text"": ""Vikram: Starting at 4.66 Cr for 3 BHK. Possession by June 2026."", ""start"": 22.71, ""end"": 29.11}, {""speaker"": ""client"", ""text"": ""Abhishek: That's good. Send me the details on WhatsApp."", ""start"": 30.71, ""end"": 34.11}, {""speaker"": ""agent"", ""text"": ""Vikram: Done. When can you visit?"", ""start"": 36.1, ""end"": 43.92}, {""speaker"": ""client"", ""text"": ""Abhishek: This weekend."", ""start"": 45.87, ""end"": 53.45}, {""speaker"": ""agent"", ""text"": ""Vikram: I'll block Saturday 11 AM for you."", ""start"": 55.08, ""end"": 61.13}]",0.9 +TRX-00230,CAL-00474,en-IN,"Priya: Hello Debjani, this is Priya from Velocity regarding Siddha Serena. Debjani: Hi, I was about to call you. Priya: Great minds! What were you thinking? Debjani: The price is still high. Can you match Sugam Prakriti's rate? Priya: I understand. Let me see what best I can do. Are you flexible on floor preference? Debjani: Not really. I want mid-floor east facing. Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Debjani: Please do. We're ready to close quickly. Priya: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Priya: Hello Debjani, this is Priya from Velocity regarding Siddha Serena."", ""start"": 0.0, ""end"": 3.08}, {""speaker"": ""client"", ""text"": ""Debjani: Hi, I was about to call you."", ""start"": 4.62, ""end"": 10.74}, {""speaker"": ""agent"", ""text"": ""Priya: Great minds! What were you thinking?"", ""start"": 12.5, ""end"": 20.33}, {""speaker"": ""client"", ""text"": ""Debjani: The price is still high. Can you match Sugam Prakriti's rate?"", ""start"": 22.17, ""end"": 28.37}, {""speaker"": ""agent"", ""text"": ""Priya: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 29.2, ""end"": 36.95}, {""speaker"": ""client"", ""text"": ""Debjani: Not really. I want mid-floor east facing."", ""start"": 37.8, ""end"": 44.35}, {""speaker"": ""agent"", ""text"": ""Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 46.04, ""end"": 50.84}, {""speaker"": ""client"", ""text"": ""Debjani: Please do. We're ready to close quickly."", ""start"": 52.32, ""end"": 54.47}, {""speaker"": ""agent"", ""text"": ""Priya: Will revert by tomorrow 2 PM."", ""start"": 55.26, ""end"": 59.25}]",0.86 +TRX-00231,CAL-00476,en-IN,"Priya: Hello Debjani, this is Priya from Velocity regarding Siddha Serena. Debjani: Hi, I was about to call you. Priya: Great minds! What were you thinking? Debjani: The price is still high. Can you match Atri Aqua's rate? Priya: I understand. Let me see what best I can do. Are you flexible on floor preference? Debjani: Not really. I want mid-floor east facing. Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Debjani: Please do. We're ready to close quickly. Priya: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Priya: Hello Debjani, this is Priya from Velocity regarding Siddha Serena."", ""start"": 0.0, ""end"": 2.79}, {""speaker"": ""client"", ""text"": ""Debjani: Hi, I was about to call you."", ""start"": 4.75, ""end"": 12.22}, {""speaker"": ""agent"", ""text"": ""Priya: Great minds! What were you thinking?"", ""start"": 13.54, ""end"": 18.92}, {""speaker"": ""client"", ""text"": ""Debjani: The price is still high. Can you match Atri Aqua's rate?"", ""start"": 20.32, ""end"": 28.0}, {""speaker"": ""agent"", ""text"": ""Priya: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 29.91, ""end"": 36.7}, {""speaker"": ""client"", ""text"": ""Debjani: Not really. I want mid-floor east facing."", ""start"": 38.65, ""end"": 43.25}, {""speaker"": ""agent"", ""text"": ""Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 43.87, ""end"": 46.9}, {""speaker"": ""client"", ""text"": ""Debjani: Please do. We're ready to close quickly."", ""start"": 48.46, ""end"": 54.11}, {""speaker"": ""agent"", ""text"": ""Priya: Will revert by tomorrow 2 PM."", ""start"": 54.89, ""end"": 59.94}]",0.85 diff --git a/db assets/synthetic_crm_v1/csv/intel_vehicle_events.csv b/db assets/synthetic_crm_v1/csv/intel_vehicle_events.csv new file mode 100644 index 00000000..e38d1000 --- /dev/null +++ b/db assets/synthetic_crm_v1/csv/intel_vehicle_events.csv @@ -0,0 +1,81 @@ +event_id,person_id,vehicle_number,event_type,detected_at,location_ref,confidence,metadata_json +VEH-0001,PER-0061,WB-08-F1134,entry,2024-08-10T00:00:00,Siddha Sky Waterfront,0.77,"{""camera_id"": ""CAM-010"", ""gate"": ""service""}" +VEH-0002,PER-0125,WB-02-E4358,repeat_visit,2025-07-07T00:00:00,Eden Devprayag,0.77,"{""camera_id"": ""CAM-007"", ""gate"": ""main""}" +VEH-0003,PER-0094-CO,WB-06-A1170,exit,2025-12-11T00:00:00,Siddha Sky Waterfront,0.79,"{""camera_id"": ""CAM-007"", ""gate"": ""basement""}" +VEH-0004,PER-0026,WB-06-E4013,exit,2024-12-02T00:00:00,DTC Good Earth,0.76,"{""camera_id"": ""CAM-003"", ""gate"": ""service""}" +VEH-0005,PER-0090,WB-08-E4580,exit,2025-02-03T00:00:00,Eden Devprayag,0.77,"{""camera_id"": ""CAM-017"", ""gate"": ""service""}" +VEH-0006,PER-0128,WB-04-C6881,exit,2025-11-26T00:00:00,Godrej Blue,0.85,"{""camera_id"": ""CAM-004"", ""gate"": ""service""}" +VEH-0007,PER-0008-CO,WB-08-F4789,repeat_visit,2026-04-15T00:00:00,Merlin Avana,0.78,"{""camera_id"": ""CAM-014"", ""gate"": ""service""}" +VEH-0008,PER-0062-CO,WB-04-G1847,exit,2026-02-17T00:00:00,Shriram Grand City,0.79,"{""camera_id"": ""CAM-019"", ""gate"": ""service""}" +VEH-0009,PER-0113,WB-02-E1118,entry,2025-09-21T00:00:00,Atri Surya Toron,0.93,"{""camera_id"": ""CAM-011"", ""gate"": ""service""}" +VEH-0010,PER-0025-CO,WB-02-E4864,repeat_visit,2024-07-09T00:00:00,Siddha Suburbia Bungalow,0.91,"{""camera_id"": ""CAM-010"", ""gate"": ""basement""}" +VEH-0011,PER-0139,WB-08-E4835,exit,2025-10-26T00:00:00,Atri Aqua,0.81,"{""camera_id"": ""CAM-012"", ""gate"": ""service""}" +VEH-0012,PER-0118,WB-02-C3555,repeat_visit,2025-02-16T00:00:00,Godrej Elevate,0.87,"{""camera_id"": ""CAM-005"", ""gate"": ""service""}" +VEH-0013,PER-0059-CO,WB-04-C2688,entry,2025-03-21T00:00:00,Atri Aqua,0.86,"{""camera_id"": ""CAM-018"", ""gate"": ""basement""}" +VEH-0014,PER-0007,WB-04-B1703,entry,2025-12-21T00:00:00,Siddha Serena,0.79,"{""camera_id"": ""CAM-020"", ""gate"": ""main""}" +VEH-0015,PER-0120,WB-02-D4004,repeat_visit,2026-04-17T00:00:00,DTC Sojon,0.82,"{""camera_id"": ""CAM-015"", ""gate"": ""main""}" +VEH-0016,PER-0013-CO,WB-06-E2385,exit,2025-06-05T00:00:00,Atri Aqua,0.78,"{""camera_id"": ""CAM-007"", ""gate"": ""main""}" +VEH-0017,PER-0101,WB-04-F6312,repeat_visit,2025-06-18T00:00:00,Siddha Sky Waterfront,0.82,"{""camera_id"": ""CAM-011"", ""gate"": ""basement""}" +VEH-0018,PER-0156,WB-04-D9000,exit,2024-06-21T00:00:00,DTC Sojon,0.95,"{""camera_id"": ""CAM-001"", ""gate"": ""service""}" +VEH-0019,PER-0117,WB-06-F1728,entry,2025-11-10T00:00:00,DTC Good Earth,0.78,"{""camera_id"": ""CAM-012"", ""gate"": ""service""}" +VEH-0020,PER-0154,WB-02-E4892,exit,2024-08-10T00:00:00,Godrej Elevate,0.86,"{""camera_id"": ""CAM-012"", ""gate"": ""service""}" +VEH-0021,PER-0100,WB-06-G2993,exit,2024-06-14T00:00:00,Eden Devprayag,0.84,"{""camera_id"": ""CAM-008"", ""gate"": ""basement""}" +VEH-0022,PER-0085,WB-08-D8769,entry,2025-02-02T00:00:00,Atri Surya Toron,0.93,"{""camera_id"": ""CAM-002"", ""gate"": ""main""}" +VEH-0023,PER-0029,WB-06-C8728,exit,2024-07-24T00:00:00,Siddha Serena,0.81,"{""camera_id"": ""CAM-018"", ""gate"": ""main""}" +VEH-0024,PER-0010,WB-02-E5505,repeat_visit,2025-05-21T00:00:00,Siddha Sky Waterfront,0.87,"{""camera_id"": ""CAM-001"", ""gate"": ""basement""}" +VEH-0025,PER-0079,WB-04-B9891,exit,2024-10-23T00:00:00,Eden Devprayag,0.86,"{""camera_id"": ""CAM-002"", ""gate"": ""main""}" +VEH-0026,PER-0114,WB-06-F9452,exit,2025-06-06T00:00:00,Atri Aqua,0.81,"{""camera_id"": ""CAM-015"", ""gate"": ""main""}" +VEH-0027,PER-0077,WB-02-D1364,entry,2024-06-09T00:00:00,Ambuja Utpaala,0.91,"{""camera_id"": ""CAM-008"", ""gate"": ""basement""}" +VEH-0028,PER-0069,WB-04-F5939,entry,2026-03-11T00:00:00,Merlin Avana,0.88,"{""camera_id"": ""CAM-007"", ""gate"": ""service""}" +VEH-0029,PER-0159,WB-06-A2571,exit,2024-10-11T00:00:00,Godrej Elevate,0.92,"{""camera_id"": ""CAM-015"", ""gate"": ""service""}" +VEH-0030,PER-0143,WB-06-A7821,entry,2025-10-01T00:00:00,Shriram Grand City,0.8,"{""camera_id"": ""CAM-016"", ""gate"": ""main""}" +VEH-0031,PER-0152,WB-08-F9286,exit,2024-03-13T00:00:00,Eden Devprayag,0.78,"{""camera_id"": ""CAM-003"", ""gate"": ""service""}" +VEH-0032,PER-0145-CO,WB-06-G6285,exit,2025-07-04T00:00:00,Sugam Prakriti,0.86,"{""camera_id"": ""CAM-007"", ""gate"": ""main""}" +VEH-0033,PER-0084-CO,WB-04-A7412,entry,2024-12-27T00:00:00,Atri Aqua,0.89,"{""camera_id"": ""CAM-001"", ""gate"": ""main""}" +VEH-0034,PER-0183,WB-02-H8902,repeat_visit,2025-06-06T00:00:00,Shriram Grand City,0.84,"{""camera_id"": ""CAM-011"", ""gate"": ""main""}" +VEH-0035,PER-0078,WB-06-H1519,entry,2025-02-13T00:00:00,Atri Aqua,0.78,"{""camera_id"": ""CAM-002"", ""gate"": ""main""}" +VEH-0036,PER-0093,WB-08-H6456,repeat_visit,2024-03-20T00:00:00,Siddha Serena,0.89,"{""camera_id"": ""CAM-018"", ""gate"": ""service""}" +VEH-0037,PER-0135,WB-02-C4263,repeat_visit,2026-03-15T00:00:00,Ambuja Utpaala,0.79,"{""camera_id"": ""CAM-001"", ""gate"": ""service""}" +VEH-0038,PER-0158,WB-06-E8943,entry,2025-04-20T00:00:00,Shriram Grand City,0.9,"{""camera_id"": ""CAM-001"", ""gate"": ""basement""}" +VEH-0039,PER-0181,WB-08-A6878,exit,2025-09-23T00:00:00,DTC Good Earth,0.93,"{""camera_id"": ""CAM-005"", ""gate"": ""basement""}" +VEH-0040,PER-0169,WB-04-D2156,repeat_visit,2024-04-07T00:00:00,Atri Aqua,0.9,"{""camera_id"": ""CAM-011"", ""gate"": ""service""}" +VEH-0041,PER-0144-CO,WB-04-C2401,repeat_visit,2025-12-24T00:00:00,Godrej Blue,0.86,"{""camera_id"": ""CAM-001"", ""gate"": ""main""}" +VEH-0042,PER-0095-CO,WB-08-C5769,repeat_visit,2024-09-17T00:00:00,Siddha Suburbia Bungalow,0.82,"{""camera_id"": ""CAM-013"", ""gate"": ""service""}" +VEH-0043,PER-0090-CO,WB-08-B4525,exit,2024-01-15T00:00:00,Atri Surya Toron,0.8,"{""camera_id"": ""CAM-018"", ""gate"": ""service""}" +VEH-0044,PER-0024,WB-06-H9534,exit,2024-08-18T00:00:00,Sugam Prakriti,0.81,"{""camera_id"": ""CAM-002"", ""gate"": ""main""}" +VEH-0045,PER-0035,WB-08-E4965,repeat_visit,2024-09-06T00:00:00,Godrej Blue,0.89,"{""camera_id"": ""CAM-004"", ""gate"": ""service""}" +VEH-0046,PER-0002-CO,WB-02-G6773,exit,2024-11-18T00:00:00,Godrej Blue,0.81,"{""camera_id"": ""CAM-018"", ""gate"": ""main""}" +VEH-0047,PER-0096-CO,WB-08-C1897,repeat_visit,2025-11-18T00:00:00,Merlin Avana,0.91,"{""camera_id"": ""CAM-016"", ""gate"": ""service""}" +VEH-0048,PER-0116,WB-06-G1974,exit,2024-06-09T00:00:00,Merlin Avana,0.76,"{""camera_id"": ""CAM-020"", ""gate"": ""main""}" +VEH-0049,PER-0048,WB-04-D1352,entry,2024-02-21T00:00:00,Godrej Elevate,0.83,"{""camera_id"": ""CAM-018"", ""gate"": ""main""}" +VEH-0050,PER-0095,WB-04-A6262,entry,2026-03-15T00:00:00,Godrej Elevate,0.95,"{""camera_id"": ""CAM-010"", ""gate"": ""basement""}" +VEH-0051,PER-0038,WB-04-B4384,exit,2025-08-09T00:00:00,Siddha Serena,0.85,"{""camera_id"": ""CAM-015"", ""gate"": ""basement""}" +VEH-0052,PER-0111,WB-04-D3372,exit,2025-01-20T00:00:00,Sugam Prakriti,0.95,"{""camera_id"": ""CAM-007"", ""gate"": ""service""}" +VEH-0053,PER-0155,WB-04-B2948,repeat_visit,2025-02-26T00:00:00,Atri Aqua,0.75,"{""camera_id"": ""CAM-011"", ""gate"": ""main""}" +VEH-0054,PER-0176,WB-04-F6227,entry,2024-09-05T00:00:00,Eden Devprayag,0.93,"{""camera_id"": ""CAM-019"", ""gate"": ""service""}" +VEH-0055,PER-0001,WB-08-C5868,entry,2026-03-12T00:00:00,Godrej Elevate,0.88,"{""camera_id"": ""CAM-014"", ""gate"": ""basement""}" +VEH-0056,PER-0009,WB-08-H1271,exit,2024-01-21T00:00:00,Atri Surya Toron,0.81,"{""camera_id"": ""CAM-013"", ""gate"": ""main""}" +VEH-0057,PER-0075,WB-02-F6887,exit,2024-05-19T00:00:00,Siddha Serena,0.93,"{""camera_id"": ""CAM-005"", ""gate"": ""main""}" +VEH-0058,PER-0130-CO,WB-08-B6844,exit,2024-12-29T00:00:00,Ambuja Utpaala,0.86,"{""camera_id"": ""CAM-010"", ""gate"": ""main""}" +VEH-0059,PER-0081,WB-02-E6287,exit,2025-08-11T00:00:00,Eden Devprayag,0.84,"{""camera_id"": ""CAM-010"", ""gate"": ""service""}" +VEH-0060,PER-0039,WB-08-C3404,exit,2024-02-27T00:00:00,DTC Sojon,0.87,"{""camera_id"": ""CAM-017"", ""gate"": ""basement""}" +VEH-0061,PER-0142,WB-08-G2209,repeat_visit,2024-04-20T00:00:00,Ambuja Utpaala,0.86,"{""camera_id"": ""CAM-015"", ""gate"": ""main""}" +VEH-0062,PER-0115,WB-02-H5414,repeat_visit,2026-03-02T00:00:00,Godrej Elevate,0.86,"{""camera_id"": ""CAM-001"", ""gate"": ""main""}" +VEH-0063,PER-0178,WB-08-B1646,entry,2024-02-03T00:00:00,Atri Surya Toron,0.77,"{""camera_id"": ""CAM-012"", ""gate"": ""basement""}" +VEH-0064,PER-0082,WB-08-H6193,entry,2024-04-27T00:00:00,DTC Good Earth,0.79,"{""camera_id"": ""CAM-020"", ""gate"": ""main""}" +VEH-0065,PER-0096,WB-06-E5934,exit,2024-01-30T00:00:00,Siddha Serena,0.84,"{""camera_id"": ""CAM-011"", ""gate"": ""basement""}" +VEH-0066,PER-0104,WB-08-B6187,exit,2025-09-30T00:00:00,Atri Surya Toron,0.87,"{""camera_id"": ""CAM-019"", ""gate"": ""basement""}" +VEH-0067,PER-0100-CO,WB-08-F2925,exit,2024-05-16T00:00:00,Merlin Avana,0.94,"{""camera_id"": ""CAM-017"", ""gate"": ""main""}" +VEH-0068,PER-0072,WB-08-E3376,entry,2024-04-26T00:00:00,Atri Aqua,0.75,"{""camera_id"": ""CAM-007"", ""gate"": ""basement""}" +VEH-0069,PER-0067,WB-04-G1199,entry,2024-04-18T00:00:00,Siddha Suburbia Bungalow,0.81,"{""camera_id"": ""CAM-008"", ""gate"": ""main""}" +VEH-0070,PER-0155-CO,WB-04-C2788,exit,2024-05-16T00:00:00,DTC Sojon,0.93,"{""camera_id"": ""CAM-009"", ""gate"": ""main""}" +VEH-0071,PER-0058-CO,WB-08-D6374,entry,2025-06-07T00:00:00,Siddha Suburbia Bungalow,0.79,"{""camera_id"": ""CAM-016"", ""gate"": ""main""}" +VEH-0072,PER-0151,WB-06-G8062,entry,2025-09-13T00:00:00,Eden Devprayag,0.8,"{""camera_id"": ""CAM-011"", ""gate"": ""main""}" +VEH-0073,PER-0108,WB-06-A4412,entry,2024-08-26T00:00:00,Sugam Prakriti,0.8,"{""camera_id"": ""CAM-007"", ""gate"": ""basement""}" +VEH-0074,PER-0045,WB-02-F8753,entry,2026-01-18T00:00:00,Godrej Elevate,0.76,"{""camera_id"": ""CAM-015"", ""gate"": ""main""}" +VEH-0075,PER-0161,WB-02-B6918,repeat_visit,2026-02-19T00:00:00,Shriram Grand City,0.83,"{""camera_id"": ""CAM-014"", ""gate"": ""service""}" +VEH-0076,PER-0157,WB-04-D9238,exit,2025-01-02T00:00:00,Siddha Sky Waterfront,0.78,"{""camera_id"": ""CAM-008"", ""gate"": ""main""}" +VEH-0077,PER-0174,WB-02-G2271,repeat_visit,2024-02-27T00:00:00,Atri Surya Toron,0.76,"{""camera_id"": ""CAM-007"", ""gate"": ""service""}" +VEH-0078,PER-0004,WB-08-E3582,exit,2024-08-04T00:00:00,DTC Sojon,0.94,"{""camera_id"": ""CAM-001"", ""gate"": ""service""}" +VEH-0079,PER-0083,WB-06-E9078,exit,2025-01-16T00:00:00,Sugam Prakriti,0.82,"{""camera_id"": ""CAM-013"", ""gate"": ""service""}" +VEH-0080,PER-0170,WB-04-C4070,repeat_visit,2025-08-15T00:00:00,Sugam Prakriti,0.89,"{""camera_id"": ""CAM-018"", ""gate"": ""main""}" diff --git a/db assets/synthetic_crm_v1/csv/intel_visits.csv b/db assets/synthetic_crm_v1/csv/intel_visits.csv new file mode 100644 index 00000000..5ae56ea3 --- /dev/null +++ b/db assets/synthetic_crm_v1/csv/intel_visits.csv @@ -0,0 +1,306 @@ +visit_id,person_id,project_id,unit_id,visited_at,visit_notes,host_user_id +VIS-00001,PER-0001,PRJ-011,PRJ-011-U010,2025-10-18T00:00:00,Senior parents found the approach convenient. Positive feedback overall,user_002 +VIS-00002,PER-0001,PRJ-011,PRJ-011-U010,2025-10-22T00:00:00,Very interested. Asked about payment plan and possession date,user_002 +VIS-00003,PER-0001,PRJ-011,PRJ-011-U010,2025-11-15T00:00:00,Liked the layout but concerned about noise from main road,user_002 +VIS-00004,PER-0001,PRJ-011,PRJ-011-U010,2025-11-25T00:00:00,Compared with neighbor's flat. Found this more spacious,user_002 +VIS-00005,PER-0004,PRJ-014,PRJ-014-U006,2025-05-29T00:00:00,Very interested. Asked about payment plan and possession date,user_001 +VIS-00006,PER-0004,PRJ-014,PRJ-014-U006,2025-07-06T00:00:00,Compared with neighbor's flat. Found this more spacious,user_001 +VIS-00007,PER-0005,PRJ-012,PRJ-012-U004,2024-06-22T00:00:00,Wants to bring architect for Vastu check next visit,user_003 +VIS-00008,PER-0005,PRJ-012,PRJ-012-U004,2024-07-13T00:00:00,Senior parents found the approach convenient. Positive feedback overall,user_003 +VIS-00009,PER-0005,PRJ-012,PRJ-012-U004,2024-07-30T00:00:00,Liked the layout but concerned about noise from main road,user_003 +VIS-00010,PER-0005,PRJ-012,PRJ-012-U004,2024-08-05T00:00:00,NRI son will finalize via video call. Parents visited on his behalf,user_003 +VIS-00011,PER-0005,PRJ-012,PRJ-012-U004,2024-08-13T00:00:00,Compared with neighbor's flat. Found this more spacious,user_003 +VIS-00012,PER-0007,PRJ-011,PRJ-011-U007,2024-09-25T00:00:00,Compared with neighbor's flat. Found this more spacious,user_002 +VIS-00013,PER-0007,PRJ-011,PRJ-011-U007,2024-10-05T00:00:00,Wants to bring architect for Vastu check next visit,user_002 +VIS-00014,PER-0013,PRJ-004,PRJ-004-U008,2025-04-08T00:00:00,Wife loved the view from 15th floor. Husband wants to compare with other projects,user_004 +VIS-00015,PER-0013,PRJ-004,PRJ-004-U008,2025-04-15T00:00:00,Liked the layout but concerned about noise from main road,user_004 +VIS-00016,PER-0014,PRJ-008,PRJ-008-U014,2026-02-14T00:00:00,Liked the layout but concerned about noise from main road,user_001 +VIS-00017,PER-0014,PRJ-008,PRJ-008-U014,2026-02-27T00:00:00,Wants to bring architect for Vastu check next visit,user_001 +VIS-00018,PER-0015,PRJ-003,PRJ-003-U003,2025-06-29T00:00:00,Compared with neighbor's flat. Found this more spacious,user_005 +VIS-00019,PER-0016,PRJ-014,PRJ-014-U002,2024-06-16T00:00:00,Very interested. Asked about payment plan and possession date,user_004 +VIS-00020,PER-0021,PRJ-004,PRJ-004-U001,2024-09-16T00:00:00,Wife loved the view from 15th floor. Husband wants to compare with other projects,user_001 +VIS-00021,PER-0024,PRJ-006,PRJ-006-U002,2026-02-08T00:00:00,NRI son will finalize via video call. Parents visited on his behalf,user_002 +VIS-00022,PER-0024,PRJ-006,PRJ-006-U002,2026-02-10T00:00:00,Very interested. Asked about payment plan and possession date,user_002 +VIS-00023,PER-0029,PRJ-004,PRJ-004-U010,2025-07-01T00:00:00,Concerned about maintenance charges. Otherwise ready to proceed,user_003 +VIS-00024,PER-0030,PRJ-002,PRJ-002-U011,2024-12-23T00:00:00,Senior parents found the approach convenient. Positive feedback overall,user_005 +VIS-00025,PER-0033,PRJ-010,PRJ-010-U009,2025-04-06T00:00:00,Wife loved the view from 15th floor. Husband wants to compare with other projects,user_004 +VIS-00026,PER-0033,PRJ-010,PRJ-010-U009,2025-05-18T00:00:00,Very interested. Asked about payment plan and possession date,user_004 +VIS-00027,PER-0035,PRJ-009,PRJ-009-U009,2026-01-31T00:00:00,Liked the layout but concerned about noise from main road,user_004 +VIS-00028,PER-0036,PRJ-008,PRJ-008-U003,2025-10-23T00:00:00,Concerned about maintenance charges. Otherwise ready to proceed,user_003 +VIS-00029,PER-0036,PRJ-008,PRJ-008-U003,2025-11-07T00:00:00,Concerned about maintenance charges. Otherwise ready to proceed,user_003 +VIS-00030,PER-0037,PRJ-003,PRJ-003-U008,2024-12-01T00:00:00,Wife loved the view from 15th floor. Husband wants to compare with other projects,user_002 +VIS-00031,PER-0038,PRJ-009,PRJ-009-U011,2026-01-03T00:00:00,Very interested. Asked about payment plan and possession date,user_004 +VIS-00032,PER-0040,PRJ-014,PRJ-014-U001,2024-03-22T00:00:00,Wife loved the view from 15th floor. Husband wants to compare with other projects,user_001 +VIS-00033,PER-0040,PRJ-014,PRJ-014-U001,2024-03-28T00:00:00,Compared with neighbor's flat. Found this more spacious,user_001 +VIS-00034,PER-0040,PRJ-014,PRJ-014-U001,2024-04-07T00:00:00,Wife loved the view from 15th floor. Husband wants to compare with other projects,user_001 +VIS-00035,PER-0040,PRJ-014,PRJ-014-U001,2024-04-08T00:00:00,Wife loved the view from 15th floor. Husband wants to compare with other projects,user_001 +VIS-00036,PER-0041,PRJ-012,PRJ-012-U007,2024-03-25T00:00:00,Wife loved the view from 15th floor. Husband wants to compare with other projects,user_003 +VIS-00037,PER-0041,PRJ-012,PRJ-012-U007,2024-03-28T00:00:00,Wife loved the view from 15th floor. Husband wants to compare with other projects,user_003 +VIS-00038,PER-0041,PRJ-012,PRJ-012-U007,2024-04-20T00:00:00,Very interested. Asked about payment plan and possession date,user_003 +VIS-00039,PER-0041,PRJ-012,PRJ-012-U007,2024-05-07T00:00:00,Wife loved the view from 15th floor. Husband wants to compare with other projects,user_003 +VIS-00040,PER-0042,PRJ-004,PRJ-004-U020,2025-10-08T00:00:00,Liked the layout but concerned about noise from main road,user_004 +VIS-00041,PER-0043,PRJ-009,PRJ-009-U003,2024-05-31T00:00:00,Concerned about maintenance charges. Otherwise ready to proceed,user_002 +VIS-00042,PER-0044,PRJ-012,PRJ-012-U007,2024-02-15T00:00:00,Wants to bring architect for Vastu check next visit,user_004 +VIS-00043,PER-0046,PRJ-004,PRJ-004-U017,2025-03-20T00:00:00,Liked the layout but concerned about noise from main road,user_002 +VIS-00044,PER-0046,PRJ-004,PRJ-004-U017,2025-03-25T00:00:00,Very interested. Asked about payment plan and possession date,user_002 +VIS-00045,PER-0046,PRJ-004,PRJ-004-U017,2025-04-15T00:00:00,NRI son will finalize via video call. Parents visited on his behalf,user_002 +VIS-00046,PER-0046,PRJ-004,PRJ-004-U017,2025-05-01T00:00:00,Senior parents found the approach convenient. Positive feedback overall,user_002 +VIS-00047,PER-0046,PRJ-004,PRJ-004-U017,2025-05-11T00:00:00,Wife loved the view from 15th floor. Husband wants to compare with other projects,user_002 +VIS-00048,PER-0047,PRJ-004,PRJ-004-U008,2026-03-31T00:00:00,Senior parents found the approach convenient. Positive feedback overall,user_001 +VIS-00049,PER-0048,PRJ-008,PRJ-008-U003,2025-02-02T00:00:00,Compared with neighbor's flat. Found this more spacious,user_005 +VIS-00050,PER-0048,PRJ-008,PRJ-008-U003,2025-03-29T00:00:00,Liked the layout but concerned about noise from main road,user_005 +VIS-00051,PER-0049,PRJ-010,PRJ-010-U009,2024-05-02T00:00:00,Liked the layout but concerned about noise from main road,user_005 +VIS-00052,PER-0049,PRJ-010,PRJ-010-U009,2024-06-01T00:00:00,Concerned about maintenance charges. Otherwise ready to proceed,user_005 +VIS-00053,PER-0049,PRJ-010,PRJ-010-U009,2024-07-07T00:00:00,Liked the layout but concerned about noise from main road,user_005 +VIS-00054,PER-0051,PRJ-012,PRJ-012-U004,2025-11-07T00:00:00,Very interested. Asked about payment plan and possession date,user_005 +VIS-00055,PER-0051,PRJ-012,PRJ-012-U004,2025-11-19T00:00:00,Compared with neighbor's flat. Found this more spacious,user_005 +VIS-00056,PER-0051,PRJ-012,PRJ-012-U004,2025-11-28T00:00:00,Liked the layout but concerned about noise from main road,user_005 +VIS-00057,PER-0052,PRJ-007,PRJ-007-U012,2025-07-14T00:00:00,Wife loved the view from 15th floor. Husband wants to compare with other projects,user_003 +VIS-00058,PER-0054,PRJ-008,PRJ-008-U014,2026-02-24T00:00:00,Liked the layout but concerned about noise from main road,user_002 +VIS-00059,PER-0054,PRJ-008,PRJ-008-U014,2026-02-25T00:00:00,Senior parents found the approach convenient. Positive feedback overall,user_002 +VIS-00060,PER-0055,PRJ-009,PRJ-009-U004,2025-11-23T00:00:00,NRI son will finalize via video call. Parents visited on his behalf,user_004 +VIS-00061,PER-0058,PRJ-009,PRJ-009-U008,2024-04-22T00:00:00,NRI son will finalize via video call. Parents visited on his behalf,user_003 +VIS-00062,PER-0058,PRJ-009,PRJ-009-U008,2024-04-27T00:00:00,Wants to bring architect for Vastu check next visit,user_003 +VIS-00063,PER-0058,PRJ-009,PRJ-009-U008,2024-06-28T00:00:00,Senior parents found the approach convenient. Positive feedback overall,user_003 +VIS-00064,PER-0059,PRJ-004,PRJ-004-U019,2025-06-10T00:00:00,Very interested. Asked about payment plan and possession date,user_004 +VIS-00065,PER-0060,PRJ-012,PRJ-012-U001,2024-02-02T00:00:00,Compared with neighbor's flat. Found this more spacious,user_003 +VIS-00066,PER-0060,PRJ-012,PRJ-012-U001,2024-02-25T00:00:00,Liked the layout but concerned about noise from main road,user_003 +VIS-00067,PER-0060,PRJ-012,PRJ-012-U001,2024-02-27T00:00:00,Very interested. Asked about payment plan and possession date,user_003 +VIS-00068,PER-0060,PRJ-012,PRJ-012-U001,2024-03-02T00:00:00,Concerned about maintenance charges. Otherwise ready to proceed,user_003 +VIS-00069,PER-0060,PRJ-012,PRJ-012-U001,2024-04-07T00:00:00,Wife loved the view from 15th floor. Husband wants to compare with other projects,user_003 +VIS-00070,PER-0060,PRJ-012,PRJ-012-U001,2024-04-08T00:00:00,Compared with neighbor's flat. Found this more spacious,user_003 +VIS-00071,PER-0061,PRJ-013,PRJ-013-U005,2024-03-09T00:00:00,Concerned about maintenance charges. Otherwise ready to proceed,user_004 +VIS-00072,PER-0062,PRJ-009,PRJ-009-U003,2024-12-02T00:00:00,Wife loved the view from 15th floor. Husband wants to compare with other projects,user_002 +VIS-00073,PER-0062,PRJ-009,PRJ-009-U003,2025-01-01T00:00:00,NRI son will finalize via video call. Parents visited on his behalf,user_002 +VIS-00074,PER-0064,PRJ-012,PRJ-012-U007,2024-11-03T00:00:00,Wife loved the view from 15th floor. Husband wants to compare with other projects,user_002 +VIS-00075,PER-0065,PRJ-012,PRJ-012-U004,2026-01-19T00:00:00,Senior parents found the approach convenient. Positive feedback overall,user_005 +VIS-00076,PER-0065,PRJ-012,PRJ-012-U004,2026-01-19T00:00:00,Compared with neighbor's flat. Found this more spacious,user_005 +VIS-00077,PER-0065,PRJ-012,PRJ-012-U004,2026-03-12T00:00:00,Senior parents found the approach convenient. Positive feedback overall,user_005 +VIS-00078,PER-0067,PRJ-009,PRJ-009-U010,2025-06-25T00:00:00,Very interested. Asked about payment plan and possession date,user_002 +VIS-00079,PER-0068,PRJ-002,PRJ-002-U017,2025-01-03T00:00:00,Compared with neighbor's flat. Found this more spacious,user_005 +VIS-00080,PER-0069,PRJ-002,PRJ-002-U017,2024-07-23T00:00:00,Concerned about maintenance charges. Otherwise ready to proceed,user_003 +VIS-00081,PER-0073,PRJ-013,PRJ-013-U015,2026-01-17T00:00:00,Concerned about maintenance charges. Otherwise ready to proceed,user_004 +VIS-00082,PER-0075,PRJ-009,PRJ-009-U009,2024-05-04T00:00:00,Concerned about maintenance charges. Otherwise ready to proceed,user_001 +VIS-00083,PER-0075,PRJ-009,PRJ-009-U009,2024-05-16T00:00:00,Wants to bring architect for Vastu check next visit,user_001 +VIS-00084,PER-0075,PRJ-009,PRJ-009-U009,2024-05-31T00:00:00,Compared with neighbor's flat. Found this more spacious,user_001 +VIS-00085,PER-0075,PRJ-009,PRJ-009-U009,2024-06-15T00:00:00,NRI son will finalize via video call. Parents visited on his behalf,user_001 +VIS-00086,PER-0075,PRJ-009,PRJ-009-U009,2024-06-23T00:00:00,Very interested. Asked about payment plan and possession date,user_001 +VIS-00087,PER-0075,PRJ-009,PRJ-009-U009,2024-07-06T00:00:00,Wants to bring architect for Vastu check next visit,user_001 +VIS-00088,PER-0076,PRJ-006,PRJ-006-U001,2024-05-13T00:00:00,Senior parents found the approach convenient. Positive feedback overall,user_002 +VIS-00089,PER-0077,PRJ-005,PRJ-005-U006,2024-05-30T00:00:00,Senior parents found the approach convenient. Positive feedback overall,user_001 +VIS-00090,PER-0077,PRJ-005,PRJ-005-U006,2024-06-04T00:00:00,Senior parents found the approach convenient. Positive feedback overall,user_001 +VIS-00091,PER-0077,PRJ-005,PRJ-005-U006,2024-06-16T00:00:00,Liked the layout but concerned about noise from main road,user_001 +VIS-00092,PER-0077,PRJ-005,PRJ-005-U006,2024-07-06T00:00:00,Wants to bring architect for Vastu check next visit,user_001 +VIS-00093,PER-0078,PRJ-004,PRJ-004-U001,2024-11-27T00:00:00,Liked the layout but concerned about noise from main road,user_002 +VIS-00094,PER-0078,PRJ-004,PRJ-004-U001,2025-01-06T00:00:00,Wife loved the view from 15th floor. Husband wants to compare with other projects,user_002 +VIS-00095,PER-0080,PRJ-011,PRJ-011-U003,2025-10-03T00:00:00,Concerned about maintenance charges. Otherwise ready to proceed,user_004 +VIS-00096,PER-0080,PRJ-011,PRJ-011-U003,2025-11-06T00:00:00,Wants to bring architect for Vastu check next visit,user_004 +VIS-00097,PER-0082,PRJ-009,PRJ-009-U003,2025-09-11T00:00:00,Wife loved the view from 15th floor. Husband wants to compare with other projects,user_002 +VIS-00098,PER-0083,PRJ-004,PRJ-004-U017,2025-01-11T00:00:00,Compared with neighbor's flat. Found this more spacious,user_002 +VIS-00099,PER-0083,PRJ-004,PRJ-004-U017,2025-01-15T00:00:00,Senior parents found the approach convenient. Positive feedback overall,user_002 +VIS-00100,PER-0084,PRJ-006,PRJ-006-U003,2025-05-13T00:00:00,Compared with neighbor's flat. Found this more spacious,user_002 +VIS-00101,PER-0084,PRJ-006,PRJ-006-U003,2025-06-17T00:00:00,Concerned about maintenance charges. Otherwise ready to proceed,user_002 +VIS-00102,PER-0088,PRJ-002,PRJ-002-U010,2025-06-30T00:00:00,Senior parents found the approach convenient. Positive feedback overall,user_005 +VIS-00103,PER-0088,PRJ-002,PRJ-002-U010,2025-08-18T00:00:00,Concerned about maintenance charges. Otherwise ready to proceed,user_005 +VIS-00104,PER-0089,PRJ-002,PRJ-002-U005,2024-07-06T00:00:00,Compared with neighbor's flat. Found this more spacious,user_002 +VIS-00105,PER-0091,PRJ-005,PRJ-005-U005,2025-02-03T00:00:00,Wants to bring architect for Vastu check next visit,user_002 +VIS-00106,PER-0091,PRJ-005,PRJ-005-U005,2025-02-04T00:00:00,Senior parents found the approach convenient. Positive feedback overall,user_002 +VIS-00107,PER-0091,PRJ-005,PRJ-005-U005,2025-02-07T00:00:00,Wife loved the view from 15th floor. Husband wants to compare with other projects,user_002 +VIS-00108,PER-0093,PRJ-004,PRJ-004-U008,2025-01-22T00:00:00,Compared with neighbor's flat. Found this more spacious,user_001 +VIS-00109,PER-0097,PRJ-002,PRJ-002-U008,2024-10-29T00:00:00,Senior parents found the approach convenient. Positive feedback overall,user_002 +VIS-00110,PER-0097,PRJ-002,PRJ-002-U008,2024-11-23T00:00:00,Liked the layout but concerned about noise from main road,user_002 +VIS-00111,PER-0097,PRJ-002,PRJ-002-U008,2024-11-29T00:00:00,Concerned about maintenance charges. Otherwise ready to proceed,user_002 +VIS-00112,PER-0099,PRJ-012,PRJ-012-U007,2024-04-14T00:00:00,Wants to bring architect for Vastu check next visit,user_002 +VIS-00113,PER-0099,PRJ-012,PRJ-012-U007,2024-06-02T00:00:00,Very interested. Asked about payment plan and possession date,user_002 +VIS-00114,PER-0099,PRJ-012,PRJ-012-U007,2024-06-02T00:00:00,Liked the layout but concerned about noise from main road,user_002 +VIS-00115,PER-0099,PRJ-012,PRJ-012-U007,2024-06-11T00:00:00,Liked the layout but concerned about noise from main road,user_002 +VIS-00116,PER-0100,PRJ-004,PRJ-004-U001,2024-06-24T00:00:00,Wants to bring architect for Vastu check next visit,user_002 +VIS-00117,PER-0102,PRJ-011,PRJ-011-U003,2025-09-04T00:00:00,Compared with neighbor's flat. Found this more spacious,user_001 +VIS-00118,PER-0102,PRJ-011,PRJ-011-U003,2025-09-16T00:00:00,Liked the layout but concerned about noise from main road,user_001 +VIS-00119,PER-0102,PRJ-011,PRJ-011-U003,2025-10-05T00:00:00,Liked the layout but concerned about noise from main road,user_001 +VIS-00120,PER-0103,PRJ-014,PRJ-014-U003,2024-02-11T00:00:00,Concerned about maintenance charges. Otherwise ready to proceed,user_001 +VIS-00121,PER-0103,PRJ-014,PRJ-014-U003,2024-03-28T00:00:00,Liked the layout but concerned about noise from main road,user_001 +VIS-00122,PER-0103,PRJ-014,PRJ-014-U003,2024-04-04T00:00:00,Senior parents found the approach convenient. Positive feedback overall,user_001 +VIS-00123,PER-0103,PRJ-014,PRJ-014-U003,2024-04-09T00:00:00,Wife loved the view from 15th floor. Husband wants to compare with other projects,user_001 +VIS-00124,PER-0103,PRJ-014,PRJ-014-U003,2024-04-09T00:00:00,Wife loved the view from 15th floor. Husband wants to compare with other projects,user_001 +VIS-00125,PER-0103,PRJ-014,PRJ-014-U003,2024-04-25T00:00:00,Compared with neighbor's flat. Found this more spacious,user_001 +VIS-00126,PER-0104,PRJ-006,PRJ-006-U003,2026-02-18T00:00:00,Senior parents found the approach convenient. Positive feedback overall,user_003 +VIS-00127,PER-0104,PRJ-006,PRJ-006-U003,2026-03-27T00:00:00,Concerned about maintenance charges. Otherwise ready to proceed,user_003 +VIS-00128,PER-0104,PRJ-006,PRJ-006-U003,2026-03-27T00:00:00,NRI son will finalize via video call. Parents visited on his behalf,user_003 +VIS-00129,PER-0105,PRJ-005,PRJ-005-U005,2025-05-04T00:00:00,Concerned about maintenance charges. Otherwise ready to proceed,user_004 +VIS-00130,PER-0105,PRJ-005,PRJ-005-U005,2025-05-04T00:00:00,Concerned about maintenance charges. Otherwise ready to proceed,user_004 +VIS-00131,PER-0105,PRJ-005,PRJ-005-U005,2025-05-17T00:00:00,Concerned about maintenance charges. Otherwise ready to proceed,user_004 +VIS-00132,PER-0108,PRJ-012,PRJ-012-U007,2025-12-16T00:00:00,Very interested. Asked about payment plan and possession date,user_003 +VIS-00133,PER-0108,PRJ-012,PRJ-012-U007,2025-12-16T00:00:00,Very interested. Asked about payment plan and possession date,user_003 +VIS-00134,PER-0108,PRJ-012,PRJ-012-U007,2025-12-26T00:00:00,Very interested. Asked about payment plan and possession date,user_003 +VIS-00135,PER-0109,PRJ-014,PRJ-014-U005,2025-11-08T00:00:00,Wife loved the view from 15th floor. Husband wants to compare with other projects,user_004 +VIS-00136,PER-0110,PRJ-001,PRJ-001-U001,2024-10-29T00:00:00,Wants to bring architect for Vastu check next visit,user_001 +VIS-00137,PER-0110,PRJ-001,PRJ-001-U001,2024-10-31T00:00:00,Liked the layout but concerned about noise from main road,user_001 +VIS-00138,PER-0113,PRJ-010,PRJ-010-U011,2025-11-10T00:00:00,Concerned about maintenance charges. Otherwise ready to proceed,user_002 +VIS-00139,PER-0114,PRJ-004,PRJ-004-U004,2025-05-09T00:00:00,Senior parents found the approach convenient. Positive feedback overall,user_004 +VIS-00140,PER-0114,PRJ-004,PRJ-004-U004,2025-06-19T00:00:00,Compared with neighbor's flat. Found this more spacious,user_004 +VIS-00141,PER-0115,PRJ-014,PRJ-014-U006,2024-12-01T00:00:00,Wants to bring architect for Vastu check next visit,user_001 +VIS-00142,PER-0115,PRJ-014,PRJ-014-U006,2024-12-18T00:00:00,Senior parents found the approach convenient. Positive feedback overall,user_001 +VIS-00143,PER-0115,PRJ-014,PRJ-014-U006,2024-12-28T00:00:00,Wants to bring architect for Vastu check next visit,user_001 +VIS-00144,PER-0115,PRJ-014,PRJ-014-U006,2025-01-10T00:00:00,Wants to bring architect for Vastu check next visit,user_001 +VIS-00145,PER-0116,PRJ-003,PRJ-003-U004,2024-08-02T00:00:00,Wants to bring architect for Vastu check next visit,user_001 +VIS-00146,PER-0116,PRJ-003,PRJ-003-U004,2024-08-28T00:00:00,Wife loved the view from 15th floor. Husband wants to compare with other projects,user_001 +VIS-00147,PER-0116,PRJ-003,PRJ-003-U004,2024-09-02T00:00:00,NRI son will finalize via video call. Parents visited on his behalf,user_001 +VIS-00148,PER-0117,PRJ-003,PRJ-003-U010,2024-06-29T00:00:00,Concerned about maintenance charges. Otherwise ready to proceed,user_004 +VIS-00149,PER-0117,PRJ-003,PRJ-003-U010,2024-08-08T00:00:00,Senior parents found the approach convenient. Positive feedback overall,user_004 +VIS-00150,PER-0117,PRJ-003,PRJ-003-U010,2024-08-11T00:00:00,Wants to bring architect for Vastu check next visit,user_004 +VIS-00151,PER-0117,PRJ-003,PRJ-003-U010,2024-08-14T00:00:00,Concerned about maintenance charges. Otherwise ready to proceed,user_004 +VIS-00152,PER-0117,PRJ-003,PRJ-003-U010,2024-09-09T00:00:00,Compared with neighbor's flat. Found this more spacious,user_004 +VIS-00153,PER-0118,PRJ-009,PRJ-009-U012,2024-08-19T00:00:00,Wants to bring architect for Vastu check next visit,user_001 +VIS-00154,PER-0118,PRJ-009,PRJ-009-U012,2024-08-28T00:00:00,Concerned about maintenance charges. Otherwise ready to proceed,user_001 +VIS-00155,PER-0118,PRJ-009,PRJ-009-U012,2024-08-31T00:00:00,Wife loved the view from 15th floor. Husband wants to compare with other projects,user_001 +VIS-00156,PER-0118,PRJ-009,PRJ-009-U012,2024-09-10T00:00:00,Liked the layout but concerned about noise from main road,user_001 +VIS-00157,PER-0119,PRJ-004,PRJ-004-U004,2024-03-15T00:00:00,Very interested. Asked about payment plan and possession date,user_002 +VIS-00158,PER-0120,PRJ-004,PRJ-004-U019,2024-05-18T00:00:00,Liked the layout but concerned about noise from main road,user_003 +VIS-00159,PER-0120,PRJ-004,PRJ-004-U019,2024-05-30T00:00:00,Wants to bring architect for Vastu check next visit,user_003 +VIS-00160,PER-0120,PRJ-004,PRJ-004-U019,2024-05-31T00:00:00,NRI son will finalize via video call. Parents visited on his behalf,user_003 +VIS-00161,PER-0120,PRJ-004,PRJ-004-U019,2024-06-14T00:00:00,Wants to bring architect for Vastu check next visit,user_003 +VIS-00162,PER-0120,PRJ-004,PRJ-004-U019,2024-07-13T00:00:00,Concerned about maintenance charges. Otherwise ready to proceed,user_003 +VIS-00163,PER-0121,PRJ-002,PRJ-002-U017,2025-04-06T00:00:00,Liked the layout but concerned about noise from main road,user_003 +VIS-00164,PER-0121,PRJ-002,PRJ-002-U017,2025-05-28T00:00:00,Very interested. Asked about payment plan and possession date,user_003 +VIS-00165,PER-0122,PRJ-001,PRJ-001-U001,2024-03-27T00:00:00,Wife loved the view from 15th floor. Husband wants to compare with other projects,user_005 +VIS-00166,PER-0126,PRJ-004,PRJ-004-U004,2025-11-03T00:00:00,Very interested. Asked about payment plan and possession date,user_001 +VIS-00167,PER-0127,PRJ-014,PRJ-014-U005,2026-03-26T00:00:00,Concerned about maintenance charges. Otherwise ready to proceed,user_001 +VIS-00168,PER-0129,PRJ-001,PRJ-001-U002,2024-10-18T00:00:00,Wants to bring architect for Vastu check next visit,user_003 +VIS-00169,PER-0131,PRJ-003,PRJ-003-U004,2025-07-26T00:00:00,Compared with neighbor's flat. Found this more spacious,user_003 +VIS-00170,PER-0131,PRJ-003,PRJ-003-U004,2025-08-05T00:00:00,Concerned about maintenance charges. Otherwise ready to proceed,user_003 +VIS-00171,PER-0133,PRJ-008,PRJ-008-U009,2024-05-07T00:00:00,Liked the layout but concerned about noise from main road,user_001 +VIS-00172,PER-0135,PRJ-005,PRJ-005-U009,2025-04-11T00:00:00,Senior parents found the approach convenient. Positive feedback overall,user_004 +VIS-00173,PER-0135,PRJ-005,PRJ-005-U009,2025-04-17T00:00:00,Wife loved the view from 15th floor. Husband wants to compare with other projects,user_004 +VIS-00174,PER-0135,PRJ-005,PRJ-005-U009,2025-04-23T00:00:00,Wants to bring architect for Vastu check next visit,user_004 +VIS-00175,PER-0135,PRJ-005,PRJ-005-U009,2025-04-27T00:00:00,Wants to bring architect for Vastu check next visit,user_004 +VIS-00176,PER-0137,PRJ-007,PRJ-007-U014,2026-03-11T00:00:00,Compared with neighbor's flat. Found this more spacious,user_002 +VIS-00177,PER-0137,PRJ-007,PRJ-007-U014,2026-04-14T00:00:00,Wants to bring architect for Vastu check next visit,user_002 +VIS-00178,PER-0137,PRJ-007,PRJ-007-U014,2026-04-17T00:00:00,Very interested. Asked about payment plan and possession date,user_002 +VIS-00179,PER-0138,PRJ-014,PRJ-014-U002,2024-09-22T00:00:00,Compared with neighbor's flat. Found this more spacious,user_005 +VIS-00180,PER-0138,PRJ-014,PRJ-014-U002,2024-10-12T00:00:00,Concerned about maintenance charges. Otherwise ready to proceed,user_005 +VIS-00181,PER-0145,PRJ-001,PRJ-001-U013,2024-10-30T00:00:00,NRI son will finalize via video call. Parents visited on his behalf,user_005 +VIS-00182,PER-0148,PRJ-012,PRJ-012-U007,2024-12-04T00:00:00,Very interested. Asked about payment plan and possession date,user_002 +VIS-00183,PER-0148,PRJ-012,PRJ-012-U007,2025-01-03T00:00:00,Wants to bring architect for Vastu check next visit,user_002 +VIS-00184,PER-0148,PRJ-012,PRJ-012-U007,2025-01-05T00:00:00,Liked the layout but concerned about noise from main road,user_002 +VIS-00185,PER-0148,PRJ-012,PRJ-012-U007,2025-01-14T00:00:00,Wife loved the view from 15th floor. Husband wants to compare with other projects,user_002 +VIS-00186,PER-0149,PRJ-006,PRJ-006-U005,2025-02-17T00:00:00,Wants to bring architect for Vastu check next visit,user_003 +VIS-00187,PER-0149,PRJ-006,PRJ-006-U005,2025-02-18T00:00:00,Liked the layout but concerned about noise from main road,user_003 +VIS-00188,PER-0150,PRJ-005,PRJ-005-U008,2025-12-27T00:00:00,Wants to bring architect for Vastu check next visit,user_005 +VIS-00189,PER-0150,PRJ-005,PRJ-005-U008,2025-12-31T00:00:00,Senior parents found the approach convenient. Positive feedback overall,user_005 +VIS-00190,PER-0150,PRJ-005,PRJ-005-U008,2026-01-14T00:00:00,Wants to bring architect for Vastu check next visit,user_005 +VIS-00191,PER-0153,PRJ-006,PRJ-006-U003,2025-07-18T00:00:00,Wants to bring architect for Vastu check next visit,user_002 +VIS-00192,PER-0154,PRJ-010,PRJ-010-U011,2025-09-09T00:00:00,Compared with neighbor's flat. Found this more spacious,user_004 +VIS-00193,PER-0154,PRJ-010,PRJ-010-U011,2025-09-20T00:00:00,Concerned about maintenance charges. Otherwise ready to proceed,user_004 +VIS-00194,PER-0154,PRJ-010,PRJ-010-U011,2025-09-24T00:00:00,Wife loved the view from 15th floor. Husband wants to compare with other projects,user_004 +VIS-00195,PER-0155,PRJ-002,PRJ-002-U001,2024-03-06T00:00:00,Compared with neighbor's flat. Found this more spacious,user_002 +VIS-00196,PER-0158,PRJ-003,PRJ-003-U008,2026-01-16T00:00:00,Wife loved the view from 15th floor. Husband wants to compare with other projects,user_003 +VIS-00197,PER-0158,PRJ-003,PRJ-003-U008,2026-01-21T00:00:00,NRI son will finalize via video call. Parents visited on his behalf,user_003 +VIS-00198,PER-0158,PRJ-003,PRJ-003-U008,2026-02-07T00:00:00,Senior parents found the approach convenient. Positive feedback overall,user_003 +VIS-00199,PER-0158,PRJ-003,PRJ-003-U008,2026-02-21T00:00:00,Wants to bring architect for Vastu check next visit,user_003 +VIS-00200,PER-0158,PRJ-003,PRJ-003-U008,2026-03-01T00:00:00,Concerned about maintenance charges. Otherwise ready to proceed,user_003 +VIS-00201,PER-0159,PRJ-005,PRJ-005-U008,2024-08-17T00:00:00,Compared with neighbor's flat. Found this more spacious,user_004 +VIS-00202,PER-0159,PRJ-005,PRJ-005-U008,2024-09-02T00:00:00,Wife loved the view from 15th floor. Husband wants to compare with other projects,user_004 +VIS-00203,PER-0160,PRJ-010,PRJ-010-U012,2025-11-17T00:00:00,Compared with neighbor's flat. Found this more spacious,user_003 +VIS-00204,PER-0160,PRJ-010,PRJ-010-U012,2025-12-05T00:00:00,Very interested. Asked about payment plan and possession date,user_003 +VIS-00205,PER-0160,PRJ-010,PRJ-010-U012,2025-12-31T00:00:00,Senior parents found the approach convenient. Positive feedback overall,user_003 +VIS-00206,PER-0162,PRJ-009,PRJ-009-U008,2024-10-09T00:00:00,Wife loved the view from 15th floor. Husband wants to compare with other projects,user_005 +VIS-00207,PER-0162,PRJ-009,PRJ-009-U008,2024-11-26T00:00:00,Wants to bring architect for Vastu check next visit,user_005 +VIS-00208,PER-0164,PRJ-008,PRJ-008-U007,2024-07-22T00:00:00,NRI son will finalize via video call. Parents visited on his behalf,user_004 +VIS-00209,PER-0164,PRJ-008,PRJ-008-U007,2024-08-02T00:00:00,Concerned about maintenance charges. Otherwise ready to proceed,user_004 +VIS-00210,PER-0166,PRJ-010,PRJ-010-U011,2024-11-05T00:00:00,Senior parents found the approach convenient. Positive feedback overall,user_001 +VIS-00211,PER-0169,PRJ-006,PRJ-006-U002,2025-03-14T00:00:00,Concerned about maintenance charges. Otherwise ready to proceed,user_005 +VIS-00212,PER-0170,PRJ-003,PRJ-003-U010,2026-04-20T00:00:00,Wants to bring architect for Vastu check next visit,user_003 +VIS-00213,PER-0171,PRJ-010,PRJ-010-U012,2024-02-13T00:00:00,Compared with neighbor's flat. Found this more spacious,user_003 +VIS-00214,PER-0173,PRJ-005,PRJ-005-U006,2024-09-09T00:00:00,NRI son will finalize via video call. Parents visited on his behalf,user_004 +VIS-00215,PER-0173,PRJ-005,PRJ-005-U006,2024-09-11T00:00:00,Compared with neighbor's flat. Found this more spacious,user_004 +VIS-00216,PER-0173,PRJ-005,PRJ-005-U006,2024-09-23T00:00:00,Liked the layout but concerned about noise from main road,user_004 +VIS-00217,PER-0173,PRJ-005,PRJ-005-U006,2024-10-29T00:00:00,NRI son will finalize via video call. Parents visited on his behalf,user_004 +VIS-00218,PER-0175,PRJ-010,PRJ-010-U012,2025-01-11T00:00:00,Liked the layout but concerned about noise from main road,user_005 +VIS-00219,PER-0175,PRJ-010,PRJ-010-U012,2025-01-19T00:00:00,Wants to bring architect for Vastu check next visit,user_005 +VIS-00220,PER-0176,PRJ-005,PRJ-005-U005,2026-02-09T00:00:00,Wife loved the view from 15th floor. Husband wants to compare with other projects,user_005 +VIS-00221,PER-0178,PRJ-007,PRJ-007-U017,2025-06-21T00:00:00,Senior parents found the approach convenient. Positive feedback overall,user_001 +VIS-00222,PER-0178,PRJ-007,PRJ-007-U017,2025-07-17T00:00:00,Very interested. Asked about payment plan and possession date,user_001 +VIS-00223,PER-0178,PRJ-007,PRJ-007-U017,2025-07-22T00:00:00,Wife loved the view from 15th floor. Husband wants to compare with other projects,user_001 +VIS-00224,PER-0178,PRJ-007,PRJ-007-U017,2025-07-31T00:00:00,Wife loved the view from 15th floor. Husband wants to compare with other projects,user_001 +VIS-00225,PER-0178,PRJ-007,PRJ-007-U017,2025-08-09T00:00:00,NRI son will finalize via video call. Parents visited on his behalf,user_001 +VIS-00226,PER-0179,PRJ-014,PRJ-014-U001,2024-02-25T00:00:00,NRI son will finalize via video call. Parents visited on his behalf,user_005 +VIS-00227,PER-0180,PRJ-010,PRJ-010-U004,2024-05-14T00:00:00,Compared with neighbor's flat. Found this more spacious,user_003 +VIS-00228,PER-0180,PRJ-010,PRJ-010-U004,2024-05-29T00:00:00,Concerned about maintenance charges. Otherwise ready to proceed,user_003 +VIS-00229,PER-0180,PRJ-010,PRJ-010-U004,2024-05-30T00:00:00,Concerned about maintenance charges. Otherwise ready to proceed,user_003 +VIS-00230,PER-0181,PRJ-013,PRJ-013-U013,2025-11-01T00:00:00,Senior parents found the approach convenient. Positive feedback overall,user_005 +VIS-00231,PER-0181,PRJ-013,PRJ-013-U013,2025-11-29T00:00:00,Wife loved the view from 15th floor. Husband wants to compare with other projects,user_005 +VIS-00232,PER-0181,PRJ-013,PRJ-013-U013,2025-12-03T00:00:00,Compared with neighbor's flat. Found this more spacious,user_005 +VIS-00233,PER-0183,PRJ-003,PRJ-003-U011,2025-09-25T00:00:00,Wife loved the view from 15th floor. Husband wants to compare with other projects,user_001 +VIS-00234,PER-0183,PRJ-003,PRJ-003-U011,2025-10-01T00:00:00,Wants to bring architect for Vastu check next visit,user_001 +VIS-00235,PER-0183,PRJ-003,PRJ-003-U011,2025-10-23T00:00:00,Very interested. Asked about payment plan and possession date,user_001 +VIS-00236,PER-0184,PRJ-010,PRJ-010-U010,2025-12-17T00:00:00,Wants to bring architect for Vastu check next visit,user_002 +VIS-00237,PER-0184,PRJ-010,PRJ-010-U010,2026-01-11T00:00:00,Concerned about maintenance charges. Otherwise ready to proceed,user_002 +VIS-00238,PER-0185,PRJ-006,PRJ-006-U005,2025-12-04T00:00:00,Wants to bring architect for Vastu check next visit,user_002 +VIS-00239,PER-0185,PRJ-006,PRJ-006-U005,2026-01-14T00:00:00,Compared with neighbor's flat. Found this more spacious,user_002 +VIS-00240,PER-0186,PRJ-011,PRJ-011-U004,2025-02-07T00:00:00,Liked the layout but concerned about noise from main road,user_004 +VIS-00241,PER-0186,PRJ-011,PRJ-011-U004,2025-03-05T00:00:00,Wants to bring architect for Vastu check next visit,user_004 +VIS-00242,PER-0187,PRJ-011,PRJ-011-U004,2024-09-17T00:00:00,Compared with neighbor's flat. Found this more spacious,user_005 +VIS-00243,PER-0187,PRJ-011,PRJ-011-U004,2024-09-27T00:00:00,Wants to bring architect for Vastu check next visit,user_005 +VIS-00244,PER-0188,PRJ-005,PRJ-005-U008,2025-01-27T00:00:00,NRI son will finalize via video call. Parents visited on his behalf,user_002 +VIS-00245,PER-0188,PRJ-005,PRJ-005-U008,2025-02-06T00:00:00,Liked the layout but concerned about noise from main road,user_002 +VIS-00246,PER-0189,PRJ-012,PRJ-012-U007,2025-12-12T00:00:00,Compared with neighbor's flat. Found this more spacious,user_003 +VIS-00247,PER-0189,PRJ-012,PRJ-012-U007,2026-01-12T00:00:00,NRI son will finalize via video call. Parents visited on his behalf,user_003 +VIS-00248,PER-0189,PRJ-012,PRJ-012-U007,2026-01-13T00:00:00,Senior parents found the approach convenient. Positive feedback overall,user_003 +VIS-00249,PER-0190,PRJ-003,PRJ-003-U005,2025-09-21T00:00:00,Senior parents found the approach convenient. Positive feedback overall,user_001 +VIS-00250,PER-0191,PRJ-008,PRJ-008-U003,2024-03-25T00:00:00,Wife loved the view from 15th floor. Husband wants to compare with other projects,user_005 +VIS-00251,PER-0192,PRJ-005,PRJ-005-U005,2026-02-22T00:00:00,Concerned about maintenance charges. Otherwise ready to proceed,user_005 +VIS-00252,PER-0192,PRJ-005,PRJ-005-U005,2026-03-12T00:00:00,Wife loved the view from 15th floor. Husband wants to compare with other projects,user_005 +VIS-00253,PER-0192,PRJ-005,PRJ-005-U005,2026-03-17T00:00:00,Wants to bring architect for Vastu check next visit,user_005 +VIS-00254,PER-0193,PRJ-001,PRJ-001-U013,2024-08-24T00:00:00,Wants to bring architect for Vastu check next visit,user_002 +VIS-00255,PER-0193,PRJ-001,PRJ-001-U013,2024-09-23T00:00:00,NRI son will finalize via video call. Parents visited on his behalf,user_002 +VIS-00256,PER-0195,PRJ-004,PRJ-004-U008,2025-02-22T00:00:00,Very interested. Asked about payment plan and possession date,user_003 +VIS-00257,PER-0196,PRJ-011,PRJ-011-U009,2024-02-04T00:00:00,Senior parents found the approach convenient. Positive feedback overall,user_002 +VIS-00258,PER-0196,PRJ-011,PRJ-011-U009,2024-03-05T00:00:00,Wants to bring architect for Vastu check next visit,user_002 +VIS-00259,PER-0198,PRJ-002,PRJ-002-U002,2025-05-20T00:00:00,Wants to bring architect for Vastu check next visit,user_003 +VIS-00260,PER-0198,PRJ-002,PRJ-002-U002,2025-06-21T00:00:00,Wife loved the view from 15th floor. Husband wants to compare with other projects,user_003 +VIS-00261,PER-0201,PRJ-004,PRJ-004-U004,2024-09-29T00:00:00,Concerned about maintenance charges. Otherwise ready to proceed,user_002 +VIS-00262,PER-0202,PRJ-004,PRJ-004-U008,2024-06-11T00:00:00,Concerned about maintenance charges. Otherwise ready to proceed,user_001 +VIS-00263,PER-0204,PRJ-009,PRJ-009-U004,2024-08-03T00:00:00,NRI son will finalize via video call. Parents visited on his behalf,user_005 +VIS-00264,PER-0204,PRJ-009,PRJ-009-U004,2024-09-03T00:00:00,NRI son will finalize via video call. Parents visited on his behalf,user_005 +VIS-00265,PER-0204,PRJ-009,PRJ-009-U004,2024-10-01T00:00:00,Wife loved the view from 15th floor. Husband wants to compare with other projects,user_005 +VIS-00266,PER-0205,PRJ-004,PRJ-004-U020,2025-05-16T00:00:00,NRI son will finalize via video call. Parents visited on his behalf,user_001 +VIS-00267,PER-0205,PRJ-004,PRJ-004-U020,2025-06-19T00:00:00,Liked the layout but concerned about noise from main road,user_001 +VIS-00268,PER-0205,PRJ-004,PRJ-004-U020,2025-06-23T00:00:00,Liked the layout but concerned about noise from main road,user_001 +VIS-00269,PER-0209,PRJ-014,PRJ-014-U006,2024-03-14T00:00:00,Very interested. Asked about payment plan and possession date,user_004 +VIS-00270,PER-0209,PRJ-014,PRJ-014-U006,2024-05-04T00:00:00,Senior parents found the approach convenient. Positive feedback overall,user_004 +VIS-00271,PER-0212,PRJ-010,PRJ-010-U010,2024-06-12T00:00:00,Wife loved the view from 15th floor. Husband wants to compare with other projects,user_005 +VIS-00272,PER-0212,PRJ-010,PRJ-010-U010,2024-07-01T00:00:00,Liked the layout but concerned about noise from main road,user_005 +VIS-00273,PER-0213,PRJ-005,PRJ-005-U008,2024-06-01T00:00:00,Concerned about maintenance charges. Otherwise ready to proceed,user_002 +VIS-00274,PER-0213,PRJ-005,PRJ-005-U008,2024-07-25T00:00:00,Wants to bring architect for Vastu check next visit,user_002 +VIS-00275,PER-0214,PRJ-010,PRJ-010-U013,2025-09-07T00:00:00,Liked the layout but concerned about noise from main road,user_005 +VIS-00276,PER-0215,PRJ-012,PRJ-012-U004,2025-06-28T00:00:00,Very interested. Asked about payment plan and possession date,user_001 +VIS-00277,PER-0215,PRJ-012,PRJ-012-U004,2025-08-09T00:00:00,Liked the layout but concerned about noise from main road,user_001 +VIS-00278,PER-0218,PRJ-003,PRJ-003-U011,2026-02-05T00:00:00,Wants to bring architect for Vastu check next visit,user_005 +VIS-00279,PER-0218,PRJ-003,PRJ-003-U011,2026-02-24T00:00:00,Wants to bring architect for Vastu check next visit,user_005 +VIS-00280,PER-0219,PRJ-002,PRJ-002-U019,2025-08-10T00:00:00,Senior parents found the approach convenient. Positive feedback overall,user_004 +VIS-00281,PER-0219,PRJ-002,PRJ-002-U019,2025-08-16T00:00:00,Senior parents found the approach convenient. Positive feedback overall,user_004 +VIS-00282,PER-0219,PRJ-002,PRJ-002-U019,2025-08-30T00:00:00,Wife loved the view from 15th floor. Husband wants to compare with other projects,user_004 +VIS-00283,PER-0219,PRJ-002,PRJ-002-U019,2025-09-20T00:00:00,Very interested. Asked about payment plan and possession date,user_004 +VIS-00284,PER-0222,PRJ-013,PRJ-013-U004,2026-02-09T00:00:00,NRI son will finalize via video call. Parents visited on his behalf,user_002 +VIS-00285,PER-0222,PRJ-013,PRJ-013-U004,2026-02-12T00:00:00,Compared with neighbor's flat. Found this more spacious,user_002 +VIS-00286,PER-0223,PRJ-002,PRJ-002-U001,2025-06-13T00:00:00,Liked the layout but concerned about noise from main road,user_001 +VIS-00287,PER-0223,PRJ-002,PRJ-002-U001,2025-07-17T00:00:00,Concerned about maintenance charges. Otherwise ready to proceed,user_001 +VIS-00288,PER-0223,PRJ-002,PRJ-002-U001,2025-08-02T00:00:00,Wife loved the view from 15th floor. Husband wants to compare with other projects,user_001 +VIS-00289,PER-0223,PRJ-002,PRJ-002-U001,2025-08-12T00:00:00,Compared with neighbor's flat. Found this more spacious,user_001 +VIS-00290,PER-0224,PRJ-005,PRJ-005-U008,2025-10-26T00:00:00,Concerned about maintenance charges. Otherwise ready to proceed,user_002 +VIS-00291,PER-0224,PRJ-005,PRJ-005-U008,2025-11-22T00:00:00,NRI son will finalize via video call. Parents visited on his behalf,user_002 +VIS-00292,PER-0225,PRJ-013,PRJ-013-U006,2025-01-05T00:00:00,Liked the layout but concerned about noise from main road,user_003 +VIS-00293,PER-0225,PRJ-013,PRJ-013-U006,2025-01-05T00:00:00,Wife loved the view from 15th floor. Husband wants to compare with other projects,user_003 +VIS-00294,PER-0225,PRJ-013,PRJ-013-U006,2025-01-09T00:00:00,Wants to bring architect for Vastu check next visit,user_003 +VIS-00295,PER-0225,PRJ-013,PRJ-013-U006,2025-02-13T00:00:00,Wants to bring architect for Vastu check next visit,user_003 +VIS-00296,PER-0226,PRJ-010,PRJ-010-U012,2024-07-18T00:00:00,Wife loved the view from 15th floor. Husband wants to compare with other projects,user_004 +VIS-00297,PER-0231,PRJ-014,PRJ-014-U005,2025-12-20T00:00:00,Concerned about maintenance charges. Otherwise ready to proceed,user_003 +VIS-00298,PER-0231,PRJ-014,PRJ-014-U005,2025-12-22T00:00:00,Concerned about maintenance charges. Otherwise ready to proceed,user_003 +VIS-00299,PER-0237,PRJ-009,PRJ-009-U004,2025-01-25T00:00:00,Wants to bring architect for Vastu check next visit,user_004 +VIS-00300,PER-0241,PRJ-004,PRJ-004-U010,2026-01-20T00:00:00,Compared with neighbor's flat. Found this more spacious,user_002 +VIS-00301,PER-0243,PRJ-007,PRJ-007-U003,2024-04-03T00:00:00,Liked the layout but concerned about noise from main road,user_003 +VIS-00302,PER-0249,PRJ-007,PRJ-007-U001,2024-08-25T00:00:00,Concerned about maintenance charges. Otherwise ready to proceed,user_004 +VIS-00303,PER-0249,PRJ-007,PRJ-007-U001,2024-09-06T00:00:00,Liked the layout but concerned about noise from main road,user_004 +VIS-00304,PER-0249,PRJ-007,PRJ-007-U001,2024-09-10T00:00:00,Wants to bring architect for Vastu check next visit,user_004 +VIS-00305,PER-0249,PRJ-007,PRJ-007-U001,2024-09-20T00:00:00,Concerned about maintenance charges. Otherwise ready to proceed,user_004 diff --git a/db assets/synthetic_crm_v1/csv/intel_whatsapp_threads.csv b/db assets/synthetic_crm_v1/csv/intel_whatsapp_threads.csv new file mode 100644 index 00000000..0980e990 --- /dev/null +++ b/db assets/synthetic_crm_v1/csv/intel_whatsapp_threads.csv @@ -0,0 +1,607 @@ +thread_id,interaction_id,phone_number,thread_status,message_count,last_message_at +WTH-00001,INT-000002,+91-76251-12482,active,3,2025-09-24T00:00:00 +WTH-00002,INT-000003,+91-76251-12482,active,3,2025-10-17T00:00:00 +WTH-00003,INT-000005,+91-76251-12482,active,9,2025-10-18T00:00:00 +WTH-00004,INT-000007,+91-76251-12482,archived,11,2025-10-21T00:00:00 +WTH-00005,INT-000009,+91-76251-12482,active,3,2025-11-08T00:00:00 +WTH-00006,INT-000013,+91-76251-12482,active,8,2025-12-13T00:00:00 +WTH-00007,INT-000017,+91-77840-41779,active,7,2025-02-08T00:00:00 +WTH-00008,INT-000019,+91-77840-41779,archived,10,2025-02-13T00:00:00 +WTH-00009,INT-000023,+91-98054-93719,active,4,2025-02-27T00:00:00 +WTH-00010,INT-000026,+91-80751-78202,active,11,2025-05-17T00:00:00 +WTH-00011,INT-000027,+91-80751-78202,active,7,2025-05-22T00:00:00 +WTH-00012,INT-000028,+91-80751-78202,active,7,2025-05-24T00:00:00 +WTH-00013,INT-000031,+91-80751-78202,active,3,2025-06-17T00:00:00 +WTH-00014,INT-000034,+91-78019-15798,archived,5,2024-06-08T00:00:00 +WTH-00015,INT-000038,+91-78019-15798,archived,5,2024-06-30T00:00:00 +WTH-00016,INT-000040,+91-78019-15798,archived,10,2024-07-30T00:00:00 +WTH-00017,INT-000042,+91-78019-15798,archived,12,2024-08-01T00:00:00 +WTH-00018,INT-000049,+91-98927-75179,active,11,2024-08-07T00:00:00 +WTH-00019,INT-000050,+91-98927-75179,active,11,2024-08-10T00:00:00 +WTH-00020,INT-000053,+91-98927-75179,archived,7,2024-09-25T00:00:00 +WTH-00021,INT-000057,+91-70515-10866,active,10,2025-09-11T00:00:00 +WTH-00022,INT-000060,+91-70515-10866,active,8,2025-10-09T00:00:00 +WTH-00023,INT-000064,+91-88479-41519,archived,12,2026-03-28T00:00:00 +WTH-00024,INT-000071,+91-72998-10680,archived,7,2024-05-05T00:00:00 +WTH-00025,INT-000075,+91-84243-46170,active,4,2025-07-01T00:00:00 +WTH-00026,INT-000076,+91-84243-46170,active,12,2025-08-01T00:00:00 +WTH-00027,INT-000078,+91-89593-72814,archived,12,2024-04-20T00:00:00 +WTH-00028,INT-000079,+91-89593-72814,archived,12,2024-04-22T00:00:00 +WTH-00029,INT-000080,+91-89593-72814,active,9,2024-05-18T00:00:00 +WTH-00030,INT-000081,+91-89593-72814,active,9,2024-06-07T00:00:00 +WTH-00031,INT-000084,+91-95698-37114,active,3,2025-03-17T00:00:00 +WTH-00032,INT-000085,+91-95698-37114,active,9,2025-04-03T00:00:00 +WTH-00033,INT-000090,+91-90031-61451,active,8,2025-12-31T00:00:00 +WTH-00034,INT-000091,+91-90031-61451,active,11,2026-01-03T00:00:00 +WTH-00035,INT-000092,+91-90031-61451,archived,3,2026-01-06T00:00:00 +WTH-00036,INT-000093,+91-90031-61451,active,9,2026-01-18T00:00:00 +WTH-00037,INT-000096,+91-90031-61451,active,11,2026-02-21T00:00:00 +WTH-00038,INT-000099,+91-96712-60324,active,5,2025-05-22T00:00:00 +WTH-00039,INT-000104,+91-97147-42447,active,5,2024-05-08T00:00:00 +WTH-00040,INT-000105,+91-97147-42447,active,11,2024-05-17T00:00:00 +WTH-00041,INT-000109,+91-71696-61949,active,11,2026-01-29T00:00:00 +WTH-00042,INT-000112,+91-89693-88644,active,9,2024-12-22T00:00:00 +WTH-00043,INT-000113,+91-89693-88644,active,4,2025-01-27T00:00:00 +WTH-00044,INT-000115,+91-79092-20957,active,3,2026-02-03T00:00:00 +WTH-00045,INT-000116,+91-79092-20957,archived,9,2026-02-08T00:00:00 +WTH-00046,INT-000117,+91-79092-20957,archived,9,2026-02-09T00:00:00 +WTH-00047,INT-000118,+91-79092-20957,active,11,2026-02-20T00:00:00 +WTH-00048,INT-000120,+91-79092-20957,archived,11,2026-03-03T00:00:00 +WTH-00049,INT-000122,+91-79092-20957,active,7,2026-03-24T00:00:00 +WTH-00050,INT-000123,+91-79092-20957,archived,3,2026-04-09T00:00:00 +WTH-00051,INT-000126,+91-72092-44465,archived,11,2024-12-06T00:00:00 +WTH-00052,INT-000129,+91-80724-21322,archived,5,2024-08-04T00:00:00 +WTH-00053,INT-000131,+91-80724-21322,active,10,2024-08-31T00:00:00 +WTH-00054,INT-000132,+91-80724-21322,archived,8,2024-09-04T00:00:00 +WTH-00055,INT-000135,+91-80724-21322,archived,8,2024-09-23T00:00:00 +WTH-00056,INT-000137,+91-84808-50410,archived,9,2024-06-25T00:00:00 +WTH-00057,INT-000144,+91-79170-68459,active,3,2025-02-16T00:00:00 +WTH-00058,INT-000148,+91-82241-96787,archived,6,2026-01-26T00:00:00 +WTH-00059,INT-000149,+91-82241-96787,archived,3,2026-02-07T00:00:00 +WTH-00060,INT-000152,+91-82241-96787,active,5,2026-02-11T00:00:00 +WTH-00061,INT-000153,+91-82241-96787,active,12,2026-02-13T00:00:00 +WTH-00062,INT-000155,+91-82241-96787,active,9,2026-03-23T00:00:00 +WTH-00063,INT-000157,+91-82646-67438,archived,11,2024-08-03T00:00:00 +WTH-00064,INT-000158,+91-82646-67438,active,6,2024-08-05T00:00:00 +WTH-00065,INT-000160,+91-75597-93648,archived,6,2025-03-05T00:00:00 +WTH-00066,INT-000161,+91-75597-93648,active,5,2025-03-09T00:00:00 +WTH-00067,INT-000168,+91-85606-49171,active,7,2024-07-14T00:00:00 +WTH-00068,INT-000171,+91-85606-49171,active,10,2024-08-07T00:00:00 +WTH-00069,INT-000174,+91-85606-49171,active,3,2024-09-05T00:00:00 +WTH-00070,INT-000177,+91-75642-46099,active,4,2024-09-09T00:00:00 +WTH-00071,INT-000182,+91-81460-55121,active,8,2025-05-30T00:00:00 +WTH-00072,INT-000183,+91-81460-55121,active,9,2025-06-24T00:00:00 +WTH-00073,INT-000185,+91-81460-55121,active,8,2025-07-02T00:00:00 +WTH-00074,INT-000187,+91-81019-46239,active,9,2024-11-29T00:00:00 +WTH-00075,INT-000189,+91-81019-46239,archived,11,2024-12-07T00:00:00 +WTH-00076,INT-000190,+91-81019-46239,active,5,2024-12-09T00:00:00 +WTH-00077,INT-000192,+91-81019-46239,active,6,2025-01-05T00:00:00 +WTH-00078,INT-000193,+91-81019-46239,active,11,2025-01-16T00:00:00 +WTH-00079,INT-000194,+91-81019-46239,active,5,2025-01-17T00:00:00 +WTH-00080,INT-000196,+91-89187-48541,active,3,2025-11-21T00:00:00 +WTH-00081,INT-000197,+91-89187-48541,active,3,2025-11-23T00:00:00 +WTH-00082,INT-000204,+91-82294-93928,active,12,2025-03-26T00:00:00 +WTH-00083,INT-000205,+91-82294-93928,active,12,2025-04-01T00:00:00 +WTH-00084,INT-000207,+91-82294-93928,active,7,2025-04-12T00:00:00 +WTH-00085,INT-000213,+91-70417-98032,archived,12,2024-04-27T00:00:00 +WTH-00086,INT-000214,+91-70417-98032,archived,9,2024-06-24T00:00:00 +WTH-00087,INT-000216,+91-92812-17686,active,12,2025-12-05T00:00:00 +WTH-00088,INT-000218,+91-92812-17686,active,10,2026-01-08T00:00:00 +WTH-00089,INT-000219,+91-92812-17686,active,8,2026-01-10T00:00:00 +WTH-00090,INT-000223,+91-73363-62879,active,12,2025-10-11T00:00:00 +WTH-00091,INT-000225,+91-73363-62879,active,9,2025-10-19T00:00:00 +WTH-00092,INT-000227,+91-73363-62879,active,7,2025-10-26T00:00:00 +WTH-00093,INT-000229,+91-73363-62879,archived,6,2025-12-12T00:00:00 +WTH-00094,INT-000231,+91-73363-62879,active,7,2025-12-17T00:00:00 +WTH-00095,INT-000234,+91-88128-66729,active,3,2024-11-03T00:00:00 +WTH-00096,INT-000236,+91-88128-66729,archived,6,2024-11-24T00:00:00 +WTH-00097,INT-000240,+91-88128-66729,active,6,2024-12-20T00:00:00 +WTH-00098,INT-000241,+91-88128-66729,active,10,2024-12-21T00:00:00 +WTH-00099,INT-000243,+91-95700-47701,active,6,2025-11-30T00:00:00 +WTH-00100,INT-000247,+91-91736-53500,active,10,2025-09-07T00:00:00 +WTH-00101,INT-000248,+91-91736-53500,archived,4,2025-09-27T00:00:00 +WTH-00102,INT-000252,+91-71436-48854,active,7,2024-02-09T00:00:00 +WTH-00103,INT-000256,+91-71436-48854,active,10,2024-04-06T00:00:00 +WTH-00104,INT-000260,+91-71436-48854,active,6,2024-04-19T00:00:00 +WTH-00105,INT-000262,+91-76883-55069,active,7,2024-03-03T00:00:00 +WTH-00106,INT-000263,+91-76883-55069,archived,5,2024-03-04T00:00:00 +WTH-00107,INT-000265,+91-76883-55069,archived,5,2024-03-13T00:00:00 +WTH-00108,INT-000275,+91-91153-89511,archived,4,2025-10-03T00:00:00 +WTH-00109,INT-000277,+91-91153-89511,archived,7,2025-10-13T00:00:00 +WTH-00110,INT-000279,+91-75696-59369,active,7,2024-05-22T00:00:00 +WTH-00111,INT-000284,+91-97083-29603,active,3,2024-01-29T00:00:00 +WTH-00112,INT-000285,+91-97083-29603,archived,8,2024-01-29T00:00:00 +WTH-00113,INT-000288,+91-97083-29603,active,5,2024-02-23T00:00:00 +WTH-00114,INT-000290,+91-97083-29603,active,6,2024-03-03T00:00:00 +WTH-00115,INT-000295,+91-91350-86725,archived,4,2025-06-30T00:00:00 +WTH-00116,INT-000310,+91-96310-77277,active,9,2026-03-01T00:00:00 +WTH-00117,INT-000317,+91-77695-41726,active,6,2025-01-15T00:00:00 +WTH-00118,INT-000318,+91-77695-41726,active,4,2025-01-17T00:00:00 +WTH-00119,INT-000320,+91-77695-41726,archived,10,2025-02-27T00:00:00 +WTH-00120,INT-000323,+91-92880-77922,active,11,2024-04-25T00:00:00 +WTH-00121,INT-000324,+91-92880-77922,active,11,2024-04-27T00:00:00 +WTH-00122,INT-000326,+91-92880-77922,active,5,2024-05-16T00:00:00 +WTH-00123,INT-000330,+91-92880-77922,active,3,2024-06-27T00:00:00 +WTH-00124,INT-000332,+91-92880-77922,archived,8,2024-07-06T00:00:00 +WTH-00125,INT-000338,+91-86370-27625,active,12,2026-03-07T00:00:00 +WTH-00126,INT-000340,+91-79388-70784,active,6,2025-09-14T00:00:00 +WTH-00127,INT-000342,+91-79388-70784,active,3,2025-10-02T00:00:00 +WTH-00128,INT-000343,+91-79388-70784,active,9,2025-10-23T00:00:00 +WTH-00129,INT-000344,+91-79388-70784,archived,9,2025-11-01T00:00:00 +WTH-00130,INT-000358,+91-87974-68306,active,12,2025-06-15T00:00:00 +WTH-00131,INT-000359,+91-87974-68306,active,11,2025-06-16T00:00:00 +WTH-00132,INT-000364,+91-87974-68306,active,6,2025-07-25T00:00:00 +WTH-00133,INT-000368,+91-92953-91625,active,8,2026-01-05T00:00:00 +WTH-00134,INT-000372,+91-94403-82034,archived,4,2026-01-10T00:00:00 +WTH-00135,INT-000373,+91-94403-82034,archived,4,2026-02-01T00:00:00 +WTH-00136,INT-000379,+91-72256-79617,archived,5,2025-10-24T00:00:00 +WTH-00137,INT-000381,+91-72256-79617,active,12,2025-11-17T00:00:00 +WTH-00138,INT-000383,+91-72256-79617,active,9,2025-12-02T00:00:00 +WTH-00139,INT-000384,+91-72256-79617,archived,4,2025-12-08T00:00:00 +WTH-00140,INT-000390,+91-88298-83156,active,11,2025-01-16T00:00:00 +WTH-00141,INT-000391,+91-88298-83156,active,10,2025-01-27T00:00:00 +WTH-00142,INT-000393,+91-88298-83156,active,5,2025-03-11T00:00:00 +WTH-00143,INT-000396,+91-77039-51275,archived,12,2024-04-17T00:00:00 +WTH-00144,INT-000399,+91-77039-51275,active,8,2024-04-28T00:00:00 +WTH-00145,INT-000403,+91-77039-51275,active,9,2024-06-27T00:00:00 +WTH-00146,INT-000409,+91-74850-27326,active,9,2025-05-17T00:00:00 +WTH-00147,INT-000412,+91-74850-27326,active,7,2025-05-31T00:00:00 +WTH-00148,INT-000416,+91-80874-37395,archived,9,2024-01-29T00:00:00 +WTH-00149,INT-000419,+91-80874-37395,archived,7,2024-02-20T00:00:00 +WTH-00150,INT-000428,+91-77739-75700,active,8,2024-02-24T00:00:00 +WTH-00151,INT-000429,+91-77739-75700,active,8,2024-02-29T00:00:00 +WTH-00152,INT-000430,+91-77739-75700,active,5,2024-02-29T00:00:00 +WTH-00153,INT-000436,+91-77739-75700,active,4,2024-04-17T00:00:00 +WTH-00154,INT-000437,+91-77739-75700,archived,9,2024-04-20T00:00:00 +WTH-00155,INT-000439,+91-77739-75700,active,4,2024-04-25T00:00:00 +WTH-00156,INT-000443,+91-81772-20417,active,5,2024-11-22T00:00:00 +WTH-00157,INT-000444,+91-81772-20417,active,12,2024-11-24T00:00:00 +WTH-00158,INT-000446,+91-81772-20417,active,3,2024-12-27T00:00:00 +WTH-00159,INT-000450,+91-72963-75622,active,8,2026-02-05T00:00:00 +WTH-00160,INT-000458,+91-87809-10753,active,5,2024-09-16T00:00:00 +WTH-00161,INT-000464,+91-87809-10753,archived,4,2024-11-14T00:00:00 +WTH-00162,INT-000465,+91-87809-10753,archived,3,2024-11-15T00:00:00 +WTH-00163,INT-000467,+91-87809-10753,archived,10,2024-11-22T00:00:00 +WTH-00164,INT-000468,+91-87809-10753,archived,8,2024-11-22T00:00:00 +WTH-00165,INT-000472,+91-93911-92441,active,4,2026-01-16T00:00:00 +WTH-00166,INT-000475,+91-93911-92441,archived,8,2026-01-29T00:00:00 +WTH-00167,INT-000476,+91-93911-92441,archived,6,2026-02-21T00:00:00 +WTH-00168,INT-000480,+91-92610-46913,active,5,2025-09-05T00:00:00 +WTH-00169,INT-000484,+91-72844-75149,active,4,2025-04-20T00:00:00 +WTH-00170,INT-000485,+91-72844-75149,archived,10,2025-04-27T00:00:00 +WTH-00171,INT-000486,+91-72844-75149,active,8,2025-05-01T00:00:00 +WTH-00172,INT-000489,+91-72844-75149,active,7,2025-05-26T00:00:00 +WTH-00173,INT-000492,+91-72844-75149,archived,10,2025-06-14T00:00:00 +WTH-00174,INT-000496,+91-75160-45866,active,7,2024-11-26T00:00:00 +WTH-00175,INT-000497,+91-75160-45866,active,7,2024-12-09T00:00:00 +WTH-00176,INT-000499,+91-75160-45866,archived,6,2024-12-10T00:00:00 +WTH-00177,INT-000504,+91-95846-52567,active,9,2024-06-04T00:00:00 +WTH-00178,INT-000507,+91-95846-52567,active,10,2024-06-24T00:00:00 +WTH-00179,INT-000513,+91-76739-99327,active,9,2025-01-26T00:00:00 +WTH-00180,INT-000520,+91-74496-94180,archived,8,2026-02-20T00:00:00 +WTH-00181,INT-000534,+91-71780-94182,archived,8,2026-01-26T00:00:00 +WTH-00182,INT-000538,+91-73012-17455,active,7,2024-05-26T00:00:00 +WTH-00183,INT-000543,+91-84436-19096,archived,5,2024-04-21T00:00:00 +WTH-00184,INT-000544,+91-84436-19096,archived,5,2024-04-29T00:00:00 +WTH-00185,INT-000551,+91-84436-19096,active,12,2024-07-01T00:00:00 +WTH-00186,INT-000555,+91-97563-70245,active,10,2024-05-07T00:00:00 +WTH-00187,INT-000558,+91-97563-70245,active,8,2024-05-17T00:00:00 +WTH-00188,INT-000559,+91-97563-70245,active,5,2024-05-23T00:00:00 +WTH-00189,INT-000560,+91-97563-70245,active,10,2024-06-08T00:00:00 +WTH-00190,INT-000561,+91-97563-70245,active,11,2024-06-12T00:00:00 +WTH-00191,INT-000569,+91-94099-28558,archived,9,2024-06-25T00:00:00 +WTH-00192,INT-000576,+91-98823-73827,active,3,2024-12-07T00:00:00 +WTH-00193,INT-000577,+91-98823-73827,archived,10,2024-12-14T00:00:00 +WTH-00194,INT-000578,+91-98823-73827,active,8,2025-01-06T00:00:00 +WTH-00195,INT-000581,+91-75235-97836,active,4,2025-04-22T00:00:00 +WTH-00196,INT-000586,+91-75137-93623,active,6,2025-10-01T00:00:00 +WTH-00197,INT-000589,+91-75137-93623,active,9,2025-10-11T00:00:00 +WTH-00198,INT-000597,+91-93065-93021,active,12,2024-04-01T00:00:00 +WTH-00199,INT-000598,+91-93065-93021,active,10,2024-04-17T00:00:00 +WTH-00200,INT-000600,+91-93065-93021,archived,8,2024-05-01T00:00:00 +WTH-00201,INT-000602,+91-81312-69298,active,5,2025-07-01T00:00:00 +WTH-00202,INT-000603,+91-81312-69298,active,5,2025-07-08T00:00:00 +WTH-00203,INT-000605,+91-81312-69298,active,3,2025-08-03T00:00:00 +WTH-00204,INT-000606,+91-81312-69298,active,8,2025-09-04T00:00:00 +WTH-00205,INT-000610,+91-98566-40451,active,8,2024-11-20T00:00:00 +WTH-00206,INT-000613,+91-98566-40451,active,7,2024-12-13T00:00:00 +WTH-00207,INT-000614,+91-98566-40451,active,12,2024-12-28T00:00:00 +WTH-00208,INT-000619,+91-98566-40451,active,3,2025-01-31T00:00:00 +WTH-00209,INT-000622,+91-80492-30454,active,4,2025-05-06T00:00:00 +WTH-00210,INT-000635,+91-89040-72978,active,7,2024-05-13T00:00:00 +WTH-00211,INT-000636,+91-89040-72978,archived,11,2024-07-27T00:00:00 +WTH-00212,INT-000644,+91-76730-87018,active,11,2025-06-05T00:00:00 +WTH-00213,INT-000646,+91-76730-87018,active,10,2025-06-11T00:00:00 +WTH-00214,INT-000647,+91-76730-87018,active,10,2025-06-16T00:00:00 +WTH-00215,INT-000648,+91-76730-87018,active,9,2025-06-16T00:00:00 +WTH-00216,INT-000655,+91-76730-87018,active,6,2025-08-05T00:00:00 +WTH-00217,INT-000667,+91-75004-49682,active,7,2025-06-08T00:00:00 +WTH-00218,INT-000670,+91-71826-61299,active,3,2025-01-25T00:00:00 +WTH-00219,INT-000675,+91-71826-61299,archived,4,2025-02-11T00:00:00 +WTH-00220,INT-000676,+91-71826-61299,active,5,2025-03-01T00:00:00 +WTH-00221,INT-000677,+91-71826-61299,active,3,2025-03-10T00:00:00 +WTH-00222,INT-000678,+91-71826-61299,active,9,2025-03-13T00:00:00 +WTH-00223,INT-000679,+91-71826-61299,active,4,2025-03-18T00:00:00 +WTH-00224,INT-000683,+91-79416-44754,archived,7,2024-06-15T00:00:00 +WTH-00225,INT-000685,+91-85209-73620,archived,8,2024-11-28T00:00:00 +WTH-00226,INT-000686,+91-85209-73620,active,6,2024-12-22T00:00:00 +WTH-00227,INT-000687,+91-85209-73620,archived,12,2024-12-23T00:00:00 +WTH-00228,INT-000694,+91-85209-73620,active,11,2025-02-04T00:00:00 +WTH-00229,INT-000696,+91-85572-58200,active,12,2024-11-23T00:00:00 +WTH-00230,INT-000697,+91-85572-58200,active,6,2024-12-14T00:00:00 +WTH-00231,INT-000704,+91-76556-92352,archived,3,2025-08-28T00:00:00 +WTH-00232,INT-000705,+91-76556-92352,active,10,2025-09-07T00:00:00 +WTH-00233,INT-000710,+91-76556-92352,active,4,2025-11-02T00:00:00 +WTH-00234,INT-000714,+91-74266-66532,archived,9,2024-05-28T00:00:00 +WTH-00235,INT-000715,+91-74266-66532,archived,11,2024-06-18T00:00:00 +WTH-00236,INT-000716,+91-74266-66532,active,7,2024-06-22T00:00:00 +WTH-00237,INT-000717,+91-74266-66532,active,5,2024-06-26T00:00:00 +WTH-00238,INT-000718,+91-74266-66532,active,9,2024-07-17T00:00:00 +WTH-00239,INT-000719,+91-74266-66532,active,7,2024-07-28T00:00:00 +WTH-00240,INT-000725,+91-93273-79523,active,4,2024-10-26T00:00:00 +WTH-00241,INT-000732,+91-72517-42264,archived,6,2024-08-14T00:00:00 +WTH-00242,INT-000733,+91-72517-42264,archived,6,2024-09-04T00:00:00 +WTH-00243,INT-000741,+91-97264-58163,active,8,2024-05-22T00:00:00 +WTH-00244,INT-000753,+91-90657-66595,active,3,2025-10-01T00:00:00 +WTH-00245,INT-000757,+91-89849-74511,active,5,2025-08-19T00:00:00 +WTH-00246,INT-000761,+91-89849-74511,active,12,2025-09-09T00:00:00 +WTH-00247,INT-000763,+91-89849-74511,archived,8,2025-09-18T00:00:00 +WTH-00248,INT-000775,+91-97806-36462,active,5,2024-04-05T00:00:00 +WTH-00249,INT-000780,+91-80960-61117,active,9,2026-01-27T00:00:00 +WTH-00250,INT-000782,+91-80960-61117,active,9,2026-02-15T00:00:00 +WTH-00251,INT-000783,+91-80960-61117,active,9,2026-02-16T00:00:00 +WTH-00252,INT-000787,+91-80960-61117,active,12,2026-02-28T00:00:00 +WTH-00253,INT-000788,+91-80960-61117,archived,10,2026-03-09T00:00:00 +WTH-00254,INT-000790,+91-80960-61117,active,4,2026-03-25T00:00:00 +WTH-00255,INT-000795,+91-93319-65796,archived,5,2025-04-21T00:00:00 +WTH-00256,INT-000801,+91-72213-15856,active,7,2025-06-16T00:00:00 +WTH-00257,INT-000803,+91-72213-15856,active,4,2025-06-24T00:00:00 +WTH-00258,INT-000805,+91-72213-15856,active,6,2025-07-04T00:00:00 +WTH-00259,INT-000807,+91-72213-15856,active,9,2025-07-30T00:00:00 +WTH-00260,INT-000810,+91-73254-81012,active,6,2024-10-25T00:00:00 +WTH-00261,INT-000811,+91-73254-81012,active,6,2024-11-03T00:00:00 +WTH-00262,INT-000812,+91-73254-81012,active,10,2024-11-05T00:00:00 +WTH-00263,INT-000813,+91-73254-81012,active,10,2024-11-17T00:00:00 +WTH-00264,INT-000818,+91-70017-17887,active,6,2025-12-09T00:00:00 +WTH-00265,INT-000826,+91-94851-46848,active,8,2025-11-05T00:00:00 +WTH-00266,INT-000830,+91-94851-46848,active,7,2026-01-11T00:00:00 +WTH-00267,INT-000832,+91-76451-31558,active,10,2024-10-26T00:00:00 +WTH-00268,INT-000841,+91-88325-16842,active,12,2025-11-17T00:00:00 +WTH-00269,INT-000842,+91-88325-16842,archived,9,2025-12-24T00:00:00 +WTH-00270,INT-000845,+91-74830-71541,archived,11,2025-11-25T00:00:00 +WTH-00271,INT-000850,+91-76727-62469,active,5,2025-10-16T00:00:00 +WTH-00272,INT-000853,+91-76727-62469,active,3,2025-11-10T00:00:00 +WTH-00273,INT-000857,+91-76727-62469,active,4,2025-12-03T00:00:00 +WTH-00274,INT-000868,+91-94629-21013,active,11,2024-11-21T00:00:00 +WTH-00275,INT-000870,+91-94629-21013,active,10,2024-12-15T00:00:00 +WTH-00276,INT-000875,+91-94629-21013,active,11,2025-01-19T00:00:00 +WTH-00277,INT-000878,+91-94996-80464,active,8,2024-07-17T00:00:00 +WTH-00278,INT-000879,+91-94996-80464,active,11,2024-07-18T00:00:00 +WTH-00279,INT-000880,+91-94996-80464,archived,4,2024-07-24T00:00:00 +WTH-00280,INT-000884,+91-94996-80464,active,7,2024-08-28T00:00:00 +WTH-00281,INT-000889,+91-75630-52830,active,5,2024-06-18T00:00:00 +WTH-00282,INT-000890,+91-75630-52830,archived,5,2024-06-21T00:00:00 +WTH-00283,INT-000892,+91-75630-52830,active,6,2024-07-04T00:00:00 +WTH-00284,INT-000899,+91-75630-52830,active,5,2024-08-20T00:00:00 +WTH-00285,INT-000900,+91-75630-52830,active,7,2024-09-03T00:00:00 +WTH-00286,INT-000903,+91-92873-38476,active,11,2024-06-28T00:00:00 +WTH-00287,INT-000910,+91-92873-38476,archived,3,2024-09-02T00:00:00 +WTH-00288,INT-000913,+91-97410-93203,active,3,2024-02-16T00:00:00 +WTH-00289,INT-000915,+91-97410-93203,active,9,2024-03-04T00:00:00 +WTH-00290,INT-000923,+91-82090-15759,archived,12,2024-05-20T00:00:00 +WTH-00291,INT-000925,+91-82090-15759,active,4,2024-05-22T00:00:00 +WTH-00292,INT-000929,+91-82090-15759,archived,5,2024-06-15T00:00:00 +WTH-00293,INT-000930,+91-82090-15759,active,4,2024-06-16T00:00:00 +WTH-00294,INT-000936,+91-84540-53082,archived,8,2025-03-18T00:00:00 +WTH-00295,INT-000938,+91-84540-53082,active,9,2025-04-13T00:00:00 +WTH-00296,INT-000941,+91-84540-53082,active,8,2025-05-09T00:00:00 +WTH-00297,INT-000944,+91-93756-71220,active,8,2024-02-25T00:00:00 +WTH-00298,INT-000946,+91-93756-71220,active,12,2024-03-06T00:00:00 +WTH-00299,INT-000949,+91-88533-31281,active,7,2025-10-19T00:00:00 +WTH-00300,INT-000955,+91-90540-91844,active,4,2025-05-14T00:00:00 +WTH-00301,INT-000956,+91-90540-91844,active,3,2025-07-21T00:00:00 +WTH-00302,INT-000957,+91-90540-91844,active,8,2025-07-23T00:00:00 +WTH-00303,INT-000958,+91-90540-91844,active,6,2025-07-30T00:00:00 +WTH-00304,INT-000967,+91-72963-53620,active,7,2026-02-02T00:00:00 +WTH-00305,INT-000968,+91-72963-53620,active,12,2026-02-05T00:00:00 +WTH-00306,INT-000985,+91-95423-97914,active,8,2025-10-20T00:00:00 +WTH-00307,INT-000991,+91-97900-14588,active,4,2025-07-08T00:00:00 +WTH-00308,INT-000995,+91-97900-14588,active,9,2025-07-28T00:00:00 +WTH-00309,INT-000997,+91-97900-14588,active,9,2025-08-07T00:00:00 +WTH-00310,INT-001001,+91-92757-28775,active,10,2025-01-29T00:00:00 +WTH-00311,INT-001002,+91-92757-28775,active,8,2025-02-06T00:00:00 +WTH-00312,INT-001003,+91-92757-28775,active,5,2025-02-19T00:00:00 +WTH-00313,INT-001004,+91-92757-28775,active,3,2025-03-07T00:00:00 +WTH-00314,INT-001005,+91-92757-28775,active,9,2025-03-20T00:00:00 +WTH-00315,INT-001006,+91-92757-28775,active,7,2025-04-04T00:00:00 +WTH-00316,INT-001009,+91-83705-70003,archived,9,2024-04-21T00:00:00 +WTH-00317,INT-001010,+91-83705-70003,active,6,2024-04-21T00:00:00 +WTH-00318,INT-001013,+91-83705-70003,archived,12,2024-05-12T00:00:00 +WTH-00319,INT-001019,+91-99615-39500,active,8,2025-02-03T00:00:00 +WTH-00320,INT-001022,+91-75099-96066,active,10,2025-03-19T00:00:00 +WTH-00321,INT-001023,+91-75099-96066,active,10,2025-04-02T00:00:00 +WTH-00322,INT-001025,+91-75099-96066,active,10,2025-04-14T00:00:00 +WTH-00323,INT-001029,+91-75099-96066,active,12,2025-04-23T00:00:00 +WTH-00324,INT-001031,+91-75099-96066,active,3,2025-04-30T00:00:00 +WTH-00325,INT-001034,+91-93149-23508,active,6,2025-07-30T00:00:00 +WTH-00326,INT-001036,+91-73301-66479,archived,6,2026-02-02T00:00:00 +WTH-00327,INT-001038,+91-73301-66479,archived,9,2026-02-08T00:00:00 +WTH-00328,INT-001040,+91-73301-66479,active,4,2026-03-30T00:00:00 +WTH-00329,INT-001045,+91-89633-45933,archived,11,2024-08-24T00:00:00 +WTH-00330,INT-001046,+91-89633-45933,active,7,2024-09-02T00:00:00 +WTH-00331,INT-001054,+91-98619-16752,archived,3,2025-04-08T00:00:00 +WTH-00332,INT-001055,+91-98619-16752,active,7,2025-05-05T00:00:00 +WTH-00333,INT-001056,+91-98619-16752,active,12,2025-05-17T00:00:00 +WTH-00334,INT-001057,+91-98619-16752,active,6,2025-05-21T00:00:00 +WTH-00335,INT-001059,+91-76155-19103,archived,3,2024-04-26T00:00:00 +WTH-00336,INT-001060,+91-76155-19103,archived,7,2024-05-28T00:00:00 +WTH-00337,INT-001062,+91-76155-19103,active,12,2024-07-03T00:00:00 +WTH-00338,INT-001065,+91-70039-39401,active,9,2025-01-05T00:00:00 +WTH-00339,INT-001071,+91-93812-46500,active,11,2025-07-23T00:00:00 +WTH-00340,INT-001075,+91-97369-82286,archived,6,2024-03-24T00:00:00 +WTH-00341,INT-001081,+91-87088-59487,active,8,2024-06-18T00:00:00 +WTH-00342,INT-001086,+91-80856-63383,archived,10,2024-09-18T00:00:00 +WTH-00343,INT-001091,+91-93286-70390,active,11,2024-07-04T00:00:00 +WTH-00344,INT-001092,+91-93286-70390,active,4,2024-07-29T00:00:00 +WTH-00345,INT-001094,+91-91926-22255,active,4,2024-04-17T00:00:00 +WTH-00346,INT-001097,+91-71772-37720,archived,4,2024-11-17T00:00:00 +WTH-00347,INT-001098,+91-71772-37720,active,10,2024-11-27T00:00:00 +WTH-00348,INT-001099,+91-71772-37720,active,12,2024-12-03T00:00:00 +WTH-00349,INT-001102,+91-71772-37720,active,4,2024-12-13T00:00:00 +WTH-00350,INT-001103,+91-71772-37720,active,10,2024-12-13T00:00:00 +WTH-00351,INT-001113,+91-84763-26478,active,12,2025-01-24T00:00:00 +WTH-00352,INT-001117,+91-84763-26478,archived,12,2025-02-24T00:00:00 +WTH-00353,INT-001118,+91-84763-26478,active,9,2025-03-19T00:00:00 +WTH-00354,INT-001122,+91-90778-47125,active,11,2025-12-23T00:00:00 +WTH-00355,INT-001127,+91-90778-47125,archived,10,2026-01-28T00:00:00 +WTH-00356,INT-001128,+91-90778-47125,active,11,2026-01-29T00:00:00 +WTH-00357,INT-001131,+91-80980-32336,active,9,2025-07-11T00:00:00 +WTH-00358,INT-001135,+91-80980-32336,archived,10,2025-08-14T00:00:00 +WTH-00359,INT-001138,+91-79729-35405,archived,4,2024-07-07T00:00:00 +WTH-00360,INT-001140,+91-81233-55453,archived,9,2025-07-11T00:00:00 +WTH-00361,INT-001141,+91-81233-55453,active,8,2025-07-12T00:00:00 +WTH-00362,INT-001143,+91-81233-55453,active,5,2025-08-06T00:00:00 +WTH-00363,INT-001144,+91-81233-55453,active,7,2025-08-18T00:00:00 +WTH-00364,INT-001145,+91-81233-55453,active,11,2025-08-25T00:00:00 +WTH-00365,INT-001146,+91-81233-55453,active,8,2025-09-10T00:00:00 +WTH-00366,INT-001148,+91-96510-52294,archived,5,2025-08-09T00:00:00 +WTH-00367,INT-001163,+91-81055-94512,active,11,2024-03-16T00:00:00 +WTH-00368,INT-001165,+91-99091-64171,archived,8,2025-02-16T00:00:00 +WTH-00369,INT-001171,+91-77882-12174,active,8,2024-12-20T00:00:00 +WTH-00370,INT-001183,+91-88849-44888,active,4,2026-03-05T00:00:00 +WTH-00371,INT-001185,+91-89464-56156,active,7,2024-08-01T00:00:00 +WTH-00372,INT-001193,+91-88926-66455,active,10,2025-10-21T00:00:00 +WTH-00373,INT-001194,+91-88926-66455,active,5,2025-10-31T00:00:00 +WTH-00374,INT-001197,+91-88926-66455,active,3,2025-12-06T00:00:00 +WTH-00375,INT-001198,+91-88926-66455,archived,4,2025-12-09T00:00:00 +WTH-00376,INT-001201,+91-84100-56170,active,5,2024-08-25T00:00:00 +WTH-00377,INT-001202,+91-84100-56170,active,10,2024-09-15T00:00:00 +WTH-00378,INT-001203,+91-84100-56170,active,12,2024-09-28T00:00:00 +WTH-00379,INT-001207,+91-85347-56424,archived,12,2024-09-13T00:00:00 +WTH-00380,INT-001210,+91-85347-56424,active,12,2024-10-09T00:00:00 +WTH-00381,INT-001214,+91-85347-56424,archived,11,2024-10-17T00:00:00 +WTH-00382,INT-001215,+91-85347-56424,archived,12,2024-10-22T00:00:00 +WTH-00383,INT-001216,+91-85347-56424,active,10,2024-10-23T00:00:00 +WTH-00384,INT-001218,+91-85347-56424,archived,8,2024-11-30T00:00:00 +WTH-00385,INT-001222,+91-98832-25864,active,7,2025-09-26T00:00:00 +WTH-00386,INT-001233,+91-95013-59063,active,12,2025-11-18T00:00:00 +WTH-00387,INT-001236,+91-98638-19288,active,8,2024-09-04T00:00:00 +WTH-00388,INT-001238,+91-98638-19288,archived,6,2024-09-20T00:00:00 +WTH-00389,INT-001240,+91-98638-19288,active,8,2024-09-25T00:00:00 +WTH-00390,INT-001243,+91-94816-96944,active,11,2025-10-05T00:00:00 +WTH-00391,INT-001248,+91-87504-89709,active,5,2025-10-25T00:00:00 +WTH-00392,INT-001251,+91-85686-96190,active,6,2025-01-26T00:00:00 +WTH-00393,INT-001257,+91-77354-36965,active,3,2026-03-08T00:00:00 +WTH-00394,INT-001262,+91-77354-36965,active,3,2026-04-17T00:00:00 +WTH-00395,INT-001266,+91-90170-45949,active,12,2024-02-08T00:00:00 +WTH-00396,INT-001269,+91-90170-45949,archived,5,2024-04-03T00:00:00 +WTH-00397,INT-001270,+91-90170-45949,active,9,2024-04-04T00:00:00 +WTH-00398,INT-001273,+91-77624-25000,active,6,2024-04-04T00:00:00 +WTH-00399,INT-001274,+91-77624-25000,active,8,2024-04-05T00:00:00 +WTH-00400,INT-001275,+91-77624-25000,archived,10,2024-04-25T00:00:00 +WTH-00401,INT-001278,+91-76929-51039,archived,7,2024-08-25T00:00:00 +WTH-00402,INT-001279,+91-76929-51039,active,12,2024-08-25T00:00:00 +WTH-00403,INT-001284,+91-76929-51039,active,8,2024-09-26T00:00:00 +WTH-00404,INT-001286,+91-76929-51039,active,3,2024-10-12T00:00:00 +WTH-00405,INT-001289,+91-72611-56135,archived,9,2024-05-21T00:00:00 +WTH-00406,INT-001294,+91-72611-56135,active,8,2024-07-04T00:00:00 +WTH-00407,INT-001295,+91-72611-56135,active,12,2024-07-05T00:00:00 +WTH-00408,INT-001296,+91-72611-56135,archived,9,2024-07-25T00:00:00 +WTH-00409,INT-001297,+91-72611-56135,active,9,2024-07-31T00:00:00 +WTH-00410,INT-001298,+91-72611-56135,archived,4,2024-08-01T00:00:00 +WTH-00411,INT-001301,+91-89381-89791,active,5,2024-11-12T00:00:00 +WTH-00412,INT-001303,+91-89381-89791,active,12,2024-11-25T00:00:00 +WTH-00413,INT-001306,+91-89381-89791,active,5,2025-01-04T00:00:00 +WTH-00414,INT-001309,+91-89381-89791,archived,12,2025-01-12T00:00:00 +WTH-00415,INT-001317,+91-92022-19710,active,5,2025-11-22T00:00:00 +WTH-00416,INT-001318,+91-92022-19710,archived,7,2025-12-21T00:00:00 +WTH-00417,INT-001323,+91-85867-79528,active,3,2025-06-14T00:00:00 +WTH-00418,INT-001325,+91-85867-79528,archived,4,2025-06-26T00:00:00 +WTH-00419,INT-001328,+91-85867-79528,active,6,2025-07-20T00:00:00 +WTH-00420,INT-001331,+91-85867-79528,active,7,2025-08-02T00:00:00 +WTH-00421,INT-001333,+91-85867-79528,active,12,2025-08-14T00:00:00 +WTH-00422,INT-001341,+91-91472-62527,active,11,2024-05-01T00:00:00 +WTH-00423,INT-001348,+91-91472-62527,active,12,2024-06-09T00:00:00 +WTH-00424,INT-001349,+91-91472-62527,active,10,2024-06-18T00:00:00 +WTH-00425,INT-001350,+91-91472-62527,active,3,2024-06-21T00:00:00 +WTH-00426,INT-001351,+91-91472-62527,active,9,2024-06-30T00:00:00 +WTH-00427,INT-001354,+91-93692-84270,active,3,2025-09-27T00:00:00 +WTH-00428,INT-001358,+91-93692-84270,active,8,2025-10-19T00:00:00 +WTH-00429,INT-001360,+91-93692-84270,archived,8,2025-10-27T00:00:00 +WTH-00430,INT-001363,+91-93692-84270,active,3,2025-12-03T00:00:00 +WTH-00431,INT-001366,+91-99148-58710,archived,7,2024-12-15T00:00:00 +WTH-00432,INT-001367,+91-99148-58710,active,5,2024-12-26T00:00:00 +WTH-00433,INT-001371,+91-79312-65858,archived,8,2025-08-07T00:00:00 +WTH-00434,INT-001374,+91-79312-65858,archived,12,2025-08-30T00:00:00 +WTH-00435,INT-001380,+91-79312-65858,archived,3,2025-09-26T00:00:00 +WTH-00436,INT-001386,+91-95359-60532,active,10,2025-11-30T00:00:00 +WTH-00437,INT-001389,+91-95359-60532,archived,3,2026-01-04T00:00:00 +WTH-00438,INT-001390,+91-95359-60532,active,6,2026-01-10T00:00:00 +WTH-00439,INT-001392,+91-95359-60532,active,3,2026-01-15T00:00:00 +WTH-00440,INT-001401,+91-86066-32776,active,11,2025-12-08T00:00:00 +WTH-00441,INT-001402,+91-86066-32776,archived,5,2025-12-12T00:00:00 +WTH-00442,INT-001403,+91-86066-32776,active,11,2026-01-05T00:00:00 +WTH-00443,INT-001405,+91-86066-32776,active,8,2026-01-12T00:00:00 +WTH-00444,INT-001407,+91-86066-32776,archived,7,2026-01-24T00:00:00 +WTH-00445,INT-001408,+91-86066-32776,active,7,2026-01-27T00:00:00 +WTH-00446,INT-001410,+91-77127-93616,active,7,2025-01-05T00:00:00 +WTH-00447,INT-001412,+91-77127-93616,active,12,2025-01-13T00:00:00 +WTH-00448,INT-001413,+91-77127-93616,active,9,2025-01-21T00:00:00 +WTH-00449,INT-001417,+91-77127-93616,active,6,2025-02-11T00:00:00 +WTH-00450,INT-001420,+91-77127-93616,active,8,2025-02-28T00:00:00 +WTH-00451,INT-001424,+91-93951-62341,active,5,2024-09-04T00:00:00 +WTH-00452,INT-001428,+91-93951-62341,archived,3,2024-09-20T00:00:00 +WTH-00453,INT-001431,+91-93951-62341,active,11,2024-09-29T00:00:00 +WTH-00454,INT-001433,+91-93951-62341,active,3,2024-10-18T00:00:00 +WTH-00455,INT-001435,+91-85641-30883,active,11,2025-01-11T00:00:00 +WTH-00456,INT-001436,+91-85641-30883,archived,4,2025-01-11T00:00:00 +WTH-00457,INT-001438,+91-85641-30883,active,8,2025-01-21T00:00:00 +WTH-00458,INT-001439,+91-85641-30883,archived,11,2025-01-26T00:00:00 +WTH-00459,INT-001441,+91-85641-30883,active,10,2025-02-06T00:00:00 +WTH-00460,INT-001444,+91-85641-30883,active,10,2025-02-16T00:00:00 +WTH-00461,INT-001445,+91-85641-30883,active,12,2025-03-07T00:00:00 +WTH-00462,INT-001446,+91-85641-30883,active,5,2025-03-11T00:00:00 +WTH-00463,INT-001448,+91-91491-63015,active,11,2025-11-23T00:00:00 +WTH-00464,INT-001451,+91-91491-63015,active,4,2025-12-13T00:00:00 +WTH-00465,INT-001452,+91-91491-63015,archived,5,2025-12-23T00:00:00 +WTH-00466,INT-001453,+91-91491-63015,archived,3,2025-12-30T00:00:00 +WTH-00467,INT-001454,+91-91491-63015,archived,9,2025-12-31T00:00:00 +WTH-00468,INT-001455,+91-91491-63015,active,3,2026-01-04T00:00:00 +WTH-00469,INT-001461,+91-91491-63015,active,11,2026-02-14T00:00:00 +WTH-00470,INT-001464,+91-92491-58404,archived,6,2025-07-21T00:00:00 +WTH-00471,INT-001465,+91-92491-58404,active,5,2025-07-31T00:00:00 +WTH-00472,INT-001473,+91-77051-67271,active,9,2024-02-16T00:00:00 +WTH-00473,INT-001476,+91-87615-27261,active,4,2026-01-31T00:00:00 +WTH-00474,INT-001480,+91-87615-27261,active,6,2026-03-04T00:00:00 +WTH-00475,INT-001484,+91-87615-27261,archived,3,2026-04-05T00:00:00 +WTH-00476,INT-001485,+91-87615-27261,active,12,2026-04-15T00:00:00 +WTH-00477,INT-001489,+91-82133-12977,archived,10,2024-08-10T00:00:00 +WTH-00478,INT-001493,+91-82133-12977,archived,12,2024-08-25T00:00:00 +WTH-00479,INT-001495,+91-82133-12977,archived,3,2024-09-02T00:00:00 +WTH-00480,INT-001497,+91-82133-12977,active,5,2024-10-02T00:00:00 +WTH-00481,INT-001500,+91-78667-22730,active,6,2024-11-19T00:00:00 +WTH-00482,INT-001501,+91-78667-22730,active,8,2024-11-27T00:00:00 +WTH-00483,INT-001505,+91-93630-76662,archived,9,2025-02-12T00:00:00 +WTH-00484,INT-001511,+91-93630-76662,active,12,2025-03-15T00:00:00 +WTH-00485,INT-001514,+91-73220-80376,archived,6,2024-02-02T00:00:00 +WTH-00486,INT-001517,+91-73220-80376,active,4,2024-02-21T00:00:00 +WTH-00487,INT-001520,+91-73220-80376,active,8,2024-03-07T00:00:00 +WTH-00488,INT-001521,+91-73220-80376,active,9,2024-03-15T00:00:00 +WTH-00489,INT-001527,+91-83936-83831,archived,3,2025-04-27T00:00:00 +WTH-00490,INT-001532,+91-83936-83831,active,4,2025-06-07T00:00:00 +WTH-00491,INT-001537,+91-82288-17774,archived,3,2026-02-07T00:00:00 +WTH-00492,INT-001539,+91-82288-17774,active,8,2026-03-05T00:00:00 +WTH-00493,INT-001542,+91-84002-61944,active,10,2024-12-30T00:00:00 +WTH-00494,INT-001543,+91-84002-61944,active,10,2025-01-05T00:00:00 +WTH-00495,INT-001549,+91-75950-23224,archived,12,2024-09-19T00:00:00 +WTH-00496,INT-001550,+91-75950-23224,active,11,2024-09-27T00:00:00 +WTH-00497,INT-001554,+91-70237-59811,archived,8,2024-04-24T00:00:00 +WTH-00498,INT-001555,+91-70237-59811,active,7,2024-05-02T00:00:00 +WTH-00499,INT-001561,+91-87677-59418,active,5,2025-09-19T00:00:00 +WTH-00500,INT-001564,+91-88912-44960,archived,5,2024-07-22T00:00:00 +WTH-00501,INT-001568,+91-88912-44960,active,6,2024-08-30T00:00:00 +WTH-00502,INT-001569,+91-88912-44960,active,5,2024-09-01T00:00:00 +WTH-00503,INT-001571,+91-88912-44960,active,4,2024-09-07T00:00:00 +WTH-00504,INT-001576,+91-98178-79541,active,9,2025-05-16T00:00:00 +WTH-00505,INT-001579,+91-98178-79541,active,5,2025-06-17T00:00:00 +WTH-00506,INT-001582,+91-98178-79541,archived,6,2025-06-26T00:00:00 +WTH-00507,INT-001587,+91-87059-50784,active,4,2024-07-24T00:00:00 +WTH-00508,INT-001592,+91-97440-84136,active,5,2025-09-21T00:00:00 +WTH-00509,INT-001596,+91-97440-84136,active,11,2025-11-04T00:00:00 +WTH-00510,INT-001599,+91-94243-39828,archived,7,2025-01-13T00:00:00 +WTH-00511,INT-001600,+91-94243-39828,archived,3,2025-01-30T00:00:00 +WTH-00512,INT-001602,+91-94243-39828,active,9,2025-02-18T00:00:00 +WTH-00513,INT-001606,+91-97689-48523,active,7,2024-02-22T00:00:00 +WTH-00514,INT-001607,+91-97689-48523,active,10,2024-02-23T00:00:00 +WTH-00515,INT-001616,+91-82131-57777,active,10,2025-09-21T00:00:00 +WTH-00516,INT-001617,+91-82131-57777,active,8,2025-09-30T00:00:00 +WTH-00517,INT-001618,+91-82131-57777,archived,7,2025-12-02T00:00:00 +WTH-00518,INT-001620,+91-86082-66469,active,9,2025-09-11T00:00:00 +WTH-00519,INT-001621,+91-86082-66469,active,12,2025-10-08T00:00:00 +WTH-00520,INT-001625,+91-86082-66469,active,9,2025-11-05T00:00:00 +WTH-00521,INT-001627,+91-86082-66469,active,11,2025-11-18T00:00:00 +WTH-00522,INT-001630,+91-75813-66408,active,3,2024-06-12T00:00:00 +WTH-00523,INT-001637,+91-92381-33647,archived,11,2024-05-22T00:00:00 +WTH-00524,INT-001638,+91-92381-33647,active,3,2024-05-27T00:00:00 +WTH-00525,INT-001640,+91-92381-33647,archived,9,2024-06-04T00:00:00 +WTH-00526,INT-001641,+91-92381-33647,active,10,2024-06-08T00:00:00 +WTH-00527,INT-001647,+91-85863-89909,active,8,2025-08-27T00:00:00 +WTH-00528,INT-001650,+91-85863-89909,active,4,2025-09-12T00:00:00 +WTH-00529,INT-001651,+91-85863-89909,active,7,2025-09-26T00:00:00 +WTH-00530,INT-001654,+91-97452-62685,active,4,2025-06-25T00:00:00 +WTH-00531,INT-001662,+91-74165-77924,active,5,2025-03-05T00:00:00 +WTH-00532,INT-001665,+91-74165-77924,active,8,2025-04-13T00:00:00 +WTH-00533,INT-001667,+91-73649-99753,active,9,2024-10-09T00:00:00 +WTH-00534,INT-001670,+91-76819-63188,active,10,2026-01-21T00:00:00 +WTH-00535,INT-001674,+91-76819-63188,active,7,2026-02-05T00:00:00 +WTH-00536,INT-001675,+91-76819-63188,active,4,2026-02-06T00:00:00 +WTH-00537,INT-001683,+91-70284-16914,active,5,2025-07-19T00:00:00 +WTH-00538,INT-001686,+91-70284-16914,active,7,2025-08-10T00:00:00 +WTH-00539,INT-001690,+91-70284-16914,archived,9,2025-08-31T00:00:00 +WTH-00540,INT-001692,+91-70284-16914,active,12,2025-09-10T00:00:00 +WTH-00541,INT-001705,+91-70753-26846,active,5,2024-03-21T00:00:00 +WTH-00542,INT-001711,+91-76888-16553,active,4,2026-01-21T00:00:00 +WTH-00543,INT-001715,+91-95276-57379,active,12,2025-05-27T00:00:00 +WTH-00544,INT-001717,+91-95276-57379,archived,12,2025-06-02T00:00:00 +WTH-00545,INT-001718,+91-95276-57379,archived,8,2025-06-11T00:00:00 +WTH-00546,INT-001723,+91-95276-57379,archived,7,2025-07-26T00:00:00 +WTH-00547,INT-001727,+91-93715-75422,active,11,2025-10-01T00:00:00 +WTH-00548,INT-001732,+91-93715-75422,active,6,2025-11-21T00:00:00 +WTH-00549,INT-001736,+91-99864-40005,archived,3,2024-11-29T00:00:00 +WTH-00550,INT-001737,+91-99864-40005,active,7,2024-12-07T00:00:00 +WTH-00551,INT-001738,+91-99864-40005,archived,3,2024-12-22T00:00:00 +WTH-00552,INT-001739,+91-99864-40005,archived,3,2024-12-27T00:00:00 +WTH-00553,INT-001740,+91-99864-40005,active,12,2024-12-27T00:00:00 +WTH-00554,INT-001744,+91-99864-40005,archived,9,2025-01-06T00:00:00 +WTH-00555,INT-001750,+91-95909-59284,active,5,2024-07-14T00:00:00 +WTH-00556,INT-001751,+91-95909-59284,active,11,2024-07-17T00:00:00 +WTH-00557,INT-001753,+91-95909-59284,archived,3,2024-07-21T00:00:00 +WTH-00558,INT-001754,+91-95909-59284,archived,10,2024-07-27T00:00:00 +WTH-00559,INT-001756,+91-95909-59284,active,4,2024-08-10T00:00:00 +WTH-00560,INT-001760,+91-94728-57227,active,6,2025-08-23T00:00:00 +WTH-00561,INT-001764,+91-80468-52329,archived,7,2025-03-24T00:00:00 +WTH-00562,INT-001765,+91-80468-52329,active,12,2025-04-08T00:00:00 +WTH-00563,INT-001771,+91-97293-98369,active,11,2026-01-02T00:00:00 +WTH-00564,INT-001774,+91-97293-98369,active,6,2026-01-13T00:00:00 +WTH-00565,INT-001779,+91-99077-36825,active,9,2025-06-27T00:00:00 +WTH-00566,INT-001784,+91-79388-57714,archived,11,2025-11-15T00:00:00 +WTH-00567,INT-001785,+91-79388-57714,active,4,2025-11-18T00:00:00 +WTH-00568,INT-001787,+91-79388-57714,archived,8,2025-11-30T00:00:00 +WTH-00569,INT-001793,+91-80665-58932,active,4,2025-06-23T00:00:00 +WTH-00570,INT-001798,+91-82705-59140,archived,8,2025-11-05T00:00:00 +WTH-00571,INT-001801,+91-80579-50607,active,9,2025-07-10T00:00:00 +WTH-00572,INT-001805,+91-71098-46556,active,10,2024-07-14T00:00:00 +WTH-00573,INT-001809,+91-98848-27964,active,6,2025-08-24T00:00:00 +WTH-00574,INT-001810,+91-98848-27964,active,8,2025-08-30T00:00:00 +WTH-00575,INT-001813,+91-98848-27964,active,10,2025-09-27T00:00:00 +WTH-00576,INT-001815,+91-98848-27964,archived,9,2025-10-30T00:00:00 +WTH-00577,INT-001818,+91-86290-19837,active,4,2025-01-18T00:00:00 +WTH-00578,INT-001821,+91-86290-19837,active,7,2025-02-03T00:00:00 +WTH-00579,INT-001828,+91-84325-60709,active,6,2024-11-24T00:00:00 +WTH-00580,INT-001832,+91-97701-63267,active,9,2024-12-18T00:00:00 +WTH-00581,INT-001833,+91-97701-63267,archived,4,2024-12-22T00:00:00 +WTH-00582,INT-001841,+91-93729-68369,active,6,2025-05-09T00:00:00 +WTH-00583,INT-001847,+91-87496-26270,active,8,2024-03-17T00:00:00 +WTH-00584,INT-001848,+91-87496-26270,active,7,2024-03-25T00:00:00 +WTH-00585,INT-001853,+91-87496-26270,active,5,2024-05-13T00:00:00 +WTH-00586,INT-001856,+91-70782-51228,active,4,2025-07-04T00:00:00 +WTH-00587,INT-001860,+91-96165-90337,active,10,2024-02-16T00:00:00 +WTH-00588,INT-001862,+91-96165-90337,archived,8,2024-03-02T00:00:00 +WTH-00589,INT-001865,+91-96597-54923,active,7,2025-03-22T00:00:00 +WTH-00590,INT-001866,+91-96597-54923,archived,12,2025-03-23T00:00:00 +WTH-00591,INT-001867,+91-96597-54923,active,7,2025-04-08T00:00:00 +WTH-00592,INT-001869,+91-96597-54923,active,3,2025-06-16T00:00:00 +WTH-00593,INT-001871,+91-80937-58546,active,10,2024-08-22T00:00:00 +WTH-00594,INT-001872,+91-80937-58546,active,3,2024-09-10T00:00:00 +WTH-00595,INT-001873,+91-80937-58546,archived,4,2024-09-15T00:00:00 +WTH-00596,INT-001875,+91-80937-58546,active,7,2024-09-24T00:00:00 +WTH-00597,INT-001877,+91-80937-58546,active,10,2024-10-05T00:00:00 +WTH-00598,INT-001879,+91-80937-58546,active,3,2024-11-04T00:00:00 +WTH-00599,INT-001881,+91-71294-90525,active,3,2025-08-25T00:00:00 +WTH-00600,INT-001882,+91-71294-90525,active,12,2025-09-07T00:00:00 +WTH-00601,INT-001885,+91-89257-25429,active,7,2024-08-09T00:00:00 +WTH-00602,INT-001886,+91-89257-25429,archived,6,2024-08-10T00:00:00 +WTH-00603,INT-001889,+91-89257-25429,active,8,2024-09-10T00:00:00 +WTH-00604,INT-001891,+91-89257-25429,archived,8,2024-09-16T00:00:00 +WTH-00605,INT-001894,+91-89257-25429,archived,6,2024-10-09T00:00:00 +WTH-00606,INT-001896,+91-95259-11209,active,8,2025-06-09T00:00:00 diff --git a/db assets/synthetic_crm_v1/csv/inventory_projects.csv b/db assets/synthetic_crm_v1/csv/inventory_projects.csv new file mode 100644 index 00000000..6bd0f4f1 --- /dev/null +++ b/db assets/synthetic_crm_v1/csv/inventory_projects.csv @@ -0,0 +1,15 @@ +project_id,project_name,developer_name,city,micro_market,location_json +PRJ-001,Eden Devprayag,Eden Group,Kolkata,Rajarhat,"{""lat"": 22.467, ""lng"": 88.4473}" +PRJ-002,Sugam Prakriti,Sugam Homes,Kolkata,Barasat,"{""lat"": 22.5765, ""lng"": 88.3014}" +PRJ-003,Atri Aqua,Atri Developers,Kolkata,New Town,"{""lat"": 22.6046, ""lng"": 88.4334}" +PRJ-004,Atri Surya Toron,Atri Developers,Kolkata,Rajarhat,"{""lat"": 22.6581, ""lng"": 88.4771}" +PRJ-005,Siddha Suburbia Bungalow,Siddha Group,Kolkata,Madanpur,"{""lat"": 22.4636, ""lng"": 88.4596}" +PRJ-006,Merlin Avana,Merlin Group,Kolkata,Tangra,"{""lat"": 22.6412, ""lng"": 88.3396}" +PRJ-007,DTC Good Earth,DTC Projects,Kolkata,New Town,"{""lat"": 22.4364, ""lng"": 88.4946}" +PRJ-008,Siddha Serena,Siddha Group,Kolkata,New Town,"{""lat"": 22.6033, ""lng"": 88.4442}" +PRJ-009,Siddha Sky Waterfront,Siddha Group,Kolkata,Beliaghata,"{""lat"": 22.5873, ""lng"": 88.4171}" +PRJ-010,Godrej Blue,Godrej Properties,Kolkata,New Town,"{""lat"": 22.553, ""lng"": 88.4812}" +PRJ-011,DTC Sojon,DTC Projects,Kolkata,Rajarhat,"{""lat"": 22.5619, ""lng"": 88.4477}" +PRJ-012,Shriram Grand City,Shriram Properties,Kolkata,Howrah,"{""lat"": 22.4605, ""lng"": 88.4582}" +PRJ-013,Godrej Elevate,Godrej Properties,Kolkata,Dum Dum,"{""lat"": 22.5116, ""lng"": 88.4526}" +PRJ-014,Ambuja Utpaala,Ambuja Neotia,Kolkata,Tollygunge,"{""lat"": 22.6637, ""lng"": 88.3995}" diff --git a/db assets/synthetic_crm_v1/csv/inventory_units.csv b/db assets/synthetic_crm_v1/csv/inventory_units.csv new file mode 100644 index 00000000..3678c14e --- /dev/null +++ b/db assets/synthetic_crm_v1/csv/inventory_units.csv @@ -0,0 +1,210 @@ +unit_id,project_id,unit_label,configuration,area_sqft,price_current,status,facing,floor +PRJ-001-U001,PRJ-001,D2-223,Villa,1200,19.84,available,North-East,20 +PRJ-001-U002,PRJ-001,D8-1940,2 BHK,1800,32.98,available,West,23 +PRJ-001-U003,PRJ-001,B7-1479,5 BHK,2200,15.19,held,East,12 +PRJ-001-U004,PRJ-001,A15-2297,Duplex,2200,15.26,held,East,18 +PRJ-001-U005,PRJ-001,A2-1034,4 BHK,1800,14.24,available,West,4 +PRJ-001-U006,PRJ-001,C6-1617,5 BHK,4200,22.43,blocked,North,23 +PRJ-001-U007,PRJ-001,B6-1994,Villa,1450,3.54,blocked,South-East,18 +PRJ-001-U008,PRJ-001,B2-1393,3 BHK,850,6.25,available,West,19 +PRJ-001-U009,PRJ-001,D13-1980,Villa,1800,12.54,available,West,24 +PRJ-001-U010,PRJ-001,D19-1736,Penthouse,2200,38.51,available,North-East,16 +PRJ-001-U011,PRJ-001,B6-1830,2 BHK,1200,2.2,held,South,20 +PRJ-001-U012,PRJ-001,A4-2300,5 BHK,2200,41.59,blocked,North,4 +PRJ-001-U013,PRJ-001,D1-1179,4 BHK,1450,14.28,available,North-East,4 +PRJ-001-U014,PRJ-001,B12-762,Duplex,1800,9.98,sold,East,20 +PRJ-001-U015,PRJ-001,A12-1360,4 BHK,850,9.67,available,North-East,3 +PRJ-001-U016,PRJ-001,B5-2047,2 BHK,1200,15.69,available,North,17 +PRJ-001-U017,PRJ-001,B10-1735,Duplex,1800,17.8,blocked,North,15 +PRJ-001-U018,PRJ-001,B8-363,Penthouse,1200,13.93,sold,North-East,8 +PRJ-002-U001,PRJ-002,A2-1454,Villa,1800,2.96,available,North,22 +PRJ-002-U002,PRJ-002,D8-2038,5 BHK,1450,6.93,available,East,4 +PRJ-002-U003,PRJ-002,D14-2013,Villa,2800,27.03,available,South-East,21 +PRJ-002-U004,PRJ-002,D11-548,Villa,850,2.02,available,North-East,15 +PRJ-002-U005,PRJ-002,C15-1124,3 BHK,1450,14.03,available,South,18 +PRJ-002-U006,PRJ-002,A8-782,2 BHK,850,1.5,held,West,13 +PRJ-002-U007,PRJ-002,A13-1187,2 BHK,3500,13.29,held,North,14 +PRJ-002-U008,PRJ-002,B7-1316,Villa,4200,71.33,available,North-East,24 +PRJ-002-U009,PRJ-002,A2-2493,Penthouse,2800,5.02,sold,West,2 +PRJ-002-U010,PRJ-002,A20-379,Penthouse,1450,3.75,available,South,4 +PRJ-002-U011,PRJ-002,A14-2491,Penthouse,850,3.87,available,North,7 +PRJ-002-U012,PRJ-002,C13-637,Villa,1800,13.96,available,South,11 +PRJ-002-U013,PRJ-002,D20-2407,Duplex,850,2.34,available,North-East,7 +PRJ-002-U014,PRJ-002,C3-1101,Penthouse,1450,7.77,available,South,18 +PRJ-002-U015,PRJ-002,C4-651,Villa,850,4.45,available,South-East,18 +PRJ-002-U016,PRJ-002,B11-934,3 BHK,2200,12.55,available,North-East,16 +PRJ-002-U017,PRJ-002,D9-281,4 BHK,1200,1.95,available,South-East,9 +PRJ-002-U018,PRJ-002,A4-409,3 BHK,3500,45.74,blocked,West,18 +PRJ-002-U019,PRJ-002,D5-272,2 BHK,1450,10.46,available,North,7 +PRJ-003-U001,PRJ-003,B8-766,Duplex,3500,69.0,available,South,1 +PRJ-003-U002,PRJ-003,B9-753,3 BHK,3500,27.76,available,South,2 +PRJ-003-U003,PRJ-003,B15-1533,Duplex,1800,20.76,available,West,1 +PRJ-003-U004,PRJ-003,C9-385,Villa,3500,17.22,available,North,21 +PRJ-003-U005,PRJ-003,A4-1170,Penthouse,2800,23.58,available,East,4 +PRJ-003-U006,PRJ-003,C14-2195,Penthouse,2800,23.26,sold,West,9 +PRJ-003-U007,PRJ-003,B12-1867,2 BHK,850,6.99,blocked,North,20 +PRJ-003-U008,PRJ-003,C14-1437,4 BHK,2200,5.39,available,North-East,5 +PRJ-003-U009,PRJ-003,B20-2432,3 BHK,3500,30.25,sold,East,10 +PRJ-003-U010,PRJ-003,C15-1910,4 BHK,3500,15.57,available,North-East,16 +PRJ-003-U011,PRJ-003,C17-1473,Duplex,1200,3.86,available,South-East,10 +PRJ-003-U012,PRJ-003,A2-1103,3 BHK,1450,7.16,sold,East,15 +PRJ-003-U013,PRJ-003,D13-1100,5 BHK,3500,14.64,blocked,East,25 +PRJ-004-U001,PRJ-004,D2-2384,5 BHK,1450,6.2,available,South,5 +PRJ-004-U002,PRJ-004,D20-2168,Duplex,2800,33.11,sold,South,6 +PRJ-004-U003,PRJ-004,C8-1236,Villa,4200,53.08,sold,South,21 +PRJ-004-U004,PRJ-004,A10-1061,3 BHK,4200,22.05,available,North-East,3 +PRJ-004-U005,PRJ-004,D5-977,3 BHK,1800,5.75,held,North,18 +PRJ-004-U006,PRJ-004,B14-1696,5 BHK,850,8.27,sold,South-East,1 +PRJ-004-U007,PRJ-004,A12-1324,Duplex,4200,39.72,held,North-East,24 +PRJ-004-U008,PRJ-004,D8-1218,Villa,1800,31.98,available,South,11 +PRJ-004-U009,PRJ-004,D5-2288,Villa,1450,11.82,held,North-East,19 +PRJ-004-U010,PRJ-004,D5-1992,Villa,1200,2.02,available,South,11 +PRJ-004-U011,PRJ-004,C13-1240,3 BHK,2800,35.29,held,North,3 +PRJ-004-U012,PRJ-004,C8-382,5 BHK,850,1.62,blocked,East,25 +PRJ-004-U013,PRJ-004,A20-725,2 BHK,1800,7.68,held,South-East,4 +PRJ-004-U014,PRJ-004,C12-788,Penthouse,4200,19.3,blocked,South-East,4 +PRJ-004-U015,PRJ-004,A19-206,Duplex,2200,8.36,sold,South-East,13 +PRJ-004-U016,PRJ-004,B4-1336,5 BHK,1200,5.78,sold,East,19 +PRJ-004-U017,PRJ-004,D12-383,Duplex,2800,5.05,available,East,14 +PRJ-004-U018,PRJ-004,D12-1984,Duplex,1200,15.0,held,West,24 +PRJ-004-U019,PRJ-004,D14-1200,Penthouse,4200,22.28,available,East,9 +PRJ-004-U020,PRJ-004,D11-218,5 BHK,4200,18.88,available,West,16 +PRJ-005-U001,PRJ-005,B3-1089,4 BHK,850,4.88,held,North-East,25 +PRJ-005-U002,PRJ-005,D1-482,3 BHK,4200,48.33,held,South-East,8 +PRJ-005-U003,PRJ-005,C14-2355,4 BHK,4200,30.43,blocked,South,9 +PRJ-005-U004,PRJ-005,A7-1393,4 BHK,1800,9.15,sold,South-East,6 +PRJ-005-U005,PRJ-005,C19-2249,3 BHK,4200,19.27,available,West,10 +PRJ-005-U006,PRJ-005,C1-2288,3 BHK,1450,10.06,available,East,18 +PRJ-005-U007,PRJ-005,A1-2452,4 BHK,4200,14.07,held,South,11 +PRJ-005-U008,PRJ-005,D4-368,3 BHK,2200,3.88,available,North-East,21 +PRJ-005-U009,PRJ-005,B19-1345,Villa,1450,2.39,available,East,18 +PRJ-005-U010,PRJ-005,D15-1914,Duplex,1800,15.54,sold,South,10 +PRJ-005-U011,PRJ-005,B7-1184,Penthouse,1200,2.23,available,West,6 +PRJ-005-U012,PRJ-005,A14-1946,Penthouse,1450,3.76,held,North,2 +PRJ-005-U013,PRJ-005,D3-1057,3 BHK,2200,13.13,blocked,North-East,22 +PRJ-006-U001,PRJ-006,C5-393,Penthouse,1450,5.95,available,North-East,24 +PRJ-006-U002,PRJ-006,A15-1346,Duplex,4200,24.02,available,North-East,18 +PRJ-006-U003,PRJ-006,A14-1421,5 BHK,1200,14.7,available,East,8 +PRJ-006-U004,PRJ-006,A6-2028,Villa,2200,3.98,held,North,6 +PRJ-006-U005,PRJ-006,A16-1526,Penthouse,4200,37.11,available,South-East,4 +PRJ-006-U006,PRJ-006,D16-1281,Duplex,2800,10.12,held,North-East,2 +PRJ-006-U007,PRJ-006,C11-575,5 BHK,2800,7.66,held,North-East,1 +PRJ-006-U008,PRJ-006,D2-869,Villa,4200,75.88,sold,South,21 +PRJ-006-U009,PRJ-006,C18-637,5 BHK,1800,3.52,held,South-East,16 +PRJ-007-U001,PRJ-007,C18-157,Duplex,1450,6.59,available,West,4 +PRJ-007-U002,PRJ-007,D10-2185,5 BHK,1450,3.77,held,South,16 +PRJ-007-U003,PRJ-007,D7-2182,3 BHK,1450,18.26,available,East,9 +PRJ-007-U004,PRJ-007,C1-1259,Duplex,2800,26.34,sold,North-East,22 +PRJ-007-U005,PRJ-007,D12-1462,5 BHK,4200,14.85,sold,South,15 +PRJ-007-U006,PRJ-007,D8-1783,4 BHK,1800,7.36,blocked,South,23 +PRJ-007-U007,PRJ-007,B16-252,Duplex,3500,29.15,sold,North,4 +PRJ-007-U008,PRJ-007,D1-691,Duplex,1200,14.14,blocked,West,3 +PRJ-007-U009,PRJ-007,D3-1446,5 BHK,2800,16.49,sold,South,11 +PRJ-007-U010,PRJ-007,A8-1278,Villa,850,11.21,blocked,East,14 +PRJ-007-U011,PRJ-007,B10-219,2 BHK,4200,9.55,available,North,12 +PRJ-007-U012,PRJ-007,B17-1788,4 BHK,1450,13.22,available,West,6 +PRJ-007-U013,PRJ-007,D19-687,2 BHK,1800,15.33,blocked,North,15 +PRJ-007-U014,PRJ-007,C18-748,4 BHK,4200,6.92,available,North-East,10 +PRJ-007-U015,PRJ-007,D10-916,Villa,2200,21.78,held,East,8 +PRJ-007-U016,PRJ-007,C1-1722,5 BHK,2200,15.76,sold,South-East,25 +PRJ-007-U017,PRJ-007,C8-1544,Villa,4200,7.14,available,North-East,9 +PRJ-008-U001,PRJ-008,A10-1906,Villa,1200,3.81,available,South-East,5 +PRJ-008-U002,PRJ-008,D6-923,2 BHK,2800,14.27,sold,North,17 +PRJ-008-U003,PRJ-008,C16-1309,Penthouse,1450,8.37,available,East,15 +PRJ-008-U004,PRJ-008,D18-1599,2 BHK,1800,5.78,held,East,9 +PRJ-008-U005,PRJ-008,C9-2495,Penthouse,4200,10.25,blocked,North,4 +PRJ-008-U006,PRJ-008,A20-2400,Villa,4200,18.25,sold,West,21 +PRJ-008-U007,PRJ-008,D4-673,2 BHK,2200,24.0,available,North,16 +PRJ-008-U008,PRJ-008,B13-1959,2 BHK,1800,4.38,blocked,South-East,18 +PRJ-008-U009,PRJ-008,A16-1772,5 BHK,3500,13.33,available,East,23 +PRJ-008-U010,PRJ-008,D8-1586,4 BHK,4200,17.39,blocked,North,18 +PRJ-008-U011,PRJ-008,D9-878,Villa,850,6.97,held,East,22 +PRJ-008-U012,PRJ-008,C8-616,3 BHK,850,1.62,available,East,25 +PRJ-008-U013,PRJ-008,B11-705,Penthouse,1800,8.57,sold,East,9 +PRJ-008-U014,PRJ-008,C6-551,Duplex,1450,5.24,available,West,1 +PRJ-008-U015,PRJ-008,A6-1187,4 BHK,2800,11.47,blocked,South,17 +PRJ-008-U016,PRJ-008,D12-2203,2 BHK,4200,10.7,held,North-East,8 +PRJ-008-U017,PRJ-008,D1-350,Penthouse,2200,4.35,held,South,22 +PRJ-008-U018,PRJ-008,A3-1420,2 BHK,4200,51.49,available,West,9 +PRJ-009-U001,PRJ-009,D17-1863,4 BHK,2200,18.21,blocked,East,21 +PRJ-009-U002,PRJ-009,D15-1036,Villa,1800,31.84,held,South,14 +PRJ-009-U003,PRJ-009,D11-1145,Villa,2800,6.82,available,South-East,16 +PRJ-009-U004,PRJ-009,A14-496,2 BHK,1200,3.15,available,West,18 +PRJ-009-U005,PRJ-009,A14-1549,2 BHK,2800,54.17,held,South-East,2 +PRJ-009-U006,PRJ-009,A19-2179,4 BHK,2800,14.52,blocked,South,8 +PRJ-009-U007,PRJ-009,C4-1242,Duplex,2800,7.1,held,North-East,25 +PRJ-009-U008,PRJ-009,C1-839,Duplex,850,14.61,available,North,12 +PRJ-009-U009,PRJ-009,D3-682,2 BHK,1450,5.32,available,East,24 +PRJ-009-U010,PRJ-009,D15-1497,Penthouse,3500,14.67,available,South-East,11 +PRJ-009-U011,PRJ-009,B6-304,Duplex,850,2.2,available,South,22 +PRJ-009-U012,PRJ-009,D9-983,5 BHK,4200,52.97,available,North,14 +PRJ-009-U013,PRJ-009,C2-1004,2 BHK,4200,22.62,sold,East,1 +PRJ-009-U014,PRJ-009,B9-1286,3 BHK,1800,9.56,available,South,24 +PRJ-009-U015,PRJ-009,D18-1043,5 BHK,1450,5.08,blocked,North,3 +PRJ-009-U016,PRJ-009,A15-419,5 BHK,3500,6.76,sold,South,19 +PRJ-009-U017,PRJ-009,A13-186,5 BHK,2200,21.65,available,North-East,15 +PRJ-009-U018,PRJ-009,D4-1097,Duplex,1200,8.88,held,North-East,3 +PRJ-009-U019,PRJ-009,B11-789,5 BHK,2800,14.1,blocked,East,17 +PRJ-010-U001,PRJ-010,A5-1149,4 BHK,1800,5.92,sold,West,25 +PRJ-010-U002,PRJ-010,D15-2410,Duplex,1450,3.81,held,South-East,19 +PRJ-010-U003,PRJ-010,B15-380,Villa,2800,20.87,blocked,North,9 +PRJ-010-U004,PRJ-010,A10-1992,Penthouse,2800,4.99,available,North,10 +PRJ-010-U005,PRJ-010,D19-2371,2 BHK,3500,9.54,blocked,East,15 +PRJ-010-U006,PRJ-010,D17-718,Duplex,2800,13.75,held,East,11 +PRJ-010-U007,PRJ-010,A8-1894,Villa,1450,3.98,sold,North-East,20 +PRJ-010-U008,PRJ-010,C13-1775,3 BHK,2800,22.15,blocked,North-East,2 +PRJ-010-U009,PRJ-010,C4-2386,Duplex,1200,9.32,available,North,24 +PRJ-010-U010,PRJ-010,A19-680,Duplex,2800,10.62,available,South-East,23 +PRJ-010-U011,PRJ-010,A10-2390,Villa,1450,12.73,available,West,22 +PRJ-010-U012,PRJ-010,D17-1583,Villa,1200,19.52,available,West,7 +PRJ-010-U013,PRJ-010,B5-735,4 BHK,1800,19.77,available,North-East,25 +PRJ-011-U001,PRJ-011,D5-765,2 BHK,1450,10.18,blocked,North-East,6 +PRJ-011-U002,PRJ-011,D12-1073,Villa,850,11.16,sold,North,25 +PRJ-011-U003,PRJ-011,B10-2022,Villa,1800,23.35,available,North,22 +PRJ-011-U004,PRJ-011,C13-2160,Penthouse,4200,50.68,available,West,20 +PRJ-011-U005,PRJ-011,D12-2372,3 BHK,850,5.08,blocked,North-East,4 +PRJ-011-U006,PRJ-011,C15-2203,4 BHK,1450,3.37,held,East,8 +PRJ-011-U007,PRJ-011,A14-319,Duplex,2800,32.9,available,West,13 +PRJ-011-U008,PRJ-011,A11-506,2 BHK,1800,14.42,blocked,North,5 +PRJ-011-U009,PRJ-011,D5-2022,3 BHK,2200,3.92,available,East,1 +PRJ-011-U010,PRJ-011,D4-1281,4 BHK,1450,6.18,available,East,8 +PRJ-011-U011,PRJ-011,A16-2296,5 BHK,1200,13.01,sold,North-East,8 +PRJ-011-U012,PRJ-011,D1-1546,Villa,2200,7.3,held,West,22 +PRJ-011-U013,PRJ-011,A17-2329,Villa,2800,7.01,sold,North-East,1 +PRJ-011-U014,PRJ-011,D12-1139,5 BHK,850,10.7,available,East,12 +PRJ-011-U015,PRJ-011,B2-1544,3 BHK,2800,7.06,blocked,West,25 +PRJ-011-U016,PRJ-011,B5-359,Villa,4200,52.58,held,East,10 +PRJ-012-U001,PRJ-012,D9-250,4 BHK,3500,20.23,available,North,12 +PRJ-012-U002,PRJ-012,C4-1608,Duplex,2800,4.98,held,South-East,15 +PRJ-012-U003,PRJ-012,D16-1605,5 BHK,1450,11.8,sold,North,3 +PRJ-012-U004,PRJ-012,D20-840,Villa,1200,10.9,available,East,3 +PRJ-012-U005,PRJ-012,D20-1846,4 BHK,2200,11.29,held,North,15 +PRJ-012-U006,PRJ-012,C2-408,2 BHK,3500,27.15,held,North,17 +PRJ-012-U007,PRJ-012,B20-1895,Duplex,850,2.7,available,West,25 +PRJ-012-U008,PRJ-012,D19-233,Villa,2800,21.44,blocked,South,12 +PRJ-013-U001,PRJ-013,D11-1242,3 BHK,2800,47.88,available,East,24 +PRJ-013-U002,PRJ-013,A9-1167,3 BHK,3500,43.71,available,North-East,10 +PRJ-013-U003,PRJ-013,A5-404,Villa,1800,21.39,blocked,South,3 +PRJ-013-U004,PRJ-013,A18-2321,Duplex,2800,20.12,available,West,23 +PRJ-013-U005,PRJ-013,B4-924,Villa,2800,10.37,available,South,1 +PRJ-013-U006,PRJ-013,D18-632,4 BHK,2800,51.53,available,East,10 +PRJ-013-U007,PRJ-013,D19-403,5 BHK,3500,38.85,available,South-East,3 +PRJ-013-U008,PRJ-013,B18-846,5 BHK,2800,35.4,available,South,17 +PRJ-013-U009,PRJ-013,B10-775,Duplex,1200,2.01,blocked,West,12 +PRJ-013-U010,PRJ-013,C7-2357,Penthouse,1200,6.3,blocked,North,20 +PRJ-013-U011,PRJ-013,B6-1483,Penthouse,1450,3.87,sold,East,1 +PRJ-013-U012,PRJ-013,B19-1807,2 BHK,2200,4.05,available,South,21 +PRJ-013-U013,PRJ-013,D8-1764,Penthouse,2200,11.61,available,South-East,2 +PRJ-013-U014,PRJ-013,D15-936,3 BHK,3500,40.66,available,North,23 +PRJ-013-U015,PRJ-013,B12-2210,4 BHK,3500,26.57,available,West,15 +PRJ-013-U016,PRJ-013,B5-497,2 BHK,4200,21.02,held,North-East,14 +PRJ-013-U017,PRJ-013,C7-753,3 BHK,2800,9.8,sold,South,16 +PRJ-014-U001,PRJ-014,B7-2490,5 BHK,4200,73.38,available,North,16 +PRJ-014-U002,PRJ-014,A4-1866,Penthouse,2200,24.47,available,South-East,12 +PRJ-014-U003,PRJ-014,A13-310,Duplex,2800,25.55,available,North,18 +PRJ-014-U004,PRJ-014,D18-1246,4 BHK,3500,9.32,sold,South-East,20 +PRJ-014-U005,PRJ-014,D12-1489,2 BHK,1200,4.25,available,West,7 +PRJ-014-U006,PRJ-014,A2-260,Penthouse,3500,58.43,available,South,17 +PRJ-014-U007,PRJ-014,C20-1405,5 BHK,1450,4.73,sold,South-East,10 +PRJ-014-U008,PRJ-014,C16-169,Penthouse,4200,30.67,blocked,East,14 +PRJ-014-U009,PRJ-014,D9-2470,Penthouse,850,4.75,blocked,East,19 diff --git a/db assets/synthetic_crm_v1/csv/workflow_actions.csv b/db assets/synthetic_crm_v1/csv/workflow_actions.csv new file mode 100644 index 00000000..8fb3e43f --- /dev/null +++ b/db assets/synthetic_crm_v1/csv/workflow_actions.csv @@ -0,0 +1,101 @@ +action_id,action_type,target_domain,target_entity_ref,status,created_at,created_by,metadata_json +ACT-00001,writeback_proposal,crm_people,LED-0051,pending,2024-05-30T00:00:00,user_001,"{""priority"": ""low"", ""auto_flagged"": true}" +ACT-00002,enrichment_review,intel_interactions,LED-0183,pending,2025-05-05T00:00:00,user_005,"{""priority"": ""low"", ""auto_flagged"": true}" +ACT-00003,merge_proposal,crm_opportunities,LED-0125,pending,2025-09-04T00:00:00,user_001,"{""priority"": ""medium"", ""auto_flagged"": false}" +ACT-00004,merge_proposal,crm_leads,LED-0149,approved,2024-07-07T00:00:00,user_002,"{""priority"": ""low"", ""auto_flagged"": true}" +ACT-00005,writeback_proposal,crm_opportunities,LED-0176,approved,2025-02-06T00:00:00,user_005,"{""priority"": ""low"", ""auto_flagged"": true}" +ACT-00006,import_review,crm_leads,LED-0071,rejected,2024-06-01T00:00:00,user_002,"{""priority"": ""medium"", ""auto_flagged"": true}" +ACT-00007,import_review,crm_opportunities,LED-0069,rejected,2025-02-19T00:00:00,user_004,"{""priority"": ""high"", ""auto_flagged"": false}" +ACT-00008,writeback_proposal,crm_opportunities,LED-0008,escalated,2025-12-15T00:00:00,user_004,"{""priority"": ""high"", ""auto_flagged"": false}" +ACT-00009,merge_proposal,crm_leads,LED-0014,pending,2025-09-29T00:00:00,user_002,"{""priority"": ""high"", ""auto_flagged"": true}" +ACT-00010,import_review,crm_people,LED-0003,approved,2024-06-09T00:00:00,user_004,"{""priority"": ""medium"", ""auto_flagged"": true}" +ACT-00011,enrichment_review,crm_opportunities,LED-0017,approved,2024-09-23T00:00:00,user_001,"{""priority"": ""low"", ""auto_flagged"": true}" +ACT-00012,writeback_proposal,crm_people,LED-0001,rejected,2024-03-03T00:00:00,user_002,"{""priority"": ""high"", ""auto_flagged"": false}" +ACT-00013,import_review,crm_opportunities,LED-0227,pending,2025-01-08T00:00:00,user_001,"{""priority"": ""medium"", ""auto_flagged"": false}" +ACT-00014,merge_proposal,intel_interactions,LED-0085,pending,2025-07-19T00:00:00,user_005,"{""priority"": ""high"", ""auto_flagged"": false}" +ACT-00015,import_review,crm_leads,LED-0111,pending,2024-07-18T00:00:00,user_002,"{""priority"": ""medium"", ""auto_flagged"": true}" +ACT-00016,writeback_proposal,crm_opportunities,LED-0136,approved,2025-09-03T00:00:00,user_004,"{""priority"": ""high"", ""auto_flagged"": true}" +ACT-00017,merge_proposal,crm_people,LED-0232,approved,2024-05-25T00:00:00,user_003,"{""priority"": ""low"", ""auto_flagged"": false}" +ACT-00018,import_review,intel_interactions,LED-0148,pending,2024-02-13T00:00:00,user_004,"{""priority"": ""low"", ""auto_flagged"": true}" +ACT-00019,import_review,crm_leads,LED-0124,pending,2024-08-17T00:00:00,user_002,"{""priority"": ""high"", ""auto_flagged"": true}" +ACT-00020,merge_proposal,crm_leads,LED-0122,rejected,2025-12-27T00:00:00,user_003,"{""priority"": ""high"", ""auto_flagged"": true}" +ACT-00021,enrichment_review,crm_opportunities,LED-0153,escalated,2024-02-08T00:00:00,user_002,"{""priority"": ""medium"", ""auto_flagged"": false}" +ACT-00022,import_review,crm_leads,LED-0013,pending,2025-02-08T00:00:00,user_002,"{""priority"": ""low"", ""auto_flagged"": true}" +ACT-00023,merge_proposal,crm_leads,LED-0058,escalated,2024-05-26T00:00:00,user_003,"{""priority"": ""low"", ""auto_flagged"": false}" +ACT-00024,enrichment_review,crm_people,LED-0186,escalated,2025-08-19T00:00:00,user_002,"{""priority"": ""low"", ""auto_flagged"": true}" +ACT-00025,enrichment_review,crm_people,LED-0236,pending,2025-06-27T00:00:00,user_001,"{""priority"": ""medium"", ""auto_flagged"": false}" +ACT-00026,writeback_proposal,crm_people,LED-0213,rejected,2025-10-20T00:00:00,user_002,"{""priority"": ""low"", ""auto_flagged"": true}" +ACT-00027,merge_proposal,crm_opportunities,LED-0066,approved,2025-10-28T00:00:00,user_003,"{""priority"": ""low"", ""auto_flagged"": false}" +ACT-00028,merge_proposal,crm_people,LED-0156,pending,2026-01-14T00:00:00,user_004,"{""priority"": ""medium"", ""auto_flagged"": false}" +ACT-00029,enrichment_review,crm_leads,LED-0097,approved,2024-10-01T00:00:00,user_004,"{""priority"": ""low"", ""auto_flagged"": false}" +ACT-00030,enrichment_review,crm_leads,LED-0078,escalated,2025-06-05T00:00:00,user_001,"{""priority"": ""high"", ""auto_flagged"": true}" +ACT-00031,enrichment_review,crm_leads,LED-0221,pending,2024-02-04T00:00:00,user_003,"{""priority"": ""medium"", ""auto_flagged"": false}" +ACT-00032,merge_proposal,crm_opportunities,LED-0035,rejected,2024-11-10T00:00:00,user_002,"{""priority"": ""low"", ""auto_flagged"": true}" +ACT-00033,merge_proposal,crm_opportunities,LED-0172,rejected,2024-03-25T00:00:00,user_002,"{""priority"": ""medium"", ""auto_flagged"": false}" +ACT-00034,merge_proposal,intel_interactions,LED-0040,approved,2025-09-12T00:00:00,user_004,"{""priority"": ""high"", ""auto_flagged"": true}" +ACT-00035,enrichment_review,intel_interactions,LED-0214,pending,2024-06-21T00:00:00,user_002,"{""priority"": ""low"", ""auto_flagged"": false}" +ACT-00036,import_review,crm_leads,LED-0030,rejected,2024-03-02T00:00:00,user_003,"{""priority"": ""low"", ""auto_flagged"": true}" +ACT-00037,enrichment_review,crm_people,LED-0211,escalated,2024-04-26T00:00:00,user_002,"{""priority"": ""medium"", ""auto_flagged"": false}" +ACT-00038,merge_proposal,intel_interactions,LED-0104,rejected,2024-01-23T00:00:00,user_003,"{""priority"": ""medium"", ""auto_flagged"": true}" +ACT-00039,enrichment_review,intel_interactions,LED-0150,rejected,2025-05-20T00:00:00,user_005,"{""priority"": ""medium"", ""auto_flagged"": true}" +ACT-00040,merge_proposal,crm_people,LED-0105,pending,2026-03-25T00:00:00,user_002,"{""priority"": ""high"", ""auto_flagged"": false}" +ACT-00041,import_review,crm_opportunities,LED-0175,approved,2025-11-04T00:00:00,user_003,"{""priority"": ""medium"", ""auto_flagged"": true}" +ACT-00042,import_review,crm_opportunities,LED-0134,pending,2025-09-27T00:00:00,user_005,"{""priority"": ""high"", ""auto_flagged"": true}" +ACT-00043,merge_proposal,crm_leads,LED-0223,approved,2024-10-08T00:00:00,user_001,"{""priority"": ""low"", ""auto_flagged"": false}" +ACT-00044,writeback_proposal,crm_people,LED-0204,escalated,2024-05-23T00:00:00,user_002,"{""priority"": ""high"", ""auto_flagged"": false}" +ACT-00045,merge_proposal,intel_interactions,LED-0044,rejected,2024-11-11T00:00:00,user_001,"{""priority"": ""high"", ""auto_flagged"": true}" +ACT-00046,merge_proposal,crm_people,LED-0178,pending,2025-02-24T00:00:00,user_003,"{""priority"": ""low"", ""auto_flagged"": true}" +ACT-00047,merge_proposal,crm_opportunities,LED-0129,rejected,2026-01-28T00:00:00,user_001,"{""priority"": ""high"", ""auto_flagged"": false}" +ACT-00048,import_review,crm_opportunities,LED-0226,approved,2026-03-31T00:00:00,user_001,"{""priority"": ""low"", ""auto_flagged"": false}" +ACT-00049,writeback_proposal,intel_interactions,LED-0145,approved,2024-11-19T00:00:00,user_001,"{""priority"": ""medium"", ""auto_flagged"": false}" +ACT-00050,writeback_proposal,crm_leads,LED-0248,escalated,2025-04-15T00:00:00,user_003,"{""priority"": ""high"", ""auto_flagged"": true}" +ACT-00051,writeback_proposal,crm_people,LED-0212,rejected,2025-11-01T00:00:00,user_002,"{""priority"": ""high"", ""auto_flagged"": true}" +ACT-00052,merge_proposal,crm_opportunities,LED-0117,pending,2025-02-06T00:00:00,user_005,"{""priority"": ""low"", ""auto_flagged"": false}" +ACT-00053,merge_proposal,crm_leads,LED-0247,pending,2024-06-13T00:00:00,user_003,"{""priority"": ""medium"", ""auto_flagged"": false}" +ACT-00054,merge_proposal,intel_interactions,LED-0060,pending,2026-03-15T00:00:00,user_004,"{""priority"": ""medium"", ""auto_flagged"": false}" +ACT-00055,writeback_proposal,intel_interactions,LED-0076,escalated,2026-03-21T00:00:00,user_005,"{""priority"": ""low"", ""auto_flagged"": false}" +ACT-00056,merge_proposal,intel_interactions,LED-0207,rejected,2026-01-02T00:00:00,user_003,"{""priority"": ""high"", ""auto_flagged"": true}" +ACT-00057,import_review,intel_interactions,LED-0082,approved,2026-03-29T00:00:00,user_004,"{""priority"": ""high"", ""auto_flagged"": false}" +ACT-00058,writeback_proposal,crm_people,LED-0159,rejected,2024-10-06T00:00:00,user_001,"{""priority"": ""medium"", ""auto_flagged"": true}" +ACT-00059,writeback_proposal,crm_opportunities,LED-0203,pending,2025-09-14T00:00:00,user_003,"{""priority"": ""high"", ""auto_flagged"": true}" +ACT-00060,merge_proposal,crm_leads,LED-0049,rejected,2026-03-01T00:00:00,user_005,"{""priority"": ""high"", ""auto_flagged"": false}" +ACT-00061,import_review,crm_people,LED-0093,rejected,2024-02-05T00:00:00,user_003,"{""priority"": ""low"", ""auto_flagged"": false}" +ACT-00062,import_review,crm_people,LED-0231,pending,2025-10-10T00:00:00,user_004,"{""priority"": ""low"", ""auto_flagged"": true}" +ACT-00063,writeback_proposal,crm_people,LED-0033,escalated,2026-03-11T00:00:00,user_002,"{""priority"": ""medium"", ""auto_flagged"": true}" +ACT-00064,enrichment_review,crm_opportunities,LED-0188,approved,2024-10-24T00:00:00,user_004,"{""priority"": ""medium"", ""auto_flagged"": true}" +ACT-00065,enrichment_review,crm_leads,LED-0171,approved,2024-02-19T00:00:00,user_003,"{""priority"": ""high"", ""auto_flagged"": true}" +ACT-00066,writeback_proposal,intel_interactions,LED-0052,escalated,2025-04-14T00:00:00,user_004,"{""priority"": ""medium"", ""auto_flagged"": true}" +ACT-00067,import_review,crm_leads,LED-0022,escalated,2025-02-15T00:00:00,user_002,"{""priority"": ""medium"", ""auto_flagged"": false}" +ACT-00068,writeback_proposal,intel_interactions,LED-0081,rejected,2026-01-10T00:00:00,user_002,"{""priority"": ""high"", ""auto_flagged"": true}" +ACT-00069,import_review,intel_interactions,LED-0187,approved,2026-04-08T00:00:00,user_003,"{""priority"": ""high"", ""auto_flagged"": false}" +ACT-00070,enrichment_review,crm_leads,LED-0173,pending,2025-07-03T00:00:00,user_004,"{""priority"": ""low"", ""auto_flagged"": true}" +ACT-00071,enrichment_review,crm_opportunities,LED-0225,approved,2025-10-02T00:00:00,user_004,"{""priority"": ""low"", ""auto_flagged"": true}" +ACT-00072,merge_proposal,crm_people,LED-0009,escalated,2024-03-15T00:00:00,user_002,"{""priority"": ""low"", ""auto_flagged"": false}" +ACT-00073,enrichment_review,crm_opportunities,LED-0190,rejected,2025-10-13T00:00:00,user_001,"{""priority"": ""medium"", ""auto_flagged"": false}" +ACT-00074,merge_proposal,intel_interactions,LED-0177,rejected,2025-02-20T00:00:00,user_002,"{""priority"": ""low"", ""auto_flagged"": false}" +ACT-00075,merge_proposal,crm_people,LED-0118,escalated,2026-02-16T00:00:00,user_003,"{""priority"": ""medium"", ""auto_flagged"": false}" +ACT-00076,merge_proposal,intel_interactions,LED-0152,rejected,2024-01-13T00:00:00,user_001,"{""priority"": ""low"", ""auto_flagged"": false}" +ACT-00077,import_review,crm_opportunities,LED-0074,escalated,2025-06-04T00:00:00,user_004,"{""priority"": ""low"", ""auto_flagged"": true}" +ACT-00078,merge_proposal,crm_leads,LED-0141,escalated,2026-01-17T00:00:00,user_002,"{""priority"": ""low"", ""auto_flagged"": false}" +ACT-00079,writeback_proposal,intel_interactions,LED-0018,escalated,2025-06-15T00:00:00,user_003,"{""priority"": ""medium"", ""auto_flagged"": false}" +ACT-00080,import_review,crm_opportunities,LED-0249,rejected,2025-04-27T00:00:00,user_001,"{""priority"": ""medium"", ""auto_flagged"": false}" +ACT-00081,enrichment_review,intel_interactions,LED-0246,rejected,2025-12-06T00:00:00,user_003,"{""priority"": ""low"", ""auto_flagged"": false}" +ACT-00082,enrichment_review,crm_people,LED-0194,pending,2025-07-23T00:00:00,user_001,"{""priority"": ""medium"", ""auto_flagged"": false}" +ACT-00083,writeback_proposal,crm_leads,LED-0235,rejected,2026-01-07T00:00:00,user_001,"{""priority"": ""high"", ""auto_flagged"": true}" +ACT-00084,import_review,crm_leads,LED-0031,rejected,2026-02-15T00:00:00,user_003,"{""priority"": ""high"", ""auto_flagged"": true}" +ACT-00085,writeback_proposal,crm_people,LED-0007,rejected,2024-06-07T00:00:00,user_004,"{""priority"": ""medium"", ""auto_flagged"": true}" +ACT-00086,writeback_proposal,crm_leads,LED-0010,pending,2024-05-02T00:00:00,user_005,"{""priority"": ""high"", ""auto_flagged"": false}" +ACT-00087,writeback_proposal,crm_leads,LED-0020,escalated,2024-10-31T00:00:00,user_001,"{""priority"": ""high"", ""auto_flagged"": false}" +ACT-00088,writeback_proposal,crm_opportunities,LED-0095,escalated,2024-03-16T00:00:00,user_005,"{""priority"": ""low"", ""auto_flagged"": false}" +ACT-00089,writeback_proposal,intel_interactions,LED-0079,approved,2025-11-14T00:00:00,user_001,"{""priority"": ""high"", ""auto_flagged"": true}" +ACT-00090,writeback_proposal,crm_leads,LED-0162,approved,2024-01-23T00:00:00,user_003,"{""priority"": ""high"", ""auto_flagged"": false}" +ACT-00091,enrichment_review,crm_people,LED-0170,escalated,2026-03-19T00:00:00,user_001,"{""priority"": ""low"", ""auto_flagged"": false}" +ACT-00092,enrichment_review,intel_interactions,LED-0205,approved,2024-07-13T00:00:00,user_005,"{""priority"": ""high"", ""auto_flagged"": false}" +ACT-00093,import_review,intel_interactions,LED-0240,pending,2026-02-11T00:00:00,user_001,"{""priority"": ""high"", ""auto_flagged"": true}" +ACT-00094,writeback_proposal,crm_people,LED-0046,rejected,2025-03-22T00:00:00,user_002,"{""priority"": ""medium"", ""auto_flagged"": false}" +ACT-00095,writeback_proposal,crm_opportunities,LED-0067,escalated,2025-02-22T00:00:00,user_002,"{""priority"": ""high"", ""auto_flagged"": false}" +ACT-00096,merge_proposal,crm_opportunities,LED-0096,escalated,2025-05-11T00:00:00,user_002,"{""priority"": ""medium"", ""auto_flagged"": true}" +ACT-00097,merge_proposal,crm_people,LED-0126,escalated,2025-02-05T00:00:00,user_001,"{""priority"": ""medium"", ""auto_flagged"": false}" +ACT-00098,enrichment_review,crm_leads,LED-0061,approved,2025-01-03T00:00:00,user_003,"{""priority"": ""high"", ""auto_flagged"": false}" +ACT-00099,import_review,crm_leads,LED-0123,pending,2025-09-18T00:00:00,user_001,"{""priority"": ""high"", ""auto_flagged"": true}" +ACT-00100,import_review,crm_people,LED-0146,pending,2025-09-08T00:00:00,user_005,"{""priority"": ""high"", ""auto_flagged"": false}" diff --git a/db assets/synthetic_crm_v1/csv/workflow_approvals.csv b/db assets/synthetic_crm_v1/csv/workflow_approvals.csv new file mode 100644 index 00000000..5c42866a --- /dev/null +++ b/db assets/synthetic_crm_v1/csv/workflow_approvals.csv @@ -0,0 +1,50 @@ +approval_id,action_id,reviewer_ref,decision,decision_notes,decided_at +APR-0001,ACT-00004,user_004,approved,Verified against source data. Correct.,2024-07-08T00:00:00 +APR-0002,ACT-00005,user_002,approved,Verified against source data. Correct.,2025-02-11T00:00:00 +APR-0003,ACT-00006,user_005,rejected,Approved with minor corrections.,2024-06-02T00:00:00 +APR-0004,ACT-00007,user_005,rejected,Budget mismatch detected. Reject.,2025-02-23T00:00:00 +APR-0005,ACT-00010,user_002,approved,Verified against source data. Correct.,2024-06-13T00:00:00 +APR-0006,ACT-00011,user_003,approved,Approved with minor corrections.,2024-09-27T00:00:00 +APR-0007,ACT-00012,user_003,rejected,Budget mismatch detected. Reject.,2024-03-08T00:00:00 +APR-0008,ACT-00016,user_003,approved,Duplicate entry. Reject and flag.,2025-09-04T00:00:00 +APR-0009,ACT-00017,user_002,approved,Partial match. Needs manual review.,2024-05-29T00:00:00 +APR-0010,ACT-00020,user_004,rejected,Approved with minor corrections.,2025-12-30T00:00:00 +APR-0011,ACT-00026,user_001,rejected,Approved with minor corrections.,2025-10-25T00:00:00 +APR-0012,ACT-00027,user_001,approved,Approved with minor corrections.,2025-10-29T00:00:00 +APR-0013,ACT-00029,user_003,approved,Partial match. Needs manual review.,2024-10-03T00:00:00 +APR-0014,ACT-00032,user_005,rejected,Verified against source data. Correct.,2024-11-15T00:00:00 +APR-0015,ACT-00033,user_005,rejected,Verified against source data. Correct.,2024-03-29T00:00:00 +APR-0016,ACT-00034,user_002,approved,Duplicate entry. Reject and flag.,2025-09-17T00:00:00 +APR-0017,ACT-00036,user_002,rejected,Budget mismatch detected. Reject.,2024-03-03T00:00:00 +APR-0018,ACT-00038,user_003,rejected,Identity match confirmed. Proceed.,2024-01-24T00:00:00 +APR-0019,ACT-00039,user_003,rejected,Approved with minor corrections.,2025-05-25T00:00:00 +APR-0020,ACT-00041,user_001,approved,Partial match. Needs manual review.,2025-11-08T00:00:00 +APR-0021,ACT-00043,user_001,approved,Approved with minor corrections.,2024-10-12T00:00:00 +APR-0022,ACT-00045,user_002,rejected,Identity match confirmed. Proceed.,2024-11-13T00:00:00 +APR-0023,ACT-00047,user_004,rejected,Approved with minor corrections.,2026-01-30T00:00:00 +APR-0024,ACT-00048,user_004,approved,Partial match. Needs manual review.,2026-04-01T00:00:00 +APR-0025,ACT-00049,user_002,approved,Approved with minor corrections.,2024-11-20T00:00:00 +APR-0026,ACT-00051,user_003,rejected,Approved with minor corrections.,2025-11-03T00:00:00 +APR-0027,ACT-00056,user_004,rejected,Verified against source data. Correct.,2026-01-03T00:00:00 +APR-0028,ACT-00057,user_003,approved,Budget mismatch detected. Reject.,2026-04-01T00:00:00 +APR-0029,ACT-00058,user_002,rejected,Approved with minor corrections.,2024-10-11T00:00:00 +APR-0030,ACT-00060,user_001,rejected,Verified against source data. Correct.,2026-03-02T00:00:00 +APR-0031,ACT-00061,user_002,rejected,Approved with minor corrections.,2024-02-10T00:00:00 +APR-0032,ACT-00064,user_003,approved,Partial match. Needs manual review.,2024-10-27T00:00:00 +APR-0033,ACT-00065,user_001,approved,Duplicate entry. Reject and flag.,2024-02-20T00:00:00 +APR-0034,ACT-00068,user_004,rejected,Duplicate entry. Reject and flag.,2026-01-14T00:00:00 +APR-0035,ACT-00069,user_002,approved,Identity match confirmed. Proceed.,2026-04-13T00:00:00 +APR-0036,ACT-00071,user_004,approved,Budget mismatch detected. Reject.,2025-10-03T00:00:00 +APR-0037,ACT-00073,user_003,rejected,Identity match confirmed. Proceed.,2025-10-18T00:00:00 +APR-0038,ACT-00074,user_001,rejected,Duplicate entry. Reject and flag.,2025-02-25T00:00:00 +APR-0039,ACT-00076,user_001,rejected,Budget mismatch detected. Reject.,2024-01-16T00:00:00 +APR-0040,ACT-00080,user_003,rejected,Approved with minor corrections.,2025-04-28T00:00:00 +APR-0041,ACT-00081,user_001,rejected,Approved with minor corrections.,2025-12-09T00:00:00 +APR-0042,ACT-00083,user_004,rejected,Approved with minor corrections.,2026-01-11T00:00:00 +APR-0043,ACT-00084,user_001,rejected,Approved with minor corrections.,2026-02-19T00:00:00 +APR-0044,ACT-00085,user_001,rejected,Identity match confirmed. Proceed.,2024-06-12T00:00:00 +APR-0045,ACT-00089,user_003,approved,Identity match confirmed. Proceed.,2025-11-18T00:00:00 +APR-0046,ACT-00090,user_005,approved,Verified against source data. Correct.,2024-01-25T00:00:00 +APR-0047,ACT-00092,user_003,approved,Verified against source data. Correct.,2024-07-18T00:00:00 +APR-0048,ACT-00094,user_004,rejected,Duplicate entry. Reject and flag.,2025-03-25T00:00:00 +APR-0049,ACT-00098,user_003,approved,Partial match. Needs manual review.,2025-01-08T00:00:00 diff --git a/db assets/synthetic_crm_v1/csv/workflow_writebacks.csv b/db assets/synthetic_crm_v1/csv/workflow_writebacks.csv new file mode 100644 index 00000000..aae35e32 --- /dev/null +++ b/db assets/synthetic_crm_v1/csv/workflow_writebacks.csv @@ -0,0 +1,29 @@ +writeback_id,proposal_ref,target_domain,target_entity_ref,status,approved_by,executed_at,change_summary +WB-0001,ACT-00001,intel_qd_scores,PER-0051,pending,user_001,2026-04-18T00:00:00,"{""field"": ""budget_band"", ""old"": ""unknown"", ""new"": ""4-6 Cr""}" +WB-0002,ACT-00007,crm_people,PER-0069,failed,user_002,2026-04-18T00:00:00,"{""field"": ""budget_band"", ""old"": ""unknown"", ""new"": ""15-25 Cr""}" +WB-0003,ACT-00016,crm_leads,PER-0136,failed,user_003,2026-04-18T00:00:00,"{""field"": ""budget_band"", ""old"": ""unknown"", ""new"": ""1.5-2.5 Cr""}" +WB-0004,ACT-00022,intel_qd_scores,PER-0013,pending,user_002,2026-04-18T00:00:00,"{""field"": ""budget_band"", ""old"": ""unknown"", ""new"": ""15-25 Cr""}" +WB-0005,ACT-00023,crm_leads,PER-0058,failed,user_001,2026-04-18T00:00:00,"{""field"": ""budget_band"", ""old"": ""unknown"", ""new"": ""2.5-4 Cr""}" +WB-0006,ACT-00024,crm_people,PER-0186,pending,user_001,2026-04-18T00:00:00,"{""field"": ""budget_band"", ""old"": ""unknown"", ""new"": ""15-25 Cr""}" +WB-0007,ACT-00025,crm_leads,PER-0236,failed,user_005,2026-04-18T00:00:00,"{""field"": ""budget_band"", ""old"": ""unknown"", ""new"": ""6-10 Cr""}" +WB-0008,ACT-00026,crm_people,PER-0213,failed,user_003,2026-04-18T00:00:00,"{""field"": ""budget_band"", ""old"": ""unknown"", ""new"": ""2.5-4 Cr""}" +WB-0009,ACT-00028,intel_qd_scores,PER-0156,pending,user_004,2026-04-18T00:00:00,"{""field"": ""budget_band"", ""old"": ""unknown"", ""new"": ""15-25 Cr""}" +WB-0010,ACT-00035,crm_leads,PER-0214,pending,user_001,2026-04-18T00:00:00,"{""field"": ""budget_band"", ""old"": ""unknown"", ""new"": ""4-6 Cr""}" +WB-0011,ACT-00042,crm_leads,PER-0134,executed,user_003,2026-04-18T00:00:00,"{""field"": ""budget_band"", ""old"": ""unknown"", ""new"": ""4-6 Cr""}" +WB-0012,ACT-00043,crm_people,PER-0223,failed,user_002,2026-04-18T00:00:00,"{""field"": ""budget_band"", ""old"": ""unknown"", ""new"": ""10-15 Cr""}" +WB-0013,ACT-00045,crm_leads,PER-0044,executed,user_002,2026-04-18T00:00:00,"{""field"": ""budget_band"", ""old"": ""unknown"", ""new"": ""1.5-2.5 Cr""}" +WB-0014,ACT-00056,intel_qd_scores,PER-0207,executed,user_004,2026-04-18T00:00:00,"{""field"": ""budget_band"", ""old"": ""unknown"", ""new"": ""15-25 Cr""}" +WB-0015,ACT-00061,crm_leads,PER-0093,pending,user_005,2026-04-18T00:00:00,"{""field"": ""budget_band"", ""old"": ""unknown"", ""new"": ""6-10 Cr""}" +WB-0016,ACT-00063,crm_leads,PER-0033,pending,user_003,2026-04-18T00:00:00,"{""field"": ""budget_band"", ""old"": ""unknown"", ""new"": ""10-15 Cr""}" +WB-0017,ACT-00065,crm_people,PER-0171,pending,user_005,2026-04-18T00:00:00,"{""field"": ""budget_band"", ""old"": ""unknown"", ""new"": ""15-25 Cr""}" +WB-0018,ACT-00071,crm_leads,PER-0225,failed,user_004,2026-04-18T00:00:00,"{""field"": ""budget_band"", ""old"": ""unknown"", ""new"": ""2.5-4 Cr""}" +WB-0019,ACT-00073,crm_people,PER-0190,executed,user_002,2026-04-18T00:00:00,"{""field"": ""budget_band"", ""old"": ""unknown"", ""new"": ""1.5-2.5 Cr""}" +WB-0020,ACT-00075,crm_leads,PER-0118,pending,user_001,2026-04-18T00:00:00,"{""field"": ""budget_band"", ""old"": ""unknown"", ""new"": ""1.5-2.5 Cr""}" +WB-0021,ACT-00079,crm_leads,PER-0018,pending,user_002,2026-04-18T00:00:00,"{""field"": ""budget_band"", ""old"": ""unknown"", ""new"": ""6-10 Cr""}" +WB-0022,ACT-00083,intel_qd_scores,PER-0235,pending,user_004,2026-04-18T00:00:00,"{""field"": ""budget_band"", ""old"": ""unknown"", ""new"": ""1.5-2.5 Cr""}" +WB-0023,ACT-00085,crm_people,PER-0007,executed,user_005,2026-04-18T00:00:00,"{""field"": ""budget_band"", ""old"": ""unknown"", ""new"": ""1.5-2.5 Cr""}" +WB-0024,ACT-00087,crm_people,PER-0020,pending,user_004,2026-04-18T00:00:00,"{""field"": ""budget_band"", ""old"": ""unknown"", ""new"": ""15-25 Cr""}" +WB-0025,ACT-00088,crm_people,PER-0095,pending,user_002,2026-04-18T00:00:00,"{""field"": ""budget_band"", ""old"": ""unknown"", ""new"": ""10-15 Cr""}" +WB-0026,ACT-00090,crm_leads,PER-0162,executed,user_003,2026-04-18T00:00:00,"{""field"": ""budget_band"", ""old"": ""unknown"", ""new"": ""10-15 Cr""}" +WB-0027,ACT-00097,crm_leads,PER-0126,pending,user_001,2026-04-18T00:00:00,"{""field"": ""budget_band"", ""old"": ""unknown"", ""new"": ""10-15 Cr""}" +WB-0028,ACT-00099,crm_leads,PER-0123,executed,user_005,2026-04-18T00:00:00,"{""field"": ""budget_band"", ""old"": ""unknown"", ""new"": ""10-15 Cr""}" diff --git a/db assets/synthetic_crm_v1/json/claude_supplement/client360_snapshots.json b/db assets/synthetic_crm_v1/json/claude_supplement/client360_snapshots.json new file mode 100644 index 00000000..0ad5babb --- /dev/null +++ b/db assets/synthetic_crm_v1/json/claude_supplement/client360_snapshots.json @@ -0,0 +1,18491 @@ +[ + { + "client_ref": "54249057-4e0c-45af-9fe2-2002010cc696", + "snapshot_generated_at": "2026-04-18T11:07:55.875482", + "identity": { + "full_name": "Ritika Dutta", + "primary_email": "ritika.dutta359@outlook.com", + "primary_phone": "+91 7977515194", + "persona_labels": "[\"status_buyer\", \"cash_rich_investor\"]", + "buyer_type": "high_intent" + }, + "account_links": [ + "4a2caa8d-83f7-43da-a05a-966330cf9eab" + ], + "active_opportunities": [], + "recent_interactions": [ + { + "interaction_id": "5720ad0a-c260-42cb-9f62-8edfa1997603", + "channel": "digital_ad", + "happened_at": "2026-03-04T11:07:55.875104" + }, + { + "interaction_id": "13fb5201-8de3-47c6-bd6a-414b3b68de41", + "channel": "referral", + "happened_at": "2026-01-30T11:07:55.875119" + }, + { + "interaction_id": "74a183b3-8726-49d7-b9d3-bd0cec2823ce", + "channel": "digital_ad", + "happened_at": "2026-01-10T11:07:55.875086" + }, + { + "interaction_id": "5dab08d4-823a-4d76-a1de-39cdbd531c7c", + "channel": "digital_ad", + "happened_at": "2026-01-03T11:07:55.875034" + }, + { + "interaction_id": "8847d675-4cd9-4c29-a58a-ee10d1bc1c09", + "channel": "site_visit", + "happened_at": "2025-10-21T11:07:55.875055" + } + ], + "property_interests": [ + { + "project": "DTC Good Earth", + "config": "2BHK", + "budget_max": 6705176 + }, + { + "project": "DTC Sojon", + "config": "3BHK", + "budget_max": 5854961 + }, + { + "project": "Siddha Sky Waterfront", + "config": "3BHK", + "budget_max": 17558756 + } + ], + "tasks": [ + "Check competitor comparison status" + ], + "qd_overview": { + "intent_score": 0.804, + "urgency_score": 0.83, + "engagement_score": 0.865 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Send project brochure", + "Schedule site visit" + ], + "lead_stage": "inquiry", + "lead_status": "active" + }, + { + "client_ref": "d26bdc40-ff43-46ab-8ba7-e33c06ccbce9", + "snapshot_generated_at": "2026-04-18T11:07:55.876178", + "identity": { + "full_name": "Arpita Joshi", + "primary_email": "arpita.joshi339@company.com", + "primary_phone": "+91 9001129658", + "persona_labels": "[\"nri_diaspora\"]", + "buyer_type": "slow_burn_investor" + }, + "account_links": [ + "0d840fb4-dbe4-4fba-b4a7-01aff24a3e15" + ], + "active_opportunities": [], + "recent_interactions": [ + { + "interaction_id": "ae96072c-25f9-4e36-9f2d-89d3f6c145b9", + "channel": "builder_event", + "happened_at": "2026-03-28T11:07:55.875663" + }, + { + "interaction_id": "09a6f56a-c370-498e-ade7-5fec993db448", + "channel": "builder_event", + "happened_at": "2026-01-10T11:07:55.875616" + }, + { + "interaction_id": "d008bbde-05d1-44d0-8d27-a5f97958ca7f", + "channel": "builder_event", + "happened_at": "2025-12-31T11:07:55.875640" + }, + { + "interaction_id": "2de220c5-8503-4530-b812-bbfa563ca312", + "channel": "site_visit", + "happened_at": "2025-10-20T11:07:55.875753" + }, + { + "interaction_id": "efb563c5-b3fe-445e-9c54-c392dab9a89e", + "channel": "whatsapp", + "happened_at": "2025-10-08T11:07:55.875678" + } + ], + "property_interests": [ + { + "project": "DTC Good Earth", + "config": "3BHK", + "budget_max": 7433252 + }, + { + "project": "Siddha Serena", + "config": "3BHK", + "budget_max": 7290830 + }, + { + "project": "Eden Devprayag", + "config": "3BHK", + "budget_max": 9772944 + } + ], + "tasks": [], + "qd_overview": { + "intent_score": 0.453, + "urgency_score": 0.546, + "engagement_score": 0.471 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Send project brochure", + "Schedule site visit" + ], + "lead_stage": "inquiry", + "lead_status": "active" + }, + { + "client_ref": "1be9f669-a9da-481f-b3b4-ad8830fad714", + "snapshot_generated_at": "2026-04-18T11:07:55.876927", + "identity": { + "full_name": "Shalini Ganguly", + "primary_email": "shalini.ganguly258@yahoo.com", + "primary_phone": "+91 7518213060", + "persona_labels": "[\"upgrade_seeker\", \"investment_focus\"]", + "buyer_type": "price_sensitive" + }, + "account_links": [ + "8aa4d488-571e-4cd4-aa27-8372a49aacbf" + ], + "active_opportunities": [ + { + "opportunity_id": "25ef8c7a-d7db-4d0e-921e-ac49494cf270", + "project": "Siddha Serena", + "stage": "qualified", + "value": 5221637 + } + ], + "recent_interactions": [ + { + "interaction_id": "2c95c593-675b-4f28-b350-0fc1ca5c05f4", + "channel": "site_visit", + "happened_at": "2026-03-28T11:07:55.876572" + }, + { + "interaction_id": "5d491fdf-4067-41c4-a6c4-fe006383c478", + "channel": "call", + "happened_at": "2026-02-03T11:07:55.876455" + }, + { + "interaction_id": "d597c43c-b25f-41ae-b69b-501a583dd785", + "channel": "digital_ad", + "happened_at": "2026-01-04T11:07:55.876537" + }, + { + "interaction_id": "7bd79c6c-a356-41a3-a08e-2e4821d41bdc", + "channel": "referral", + "happened_at": "2025-11-30T11:07:55.876556" + }, + { + "interaction_id": "c20e091f-6b50-4c7d-8ff1-90af7affccc7", + "channel": "referral", + "happened_at": "2025-11-16T11:07:55.876349" + } + ], + "property_interests": [ + { + "project": "Siddha Serena", + "config": "2BHK", + "budget_max": 6646801 + }, + { + "project": "Siddha Suburbia Bungalow", + "config": "4BHK", + "budget_max": 18262398 + }, + { + "project": "Shriram Grand City", + "config": "3BHK", + "budget_max": 6996623 + } + ], + "tasks": [ + "Send festive offer", + "Re-engage after 2 weeks silence" + ], + "qd_overview": { + "intent_score": 0.479, + "urgency_score": 0.584, + "engagement_score": 0.621 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Book site visit", + "Share payment plan" + ], + "lead_stage": "qualified", + "lead_status": "active" + }, + { + "client_ref": "ea45a472-d0e5-4aea-8323-e4b893bb8ac8", + "snapshot_generated_at": "2026-04-18T11:07:55.877756", + "identity": { + "full_name": "Rupali Shah", + "primary_email": "rupali.shah349@company.com", + "primary_phone": "+91 8147497835", + "persona_labels": "[\"investment_focus\"]", + "buyer_type": "nri" + }, + "account_links": [ + "83abc8f7-37e5-473d-805e-2f5b39cde2af" + ], + "active_opportunities": [ + { + "opportunity_id": "d7ff7dcc-cd11-4132-91c9-4b4f93ffafde", + "project": "Siddha Sky Waterfront", + "stage": "site_visit_done", + "value": 17139414 + } + ], + "recent_interactions": [ + { + "interaction_id": "1953ba8a-eafd-40e4-8014-ca9b83309763", + "channel": "referral", + "happened_at": "2026-03-12T11:07:55.877287" + }, + { + "interaction_id": "7e50e3b2-9fcb-4fca-99d2-3b4e0c5f3300", + "channel": "digital_ad", + "happened_at": "2026-02-15T11:07:55.877269" + }, + { + "interaction_id": "d8de1be9-6f4b-481d-b6ab-63d1499d23d4", + "channel": "builder_event", + "happened_at": "2026-01-10T11:07:55.877249" + }, + { + "interaction_id": "b5aa6ca3-8d97-4d5a-9831-c92850fafbe1", + "channel": "email", + "happened_at": "2025-11-08T11:07:55.877125" + }, + { + "interaction_id": "a260b4b8-3bc0-4a67-ac85-632ef8d5c8d6", + "channel": "site_visit", + "happened_at": "2025-11-05T11:07:55.877302" + } + ], + "property_interests": [ + { + "project": "Siddha Sky Waterfront", + "config": "4BHK", + "budget_max": 13931567 + }, + { + "project": "Godrej Elevate", + "config": "4BHK", + "budget_max": 12905508 + } + ], + "tasks": [ + "Send legal documents", + "Send legal documents", + "Follow up after site visit" + ], + "qd_overview": { + "intent_score": 0.579, + "urgency_score": 0.549, + "engagement_score": 0.555 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Follow up on impressions", + "Send updated price list" + ], + "lead_stage": "site_visit_done", + "lead_status": "active" + }, + { + "client_ref": "a89609fc-f886-4b7e-92c4-28214ad4efd8", + "snapshot_generated_at": "2026-04-18T11:07:55.878450", + "identity": { + "full_name": "Srija Halder", + "primary_email": "srija.halder671@gmail.com", + "primary_phone": "+91 9101729519", + "persona_labels": "[\"first_time_buyer\", \"nri_diaspora\", \"value_seeker\"]", + "buyer_type": "nri" + }, + "account_links": [ + "4b56a688-c54f-4460-a12c-8043ea8682ae" + ], + "active_opportunities": [ + { + "opportunity_id": "94c8366b-dfc7-46cb-b125-9aaa3ca0b7cc", + "project": "Merlin Avana", + "stage": "qualified", + "value": 9592229 + } + ], + "recent_interactions": [ + { + "interaction_id": "88ee3928-2f99-45b4-a357-cbf01aea331c", + "channel": "site_visit", + "happened_at": "2026-03-30T11:07:55.878003" + }, + { + "interaction_id": "d11480cd-6dab-40ef-b058-f818b7af83e7", + "channel": "call", + "happened_at": "2026-02-06T11:07:55.878032" + }, + { + "interaction_id": "6d7b501c-becc-478b-90ad-f31fb71f26ed", + "channel": "call", + "happened_at": "2025-10-10T11:07:55.877931" + } + ], + "property_interests": [ + { + "project": "Merlin Avana", + "config": "2BHK", + "budget_max": 17556966 + }, + { + "project": "Eden Devprayag", + "config": "2BHK", + "budget_max": 11327444 + }, + { + "project": "DTC Good Earth", + "config": "2BHK", + "budget_max": 8205414 + } + ], + "tasks": [], + "qd_overview": { + "intent_score": 0.772, + "urgency_score": 0.759, + "engagement_score": 0.722 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Book site visit", + "Share payment plan" + ], + "lead_stage": "qualified", + "lead_status": "active" + }, + { + "client_ref": "2c58c356-9fd0-4895-ad39-29fd1ec72787", + "snapshot_generated_at": "2026-04-18T11:07:55.879183", + "identity": { + "full_name": "Prabir Gupta", + "primary_email": "prabir.gupta114@outlook.com", + "primary_phone": "+91 9912923661", + "persona_labels": "[\"family_centric\"]", + "buyer_type": "family_decision_unit" + }, + "account_links": [ + "719009b0-4ad2-4ab0-ab36-7144c1c43981" + ], + "active_opportunities": [ + { + "opportunity_id": "4dc38e9b-ee48-4473-97d2-2808ed11b685", + "project": "Godrej Elevate", + "stage": "site_visit_done", + "value": 15856117 + } + ], + "recent_interactions": [ + { + "interaction_id": "09f4224a-381e-4d62-91cc-8a80c2b8a659", + "channel": "email", + "happened_at": "2026-02-26T11:07:55.878723" + }, + { + "interaction_id": "f9a5ca57-7e68-4c9a-aa93-23d57829d97a", + "channel": "whatsapp", + "happened_at": "2025-12-27T11:07:55.878643" + }, + { + "interaction_id": "ccd8753c-3bc4-45b5-91c7-48e291c52095", + "channel": "builder_event", + "happened_at": "2025-11-10T11:07:55.878605" + }, + { + "interaction_id": "2d7730a8-cdb0-48ca-adf8-0759b219b6ec", + "channel": "builder_event", + "happened_at": "2025-10-23T11:07:55.878622" + } + ], + "property_interests": [ + { + "project": "Godrej Elevate", + "config": "4BHK", + "budget_max": 14314303 + } + ], + "tasks": [ + "Nudge for final decision" + ], + "qd_overview": { + "intent_score": 0.518, + "urgency_score": 0.51, + "engagement_score": 0.606 + }, + "risk_flags": [ + "price_objection_raised", + "financing_uncertainty" + ], + "recommended_next_actions": [ + "Follow up on impressions", + "Send updated price list" + ], + "lead_stage": "site_visit_done", + "lead_status": "active" + }, + { + "client_ref": "66232df4-c729-4792-ab0e-8c61f1b74766", + "snapshot_generated_at": "2026-04-18T11:07:55.880351", + "identity": { + "full_name": "Kaushik Sarkar", + "primary_email": "kaushik.sarkar421@outlook.com", + "primary_phone": "+91 9904956613", + "persona_labels": "[\"upgrade_seeker\"]", + "buyer_type": "high_intent" + }, + "account_links": [ + "680245f4-619c-40a1-90ff-c098cccf2f41" + ], + "active_opportunities": [ + { + "opportunity_id": "5ad4465c-1b21-4f78-a71c-0a637104252a", + "project": "Ambuja Utpaala", + "stage": "site_visit_done", + "value": 15891997 + } + ], + "recent_interactions": [ + { + "interaction_id": "9fcab646-2b9c-45c3-a2be-abab778ee1e0", + "channel": "site_visit", + "happened_at": "2026-03-28T11:07:55.879345" + }, + { + "interaction_id": "71613508-7aa3-4a06-91f2-15a0fcf56f2f", + "channel": "email", + "happened_at": "2026-03-11T11:07:55.879388" + }, + { + "interaction_id": "c3354d6a-89c0-4bcd-8d0f-42aba21b7696", + "channel": "site_visit", + "happened_at": "2025-11-11T11:07:55.879417" + }, + { + "interaction_id": "5e424a88-f909-4e0e-8c95-a1d4ddf6bf86", + "channel": "builder_event", + "happened_at": "2025-10-17T11:07:55.879372" + } + ], + "property_interests": [ + { + "project": "Ambuja Utpaala", + "config": "3BHK", + "budget_max": 14550079 + }, + { + "project": "Atri Surya Toron", + "config": "2BHK", + "budget_max": 7739756 + } + ], + "tasks": [ + "Send legal documents" + ], + "qd_overview": { + "intent_score": 0.787, + "urgency_score": 0.706, + "engagement_score": 0.853 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Follow up on impressions", + "Send updated price list" + ], + "lead_stage": "site_visit_done", + "lead_status": "active" + }, + { + "client_ref": "d77568b9-80ee-4dbf-8d3f-a6ed3d468509", + "snapshot_generated_at": "2026-04-18T11:07:55.881104", + "identity": { + "full_name": "Prabir Bose", + "primary_email": "prabir.bose843@yahoo.com", + "primary_phone": "+91 9342794700", + "persona_labels": "[\"nri_diaspora\"]", + "buyer_type": "price_sensitive" + }, + "account_links": [ + "d9525127-ff0d-45a0-b6d2-57b735be5c66" + ], + "active_opportunities": [ + { + "opportunity_id": "f51a0305-5616-4652-86a6-226889a068cf", + "project": "Eden Devprayag", + "stage": "qualified", + "value": 11148545 + } + ], + "recent_interactions": [ + { + "interaction_id": "e4770793-f681-4948-ad99-25d45bf21950", + "channel": "whatsapp", + "happened_at": "2026-04-11T11:07:55.880555" + }, + { + "interaction_id": "ef245601-b81e-4e8e-9506-55b796321eb4", + "channel": "digital_ad", + "happened_at": "2026-03-04T11:07:55.880698" + }, + { + "interaction_id": "6782cf92-6142-48c9-bc6a-6e105ce9bc7c", + "channel": "digital_ad", + "happened_at": "2026-02-05T11:07:55.880537" + }, + { + "interaction_id": "bdd340c8-25f6-4a4a-8971-19e6250b42e0", + "channel": "digital_ad", + "happened_at": "2026-01-26T11:07:55.880652" + }, + { + "interaction_id": "7e67689c-438f-4b65-b9be-dd40576614a6", + "channel": "email", + "happened_at": "2025-10-18T11:07:55.880668" + } + ], + "property_interests": [ + { + "project": "Eden Devprayag", + "config": "3BHK", + "budget_max": 8779269 + }, + { + "project": "Shriram Grand City", + "config": "4BHK", + "budget_max": 7526271 + } + ], + "tasks": [], + "qd_overview": { + "intent_score": 0.412, + "urgency_score": 0.501, + "engagement_score": 0.466 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Book site visit", + "Share payment plan" + ], + "lead_stage": "qualified", + "lead_status": "active" + }, + { + "client_ref": "c92d380b-c092-4338-a62b-7e43abed7c3c", + "snapshot_generated_at": "2026-04-18T11:07:55.881987", + "identity": { + "full_name": "Ipsita Patel", + "primary_email": "ipsita.patel969@hotmail.com", + "primary_phone": "+91 9643025991", + "persona_labels": "[\"analytical_buyer\"]", + "buyer_type": "price_sensitive" + }, + "account_links": [ + "0c28253b-3c45-4128-ab2d-de054685657b" + ], + "active_opportunities": [ + { + "opportunity_id": "b9849fad-e7ea-4a9f-9d3d-a720ed39d33d", + "project": "Siddha Serena", + "stage": "qualified", + "value": 6891949 + } + ], + "recent_interactions": [ + { + "interaction_id": "ef572624-c34f-40eb-ba40-faddd935ae36", + "channel": "email", + "happened_at": "2026-04-06T11:07:55.881299" + }, + { + "interaction_id": "89db75fa-d8f9-4716-94f9-6cd494015e30", + "channel": "referral", + "happened_at": "2026-02-23T11:07:55.881586" + }, + { + "interaction_id": "dd4a712c-c339-4733-9497-d0ee871adcb3", + "channel": "whatsapp", + "happened_at": "2026-01-09T11:07:55.881328" + }, + { + "interaction_id": "7cf93aed-f181-40a7-85a9-a72fde06f381", + "channel": "call", + "happened_at": "2025-12-04T11:07:55.881518" + }, + { + "interaction_id": "ad4a78a9-e436-4875-bdf1-ff345f79d3c0", + "channel": "call", + "happened_at": "2025-11-13T11:07:55.881421" + } + ], + "property_interests": [ + { + "project": "Siddha Serena", + "config": "3BHK", + "budget_max": 7574734 + } + ], + "tasks": [ + "Re-engage after 2 weeks silence" + ], + "qd_overview": { + "intent_score": 0.562, + "urgency_score": 0.598, + "engagement_score": 0.594 + }, + "risk_flags": [], + "recommended_next_actions": [ + "Book site visit", + "Share payment plan" + ], + "lead_stage": "qualified", + "lead_status": "active" + }, + { + "client_ref": "8460df77-6d5a-4cf5-9861-eb3ce0ccd387", + "snapshot_generated_at": "2026-04-18T11:07:55.882989", + "identity": { + "full_name": "Sumita Roy", + "primary_email": "sumita.roy506@yahoo.com", + "primary_phone": "+91 9165576952", + "persona_labels": "[\"upgrade_seeker\", \"first_time_buyer\"]", + "buyer_type": "nri" + }, + "account_links": [ + "8aa4d488-571e-4cd4-aa27-8372a49aacbf" + ], + "active_opportunities": [ + { + "opportunity_id": "96b21370-375e-47f6-9e77-a8e1a3f265bb", + "project": "Eden Devprayag", + "stage": "site_visit_done", + "value": 9974842 + } + ], + "recent_interactions": [ + { + "interaction_id": "566fc574-8db0-4e7f-91a0-6189c75d4793", + "channel": "builder_event", + "happened_at": "2026-02-13T11:07:55.882259" + }, + { + "interaction_id": "848a4648-77b2-46a4-985c-b4e5786f4d34", + "channel": "referral", + "happened_at": "2025-12-18T11:07:55.882227" + }, + { + "interaction_id": "56c4ab14-bd66-4325-94bd-c9f0b3829256", + "channel": "referral", + "happened_at": "2025-10-29T11:07:55.882243" + }, + { + "interaction_id": "a72bfd44-99c7-4246-8d8c-8faa4cf4e6bb", + "channel": "whatsapp", + "happened_at": "2025-10-29T11:07:55.882140" + } + ], + "property_interests": [ + { + "project": "Eden Devprayag", + "config": "2BHK", + "budget_max": 9869373 + } + ], + "tasks": [], + "qd_overview": { + "intent_score": 0.629, + "urgency_score": 0.672, + "engagement_score": 0.755 + }, + "risk_flags": [ + "no_follow_up_in_30_days", + "decision_stalled_at_family" + ], + "recommended_next_actions": [ + "Follow up on impressions", + "Send updated price list" + ], + "lead_stage": "site_visit_done", + "lead_status": "active" + }, + { + "client_ref": "ac74f467-ebd5-4ed2-888e-4e66e89e4899", + "snapshot_generated_at": "2026-04-18T11:07:55.883715", + "identity": { + "full_name": "Arnav Bhattacharya", + "primary_email": "arnav.bhattacharya553@yahoo.com", + "primary_phone": "+91 7242425303", + "persona_labels": "[\"analytical_buyer\", \"nri_diaspora\", \"upgrade_seeker\"]", + "buyer_type": "high_intent" + }, + "account_links": [ + "167e5af1-66b1-41c0-9a9d-42aa9b77a3a7" + ], + "active_opportunities": [ + { + "opportunity_id": "fd79f9b7-794d-4a49-9534-015b4c7eb9ba", + "project": "Ambuja Utpaala", + "stage": "qualified", + "value": 10903511 + } + ], + "recent_interactions": [ + { + "interaction_id": "874b367f-5fe0-4580-8669-1316aadf2a7a", + "channel": "email", + "happened_at": "2025-11-03T11:07:55.883232" + }, + { + "interaction_id": "4844c494-3d80-4e60-901b-07676488c2b2", + "channel": "digital_ad", + "happened_at": "2025-10-28T11:07:55.883318" + }, + { + "interaction_id": "19c7263b-f3e3-488c-927a-dc6127edf2fa", + "channel": "site_visit", + "happened_at": "2025-10-27T11:07:55.883271" + }, + { + "interaction_id": "ee41e0c8-ff93-41be-b647-1a5bb6256271", + "channel": "builder_event", + "happened_at": "2025-10-05T11:07:55.883300" + } + ], + "property_interests": [ + { + "project": "Ambuja Utpaala", + "config": "4BHK", + "budget_max": 13429329 + }, + { + "project": "Merlin Avana", + "config": "4BHK", + "budget_max": 16917531 + }, + { + "project": "Atri Surya Toron", + "config": "3BHK", + "budget_max": 7369732 + } + ], + "tasks": [ + "Confirm booking appointment", + "Schedule meeting with senior advisor" + ], + "qd_overview": { + "intent_score": 0.931, + "urgency_score": 0.923, + "engagement_score": 0.907 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Book site visit", + "Share payment plan" + ], + "lead_stage": "qualified", + "lead_status": "active" + }, + { + "client_ref": "bbcac2d6-131a-4a5c-be34-d3ecb31e8df0", + "snapshot_generated_at": "2026-04-18T11:07:55.884574", + "identity": { + "full_name": "Keya Bagchi", + "primary_email": "keya.bagchi383@hotmail.com", + "primary_phone": "+91 8971380304", + "persona_labels": "[\"investment_focus\", \"nri_diaspora\"]", + "buyer_type": "high_intent" + }, + "account_links": [ + "e890a796-925a-4c14-af19-67fc6360449a" + ], + "active_opportunities": [ + { + "opportunity_id": "4af9bf27-6dd4-4535-a1bf-f54139b031e9", + "project": "DTC Good Earth", + "stage": "qualified", + "value": 5235363 + } + ], + "recent_interactions": [ + { + "interaction_id": "bd1efcd9-55fe-47ad-93a5-07b9eacb51e2", + "channel": "email", + "happened_at": "2026-03-22T11:07:55.884101" + }, + { + "interaction_id": "23affc47-3286-4c28-83a3-139c9307ba67", + "channel": "digital_ad", + "happened_at": "2026-01-19T11:07:55.883933" + }, + { + "interaction_id": "3a071039-b9ae-4d97-8ecc-ffe3b7fcea44", + "channel": "call", + "happened_at": "2026-01-16T11:07:55.884006" + }, + { + "interaction_id": "121c1a55-cb7e-48e5-9212-e8cfaef60378", + "channel": "whatsapp", + "happened_at": "2025-12-27T11:07:55.883951" + }, + { + "interaction_id": "ebd433ad-e031-42d2-9678-63dc34c6148b", + "channel": "digital_ad", + "happened_at": "2025-11-30T11:07:55.883887" + } + ], + "property_interests": [ + { + "project": "DTC Good Earth", + "config": "2BHK", + "budget_max": 8742740 + }, + { + "project": "Ambuja Utpaala", + "config": "3BHK", + "budget_max": 11109896 + } + ], + "tasks": [ + "Re-engage after 2 weeks silence" + ], + "qd_overview": { + "intent_score": 0.934, + "urgency_score": 0.799, + "engagement_score": 0.866 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Book site visit", + "Share payment plan" + ], + "lead_stage": "qualified", + "lead_status": "active" + }, + { + "client_ref": "fd0b72d4-c589-4874-a16d-d85f81c51ef7", + "snapshot_generated_at": "2026-04-18T11:07:55.885213", + "identity": { + "full_name": "Mahesh Lahiri", + "primary_email": "mahesh.lahiri171@rediffmail.com", + "primary_phone": "+91 9631431563", + "persona_labels": "[\"emotional_buyer\", \"cash_rich_investor\", \"status_buyer\"]", + "buyer_type": "high_intent" + }, + "account_links": [ + "c64b5253-b5fb-4f37-b1aa-bd549cb7175f" + ], + "active_opportunities": [ + { + "opportunity_id": "5e39b9a9-62b1-4477-9f67-7615179ccad0", + "project": "Siddha Suburbia Bungalow", + "stage": "qualified", + "value": 20567725 + } + ], + "recent_interactions": [ + { + "interaction_id": "63060379-5107-4e99-ba49-4dce7f07245c", + "channel": "digital_ad", + "happened_at": "2025-11-11T11:07:55.884792" + }, + { + "interaction_id": "37b0040f-d562-47f7-8970-f5e603522e11", + "channel": "whatsapp", + "happened_at": "2025-10-18T11:07:55.884723" + }, + { + "interaction_id": "329acbb7-a3fe-4e6b-a243-29e2fb8c2f31", + "channel": "site_visit", + "happened_at": "2025-10-15T11:07:55.884698" + } + ], + "property_interests": [ + { + "project": "Siddha Suburbia Bungalow", + "config": "4BHK", + "budget_max": 21426815 + } + ], + "tasks": [ + "Nudge for final decision" + ], + "qd_overview": { + "intent_score": 0.84, + "urgency_score": 0.79, + "engagement_score": 0.793 + }, + "risk_flags": [], + "recommended_next_actions": [ + "Book site visit", + "Share payment plan" + ], + "lead_stage": "qualified", + "lead_status": "active" + }, + { + "client_ref": "405d9dbb-49c2-4379-8b55-4c8a59597cbc", + "snapshot_generated_at": "2026-04-18T11:07:55.886031", + "identity": { + "full_name": "Namrata Modi", + "primary_email": "namrata.modi357@gmail.com", + "primary_phone": "+91 8885790857", + "persona_labels": "[\"analytical_buyer\", \"upgrade_seeker\"]", + "buyer_type": "slow_burn_investor" + }, + "account_links": [ + "167e5af1-66b1-41c0-9a9d-42aa9b77a3a7" + ], + "active_opportunities": [ + { + "opportunity_id": "7234e231-b282-4d9a-8869-9952efa8a060", + "project": "Godrej Blue", + "stage": "booked", + "value": 12168650 + } + ], + "recent_interactions": [ + { + "interaction_id": "472e5eea-fa26-48e5-b7a0-3cf685ef1525", + "channel": "builder_event", + "happened_at": "2026-03-22T11:07:55.885662" + }, + { + "interaction_id": "008239e9-1779-43d0-b22d-2ab59b40d82f", + "channel": "site_visit", + "happened_at": "2026-02-25T11:07:55.885512" + }, + { + "interaction_id": "a1914394-b783-4cac-9250-ff9eb5331e4b", + "channel": "builder_event", + "happened_at": "2026-02-06T11:07:55.885537" + }, + { + "interaction_id": "534c4ba7-4a39-4bf4-b3dc-3b73c8ee7759", + "channel": "digital_ad", + "happened_at": "2026-01-15T11:07:55.885553" + }, + { + "interaction_id": "5325d4a5-2c85-4a37-ab6c-bba9b4618574", + "channel": "email", + "happened_at": "2026-01-13T11:07:55.885684" + } + ], + "property_interests": [ + { + "project": "Godrej Blue", + "config": "2BHK", + "budget_max": 14942172 + }, + { + "project": "DTC Sojon", + "config": "3BHK", + "budget_max": 5146851 + }, + { + "project": "DTC Good Earth", + "config": "3BHK", + "budget_max": 6834906 + } + ], + "tasks": [ + "Schedule meeting with senior advisor" + ], + "qd_overview": { + "intent_score": 0.558, + "urgency_score": 0.473, + "engagement_score": 0.578 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Share loan documents", + "Introduce relationship manager" + ], + "lead_stage": "booked", + "lead_status": "active" + }, + { + "client_ref": "0754e69f-3bc2-4aee-8a69-fba61fef89d8", + "snapshot_generated_at": "2026-04-18T11:07:55.886666", + "identity": { + "full_name": "Ganesh Mandal", + "primary_email": "ganesh.mandal683@rediffmail.com", + "primary_phone": "+91 9826313349", + "persona_labels": "[\"cash_rich_investor\", \"analytical_buyer\"]", + "buyer_type": "broker_referral" + }, + "account_links": [ + "926a8c60-ae39-4028-a2cb-68f783fd2fe3" + ], + "active_opportunities": [], + "recent_interactions": [ + { + "interaction_id": "19171161-9654-4e2a-936a-cfdfada8480c", + "channel": "site_visit", + "happened_at": "2026-04-15T11:07:55.886339" + }, + { + "interaction_id": "7fefa469-8088-4130-9445-68127051c12a", + "channel": "whatsapp", + "happened_at": "2026-04-14T11:07:55.886227" + }, + { + "interaction_id": "ece0817e-f21a-4360-8bd8-8e089938c23a", + "channel": "site_visit", + "happened_at": "2026-02-04T11:07:55.886314" + } + ], + "property_interests": [ + { + "project": "Atri Aqua", + "config": "2BHK", + "budget_max": 9609174 + }, + { + "project": "Shriram Grand City", + "config": "2BHK", + "budget_max": 8476359 + } + ], + "tasks": [ + "Nudge for final decision" + ], + "qd_overview": { + "intent_score": 0.794, + "urgency_score": 0.777, + "engagement_score": 0.775 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Send project brochure", + "Schedule site visit" + ], + "lead_stage": "inquiry", + "lead_status": "active" + }, + { + "client_ref": "9c65cf85-bcf0-406b-ade5-72e6e4b6927e", + "snapshot_generated_at": "2026-04-18T11:07:55.887612", + "identity": { + "full_name": "Moumita Bose", + "primary_email": "moumita.bose152@gmail.com", + "primary_phone": "+91 8066091571", + "persona_labels": "[\"investment_focus\", \"analytical_buyer\", \"status_buyer\"]", + "buyer_type": "slow_burn_investor" + }, + "account_links": [ + "ccc19201-7df7-4fb9-b3ad-d1eb1edf302c" + ], + "active_opportunities": [ + { + "opportunity_id": "2b921d09-44b9-4a4b-9b30-b912520c9627", + "project": "Sugam Prakriti", + "stage": "negotiation", + "value": 7018823 + } + ], + "recent_interactions": [ + { + "interaction_id": "2ed3a4e9-44c0-4b6e-9b9e-2f155f3f1ca8", + "channel": "whatsapp", + "happened_at": "2026-04-03T11:07:55.887051" + }, + { + "interaction_id": "316f18f4-5939-4c4f-b954-fb70ebafcca2", + "channel": "site_visit", + "happened_at": "2026-04-02T11:07:55.886855" + }, + { + "interaction_id": "235f8271-3bd3-4205-bf13-c724540ef4d6", + "channel": "builder_event", + "happened_at": "2026-03-20T11:07:55.887126" + }, + { + "interaction_id": "1aea9aa8-a694-4331-afec-8fd2b610352d", + "channel": "call", + "happened_at": "2026-03-08T11:07:55.886975" + }, + { + "interaction_id": "d0681aa6-c4ad-4fb8-9792-666742facab9", + "channel": "builder_event", + "happened_at": "2026-01-14T11:07:55.887144" + } + ], + "property_interests": [ + { + "project": "Sugam Prakriti", + "config": "2BHK", + "budget_max": 7169049 + }, + { + "project": "Godrej Elevate", + "config": "3BHK", + "budget_max": 16876517 + } + ], + "tasks": [ + "Check loan approval status" + ], + "qd_overview": { + "intent_score": 0.452, + "urgency_score": 0.48, + "engagement_score": 0.483 + }, + "risk_flags": [ + "multiple_project_comparisons", + "price_objection_raised" + ], + "recommended_next_actions": [ + "Escalate to senior advisor", + "Prepare final offer" + ], + "lead_stage": "negotiation", + "lead_status": "active" + }, + { + "client_ref": "d1734cba-c12b-43fd-bd6c-c931f5dbb7d9", + "snapshot_generated_at": "2026-04-18T11:07:55.888259", + "identity": { + "full_name": "Poulomi Ganguly", + "primary_email": "poulomi.ganguly99@gmail.com", + "primary_phone": "+91 8687502175", + "persona_labels": "[\"investment_focus\", \"cash_rich_investor\"]", + "buyer_type": "nri" + }, + "account_links": [ + "e7bc1d8b-7015-4b81-9df9-933d9a82263b" + ], + "active_opportunities": [ + { + "opportunity_id": "1220bfdf-2660-4e91-ba55-d5d5c87ae23c", + "project": "Eden Devprayag", + "stage": "booked", + "value": 8933044 + } + ], + "recent_interactions": [ + { + "interaction_id": "1e3dd98d-461d-4d0b-8714-5e2a6e18b224", + "channel": "email", + "happened_at": "2026-03-28T11:07:55.887840" + }, + { + "interaction_id": "19a5fbe4-38bb-4564-891d-3bf9a833f94f", + "channel": "builder_event", + "happened_at": "2026-01-08T11:07:55.887795" + }, + { + "interaction_id": "181f6ce4-fb90-48d9-a069-bc8eeab51986", + "channel": "site_visit", + "happened_at": "2025-12-01T11:07:55.887816" + } + ], + "property_interests": [ + { + "project": "Eden Devprayag", + "config": "3BHK", + "budget_max": 9006061 + } + ], + "tasks": [ + "Follow up after site visit" + ], + "qd_overview": { + "intent_score": 0.88, + "urgency_score": 1.0, + "engagement_score": 0.918 + }, + "risk_flags": [], + "recommended_next_actions": [ + "Share loan documents", + "Introduce relationship manager" + ], + "lead_stage": "booked", + "lead_status": "active" + }, + { + "client_ref": "f3ca7bc0-6ba9-44d8-af5b-1f57260ec7e3", + "snapshot_generated_at": "2026-04-18T11:07:55.888875", + "identity": { + "full_name": "Arnav Chowdhury", + "primary_email": "arnav.chowdhury30@yahoo.com", + "primary_phone": "+91 7827912699", + "persona_labels": "[\"first_time_buyer\"]", + "buyer_type": "high_intent" + }, + "account_links": [ + "283303e6-6a31-4582-8839-6075a7675ffb" + ], + "active_opportunities": [ + { + "opportunity_id": "0aa4034b-3654-42ed-bf4a-b2a26981e42b", + "project": "Siddha Sky Waterfront", + "stage": "proposal_sent", + "value": 10012765 + } + ], + "recent_interactions": [ + { + "interaction_id": "5a3bc5c8-12ca-49b4-bca8-1bc5b46b013d", + "channel": "referral", + "happened_at": "2026-01-29T11:07:55.888418" + }, + { + "interaction_id": "84cad989-5040-4825-9bb6-ecfb0ffad545", + "channel": "digital_ad", + "happened_at": "2026-01-12T11:07:55.888511" + }, + { + "interaction_id": "50793e31-0e08-40b2-b597-fddaa7dd6d76", + "channel": "site_visit", + "happened_at": "2026-01-11T11:07:55.888456" + }, + { + "interaction_id": "c16d7a24-f384-46ea-b678-82cbaa4ad6b5", + "channel": "digital_ad", + "happened_at": "2025-11-04T11:07:55.888435" + }, + { + "interaction_id": "95401326-b33c-4b64-b309-5515aace786e", + "channel": "email", + "happened_at": "2025-10-26T11:07:55.888485" + } + ], + "property_interests": [ + { + "project": "Siddha Sky Waterfront", + "config": "3BHK", + "budget_max": 17323850 + }, + { + "project": "DTC Good Earth", + "config": "3BHK", + "budget_max": 8207709 + } + ], + "tasks": [ + "Send legal documents" + ], + "qd_overview": { + "intent_score": 0.921, + "urgency_score": 0.906, + "engagement_score": 0.909 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Chase for decision", + "Address objections" + ], + "lead_stage": "proposal_sent", + "lead_status": "active" + }, + { + "client_ref": "c0bf70c1-1d37-4c7f-94e1-d80ac2a50306", + "snapshot_generated_at": "2026-04-18T11:07:55.889560", + "identity": { + "full_name": "Nilanjan Mondal", + "primary_email": "nilanjan.mondal281@yahoo.com", + "primary_phone": "+91 7724156214", + "persona_labels": "[\"analytical_buyer\"]", + "buyer_type": "nri" + }, + "account_links": [], + "active_opportunities": [], + "recent_interactions": [ + { + "interaction_id": "4748f161-dbca-4fe5-a831-502216d0d8ae", + "channel": "call", + "happened_at": "2026-01-04T11:07:55.889009" + }, + { + "interaction_id": "fbd27ea2-6d71-4e45-b6d2-df033359d27b", + "channel": "site_visit", + "happened_at": "2025-10-30T11:07:55.889120" + }, + { + "interaction_id": "b48d3b01-bb1c-4c60-9c8d-d15dbf214cc3", + "channel": "site_visit", + "happened_at": "2025-10-24T11:07:55.888985" + }, + { + "interaction_id": "ebff2900-1565-4b0c-b4c5-e99d77ce4412", + "channel": "referral", + "happened_at": "2025-10-20T11:07:55.889147" + }, + { + "interaction_id": "ef16166b-e1cd-4648-8cd8-2629068d9fdc", + "channel": "site_visit", + "happened_at": "2025-10-20T11:07:55.889092" + } + ], + "property_interests": [ + { + "project": "Siddha Serena", + "config": "2BHK", + "budget_max": 8651066 + }, + { + "project": "DTC Good Earth", + "config": "2BHK", + "budget_max": 8622335 + } + ], + "tasks": [ + "Share updated price list", + "Send legal documents" + ], + "qd_overview": { + "intent_score": 0.81, + "urgency_score": 0.725, + "engagement_score": 0.831 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Send project brochure", + "Schedule site visit" + ], + "lead_stage": "inquiry", + "lead_status": "active" + }, + { + "client_ref": "8a80acad-4f4d-42d7-9a5c-ff0b77b94313", + "snapshot_generated_at": "2026-04-18T11:07:55.890106", + "identity": { + "full_name": "Namrata Mondal", + "primary_email": "namrata.mondal536@rediffmail.com", + "primary_phone": "+91 9655316364", + "persona_labels": "[\"first_time_buyer\", \"status_buyer\", \"family_centric\"]", + "buyer_type": "nri" + }, + "account_links": [ + "da6384f9-5476-458c-8783-68c3219c1706" + ], + "active_opportunities": [], + "recent_interactions": [ + { + "interaction_id": "b970aba6-8a15-46a3-b682-88efd77587b1", + "channel": "builder_event", + "happened_at": "2026-03-25T11:07:55.889691" + }, + { + "interaction_id": "6343dce0-eb5b-44ed-8b57-ba1e7bee39aa", + "channel": "referral", + "happened_at": "2025-11-28T11:07:55.889675" + }, + { + "interaction_id": "7525b3d2-c331-4991-8b11-caf80f75fc5f", + "channel": "referral", + "happened_at": "2025-11-05T11:07:55.889707" + } + ], + "property_interests": [ + { + "project": "Godrej Blue", + "config": "4BHK", + "budget_max": 12030348 + }, + { + "project": "Eden Devprayag", + "config": "2BHK", + "budget_max": 11303321 + }, + { + "project": "Godrej Elevate", + "config": "4BHK", + "budget_max": 19542451 + } + ], + "tasks": [], + "qd_overview": { + "intent_score": 0.803, + "urgency_score": 0.785, + "engagement_score": 0.767 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Send project brochure", + "Schedule site visit" + ], + "lead_stage": "inquiry", + "lead_status": "active" + }, + { + "client_ref": "088d8d2c-eb7f-40b2-8332-b46a9596fecd", + "snapshot_generated_at": "2026-04-18T11:07:55.891003", + "identity": { + "full_name": "Ajoy Ghosh", + "primary_email": "ajoy.ghosh711@rediffmail.com", + "primary_phone": "+91 8384617549", + "persona_labels": "[\"first_time_buyer\"]", + "buyer_type": "price_sensitive" + }, + "account_links": [], + "active_opportunities": [], + "recent_interactions": [ + { + "interaction_id": "868da71f-0291-4cf3-b455-614e074359bc", + "channel": "builder_event", + "happened_at": "2026-02-19T11:07:55.890331" + }, + { + "interaction_id": "48754df9-3364-4918-82db-ae6ef71c41e6", + "channel": "whatsapp", + "happened_at": "2025-12-29T11:07:55.890449" + }, + { + "interaction_id": "ffa270ac-79f5-4585-97f2-3ddd00815e5f", + "channel": "email", + "happened_at": "2025-12-24T11:07:55.890411" + }, + { + "interaction_id": "c4706aba-3ccf-420c-bfaf-b488f556b4a4", + "channel": "builder_event", + "happened_at": "2025-11-22T11:07:55.890535" + }, + { + "interaction_id": "d00a12a7-f5d1-442a-a10c-a33c009398e4", + "channel": "digital_ad", + "happened_at": "2025-10-18T11:07:55.890349" + } + ], + "property_interests": [ + { + "project": "Siddha Sky Waterfront", + "config": "4BHK", + "budget_max": 13131994 + } + ], + "tasks": [ + "Re-engage after 2 weeks silence" + ], + "qd_overview": { + "intent_score": 0.365, + "urgency_score": 0.34, + "engagement_score": 0.309 + }, + "risk_flags": [ + "no_follow_up_in_30_days", + "decision_stalled_at_family" + ], + "recommended_next_actions": [ + "Re-engage with new offer", + "Check status after 30 days" + ], + "lead_stage": "cold", + "lead_status": "cold" + }, + { + "client_ref": "8d73b35d-23ea-40a7-96f5-a7ee5ca4e577", + "snapshot_generated_at": "2026-04-18T11:07:55.892310", + "identity": { + "full_name": "Ipsita Rao", + "primary_email": "ipsita.rao690@gmail.com", + "primary_phone": "+91 9297096148", + "persona_labels": "[\"family_centric\", \"analytical_buyer\"]", + "buyer_type": "repeat_visitor" + }, + "account_links": [ + "283303e6-6a31-4582-8839-6075a7675ffb" + ], + "active_opportunities": [ + { + "opportunity_id": "390a9de4-4b60-470c-8460-f7552ac9bcc0", + "project": "Siddha Suburbia Bungalow", + "stage": "site_visit_done", + "value": 24839171 + } + ], + "recent_interactions": [ + { + "interaction_id": "71354453-61a8-41b8-bfa0-1e1c0210ada3", + "channel": "call", + "happened_at": "2026-04-16T11:07:55.891343" + }, + { + "interaction_id": "97762163-c24a-4adf-8e5c-bca0c61d49c2", + "channel": "whatsapp", + "happened_at": "2026-04-13T11:07:55.891449" + }, + { + "interaction_id": "b59f2c70-e2cf-4b6f-81ab-62e0f181f4a3", + "channel": "digital_ad", + "happened_at": "2026-03-29T11:07:55.891432" + }, + { + "interaction_id": "a9cd9bb2-81a3-4399-bd41-3a3b1500c003", + "channel": "whatsapp", + "happened_at": "2026-02-26T11:07:55.891263" + }, + { + "interaction_id": "7edf6fac-b1cb-4d3c-8914-c57b87161443", + "channel": "email", + "happened_at": "2026-01-07T11:07:55.891497" + } + ], + "property_interests": [ + { + "project": "Siddha Suburbia Bungalow", + "config": "5BHK", + "budget_max": 20238962 + }, + { + "project": "Godrej Blue", + "config": "2BHK", + "budget_max": 8958455 + }, + { + "project": "Sugam Prakriti", + "config": "4BHK", + "budget_max": 10043049 + } + ], + "tasks": [ + "Send legal documents" + ], + "qd_overview": { + "intent_score": 0.583, + "urgency_score": 0.554, + "engagement_score": 0.557 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Follow up on impressions", + "Send updated price list" + ], + "lead_stage": "site_visit_done", + "lead_status": "active" + }, + { + "client_ref": "c417420c-d97c-4e51-b7da-471237d43506", + "snapshot_generated_at": "2026-04-18T11:07:55.893413", + "identity": { + "full_name": "Madhumita Bagchi", + "primary_email": "madhumita.bagchi488@company.com", + "primary_phone": "+91 9576180666", + "persona_labels": "[\"nri_diaspora\", \"value_seeker\", \"emotional_buyer\"]", + "buyer_type": "slow_burn_investor" + }, + "account_links": [ + "719009b0-4ad2-4ab0-ab36-7144c1c43981" + ], + "active_opportunities": [ + { + "opportunity_id": "62104586-3e91-4d21-b160-3d7777b10e3c", + "project": "Siddha Sky Waterfront", + "stage": "qualified", + "value": 16557906 + } + ], + "recent_interactions": [ + { + "interaction_id": "6d2216e5-0820-4eda-82b7-9d7f12097f16", + "channel": "builder_event", + "happened_at": "2026-03-04T11:07:55.892720" + }, + { + "interaction_id": "f05e859b-073d-406a-9d8e-ac4a7f139aaa", + "channel": "call", + "happened_at": "2025-12-24T11:07:55.892606" + }, + { + "interaction_id": "5147bdb7-ae3a-4209-968e-85b9843066b1", + "channel": "referral", + "happened_at": "2025-12-15T11:07:55.892555" + }, + { + "interaction_id": "b7ddb331-4cb4-4ede-81f7-d10d52e1dbd0", + "channel": "site_visit", + "happened_at": "2025-11-27T11:07:55.892517" + }, + { + "interaction_id": "73016a03-4293-45ed-9736-f2c5bcfd67e9", + "channel": "site_visit", + "happened_at": "2025-11-24T11:07:55.892491" + } + ], + "property_interests": [ + { + "project": "Siddha Sky Waterfront", + "config": "4BHK", + "budget_max": 11251650 + }, + { + "project": "Eden Devprayag", + "config": "3BHK", + "budget_max": 11484391 + }, + { + "project": "DTC Sojon", + "config": "2BHK", + "budget_max": 6051402 + } + ], + "tasks": [ + "Re-engage after 2 weeks silence" + ], + "qd_overview": { + "intent_score": 0.455, + "urgency_score": 0.543, + "engagement_score": 0.401 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Book site visit", + "Share payment plan" + ], + "lead_stage": "qualified", + "lead_status": "active" + }, + { + "client_ref": "69665345-4cfc-4a65-b64e-892e0f12fb96", + "snapshot_generated_at": "2026-04-18T11:07:55.925527", + "identity": { + "full_name": "Antara Mitra", + "primary_email": "antara.mitra943@gmail.com", + "primary_phone": "+91 9902590965", + "persona_labels": "[\"family_centric\", \"value_seeker\", \"emotional_buyer\"]", + "buyer_type": "high_intent" + }, + "account_links": [ + "167e5af1-66b1-41c0-9a9d-42aa9b77a3a7" + ], + "active_opportunities": [ + { + "opportunity_id": "7e80cfa4-4bbb-4c7f-9d88-c8b9792ef89d", + "project": "Siddha Serena", + "stage": "booked", + "value": 6858586 + } + ], + "recent_interactions": [ + { + "interaction_id": "c0b9f6f0-db67-4d72-8c3d-2e990a6e6c66", + "channel": "call", + "happened_at": "2026-04-02T11:07:55.924758" + }, + { + "interaction_id": "c919af9c-2d5b-455d-b289-c6ddcdd925e7", + "channel": "call", + "happened_at": "2026-03-23T11:07:55.893651" + }, + { + "interaction_id": "50ce42e3-e8b9-4555-9c1e-d417f45f1ca5", + "channel": "email", + "happened_at": "2026-01-05T11:07:55.893620" + }, + { + "interaction_id": "98ec670f-ea87-4105-ad3c-2aa7662da830", + "channel": "email", + "happened_at": "2025-12-20T11:07:55.924987" + }, + { + "interaction_id": "c1a0fe6a-765f-4460-bfca-210ea101066b", + "channel": "digital_ad", + "happened_at": "2025-10-07T11:07:55.893601" + } + ], + "property_interests": [ + { + "project": "Siddha Serena", + "config": "2BHK", + "budget_max": 7638233 + }, + { + "project": "Godrej Blue", + "config": "2BHK", + "budget_max": 12551206 + } + ], + "tasks": [ + "Send legal documents", + "Nudge for final decision" + ], + "qd_overview": { + "intent_score": 0.935, + "urgency_score": 1.0, + "engagement_score": 0.993 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Share loan documents", + "Introduce relationship manager" + ], + "lead_stage": "booked", + "lead_status": "active" + }, + { + "client_ref": "8e869aad-116e-49e4-86ba-7ead41c8bb16", + "snapshot_generated_at": "2026-04-18T11:07:55.926373", + "identity": { + "full_name": "Arjun Ganguly", + "primary_email": "arjun.ganguly448@hotmail.com", + "primary_phone": "+91 8073295668", + "persona_labels": "[\"nri_diaspora\"]", + "buyer_type": "nri" + }, + "account_links": [ + "4b56a688-c54f-4460-a12c-8043ea8682ae" + ], + "active_opportunities": [], + "recent_interactions": [ + { + "interaction_id": "0f2e57ac-70ea-4b8f-8832-db36479f0833", + "channel": "whatsapp", + "happened_at": "2026-03-06T11:07:55.925929" + }, + { + "interaction_id": "0258e0a0-1066-48a5-91d9-4d0ef85ea6a7", + "channel": "email", + "happened_at": "2026-02-26T11:07:55.925895" + }, + { + "interaction_id": "c2e50ddc-209f-4104-b731-c5f5659b4ea2", + "channel": "call", + "happened_at": "2026-02-12T11:07:55.925786" + }, + { + "interaction_id": "1fadc488-0fea-47d5-b256-a773f3dfe6f7", + "channel": "builder_event", + "happened_at": "2026-01-07T11:07:55.925755" + }, + { + "interaction_id": "025e9d9b-8a8c-4127-bb6d-2add9301c0b0", + "channel": "email", + "happened_at": "2025-12-20T11:07:55.925725" + } + ], + "property_interests": [ + { + "project": "Shriram Grand City", + "config": "2BHK", + "budget_max": 7733156 + }, + { + "project": "Siddha Sky Waterfront", + "config": "4BHK", + "budget_max": 15472218 + }, + { + "project": "Siddha Suburbia Bungalow", + "config": "4BHK", + "budget_max": 14115955 + } + ], + "tasks": [ + "Send festive offer" + ], + "qd_overview": { + "intent_score": 0.709, + "urgency_score": 0.636, + "engagement_score": 0.61 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Send project brochure", + "Schedule site visit" + ], + "lead_stage": "inquiry", + "lead_status": "active" + }, + { + "client_ref": "0f29e3a8-ee7f-4bad-a640-0e2aebb7a2c3", + "snapshot_generated_at": "2026-04-18T11:07:55.926957", + "identity": { + "full_name": "Debasmita Kundu", + "primary_email": "debasmita.kundu968@yahoo.com", + "primary_phone": "+91 9231172272", + "persona_labels": "[\"analytical_buyer\", \"emotional_buyer\", \"investment_focus\"]", + "buyer_type": "broker_referral" + }, + "account_links": [ + "870432f8-c386-4b6b-94f4-5a61b1ed6038" + ], + "active_opportunities": [ + { + "opportunity_id": "f875e1a4-bf16-4c52-b927-865161c50377", + "project": "Atri Aqua", + "stage": "site_visit_done", + "value": 8629405 + } + ], + "recent_interactions": [ + { + "interaction_id": "bb40c8af-0430-4515-ad3f-492fcf276605", + "channel": "referral", + "happened_at": "2026-03-14T11:07:55.926530" + }, + { + "interaction_id": "869b87a0-ac78-46fd-8f71-59c354366d0e", + "channel": "whatsapp", + "happened_at": "2026-01-31T11:07:55.926547" + }, + { + "interaction_id": "c71a1ae6-b662-48a9-aa92-fe0e5fbe9933", + "channel": "referral", + "happened_at": "2026-01-05T11:07:55.926617" + } + ], + "property_interests": [ + { + "project": "Atri Aqua", + "config": "2BHK", + "budget_max": 9585427 + }, + { + "project": "Siddha Sky Waterfront", + "config": "3BHK", + "budget_max": 13528454 + }, + { + "project": "Shriram Grand City", + "config": "4BHK", + "budget_max": 7509568 + } + ], + "tasks": [ + "Confirm booking appointment" + ], + "qd_overview": { + "intent_score": 0.72, + "urgency_score": 0.768, + "engagement_score": 0.742 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Follow up on impressions", + "Send updated price list" + ], + "lead_stage": "site_visit_done", + "lead_status": "active" + }, + { + "client_ref": "344764f4-5574-4942-a1a9-471e3201f337", + "snapshot_generated_at": "2026-04-18T11:07:55.927721", + "identity": { + "full_name": "Jhuma Chakraborty", + "primary_email": "jhuma.chakraborty947@yahoo.com", + "primary_phone": "+91 7857641458", + "persona_labels": "[\"upgrade_seeker\", \"value_seeker\", \"cash_rich_investor\"]", + "buyer_type": "slow_burn_investor" + }, + "account_links": [ + "b353486d-00ac-4fe1-a3ef-8aab66e3cbe4" + ], + "active_opportunities": [ + { + "opportunity_id": "9925b17d-c575-41c8-ba7a-f3731b273acf", + "project": "Shriram Grand City", + "stage": "proposal_sent", + "value": 8059515 + } + ], + "recent_interactions": [ + { + "interaction_id": "cd7ed0f1-faa3-4357-b819-9e31db653e84", + "channel": "builder_event", + "happened_at": "2026-04-10T11:07:55.927316" + }, + { + "interaction_id": "7a402228-ae34-4a37-8303-b125453ce723", + "channel": "site_visit", + "happened_at": "2026-02-17T11:07:55.927139" + }, + { + "interaction_id": "c21d2e09-2df2-4b49-905a-f03beddca91f", + "channel": "digital_ad", + "happened_at": "2026-02-11T11:07:55.927301" + }, + { + "interaction_id": "bc0fa840-df55-47c8-a36b-8c59c28ca644", + "channel": "referral", + "happened_at": "2026-02-06T11:07:55.927276" + }, + { + "interaction_id": "8166a001-77d3-4e15-b0c1-bfdf6cb8fc8e", + "channel": "digital_ad", + "happened_at": "2026-01-30T11:07:55.927261" + } + ], + "property_interests": [ + { + "project": "Shriram Grand City", + "config": "3BHK", + "budget_max": 10397893 + }, + { + "project": "Godrej Elevate", + "config": "3BHK", + "budget_max": 21756838 + } + ], + "tasks": [ + "Check competitor comparison status", + "Send festive offer" + ], + "qd_overview": { + "intent_score": 0.447, + "urgency_score": 0.422, + "engagement_score": 0.4 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Chase for decision", + "Address objections" + ], + "lead_stage": "proposal_sent", + "lead_status": "active" + }, + { + "client_ref": "4e652d78-5e01-47cc-b9d5-0ac21503bca5", + "snapshot_generated_at": "2026-04-18T11:07:55.928400", + "identity": { + "full_name": "Ashok Mukherjee", + "primary_email": "ashok.mukherjee397@company.com", + "primary_phone": "+91 9708614883", + "persona_labels": "[\"first_time_buyer\", \"nri_diaspora\", \"analytical_buyer\"]", + "buyer_type": "high_intent" + }, + "account_links": [ + "167e5af1-66b1-41c0-9a9d-42aa9b77a3a7" + ], + "active_opportunities": [ + { + "opportunity_id": "9ecf4403-aad5-47cb-a44f-7bea2e92cb6c", + "project": "Godrej Blue", + "stage": "site_visit_done", + "value": 11336655 + } + ], + "recent_interactions": [ + { + "interaction_id": "5db3de2a-f767-4476-94f2-c28cb7217df9", + "channel": "call", + "happened_at": "2026-03-11T11:07:55.927902" + }, + { + "interaction_id": "ba561b22-bb9e-4b23-bdb1-286ce73544bb", + "channel": "site_visit", + "happened_at": "2025-11-28T11:07:55.927854" + }, + { + "interaction_id": "0314ba25-8eb1-4c8a-a75c-3f15851e84e4", + "channel": "referral", + "happened_at": "2025-10-31T11:07:55.927989" + }, + { + "interaction_id": "cc8a8d1b-a161-4f44-a2c3-bbe165de818f", + "channel": "builder_event", + "happened_at": "2025-10-31T11:07:55.927884" + } + ], + "property_interests": [ + { + "project": "Godrej Blue", + "config": "2BHK", + "budget_max": 11977660 + }, + { + "project": "Eden Devprayag", + "config": "2BHK", + "budget_max": 11877010 + } + ], + "tasks": [ + "Check loan approval status", + "Check loan approval status" + ], + "qd_overview": { + "intent_score": 0.879, + "urgency_score": 0.93, + "engagement_score": 0.806 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Follow up on impressions", + "Send updated price list" + ], + "lead_stage": "site_visit_done", + "lead_status": "active" + }, + { + "client_ref": "834c1510-616b-4ea4-ad9b-d500936b8e62", + "snapshot_generated_at": "2026-04-18T11:07:55.928981", + "identity": { + "full_name": "Arjun Das", + "primary_email": "arjun.das199@outlook.com", + "primary_phone": "+91 8451427715", + "persona_labels": "[\"nri_diaspora\", \"analytical_buyer\"]", + "buyer_type": "family_decision_unit" + }, + "account_links": [ + "8aa4d488-571e-4cd4-aa27-8372a49aacbf" + ], + "active_opportunities": [ + { + "opportunity_id": "2a86de07-127e-4268-9c66-01a413998c1c", + "project": "Shriram Grand City", + "stage": "proposal_sent", + "value": 8011077 + } + ], + "recent_interactions": [ + { + "interaction_id": "ce0276b1-b642-4c48-8e9c-18733bd3d19a", + "channel": "builder_event", + "happened_at": "2026-02-25T11:07:55.928561" + }, + { + "interaction_id": "ba0bead2-d20e-49b4-aca8-427948f4f011", + "channel": "email", + "happened_at": "2025-12-15T11:07:55.928602" + }, + { + "interaction_id": "bff82a80-3c0c-4502-8a74-7de9ae7e2990", + "channel": "site_visit", + "happened_at": "2025-12-09T11:07:55.928577" + } + ], + "property_interests": [ + { + "project": "Shriram Grand City", + "config": "4BHK", + "budget_max": 8961291 + }, + { + "project": "Eden Devprayag", + "config": "3BHK", + "budget_max": 11512791 + } + ], + "tasks": [ + "Follow up after site visit" + ], + "qd_overview": { + "intent_score": 0.669, + "urgency_score": 0.639, + "engagement_score": 0.54 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Chase for decision", + "Address objections" + ], + "lead_stage": "proposal_sent", + "lead_status": "active" + }, + { + "client_ref": "38d6bf20-f8aa-481c-a650-49c3b0b1fec4", + "snapshot_generated_at": "2026-04-18T11:07:55.929611", + "identity": { + "full_name": "Sudipta Halder", + "primary_email": "sudipta.halder106@hotmail.com", + "primary_phone": "+91 7459481183", + "persona_labels": "[\"family_centric\", \"value_seeker\"]", + "buyer_type": "broker_referral" + }, + "account_links": [ + "ccc19201-7df7-4fb9-b3ad-d1eb1edf302c" + ], + "active_opportunities": [], + "recent_interactions": [ + { + "interaction_id": "bf3557c8-cc0e-40dd-9f67-c3bf098438cb", + "channel": "digital_ad", + "happened_at": "2026-03-10T11:07:55.929090" + }, + { + "interaction_id": "9d6fd97c-9c33-4530-804f-688ee9f94603", + "channel": "call", + "happened_at": "2026-02-24T11:07:55.929138" + }, + { + "interaction_id": "3058a04d-2e8e-449a-943b-66f2bf7e597d", + "channel": "referral", + "happened_at": "2026-02-02T11:07:55.929108" + }, + { + "interaction_id": "c7be2277-337b-40b5-a1ab-3cafc0c72a6a", + "channel": "referral", + "happened_at": "2025-11-21T11:07:55.929123" + } + ], + "property_interests": [ + { + "project": "Atri Surya Toron", + "config": "2BHK", + "budget_max": 6521963 + }, + { + "project": "Siddha Sky Waterfront", + "config": "4BHK", + "budget_max": 14808213 + }, + { + "project": "Atri Aqua", + "config": "3BHK", + "budget_max": 7551207 + } + ], + "tasks": [ + "Check competitor comparison status", + "Confirm booking appointment" + ], + "qd_overview": { + "intent_score": 0.592, + "urgency_score": 0.497, + "engagement_score": 0.538 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Send project brochure", + "Schedule site visit" + ], + "lead_stage": "inquiry", + "lead_status": "active" + }, + { + "client_ref": "7ceb1b5a-3f92-42db-ad08-7103e0bb6e61", + "snapshot_generated_at": "2026-04-18T11:07:55.930402", + "identity": { + "full_name": "Rajesh Mehta", + "primary_email": "rajesh.mehta282@outlook.com", + "primary_phone": "+91 7061001449", + "persona_labels": "[\"cash_rich_investor\"]", + "buyer_type": "nri" + }, + "account_links": [ + "e890a796-925a-4c14-af19-67fc6360449a" + ], + "active_opportunities": [ + { + "opportunity_id": "a75981d6-b2ec-4c58-9ae9-b0b3d7082d4b", + "project": "Siddha Suburbia Bungalow", + "stage": "negotiation", + "value": 20135582 + } + ], + "recent_interactions": [ + { + "interaction_id": "4cb1afaa-eaf7-4148-a286-59e73d0402a0", + "channel": "whatsapp", + "happened_at": "2026-03-31T11:07:55.929871" + }, + { + "interaction_id": "42defabf-c076-470d-82ad-0af4255d9a71", + "channel": "digital_ad", + "happened_at": "2026-03-18T11:07:55.929963" + }, + { + "interaction_id": "381f42c0-896c-4ff7-b638-d75a80954323", + "channel": "whatsapp", + "happened_at": "2026-02-03T11:07:55.929757" + }, + { + "interaction_id": "4d21fe50-62f3-4e5d-b506-7e619e0cb58e", + "channel": "builder_event", + "happened_at": "2025-11-14T11:07:55.929978" + }, + { + "interaction_id": "d1094b6a-60bb-4d75-8c79-3d3ac2d6caae", + "channel": "referral", + "happened_at": "2025-11-05T11:07:55.929947" + } + ], + "property_interests": [ + { + "project": "Siddha Suburbia Bungalow", + "config": "4BHK", + "budget_max": 22932927 + } + ], + "tasks": [ + "Nudge for final decision" + ], + "qd_overview": { + "intent_score": 0.644, + "urgency_score": 0.566, + "engagement_score": 0.715 + }, + "risk_flags": [ + "decision_stalled_at_family" + ], + "recommended_next_actions": [ + "Escalate to senior advisor", + "Prepare final offer" + ], + "lead_stage": "negotiation", + "lead_status": "active" + }, + { + "client_ref": "870afb2f-5b75-4ae8-bb42-b41230b30247", + "snapshot_generated_at": "2026-04-18T11:07:55.931267", + "identity": { + "full_name": "Sujan Biswas", + "primary_email": "sujan.biswas144@gmail.com", + "primary_phone": "+91 7829326917", + "persona_labels": "[\"upgrade_seeker\"]", + "buyer_type": "slow_burn_investor" + }, + "account_links": [ + "522fdd95-312a-4741-b460-23b17bce070d" + ], + "active_opportunities": [], + "recent_interactions": [ + { + "interaction_id": "be7acb2e-9175-459d-b7d5-ad6b48dbf221", + "channel": "site_visit", + "happened_at": "2026-03-28T11:07:55.930652" + }, + { + "interaction_id": "51d30acd-dbd7-4a9c-8f4e-c361c2dc4d02", + "channel": "whatsapp", + "happened_at": "2026-02-25T11:07:55.930553" + }, + { + "interaction_id": "475f3cb9-1a0f-4628-9f9a-c1eb0d1092a0", + "channel": "referral", + "happened_at": "2025-12-09T11:07:55.930814" + }, + { + "interaction_id": "ecb6dc70-286f-4316-a898-ba3f7c6265f4", + "channel": "digital_ad", + "happened_at": "2025-11-17T11:07:55.930677" + }, + { + "interaction_id": "dc9dc99c-9974-4c72-8c3f-dad054dbe0e3", + "channel": "builder_event", + "happened_at": "2025-11-11T11:07:55.930535" + } + ], + "property_interests": [ + { + "project": "Ambuja Utpaala", + "config": "3BHK", + "budget_max": 10384480 + }, + { + "project": "Godrej Elevate", + "config": "4BHK", + "budget_max": 14848929 + }, + { + "project": "Siddha Serena", + "config": "2BHK", + "budget_max": 7535630 + } + ], + "tasks": [], + "qd_overview": { + "intent_score": 0.354, + "urgency_score": 0.361, + "engagement_score": 0.293 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Send project brochure", + "Schedule site visit" + ], + "lead_stage": "inquiry", + "lead_status": "active" + }, + { + "client_ref": "be4e9b58-51f8-4caa-8796-ee0526dcba5f", + "snapshot_generated_at": "2026-04-18T11:07:55.932369", + "identity": { + "full_name": "Nabanita Mukherjee", + "primary_email": "nabanita.mukherjee544@hotmail.com", + "primary_phone": "+91 9058446131", + "persona_labels": "[\"first_time_buyer\", \"analytical_buyer\"]", + "buyer_type": "slow_burn_investor" + }, + "account_links": [ + "4a2caa8d-83f7-43da-a05a-966330cf9eab" + ], + "active_opportunities": [ + { + "opportunity_id": "4496423c-ca95-4be9-98bc-6fb61d042b57", + "project": "Atri Surya Toron", + "stage": "proposal_sent", + "value": 4566815 + } + ], + "recent_interactions": [ + { + "interaction_id": "a724edef-1812-4ee0-be3e-2fff47826bc7", + "channel": "site_visit", + "happened_at": "2026-03-26T11:07:55.931704" + }, + { + "interaction_id": "7813963e-b739-4e5f-bd78-16c7ceca3c64", + "channel": "referral", + "happened_at": "2026-03-16T11:07:55.931926" + }, + { + "interaction_id": "edf44c11-a140-4dc7-8751-5aca6dc1aefd", + "channel": "whatsapp", + "happened_at": "2026-03-06T11:07:55.931728" + }, + { + "interaction_id": "103013b3-4a46-4181-81c4-cb3060691edb", + "channel": "call", + "happened_at": "2026-01-29T11:07:55.931826" + }, + { + "interaction_id": "0ddb5154-61da-426a-a331-a12b090daf92", + "channel": "whatsapp", + "happened_at": "2026-01-14T11:07:55.931548" + } + ], + "property_interests": [ + { + "project": "Atri Surya Toron", + "config": "3BHK", + "budget_max": 8036751 + }, + { + "project": "DTC Sojon", + "config": "3BHK", + "budget_max": 3962636 + } + ], + "tasks": [ + "Re-engage after 2 weeks silence" + ], + "qd_overview": { + "intent_score": 0.566, + "urgency_score": 0.565, + "engagement_score": 0.464 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Chase for decision", + "Address objections" + ], + "lead_stage": "proposal_sent", + "lead_status": "active" + }, + { + "client_ref": "c5a40327-e1f1-4498-95f9-24a7f5ad693a", + "snapshot_generated_at": "2026-04-18T11:07:55.933334", + "identity": { + "full_name": "Srabanti Joshi", + "primary_email": "srabanti.joshi853@hotmail.com", + "primary_phone": "+91 8243234841", + "persona_labels": "[\"status_buyer\"]", + "buyer_type": "family_decision_unit" + }, + "account_links": [ + "9814396b-0d9f-4407-9116-799d6a7b359f" + ], + "active_opportunities": [], + "recent_interactions": [ + { + "interaction_id": "9d2c6e1f-85e9-4d42-8525-521f1c0a66c8", + "channel": "email", + "happened_at": "2026-04-05T11:07:55.932619" + }, + { + "interaction_id": "aaa73b7d-3c78-4706-87ec-abc1672f41cd", + "channel": "builder_event", + "happened_at": "2026-03-18T11:07:55.932514" + }, + { + "interaction_id": "c0eebaef-089b-4c0d-b46a-4bfd140b3036", + "channel": "digital_ad", + "happened_at": "2026-03-02T11:07:55.932646" + }, + { + "interaction_id": "8b7f860e-8af3-4f24-94b3-435680cbbf23", + "channel": "call", + "happened_at": "2026-02-28T11:07:55.932754" + }, + { + "interaction_id": "649ba573-d0c1-4ef7-a167-2640ddf89b92", + "channel": "whatsapp", + "happened_at": "2026-02-10T11:07:55.932571" + } + ], + "property_interests": [ + { + "project": "Atri Aqua", + "config": "3BHK", + "budget_max": 6622918 + } + ], + "tasks": [ + "Send legal documents" + ], + "qd_overview": { + "intent_score": 0.55, + "urgency_score": 0.571, + "engagement_score": 0.493 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Send project brochure", + "Schedule site visit" + ], + "lead_stage": "inquiry", + "lead_status": "active" + }, + { + "client_ref": "6f088528-9c50-4101-8989-477367278d76", + "snapshot_generated_at": "2026-04-18T11:07:55.934349", + "identity": { + "full_name": "Sumanta Desai", + "primary_email": "sumanta.desai365@hotmail.com", + "primary_phone": "+91 9863355952", + "persona_labels": "[\"cash_rich_investor\", \"investment_focus\"]", + "buyer_type": "repeat_visitor" + }, + "account_links": [ + "522fdd95-312a-4741-b460-23b17bce070d" + ], + "active_opportunities": [ + { + "opportunity_id": "0741cb9a-c01f-4d6b-9a75-07bd937abd1d", + "project": "Siddha Serena", + "stage": "negotiation", + "value": 4924669 + } + ], + "recent_interactions": [ + { + "interaction_id": "0d883877-a7ec-4eaa-a953-61cc1bb9bea9", + "channel": "call", + "happened_at": "2026-04-12T11:07:55.933625" + }, + { + "interaction_id": "7630ed92-4c99-4181-9ed2-97a5632b2a0b", + "channel": "call", + "happened_at": "2026-02-03T11:07:55.933730" + }, + { + "interaction_id": "1cf611e3-7b5c-41ed-87a7-ffa600f65705", + "channel": "email", + "happened_at": "2026-01-14T11:07:55.933699" + }, + { + "interaction_id": "0711647f-bd67-49fc-9f5c-b3dace5341af", + "channel": "call", + "happened_at": "2026-01-14T11:07:55.933559" + }, + { + "interaction_id": "eabe569d-4a2c-4f78-a4a7-c666d96bb939", + "channel": "referral", + "happened_at": "2025-12-22T11:07:55.933808" + } + ], + "property_interests": [ + { + "project": "Siddha Serena", + "config": "2BHK", + "budget_max": 8684005 + }, + { + "project": "Atri Surya Toron", + "config": "3BHK", + "budget_max": 7739388 + } + ], + "tasks": [ + "Send legal documents", + "Send legal documents" + ], + "qd_overview": { + "intent_score": 0.707, + "urgency_score": 0.798, + "engagement_score": 0.742 + }, + "risk_flags": [ + "multiple_project_comparisons", + "decision_stalled_at_family" + ], + "recommended_next_actions": [ + "Escalate to senior advisor", + "Prepare final offer" + ], + "lead_stage": "negotiation", + "lead_status": "active" + }, + { + "client_ref": "e8d454ea-a7c7-4afc-8b7e-939d491abb6a", + "snapshot_generated_at": "2026-04-18T11:07:55.935363", + "identity": { + "full_name": "Meera Mukherjee", + "primary_email": "meera.mukherjee755@hotmail.com", + "primary_phone": "+91 8429031013", + "persona_labels": "[\"upgrade_seeker\"]", + "buyer_type": "price_sensitive" + }, + "account_links": [ + "870432f8-c386-4b6b-94f4-5a61b1ed6038" + ], + "active_opportunities": [ + { + "opportunity_id": "75192b17-658b-4645-a5ee-bb6dc8ba9370", + "project": "Eden Devprayag", + "stage": "negotiation", + "value": 11219550 + } + ], + "recent_interactions": [ + { + "interaction_id": "b1992064-6548-4919-9605-665b4931cd43", + "channel": "referral", + "happened_at": "2026-04-07T11:07:55.934794" + }, + { + "interaction_id": "67a022af-4321-4a36-8504-08201ce40e3a", + "channel": "whatsapp", + "happened_at": "2026-04-04T11:07:55.934733" + }, + { + "interaction_id": "a77f3cf8-6433-47d9-9147-e22066d02ac0", + "channel": "call", + "happened_at": "2026-03-26T11:07:55.934592" + }, + { + "interaction_id": "3d5b05b5-1835-4c43-85e9-e37a597f9abd", + "channel": "call", + "happened_at": "2026-02-10T11:07:55.934810" + }, + { + "interaction_id": "b5673999-f400-4ff8-b119-786c5f561ad8", + "channel": "call", + "happened_at": "2025-12-31T11:07:55.934664" + } + ], + "property_interests": [ + { + "project": "Eden Devprayag", + "config": "2BHK", + "budget_max": 8278381 + }, + { + "project": "Godrej Elevate", + "config": "3BHK", + "budget_max": 14145326 + }, + { + "project": "Ambuja Utpaala", + "config": "3BHK", + "budget_max": 15244490 + } + ], + "tasks": [ + "Nudge for final decision" + ], + "qd_overview": { + "intent_score": 0.407, + "urgency_score": 0.445, + "engagement_score": 0.344 + }, + "risk_flags": [ + "multiple_project_comparisons", + "decision_stalled_at_family" + ], + "recommended_next_actions": [ + "Escalate to senior advisor", + "Prepare final offer" + ], + "lead_stage": "negotiation", + "lead_status": "active" + }, + { + "client_ref": "0776fa7f-5e82-42a7-8c27-79f93a93f446", + "snapshot_generated_at": "2026-04-18T11:07:55.936055", + "identity": { + "full_name": "Prabir Sinha", + "primary_email": "prabir.sinha629@yahoo.com", + "primary_phone": "+91 8864470731", + "persona_labels": "[\"emotional_buyer\", \"nri_diaspora\"]", + "buyer_type": "slow_burn_investor" + }, + "account_links": [ + "c64b5253-b5fb-4f37-b1aa-bd549cb7175f" + ], + "active_opportunities": [], + "recent_interactions": [ + { + "interaction_id": "a59b9f19-abb3-4ea8-a2bc-6ccae0955798", + "channel": "site_visit", + "happened_at": "2026-03-19T11:07:55.935616" + }, + { + "interaction_id": "1cc5f114-a220-41a1-89e3-c8bce1db6ece", + "channel": "builder_event", + "happened_at": "2026-01-07T11:07:55.935534" + }, + { + "interaction_id": "776efcae-29cb-4c38-b39b-7e5b180e4eaa", + "channel": "digital_ad", + "happened_at": "2026-01-04T11:07:55.935642" + }, + { + "interaction_id": "1e296315-e2fa-4929-bfe9-1b4014a8b641", + "channel": "whatsapp", + "happened_at": "2026-01-01T11:07:55.935551" + } + ], + "property_interests": [ + { + "project": "DTC Sojon", + "config": "2BHK", + "budget_max": 4215329 + }, + { + "project": "Siddha Sky Waterfront", + "config": "4BHK", + "budget_max": 15038884 + }, + { + "project": "Sugam Prakriti", + "config": "4BHK", + "budget_max": 7306201 + } + ], + "tasks": [ + "Check loan approval status" + ], + "qd_overview": { + "intent_score": 0.54, + "urgency_score": 0.526, + "engagement_score": 0.562 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Send project brochure", + "Schedule site visit" + ], + "lead_stage": "inquiry", + "lead_status": "active" + }, + { + "client_ref": "91fdfa84-e8eb-445e-870b-36e89f0347fa", + "snapshot_generated_at": "2026-04-18T11:07:55.937499", + "identity": { + "full_name": "Sumita Majumdar", + "primary_email": "sumita.majumdar215@company.com", + "primary_phone": "+91 7202075345", + "persona_labels": "[\"upgrade_seeker\", \"investment_focus\"]", + "buyer_type": "slow_burn_investor" + }, + "account_links": [ + "38190594-f899-49eb-bc88-53964709cf07" + ], + "active_opportunities": [ + { + "opportunity_id": "0ccfdfbc-d63a-47f9-961b-6fbcc9d1faf9", + "project": "Sugam Prakriti", + "stage": "booked", + "value": 7879850 + } + ], + "recent_interactions": [ + { + "interaction_id": "442bbb72-ae46-4c9d-bdd7-47f8ea69dbff", + "channel": "builder_event", + "happened_at": "2026-03-06T11:07:55.936455" + }, + { + "interaction_id": "487aa828-6c20-4847-8562-7d4c24028801", + "channel": "whatsapp", + "happened_at": "2026-02-25T11:07:55.936274" + }, + { + "interaction_id": "91299e6c-a276-4787-88cd-3e709ab8e520", + "channel": "digital_ad", + "happened_at": "2025-10-29T11:07:55.936345" + }, + { + "interaction_id": "340ca97f-1547-4404-ae44-1ed2c25c52ab", + "channel": "call", + "happened_at": "2025-10-07T11:07:55.936365" + } + ], + "property_interests": [ + { + "project": "Sugam Prakriti", + "config": "3BHK", + "budget_max": 8979044 + } + ], + "tasks": [], + "qd_overview": { + "intent_score": 0.805, + "urgency_score": 0.727, + "engagement_score": 0.786 + }, + "risk_flags": [ + "visit_completed_but_silent", + "repeated_no_show" + ], + "recommended_next_actions": [ + "Share loan documents", + "Introduce relationship manager" + ], + "lead_stage": "booked", + "lead_status": "active" + }, + { + "client_ref": "2b204321-de96-4816-967e-ff0dbae8e049", + "snapshot_generated_at": "2026-04-18T11:07:55.940550", + "identity": { + "full_name": "Laboni Rao", + "primary_email": "laboni.rao148@company.com", + "primary_phone": "+91 7545993322", + "persona_labels": "[\"upgrade_seeker\", \"nri_diaspora\"]", + "buyer_type": "high_intent" + }, + "account_links": [ + "d9525127-ff0d-45a0-b6d2-57b735be5c66" + ], + "active_opportunities": [ + { + "opportunity_id": "0ee2f093-8898-4d85-ac39-ff17c6f6ac31", + "project": "Merlin Avana", + "stage": "booked", + "value": 8925566 + } + ], + "recent_interactions": [ + { + "interaction_id": "cdd36c16-96c4-4748-ba76-981fff3b8c82", + "channel": "site_visit", + "happened_at": "2026-02-17T11:07:55.938629" + }, + { + "interaction_id": "60418638-c0f4-4e63-85c1-71c4b6af74f5", + "channel": "call", + "happened_at": "2026-01-01T11:07:55.939091" + }, + { + "interaction_id": "bd1f41b7-93fc-4b14-b2fa-ac51c49d4088", + "channel": "whatsapp", + "happened_at": "2025-11-22T11:07:55.938836" + }, + { + "interaction_id": "d3760804-a1a3-4ca0-8374-00ec5d70c1b2", + "channel": "site_visit", + "happened_at": "2025-11-18T11:07:55.939060" + }, + { + "interaction_id": "633a956a-1246-49b6-97c7-d8e1109c4880", + "channel": "referral", + "happened_at": "2025-11-13T11:07:55.939038" + } + ], + "property_interests": [ + { + "project": "Merlin Avana", + "config": "2BHK", + "budget_max": 12210342 + }, + { + "project": "Sugam Prakriti", + "config": "2BHK", + "budget_max": 10027703 + }, + { + "project": "Godrej Blue", + "config": "2BHK", + "budget_max": 15000806 + } + ], + "tasks": [ + "Confirm booking appointment" + ], + "qd_overview": { + "intent_score": 1.0, + "urgency_score": 0.923, + "engagement_score": 1.0 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Share loan documents", + "Introduce relationship manager" + ], + "lead_stage": "booked", + "lead_status": "active" + }, + { + "client_ref": "a286b72d-c0a6-4fd4-89fb-9feeb569db3c", + "snapshot_generated_at": "2026-04-18T11:07:55.941296", + "identity": { + "full_name": "Rohit Menon", + "primary_email": "rohit.menon689@yahoo.com", + "primary_phone": "+91 8774521705", + "persona_labels": "[\"analytical_buyer\", \"upgrade_seeker\", \"cash_rich_investor\"]", + "buyer_type": "price_sensitive" + }, + "account_links": [ + "83abc8f7-37e5-473d-805e-2f5b39cde2af" + ], + "active_opportunities": [], + "recent_interactions": [ + { + "interaction_id": "00d0e1b4-ba8b-4331-9e99-68f7006ed7e6", + "channel": "builder_event", + "happened_at": "2025-11-11T11:07:55.940774" + }, + { + "interaction_id": "9be58b76-9551-4b5c-91da-be2387820573", + "channel": "digital_ad", + "happened_at": "2025-10-19T11:07:55.940853" + }, + { + "interaction_id": "c4ecba41-a184-4c47-bcd0-e8556441ae49", + "channel": "email", + "happened_at": "2025-10-16T11:07:55.940808" + } + ], + "property_interests": [ + { + "project": "Ambuja Utpaala", + "config": "4BHK", + "budget_max": 11627627 + } + ], + "tasks": [ + "Check competitor comparison status" + ], + "qd_overview": { + "intent_score": 0.328, + "urgency_score": 0.301, + "engagement_score": 0.268 + }, + "risk_flags": [], + "recommended_next_actions": [ + "Send project brochure", + "Schedule site visit" + ], + "lead_stage": "inquiry", + "lead_status": "active" + }, + { + "client_ref": "fac56177-d06c-49df-81b6-35dc3c283e56", + "snapshot_generated_at": "2026-04-18T11:07:55.942034", + "identity": { + "full_name": "Abhirup Mondal", + "primary_email": "abhirup.mondal57@outlook.com", + "primary_phone": "+91 9623102467", + "persona_labels": "[\"analytical_buyer\"]", + "buyer_type": "family_decision_unit" + }, + "account_links": [ + "163d9a41-edb2-4b87-a032-08b339898377" + ], + "active_opportunities": [ + { + "opportunity_id": "6b5e527f-9f7b-4492-b162-07095f5b1fb9", + "project": "Godrej Elevate", + "stage": "booked", + "value": 18606978 + } + ], + "recent_interactions": [ + { + "interaction_id": "2280360b-dc32-4219-a495-525b4dea8e71", + "channel": "digital_ad", + "happened_at": "2026-03-11T11:07:55.941562" + }, + { + "interaction_id": "f1aabd4c-4653-468d-abac-92ec323f6f89", + "channel": "call", + "happened_at": "2025-12-09T11:07:55.941582" + }, + { + "interaction_id": "065afb1c-2d8c-4104-9315-d062ba080f51", + "channel": "referral", + "happened_at": "2025-11-18T11:07:55.941543" + } + ], + "property_interests": [ + { + "project": "Godrej Elevate", + "config": "4BHK", + "budget_max": 20666949 + }, + { + "project": "DTC Sojon", + "config": "3BHK", + "budget_max": 7462226 + }, + { + "project": "Godrej Blue", + "config": "2BHK", + "budget_max": 8647565 + } + ], + "tasks": [ + "Schedule meeting with senior advisor" + ], + "qd_overview": { + "intent_score": 0.765, + "urgency_score": 0.792, + "engagement_score": 0.906 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Share loan documents", + "Introduce relationship manager" + ], + "lead_stage": "booked", + "lead_status": "active" + }, + { + "client_ref": "c3e23388-ef24-4cd1-9c4f-3084abd5f670", + "snapshot_generated_at": "2026-04-18T11:07:55.942676", + "identity": { + "full_name": "Meera Mehta", + "primary_email": "meera.mehta804@hotmail.com", + "primary_phone": "+91 9849720249", + "persona_labels": "[\"cash_rich_investor\", \"upgrade_seeker\", \"status_buyer\"]", + "buyer_type": "high_intent" + }, + "account_links": [ + "83abc8f7-37e5-473d-805e-2f5b39cde2af" + ], + "active_opportunities": [ + { + "opportunity_id": "0124d2dc-1b34-46e4-a6ea-09e96976b19b", + "project": "Merlin Avana", + "stage": "proposal_sent", + "value": 11136322 + } + ], + "recent_interactions": [ + { + "interaction_id": "d2551bf6-cc17-4e3b-80bb-d1d6235fcb29", + "channel": "referral", + "happened_at": "2026-04-07T11:07:55.942224" + }, + { + "interaction_id": "4a1cd2fe-7927-45a4-bb56-f94fecd66623", + "channel": "email", + "happened_at": "2026-02-07T11:07:55.942283" + }, + { + "interaction_id": "a9a379a3-6463-4dc3-8585-a745e3ee55c8", + "channel": "site_visit", + "happened_at": "2025-12-23T11:07:55.942258" + }, + { + "interaction_id": "3bdb68c9-58d9-4421-afdc-38c9e3fb9255", + "channel": "referral", + "happened_at": "2025-11-09T11:07:55.942243" + } + ], + "property_interests": [ + { + "project": "Merlin Avana", + "config": "4BHK", + "budget_max": 15208565 + } + ], + "tasks": [], + "qd_overview": { + "intent_score": 0.823, + "urgency_score": 0.717, + "engagement_score": 0.814 + }, + "risk_flags": [ + "repeated_no_show" + ], + "recommended_next_actions": [ + "Chase for decision", + "Address objections" + ], + "lead_stage": "proposal_sent", + "lead_status": "active" + }, + { + "client_ref": "cdc02bf2-3f9f-4bdb-9801-0b43ac7e0aa2", + "snapshot_generated_at": "2026-04-18T11:07:55.943918", + "identity": { + "full_name": "Gopal Bose", + "primary_email": "gopal.bose33@rediffmail.com", + "primary_phone": "+91 9591428265", + "persona_labels": "[\"first_time_buyer\"]", + "buyer_type": "slow_burn_investor" + }, + "account_links": [ + "ccc19201-7df7-4fb9-b3ad-d1eb1edf302c" + ], + "active_opportunities": [ + { + "opportunity_id": "3dda150b-ab54-41d7-a2f4-7fe5ba1a0e9f", + "project": "DTC Sojon", + "stage": "proposal_sent", + "value": 5406997 + } + ], + "recent_interactions": [ + { + "interaction_id": "e7c6ff35-c5f4-4472-a27a-e721d732029e", + "channel": "referral", + "happened_at": "2026-01-23T11:07:55.942843" + }, + { + "interaction_id": "55d08fc5-d901-4ab8-ac9d-7673a098ef87", + "channel": "digital_ad", + "happened_at": "2025-12-22T11:07:55.942889" + }, + { + "interaction_id": "3d13d525-4488-45ab-85bf-93d7c89d9adb", + "channel": "site_visit", + "happened_at": "2025-12-21T11:07:55.942860" + }, + { + "interaction_id": "4d30bbac-b669-45dd-9abd-20bffd68dd88", + "channel": "digital_ad", + "happened_at": "2025-10-17T11:07:55.942905" + } + ], + "property_interests": [ + { + "project": "DTC Sojon", + "config": "1BHK", + "budget_max": 5550862 + }, + { + "project": "Siddha Sky Waterfront", + "config": "4BHK", + "budget_max": 17667822 + } + ], + "tasks": [ + "Send festive offer" + ], + "qd_overview": { + "intent_score": 0.526, + "urgency_score": 0.516, + "engagement_score": 0.474 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Chase for decision", + "Address objections" + ], + "lead_stage": "proposal_sent", + "lead_status": "active" + }, + { + "client_ref": "2c6f6023-ef93-4750-9ade-a06379be48e3", + "snapshot_generated_at": "2026-04-18T11:07:55.944854", + "identity": { + "full_name": "Ajoy Lahiri", + "primary_email": "ajoy.lahiri400@rediffmail.com", + "primary_phone": "+91 8324242560", + "persona_labels": "[\"analytical_buyer\", \"first_time_buyer\"]", + "buyer_type": "slow_burn_investor" + }, + "account_links": [ + "0d840fb4-dbe4-4fba-b4a7-01aff24a3e15" + ], + "active_opportunities": [ + { + "opportunity_id": "f5314c97-0e03-4e81-94b9-c965abd738d7", + "project": "Atri Surya Toron", + "stage": "negotiation", + "value": 4567270 + } + ], + "recent_interactions": [ + { + "interaction_id": "5bdc7e07-35b8-4152-9879-c4a1847aae63", + "channel": "site_visit", + "happened_at": "2026-03-31T11:07:55.944336" + }, + { + "interaction_id": "7ec462d2-d458-4e60-a680-12df8aaf1b3a", + "channel": "whatsapp", + "happened_at": "2026-03-31T11:07:55.944252" + }, + { + "interaction_id": "84cc5ee0-ae15-4fd4-ba36-31bf6c6d4307", + "channel": "site_visit", + "happened_at": "2026-02-20T11:07:55.944166" + }, + { + "interaction_id": "8f54329c-1780-4ee4-9d8b-b9364468d326", + "channel": "site_visit", + "happened_at": "2025-12-08T11:07:55.944365" + } + ], + "property_interests": [ + { + "project": "Atri Surya Toron", + "config": "3BHK", + "budget_max": 5078926 + } + ], + "tasks": [ + "Share updated price list" + ], + "qd_overview": { + "intent_score": 0.465, + "urgency_score": 0.571, + "engagement_score": 0.472 + }, + "risk_flags": [ + "decision_stalled_at_family" + ], + "recommended_next_actions": [ + "Escalate to senior advisor", + "Prepare final offer" + ], + "lead_stage": "negotiation", + "lead_status": "active" + }, + { + "client_ref": "1c8e549e-fc62-48df-91d0-345424b4ab21", + "snapshot_generated_at": "2026-04-18T11:07:55.945787", + "identity": { + "full_name": "Sumanta Chowdhury", + "primary_email": "sumanta.chowdhury781@hotmail.com", + "primary_phone": "+91 8835657356", + "persona_labels": "[\"nri_diaspora\", \"value_seeker\", \"upgrade_seeker\"]", + "buyer_type": "repeat_visitor" + }, + "account_links": [ + "680245f4-619c-40a1-90ff-c098cccf2f41" + ], + "active_opportunities": [], + "recent_interactions": [ + { + "interaction_id": "1098c3a7-16a9-417c-bbca-617d284646e9", + "channel": "builder_event", + "happened_at": "2026-03-12T11:07:55.945248" + }, + { + "interaction_id": "b92727f6-e0f4-447a-aa13-dd2f23a6f07e", + "channel": "digital_ad", + "happened_at": "2026-02-23T11:07:55.945264" + }, + { + "interaction_id": "5229a40e-ca58-457b-9f0f-42299784f531", + "channel": "call", + "happened_at": "2026-02-11T11:07:55.945077" + }, + { + "interaction_id": "60401c0d-5af8-479a-94ce-c716eab58ee2", + "channel": "referral", + "happened_at": "2025-12-22T11:07:55.945060" + }, + { + "interaction_id": "09a10258-a485-403f-9fb4-c4e06907246d", + "channel": "referral", + "happened_at": "2025-10-01T11:07:55.945215" + } + ], + "property_interests": [ + { + "project": "Siddha Suburbia Bungalow", + "config": "5BHK", + "budget_max": 15721984 + }, + { + "project": "DTC Good Earth", + "config": "2BHK", + "budget_max": 7810095 + } + ], + "tasks": [ + "Check loan approval status", + "Check competitor comparison status", + "Check competitor comparison status", + "Check loan approval status" + ], + "qd_overview": { + "intent_score": 0.407, + "urgency_score": 0.524, + "engagement_score": 0.477 + }, + "risk_flags": [ + "no_follow_up_in_30_days", + "multiple_project_comparisons", + "decision_stalled_at_family" + ], + "recommended_next_actions": [ + "Re-engage with new offer", + "Check status after 30 days" + ], + "lead_stage": "cold", + "lead_status": "cold" + }, + { + "client_ref": "f8b2f20e-b0b6-4d9f-bb02-db9373bd080c", + "snapshot_generated_at": "2026-04-18T11:07:55.946545", + "identity": { + "full_name": "Tanmoy Bagchi", + "primary_email": "tanmoy.bagchi816@gmail.com", + "primary_phone": "+91 8294281103", + "persona_labels": "[\"first_time_buyer\", \"analytical_buyer\", \"value_seeker\"]", + "buyer_type": "high_intent" + }, + "account_links": [ + "9814396b-0d9f-4407-9116-799d6a7b359f" + ], + "active_opportunities": [ + { + "opportunity_id": "7f9d2655-01ee-41ae-bc62-62eefbceeec3", + "project": "Shriram Grand City", + "stage": "proposal_sent", + "value": 5745130 + } + ], + "recent_interactions": [ + { + "interaction_id": "c532d969-623c-4c45-b6d1-ac47d6e34614", + "channel": "digital_ad", + "happened_at": "2026-04-04T11:07:55.946177" + }, + { + "interaction_id": "3b03e5f9-ac7f-4784-97d9-f9adb2573129", + "channel": "site_visit", + "happened_at": "2026-04-02T11:07:55.946128" + }, + { + "interaction_id": "438f1858-ec42-455f-805b-e0cf99043001", + "channel": "call", + "happened_at": "2026-03-21T11:07:55.946039" + }, + { + "interaction_id": "33dbb959-ad7d-4b90-bf3d-a975219b21b3", + "channel": "builder_event", + "happened_at": "2026-02-19T11:07:55.946155" + }, + { + "interaction_id": "c3d25255-12e3-44a9-8a62-2196d21babef", + "channel": "site_visit", + "happened_at": "2026-01-26T11:07:55.945997" + } + ], + "property_interests": [ + { + "project": "Shriram Grand City", + "config": "2BHK", + "budget_max": 9062775 + }, + { + "project": "Sugam Prakriti", + "config": "3BHK", + "budget_max": 7735883 + }, + { + "project": "Godrej Elevate", + "config": "4BHK", + "budget_max": 16230329 + } + ], + "tasks": [ + "Check competitor comparison status" + ], + "qd_overview": { + "intent_score": 0.835, + "urgency_score": 0.972, + "engagement_score": 0.915 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Chase for decision", + "Address objections" + ], + "lead_stage": "proposal_sent", + "lead_status": "active" + }, + { + "client_ref": "a2f1f22b-a82d-4e85-9afe-9143800f7972", + "snapshot_generated_at": "2026-04-18T11:07:55.947657", + "identity": { + "full_name": "Aritra Iyer", + "primary_email": "aritra.iyer587@company.com", + "primary_phone": "+91 9059429798", + "persona_labels": "[\"analytical_buyer\"]", + "buyer_type": "nri" + }, + "account_links": [ + "719009b0-4ad2-4ab0-ab36-7144c1c43981" + ], + "active_opportunities": [], + "recent_interactions": [ + { + "interaction_id": "5ad7157b-6b7b-4358-8ae1-c4bcf7f45345", + "channel": "builder_event", + "happened_at": "2026-04-06T11:07:55.946881" + }, + { + "interaction_id": "539a86ac-e39b-4103-9cde-5cf5c1b2f56b", + "channel": "digital_ad", + "happened_at": "2026-03-23T11:07:55.946858" + }, + { + "interaction_id": "06f4ba26-5a9b-4b88-a496-b86865145233", + "channel": "whatsapp", + "happened_at": "2026-03-17T11:07:55.946745" + }, + { + "interaction_id": "6c7f495a-8bfe-40ce-a251-800006493f13", + "channel": "whatsapp", + "happened_at": "2026-02-28T11:07:55.946907" + }, + { + "interaction_id": "d90b9a00-3545-4565-ab44-773b58347145", + "channel": "builder_event", + "happened_at": "2025-10-07T11:07:55.946722" + } + ], + "property_interests": [ + { + "project": "Sugam Prakriti", + "config": "3BHK", + "budget_max": 6782208 + }, + { + "project": "Shriram Grand City", + "config": "4BHK", + "budget_max": 11023436 + } + ], + "tasks": [], + "qd_overview": { + "intent_score": 0.722, + "urgency_score": 0.68, + "engagement_score": 0.665 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Send project brochure", + "Schedule site visit" + ], + "lead_stage": "inquiry", + "lead_status": "active" + }, + { + "client_ref": "88eb18a8-f813-4419-bacd-2d499bb7a3b1", + "snapshot_generated_at": "2026-04-18T11:07:55.948797", + "identity": { + "full_name": "Gautam Majumdar", + "primary_email": "gautam.majumdar510@company.com", + "primary_phone": "+91 9942575986", + "persona_labels": "[\"first_time_buyer\", \"value_seeker\"]", + "buyer_type": "nri" + }, + "account_links": [ + "da6384f9-5476-458c-8783-68c3219c1706" + ], + "active_opportunities": [ + { + "opportunity_id": "2833ee0d-313e-46e6-99ba-a9a8b169e940", + "project": "DTC Sojon", + "stage": "qualified", + "value": 5381783 + } + ], + "recent_interactions": [ + { + "interaction_id": "a58c2784-86dc-4469-a8b8-1bdc96bbecc4", + "channel": "digital_ad", + "happened_at": "2026-02-12T11:07:55.948247" + }, + { + "interaction_id": "9443fa38-3fbd-4920-a12f-2e3c8a1f673c", + "channel": "referral", + "happened_at": "2026-02-08T11:07:55.948295" + }, + { + "interaction_id": "5a18f507-5f14-433e-ab11-89931d1dd3b2", + "channel": "site_visit", + "happened_at": "2026-01-06T11:07:55.948266" + }, + { + "interaction_id": "afd77c31-bf84-4836-a53e-cbbcbeab484d", + "channel": "whatsapp", + "happened_at": "2025-11-11T11:07:55.948125" + }, + { + "interaction_id": "48fd1bdc-9227-4ab6-98b0-e6096ba24b78", + "channel": "site_visit", + "happened_at": "2025-10-31T11:07:55.948315" + } + ], + "property_interests": [ + { + "project": "DTC Sojon", + "config": "1BHK", + "budget_max": 6962066 + }, + { + "project": "Godrej Blue", + "config": "2BHK", + "budget_max": 12440006 + }, + { + "project": "Eden Devprayag", + "config": "2BHK", + "budget_max": 11694463 + } + ], + "tasks": [ + "Schedule meeting with senior advisor", + "Check competitor comparison status" + ], + "qd_overview": { + "intent_score": 0.783, + "urgency_score": 0.767, + "engagement_score": 0.762 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Book site visit", + "Share payment plan" + ], + "lead_stage": "qualified", + "lead_status": "active" + }, + { + "client_ref": "96796e23-41ae-4399-b43a-720fbe211b57", + "snapshot_generated_at": "2026-04-18T11:07:55.949479", + "identity": { + "full_name": "Gopal Das", + "primary_email": "gopal.das253@outlook.com", + "primary_phone": "+91 7204253178", + "persona_labels": "[\"investment_focus\", \"family_centric\"]", + "buyer_type": "high_intent" + }, + "account_links": [ + "870432f8-c386-4b6b-94f4-5a61b1ed6038" + ], + "active_opportunities": [], + "recent_interactions": [ + { + "interaction_id": "c27ec67d-6f7c-42e5-b804-bbf5a3453656", + "channel": "whatsapp", + "happened_at": "2026-03-16T11:07:55.948986" + }, + { + "interaction_id": "f6089738-d739-47dc-bd73-7a7dda387152", + "channel": "digital_ad", + "happened_at": "2026-01-06T11:07:55.949102" + }, + { + "interaction_id": "a80cfe85-d18e-4968-988e-2d3eb716e66a", + "channel": "builder_event", + "happened_at": "2025-10-22T11:07:55.949086" + }, + { + "interaction_id": "72789bcf-140c-42c3-839e-cdad94c52161", + "channel": "referral", + "happened_at": "2025-10-15T11:07:55.948968" + } + ], + "property_interests": [ + { + "project": "Sugam Prakriti", + "config": "3BHK", + "budget_max": 9684577 + }, + { + "project": "DTC Good Earth", + "config": "2BHK", + "budget_max": 7028122 + }, + { + "project": "Atri Aqua", + "config": "3BHK", + "budget_max": 7019037 + } + ], + "tasks": [], + "qd_overview": { + "intent_score": 0.812, + "urgency_score": 0.773, + "engagement_score": 0.83 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Send project brochure", + "Schedule site visit" + ], + "lead_stage": "inquiry", + "lead_status": "active" + }, + { + "client_ref": "9989191b-f5c7-4bdc-8b50-68a2f61dafc7", + "snapshot_generated_at": "2026-04-18T11:07:55.950392", + "identity": { + "full_name": "Vivek Sarkar", + "primary_email": "vivek.sarkar318@yahoo.com", + "primary_phone": "+91 7763362851", + "persona_labels": "[\"upgrade_seeker\", \"value_seeker\", \"investment_focus\"]", + "buyer_type": "broker_referral" + }, + "account_links": [ + "0da71c1a-6d84-4b1e-a572-0e7e7ac323c2" + ], + "active_opportunities": [ + { + "opportunity_id": "83da3470-6475-4ad8-8dd7-9c66e54ab0bd", + "project": "Sugam Prakriti", + "stage": "qualified", + "value": 6923044 + } + ], + "recent_interactions": [ + { + "interaction_id": "52056d6e-a01e-4965-a727-263e37d1a04c", + "channel": "call", + "happened_at": "2026-03-22T11:07:55.949729" + }, + { + "interaction_id": "07e29c94-e4f2-4964-9605-34286a7a5b96", + "channel": "site_visit", + "happened_at": "2026-03-11T11:07:55.949671" + }, + { + "interaction_id": "fd86d470-0065-46fe-8ccb-a49a363eea74", + "channel": "digital_ad", + "happened_at": "2026-02-05T11:07:55.949894" + }, + { + "interaction_id": "7092494e-ba4d-48d7-998a-7943b9228c42", + "channel": "site_visit", + "happened_at": "2025-10-24T11:07:55.949702" + }, + { + "interaction_id": "719d61cb-5cf5-4cac-acdc-a2c8ecdacf4f", + "channel": "email", + "happened_at": "2025-10-17T11:07:55.949826" + } + ], + "property_interests": [ + { + "project": "Sugam Prakriti", + "config": "2BHK", + "budget_max": 7003609 + }, + { + "project": "DTC Good Earth", + "config": "2BHK", + "budget_max": 9155924 + }, + { + "project": "Godrej Elevate", + "config": "3BHK", + "budget_max": 20966221 + } + ], + "tasks": [], + "qd_overview": { + "intent_score": 0.543, + "urgency_score": 0.637, + "engagement_score": 0.598 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Book site visit", + "Share payment plan" + ], + "lead_stage": "qualified", + "lead_status": "active" + }, + { + "client_ref": "af45e9fe-dc1d-4b41-a9cb-364111ff49c3", + "snapshot_generated_at": "2026-04-18T11:07:55.951263", + "identity": { + "full_name": "Subhro Chakraborty", + "primary_email": "subhro.chakraborty729@outlook.com", + "primary_phone": "+91 9457001032", + "persona_labels": "[\"nri_diaspora\", \"upgrade_seeker\"]", + "buyer_type": "nri" + }, + "account_links": [ + "da6384f9-5476-458c-8783-68c3219c1706" + ], + "active_opportunities": [ + { + "opportunity_id": "19f77cea-0873-49ce-ad53-c1219323fdc6", + "project": "Shriram Grand City", + "stage": "negotiation", + "value": 8858818 + } + ], + "recent_interactions": [ + { + "interaction_id": "8e92b8cd-8468-4f99-a885-e5c6083b24b2", + "channel": "digital_ad", + "happened_at": "2026-01-16T11:07:55.950817" + }, + { + "interaction_id": "953ef89d-6b9c-40f4-a50b-e11b6f7f60c2", + "channel": "builder_event", + "happened_at": "2026-01-10T11:07:55.950883" + }, + { + "interaction_id": "f0ee9b60-7740-4e8f-b3bc-5ee434b71048", + "channel": "email", + "happened_at": "2026-01-03T11:07:55.950852" + }, + { + "interaction_id": "4292da10-39e0-49c7-b624-6bafbb5f19a7", + "channel": "call", + "happened_at": "2025-11-27T11:07:55.950724" + }, + { + "interaction_id": "4c80f9ac-5518-4027-8932-fb4247ab0f2f", + "channel": "digital_ad", + "happened_at": "2025-10-27T11:07:55.950835" + } + ], + "property_interests": [ + { + "project": "Shriram Grand City", + "config": "4BHK", + "budget_max": 6566708 + } + ], + "tasks": [ + "Nudge for final decision" + ], + "qd_overview": { + "intent_score": 0.608, + "urgency_score": 0.687, + "engagement_score": 0.604 + }, + "risk_flags": [ + "decision_stalled_at_family" + ], + "recommended_next_actions": [ + "Escalate to senior advisor", + "Prepare final offer" + ], + "lead_stage": "negotiation", + "lead_status": "active" + }, + { + "client_ref": "cee8c28f-f2a3-456e-beac-0b3a1cba2108", + "snapshot_generated_at": "2026-04-18T11:07:55.952200", + "identity": { + "full_name": "Sunita Menon", + "primary_email": "sunita.menon298@hotmail.com", + "primary_phone": "+91 7679488767", + "persona_labels": "[\"value_seeker\"]", + "buyer_type": "nri" + }, + "account_links": [ + "98ccca21-7413-4609-9b7b-c93f5ee87ff8" + ], + "active_opportunities": [], + "recent_interactions": [ + { + "interaction_id": "f522f81b-8dd0-41be-a378-2a4811380227", + "channel": "digital_ad", + "happened_at": "2026-04-17T11:07:55.951721" + }, + { + "interaction_id": "b17d7681-2825-424d-981f-edb3687ee762", + "channel": "builder_event", + "happened_at": "2026-03-16T11:07:55.951738" + }, + { + "interaction_id": "4b4a579f-9fe8-4a9e-89af-e624295fd029", + "channel": "site_visit", + "happened_at": "2026-01-26T11:07:55.951694" + }, + { + "interaction_id": "28115e8b-91d1-437f-9eab-38745e37fdc3", + "channel": "referral", + "happened_at": "2025-11-11T11:07:55.951634" + }, + { + "interaction_id": "f3fff737-d05d-495d-8780-42e04d6b1bfe", + "channel": "site_visit", + "happened_at": "2025-11-05T11:07:55.951753" + } + ], + "property_interests": [ + { + "project": "Ambuja Utpaala", + "config": "4BHK", + "budget_max": 11349561 + }, + { + "project": "Siddha Serena", + "config": "2BHK", + "budget_max": 6743867 + }, + { + "project": "Sugam Prakriti", + "config": "4BHK", + "budget_max": 10994299 + } + ], + "tasks": [ + "Schedule meeting with senior advisor" + ], + "qd_overview": { + "intent_score": 0.412, + "urgency_score": 0.444, + "engagement_score": 0.471 + }, + "risk_flags": [ + "no_follow_up_in_30_days", + "multiple_project_comparisons", + "decision_stalled_at_family" + ], + "recommended_next_actions": [ + "Re-engage with new offer", + "Check status after 30 days" + ], + "lead_stage": "dropped", + "lead_status": "dropped" + }, + { + "client_ref": "27919455-6b98-4e70-9bb8-bde79da8f413", + "snapshot_generated_at": "2026-04-18T11:07:55.953226", + "identity": { + "full_name": "Saurav Sinha", + "primary_email": "saurav.sinha413@outlook.com", + "primary_phone": "+91 9221688140", + "persona_labels": "[\"nri_diaspora\"]", + "buyer_type": "family_decision_unit" + }, + "account_links": [ + "d9525127-ff0d-45a0-b6d2-57b735be5c66" + ], + "active_opportunities": [ + { + "opportunity_id": "88b3a9b1-83e2-4c88-af3e-2b494a55ff0d", + "project": "Ambuja Utpaala", + "stage": "proposal_sent", + "value": 13909052 + } + ], + "recent_interactions": [ + { + "interaction_id": "f2623a43-6206-430b-8d96-8713518673a8", + "channel": "email", + "happened_at": "2026-04-15T11:07:55.952489" + }, + { + "interaction_id": "6945ddbd-eda0-4b75-ac4f-577e004e0ec9", + "channel": "whatsapp", + "happened_at": "2026-03-21T11:07:55.952400" + }, + { + "interaction_id": "cef6f279-6a1a-4db9-bbc2-2ff843f42561", + "channel": "email", + "happened_at": "2026-03-17T11:07:55.952575" + }, + { + "interaction_id": "a9204684-5d72-489e-af43-da36068f4b6e", + "channel": "builder_event", + "happened_at": "2026-03-07T11:07:55.952472" + }, + { + "interaction_id": "63c59dd5-6ae8-470e-93bf-059002af9399", + "channel": "call", + "happened_at": "2026-02-21T11:07:55.952605" + } + ], + "property_interests": [ + { + "project": "Ambuja Utpaala", + "config": "2BHK", + "budget_max": 11071003 + }, + { + "project": "Siddha Sky Waterfront", + "config": "3BHK", + "budget_max": 10963385 + } + ], + "tasks": [ + "Check loan approval status", + "Schedule meeting with senior advisor" + ], + "qd_overview": { + "intent_score": 0.534, + "urgency_score": 0.476, + "engagement_score": 0.452 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Chase for decision", + "Address objections" + ], + "lead_stage": "proposal_sent", + "lead_status": "active" + }, + { + "client_ref": "6260229f-f55b-4920-89bd-00084ecfff1d", + "snapshot_generated_at": "2026-04-18T11:07:55.954303", + "identity": { + "full_name": "Priya Ghosh", + "primary_email": "priya.ghosh91@yahoo.com", + "primary_phone": "+91 8584325528", + "persona_labels": "[\"nri_diaspora\", \"status_buyer\"]", + "buyer_type": "nri" + }, + "account_links": [ + "38190594-f899-49eb-bc88-53964709cf07" + ], + "active_opportunities": [ + { + "opportunity_id": "db2b484e-2d30-4423-ba25-a4ff684f23b5", + "project": "Sugam Prakriti", + "stage": "site_visit_done", + "value": 9183950 + } + ], + "recent_interactions": [ + { + "interaction_id": "acbb411f-2e29-46bd-b79c-5374461e57c3", + "channel": "whatsapp", + "happened_at": "2026-04-05T11:07:55.953644" + }, + { + "interaction_id": "bd2c512a-0c88-4e5a-a9ad-1535fb9e6799", + "channel": "site_visit", + "happened_at": "2026-03-01T11:07:55.953540" + }, + { + "interaction_id": "d8016bae-50e0-490e-9a3b-c2133294fb87", + "channel": "email", + "happened_at": "2026-02-09T11:07:55.953575" + }, + { + "interaction_id": "b4418b9e-48fb-449e-a2c2-df678751a004", + "channel": "call", + "happened_at": "2025-12-19T11:07:55.953415" + }, + { + "interaction_id": "764b1a5b-a84f-43e5-8cd0-efe9fb442b39", + "channel": "site_visit", + "happened_at": "2025-12-08T11:07:55.953615" + } + ], + "property_interests": [ + { + "project": "Sugam Prakriti", + "config": "3BHK", + "budget_max": 8171793 + }, + { + "project": "Siddha Suburbia Bungalow", + "config": "5BHK", + "budget_max": 15931357 + } + ], + "tasks": [], + "qd_overview": { + "intent_score": 0.751, + "urgency_score": 0.669, + "engagement_score": 0.731 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Follow up on impressions", + "Send updated price list" + ], + "lead_stage": "site_visit_done", + "lead_status": "active" + }, + { + "client_ref": "7392c761-ad6a-4fea-a8f9-2cc61a7f5a52", + "snapshot_generated_at": "2026-04-18T11:07:55.955295", + "identity": { + "full_name": "Lakshmi Kundu", + "primary_email": "lakshmi.kundu67@outlook.com", + "primary_phone": "+91 7066968840", + "persona_labels": "[\"value_seeker\", \"investment_focus\", \"upgrade_seeker\"]", + "buyer_type": "high_intent" + }, + "account_links": [ + "98ccca21-7413-4609-9b7b-c93f5ee87ff8" + ], + "active_opportunities": [ + { + "opportunity_id": "1cfa00c8-928b-4ba8-b6e9-a824d18f4eee", + "project": "Merlin Avana", + "stage": "site_visit_done", + "value": 8418608 + } + ], + "recent_interactions": [ + { + "interaction_id": "906d507d-54bc-4e51-aea6-52190151d85c", + "channel": "email", + "happened_at": "2026-03-27T11:07:55.954492" + }, + { + "interaction_id": "75dd2cf4-f46f-4a0a-844d-8dabd813acb0", + "channel": "whatsapp", + "happened_at": "2026-03-13T11:07:55.954522" + }, + { + "interaction_id": "df212b88-c9fe-4b30-b7fb-d27871c0d4e8", + "channel": "referral", + "happened_at": "2026-02-25T11:07:55.954475" + }, + { + "interaction_id": "57356cbd-739b-4724-af3a-99b66248eb5e", + "channel": "call", + "happened_at": "2026-01-04T11:07:55.954651" + }, + { + "interaction_id": "57a070f0-660c-4e36-9061-30b70ca9fc22", + "channel": "email", + "happened_at": "2025-11-08T11:07:55.954754" + } + ], + "property_interests": [ + { + "project": "Merlin Avana", + "config": "3BHK", + "budget_max": 10070794 + }, + { + "project": "DTC Sojon", + "config": "2BHK", + "budget_max": 4508122 + } + ], + "tasks": [], + "qd_overview": { + "intent_score": 0.818, + "urgency_score": 0.704, + "engagement_score": 0.832 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Follow up on impressions", + "Send updated price list" + ], + "lead_stage": "site_visit_done", + "lead_status": "active" + }, + { + "client_ref": "eeb5f764-0459-465e-ad49-3e23b64cd3d5", + "snapshot_generated_at": "2026-04-18T11:07:55.957125", + "identity": { + "full_name": "Chandana Joshi", + "primary_email": "chandana.joshi603@company.com", + "primary_phone": "+91 8495057590", + "persona_labels": "[\"first_time_buyer\", \"investment_focus\", \"value_seeker\"]", + "buyer_type": "high_intent" + }, + "account_links": [ + "719009b0-4ad2-4ab0-ab36-7144c1c43981" + ], + "active_opportunities": [], + "recent_interactions": [ + { + "interaction_id": "eb0901f2-26d8-4a6e-a4b8-962a2159bc02", + "channel": "referral", + "happened_at": "2026-04-11T11:07:55.955554" + }, + { + "interaction_id": "7ba0ed7c-c5ac-4fd0-867c-153d48c389c7", + "channel": "email", + "happened_at": "2026-03-31T11:07:55.956091" + }, + { + "interaction_id": "5b17552c-e0c2-4c79-b0b6-a64ddd24e134", + "channel": "digital_ad", + "happened_at": "2026-03-24T11:07:55.955577" + }, + { + "interaction_id": "be616b93-ba6e-490e-8cc3-58313642ad50", + "channel": "whatsapp", + "happened_at": "2026-03-16T11:07:55.955972" + }, + { + "interaction_id": "90faf091-7217-4099-93d2-c7a05e3f5c0a", + "channel": "whatsapp", + "happened_at": "2026-03-13T11:07:55.955607" + } + ], + "property_interests": [ + { + "project": "Siddha Serena", + "config": "2BHK", + "budget_max": 8660238 + } + ], + "tasks": [ + "Confirm booking appointment", + "Follow up after site visit" + ], + "qd_overview": { + "intent_score": 0.62, + "urgency_score": 0.676, + "engagement_score": 0.574 + }, + "risk_flags": [ + "no_follow_up_in_30_days", + "price_objection_raised" + ], + "recommended_next_actions": [ + "Re-engage with new offer", + "Check status after 30 days" + ], + "lead_stage": "dropped", + "lead_status": "dropped" + }, + { + "client_ref": "676f8eb7-363e-4986-8144-271ad837036f", + "snapshot_generated_at": "2026-04-18T11:07:55.958379", + "identity": { + "full_name": "Nandita Iyer", + "primary_email": "nandita.iyer355@hotmail.com", + "primary_phone": "+91 9670918974", + "persona_labels": "[\"investment_focus\", \"family_centric\", \"emotional_buyer\"]", + "buyer_type": "repeat_visitor" + }, + "account_links": [ + "167e5af1-66b1-41c0-9a9d-42aa9b77a3a7" + ], + "active_opportunities": [ + { + "opportunity_id": "40c07de9-b91a-483a-a88e-26f1aeb18aaf", + "project": "Atri Surya Toron", + "stage": "qualified", + "value": 4650439 + } + ], + "recent_interactions": [ + { + "interaction_id": "5645ccea-cd50-44f2-afe7-6c020ec7e64b", + "channel": "builder_event", + "happened_at": "2025-12-02T11:07:55.957531" + }, + { + "interaction_id": "324ccb06-e7dd-4212-b28c-d9a3f9f28c1c", + "channel": "digital_ad", + "happened_at": "2025-10-26T11:07:55.957501" + }, + { + "interaction_id": "9b72314d-7e8b-475f-8411-fe9a48e27f86", + "channel": "email", + "happened_at": "2025-10-14T11:07:55.957465" + } + ], + "property_interests": [ + { + "project": "Atri Surya Toron", + "config": "2BHK", + "budget_max": 8171963 + }, + { + "project": "Sugam Prakriti", + "config": "2BHK", + "budget_max": 9094170 + }, + { + "project": "Merlin Avana", + "config": "2BHK", + "budget_max": 9351064 + } + ], + "tasks": [ + "Send festive offer" + ], + "qd_overview": { + "intent_score": 0.602, + "urgency_score": 0.63, + "engagement_score": 0.622 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Book site visit", + "Share payment plan" + ], + "lead_stage": "qualified", + "lead_status": "active" + }, + { + "client_ref": "a313ddc9-12ca-4d37-81fd-d1b277e95438", + "snapshot_generated_at": "2026-04-18T11:07:55.962585", + "identity": { + "full_name": "Naresh Bhadra", + "primary_email": "naresh.bhadra828@outlook.com", + "primary_phone": "+91 9193852715", + "persona_labels": "[\"cash_rich_investor\"]", + "buyer_type": "slow_burn_investor" + }, + "account_links": [ + "d0f173da-010e-43de-b222-8535c26cfcfc" + ], + "active_opportunities": [ + { + "opportunity_id": "510a42ae-5889-4de3-a4a8-57027a4fb7f7", + "project": "Atri Aqua", + "stage": "negotiation", + "value": 5824267 + } + ], + "recent_interactions": [ + { + "interaction_id": "5949bd2b-dd7e-4f24-9430-c18480ef9af4", + "channel": "call", + "happened_at": "2026-03-18T11:07:55.959920" + }, + { + "interaction_id": "851522b1-868c-4776-98c2-13873e76aa14", + "channel": "digital_ad", + "happened_at": "2026-03-14T11:07:55.960922" + }, + { + "interaction_id": "0f3b7d91-9cdd-4507-a243-f8fa8794e010", + "channel": "digital_ad", + "happened_at": "2026-03-13T11:07:55.959598" + }, + { + "interaction_id": "ffab04ae-bef7-4c80-bf53-470f9de14c69", + "channel": "email", + "happened_at": "2026-02-03T11:07:55.959676" + }, + { + "interaction_id": "7f1ccc5f-7293-4a21-8afb-9ce2410e1a17", + "channel": "email", + "happened_at": "2025-11-17T11:07:55.960223" + } + ], + "property_interests": [ + { + "project": "Atri Aqua", + "config": "2BHK", + "budget_max": 8658615 + }, + { + "project": "DTC Good Earth", + "config": "2BHK", + "budget_max": 7934927 + }, + { + "project": "DTC Sojon", + "config": "2BHK", + "budget_max": 5312274 + } + ], + "tasks": [], + "qd_overview": { + "intent_score": 0.397, + "urgency_score": 0.392, + "engagement_score": 0.465 + }, + "risk_flags": [ + "multiple_project_comparisons", + "decision_stalled_at_family" + ], + "recommended_next_actions": [ + "Escalate to senior advisor", + "Prepare final offer" + ], + "lead_stage": "negotiation", + "lead_status": "active" + }, + { + "client_ref": "a9c6daba-54c3-4d90-98ab-99c453cd1743", + "snapshot_generated_at": "2026-04-18T11:07:55.964443", + "identity": { + "full_name": "Rupali Pillai", + "primary_email": "rupali.pillai955@rediffmail.com", + "primary_phone": "+91 9238952727", + "persona_labels": "[\"family_centric\", \"analytical_buyer\", \"nri_diaspora\"]", + "buyer_type": "broker_referral" + }, + "account_links": [ + "163d9a41-edb2-4b87-a032-08b339898377" + ], + "active_opportunities": [ + { + "opportunity_id": "73465e29-63a7-4636-b482-141ed0d3bf55", + "project": "Atri Surya Toron", + "stage": "proposal_sent", + "value": 6532170 + } + ], + "recent_interactions": [ + { + "interaction_id": "f9a080e5-7cf3-4351-b901-253e65c0b7c0", + "channel": "call", + "happened_at": "2026-01-12T11:07:55.963733" + }, + { + "interaction_id": "84401b41-f7b9-4a78-98dc-20325afdf28b", + "channel": "site_visit", + "happened_at": "2026-01-07T11:07:55.963377" + }, + { + "interaction_id": "05517f02-f811-44bc-808b-3d6ed3bd710c", + "channel": "email", + "happened_at": "2025-12-14T11:07:55.963529" + }, + { + "interaction_id": "2cd0cf2d-5919-422a-ae1a-c698ceefda42", + "channel": "call", + "happened_at": "2025-11-22T11:07:55.963592" + }, + { + "interaction_id": "0007b940-9bb9-4949-8c46-967dff072149", + "channel": "call", + "happened_at": "2025-10-30T11:07:55.963216" + } + ], + "property_interests": [ + { + "project": "Atri Surya Toron", + "config": "2BHK", + "budget_max": 7241763 + }, + { + "project": "Siddha Suburbia Bungalow", + "config": "4BHK", + "budget_max": 13259012 + }, + { + "project": "Siddha Serena", + "config": "2BHK", + "budget_max": 8555707 + } + ], + "tasks": [ + "Send festive offer" + ], + "qd_overview": { + "intent_score": 0.533, + "urgency_score": 0.616, + "engagement_score": 0.605 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Chase for decision", + "Address objections" + ], + "lead_stage": "proposal_sent", + "lead_status": "active" + }, + { + "client_ref": "235eb77c-90e2-45c8-91c5-693d3cf66d65", + "snapshot_generated_at": "2026-04-18T11:07:55.965261", + "identity": { + "full_name": "Suravi Majumdar", + "primary_email": "suravi.majumdar304@gmail.com", + "primary_phone": "+91 8870369767", + "persona_labels": "[\"first_time_buyer\", \"nri_diaspora\", \"cash_rich_investor\"]", + "buyer_type": "high_intent" + }, + "account_links": [ + "83abc8f7-37e5-473d-805e-2f5b39cde2af" + ], + "active_opportunities": [ + { + "opportunity_id": "b2b8d520-16a7-4b52-8d88-83e1d974ba10", + "project": "Merlin Avana", + "stage": "qualified", + "value": 11960346 + } + ], + "recent_interactions": [ + { + "interaction_id": "49016d12-c9c9-4d41-8a30-997ce90cf8c1", + "channel": "referral", + "happened_at": "2026-03-09T11:07:55.964752" + }, + { + "interaction_id": "dd8d34c1-6d4c-47ae-aba2-7b3cbc781c52", + "channel": "digital_ad", + "happened_at": "2026-02-25T11:07:55.964737" + }, + { + "interaction_id": "c9b6f473-13f2-4312-938c-c898544e1047", + "channel": "digital_ad", + "happened_at": "2026-02-21T11:07:55.964766" + }, + { + "interaction_id": "0c14c7f2-8559-4e72-a1d3-5d0e2ffdf83b", + "channel": "call", + "happened_at": "2026-02-09T11:07:55.964784" + }, + { + "interaction_id": "c41570f0-2bc3-4617-b6bf-86ee827e17a3", + "channel": "builder_event", + "happened_at": "2026-01-04T11:07:55.964694" + } + ], + "property_interests": [ + { + "project": "Merlin Avana", + "config": "3BHK", + "budget_max": 10743462 + }, + { + "project": "Siddha Sky Waterfront", + "config": "4BHK", + "budget_max": 10631249 + }, + { + "project": "Godrej Blue", + "config": "2BHK", + "budget_max": 7751695 + } + ], + "tasks": [ + "Share updated price list", + "Check competitor comparison status" + ], + "qd_overview": { + "intent_score": 0.701, + "urgency_score": 0.678, + "engagement_score": 0.793 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Book site visit", + "Share payment plan" + ], + "lead_stage": "qualified", + "lead_status": "active" + }, + { + "client_ref": "e6ee8582-a00b-42ba-a91a-c2f4dee4030c", + "snapshot_generated_at": "2026-04-18T11:07:55.966018", + "identity": { + "full_name": "Anirban Banerjee", + "primary_email": "anirban.banerjee845@company.com", + "primary_phone": "+91 7633567557", + "persona_labels": "[\"analytical_buyer\", \"emotional_buyer\"]", + "buyer_type": "slow_burn_investor" + }, + "account_links": [ + "283303e6-6a31-4582-8839-6075a7675ffb" + ], + "active_opportunities": [ + { + "opportunity_id": "219fe4c9-4551-4893-86a0-5418aa97f023", + "project": "DTC Sojon", + "stage": "site_visit_done", + "value": 3513524 + } + ], + "recent_interactions": [ + { + "interaction_id": "77625dc0-b09b-4b8a-a5f9-3a743c60c06f", + "channel": "email", + "happened_at": "2026-04-04T11:07:55.965429" + }, + { + "interaction_id": "355e2ce3-9631-41d5-a9cc-06c9fb305450", + "channel": "builder_event", + "happened_at": "2026-03-05T11:07:55.965541" + }, + { + "interaction_id": "774517ff-2bf3-49f9-949e-89fe91b2d831", + "channel": "digital_ad", + "happened_at": "2026-02-28T11:07:55.965399" + }, + { + "interaction_id": "5200fad0-0479-4c33-87e2-019848dc1e61", + "channel": "site_visit", + "happened_at": "2026-02-19T11:07:55.965455" + }, + { + "interaction_id": "7e4dcef8-00bb-4687-88c8-d28268149aa3", + "channel": "digital_ad", + "happened_at": "2025-12-05T11:07:55.965511" + } + ], + "property_interests": [ + { + "project": "DTC Sojon", + "config": "2BHK", + "budget_max": 5113069 + } + ], + "tasks": [ + "Nudge for final decision" + ], + "qd_overview": { + "intent_score": 0.543, + "urgency_score": 0.498, + "engagement_score": 0.541 + }, + "risk_flags": [], + "recommended_next_actions": [ + "Follow up on impressions", + "Send updated price list" + ], + "lead_stage": "site_visit_done", + "lead_status": "active" + }, + { + "client_ref": "803ede13-da5d-4a3a-83ba-f6e73fa38729", + "snapshot_generated_at": "2026-04-18T11:07:55.966820", + "identity": { + "full_name": "Ankita Nandi", + "primary_email": "ankita.nandi782@gmail.com", + "primary_phone": "+91 8664617282", + "persona_labels": "[\"nri_diaspora\", \"upgrade_seeker\"]", + "buyer_type": "family_decision_unit" + }, + "account_links": [ + "0d840fb4-dbe4-4fba-b4a7-01aff24a3e15" + ], + "active_opportunities": [ + { + "opportunity_id": "3dbcb315-03be-491b-b268-61aa780cd948", + "project": "Merlin Avana", + "stage": "qualified", + "value": 13619332 + } + ], + "recent_interactions": [ + { + "interaction_id": "1e9db4f5-cf45-4d9b-8412-7c26593bf1c7", + "channel": "call", + "happened_at": "2026-01-06T11:07:55.966224" + }, + { + "interaction_id": "6fa383ad-e4d2-48c5-9ae0-03c6ef267e27", + "channel": "referral", + "happened_at": "2025-12-23T11:07:55.966326" + }, + { + "interaction_id": "abbef899-bb73-4d77-83c4-eb499c421b3c", + "channel": "digital_ad", + "happened_at": "2025-11-06T11:07:55.966307" + }, + { + "interaction_id": "e83fb69e-59ee-4dc6-a688-30157a5ca544", + "channel": "site_visit", + "happened_at": "2025-10-27T11:07:55.966177" + }, + { + "interaction_id": "37a567f3-12f6-45e8-aa29-07dc16bf2263", + "channel": "email", + "happened_at": "2025-09-30T11:07:55.966341" + } + ], + "property_interests": [ + { + "project": "Merlin Avana", + "config": "4BHK", + "budget_max": 14211254 + } + ], + "tasks": [], + "qd_overview": { + "intent_score": 0.639, + "urgency_score": 0.674, + "engagement_score": 0.691 + }, + "risk_flags": [ + "price_objection_raised" + ], + "recommended_next_actions": [ + "Book site visit", + "Share payment plan" + ], + "lead_stage": "qualified", + "lead_status": "active" + }, + { + "client_ref": "4fb288cc-2103-4cee-a367-e501bfaf569e", + "snapshot_generated_at": "2026-04-18T11:07:55.967482", + "identity": { + "full_name": "Srabanti Seal", + "primary_email": "srabanti.seal19@rediffmail.com", + "primary_phone": "+91 8394184320", + "persona_labels": "[\"emotional_buyer\", \"status_buyer\"]", + "buyer_type": "family_decision_unit" + }, + "account_links": [], + "active_opportunities": [ + { + "opportunity_id": "1608f23b-8707-45a9-a8ea-074b05ce31f4", + "project": "Siddha Serena", + "stage": "proposal_sent", + "value": 6238439 + } + ], + "recent_interactions": [ + { + "interaction_id": "04ca20cf-f5f6-45ba-b67d-610488252e3b", + "channel": "builder_event", + "happened_at": "2026-02-04T11:07:55.967020" + }, + { + "interaction_id": "5053b0a4-4411-405f-a5ef-cf035b579e42", + "channel": "digital_ad", + "happened_at": "2025-12-13T11:07:55.967035" + }, + { + "interaction_id": "eedfd9c9-aa5e-4127-b6f1-af6d9b3b2988", + "channel": "site_visit", + "happened_at": "2025-12-01T11:07:55.967050" + } + ], + "property_interests": [ + { + "project": "Siddha Serena", + "config": "3BHK", + "budget_max": 6754746 + }, + { + "project": "Siddha Sky Waterfront", + "config": "4BHK", + "budget_max": 14337299 + } + ], + "tasks": [ + "Share updated price list", + "Send festive offer", + "Share updated price list" + ], + "qd_overview": { + "intent_score": 0.547, + "urgency_score": 0.57, + "engagement_score": 0.592 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Chase for decision", + "Address objections" + ], + "lead_stage": "proposal_sent", + "lead_status": "active" + }, + { + "client_ref": "92f3abdf-7121-40d4-a773-c805fb4f5b96", + "snapshot_generated_at": "2026-04-18T11:07:55.968203", + "identity": { + "full_name": "Reema Lahiri", + "primary_email": "reema.lahiri493@rediffmail.com", + "primary_phone": "+91 7256780070", + "persona_labels": "[\"cash_rich_investor\", \"first_time_buyer\", \"analytical_buyer\"]", + "buyer_type": "nri" + }, + "account_links": [ + "926a8c60-ae39-4028-a2cb-68f783fd2fe3" + ], + "active_opportunities": [ + { + "opportunity_id": "fe0f5d48-cf19-48c4-9f1c-1ef3e6d9b173", + "project": "Sugam Prakriti", + "stage": "negotiation", + "value": 8202002 + } + ], + "recent_interactions": [ + { + "interaction_id": "9e8e578d-6899-4827-a193-0d105acff191", + "channel": "email", + "happened_at": "2026-01-29T11:07:55.967686" + }, + { + "interaction_id": "cb183013-a820-413c-a238-4ad22e1a03a4", + "channel": "referral", + "happened_at": "2026-01-15T11:07:55.967671" + }, + { + "interaction_id": "fede4eda-6e6c-4daa-8275-a44a669b8dae", + "channel": "call", + "happened_at": "2025-11-13T11:07:55.967738" + }, + { + "interaction_id": "4e39b658-8b1a-4a4a-a0ee-e77382eb49da", + "channel": "site_visit", + "happened_at": "2025-11-03T11:07:55.967821" + }, + { + "interaction_id": "ed84ed9d-1f2a-4029-9d30-c6be4393bd6f", + "channel": "digital_ad", + "happened_at": "2025-10-22T11:07:55.967716" + } + ], + "property_interests": [ + { + "project": "Sugam Prakriti", + "config": "4BHK", + "budget_max": 7631479 + } + ], + "tasks": [ + "Send legal documents" + ], + "qd_overview": { + "intent_score": 0.722, + "urgency_score": 0.734, + "engagement_score": 0.648 + }, + "risk_flags": [ + "decision_stalled_at_family" + ], + "recommended_next_actions": [ + "Escalate to senior advisor", + "Prepare final offer" + ], + "lead_stage": "negotiation", + "lead_status": "active" + }, + { + "client_ref": "6e003060-59be-4856-850e-55ee7eeabfe1", + "snapshot_generated_at": "2026-04-18T11:07:55.969072", + "identity": { + "full_name": "Laboni Rao", + "primary_email": "laboni.rao291@rediffmail.com", + "primary_phone": "+91 8286932278", + "persona_labels": "[\"first_time_buyer\", \"upgrade_seeker\"]", + "buyer_type": "repeat_visitor" + }, + "account_links": [ + "49fbf504-dd6b-4be1-a90d-d1a9d5acb417" + ], + "active_opportunities": [ + { + "opportunity_id": "526198b6-ad7e-48aa-8b6f-37c1fd122342", + "project": "Merlin Avana", + "stage": "qualified", + "value": 11946893 + } + ], + "recent_interactions": [ + { + "interaction_id": "785f5f5d-093d-4964-b74b-f220d5c3f248", + "channel": "site_visit", + "happened_at": "2026-01-17T11:07:55.968474" + }, + { + "interaction_id": "a90dd968-3ce1-46dc-ad01-deaa7c00cd4a", + "channel": "builder_event", + "happened_at": "2026-01-04T11:07:55.968460" + }, + { + "interaction_id": "c5eacfa5-9d93-49d7-9ff8-48444cb26ffe", + "channel": "builder_event", + "happened_at": "2026-01-01T11:07:55.968443" + }, + { + "interaction_id": "403e45bc-2fcb-4cb9-a494-e751a936512b", + "channel": "call", + "happened_at": "2025-10-03T11:07:55.968368" + } + ], + "property_interests": [ + { + "project": "Merlin Avana", + "config": "3BHK", + "budget_max": 10305284 + } + ], + "tasks": [], + "qd_overview": { + "intent_score": 0.711, + "urgency_score": 0.63, + "engagement_score": 0.648 + }, + "risk_flags": [ + "no_follow_up_in_30_days" + ], + "recommended_next_actions": [ + "Book site visit", + "Share payment plan" + ], + "lead_stage": "qualified", + "lead_status": "active" + }, + { + "client_ref": "7e7cc248-604f-4036-ac06-ad63cd7af0ab", + "snapshot_generated_at": "2026-04-18T11:07:55.969950", + "identity": { + "full_name": "Debasmita Chowdhury", + "primary_email": "debasmita.chowdhury33@company.com", + "primary_phone": "+91 8404755006", + "persona_labels": "[\"cash_rich_investor\"]", + "buyer_type": "high_intent" + }, + "account_links": [ + "4b56a688-c54f-4460-a12c-8043ea8682ae" + ], + "active_opportunities": [], + "recent_interactions": [ + { + "interaction_id": "9e27b097-9938-4765-9197-027d5b58d89b", + "channel": "site_visit", + "happened_at": "2026-03-17T11:07:55.969406" + }, + { + "interaction_id": "4dc6bebf-b3a8-447c-ac52-93edc1ffc6b5", + "channel": "referral", + "happened_at": "2026-01-16T11:07:55.969506" + }, + { + "interaction_id": "5c28e979-a232-45fd-a3f1-34c3aeb38dc9", + "channel": "email", + "happened_at": "2026-01-01T11:07:55.969526" + }, + { + "interaction_id": "5a9bb359-5ed4-48d5-8b16-ff28c8f959f9", + "channel": "whatsapp", + "happened_at": "2025-12-24T11:07:55.969437" + }, + { + "interaction_id": "575873f6-ec50-409a-b442-ddae75df1ff0", + "channel": "builder_event", + "happened_at": "2025-11-21T11:07:55.969311" + } + ], + "property_interests": [ + { + "project": "Godrej Elevate", + "config": "3BHK", + "budget_max": 20745156 + }, + { + "project": "Sugam Prakriti", + "config": "3BHK", + "budget_max": 10897371 + }, + { + "project": "Siddha Sky Waterfront", + "config": "4BHK", + "budget_max": 18829409 + } + ], + "tasks": [ + "Check competitor comparison status", + "Send legal documents" + ], + "qd_overview": { + "intent_score": 0.911, + "urgency_score": 0.849, + "engagement_score": 0.804 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Send project brochure", + "Schedule site visit" + ], + "lead_stage": "inquiry", + "lead_status": "active" + }, + { + "client_ref": "35508d7f-2c44-473c-ab94-df6576e1a667", + "snapshot_generated_at": "2026-04-18T11:07:55.970637", + "identity": { + "full_name": "Rekha Kundu", + "primary_email": "rekha.kundu190@rediffmail.com", + "primary_phone": "+91 9831969851", + "persona_labels": "[\"status_buyer\"]", + "buyer_type": "price_sensitive" + }, + "account_links": [ + "38190594-f899-49eb-bc88-53964709cf07" + ], + "active_opportunities": [ + { + "opportunity_id": "dc1a8eb5-528f-427f-8efa-befdb7be5c06", + "project": "Merlin Avana", + "stage": "site_visit_done", + "value": 12860095 + } + ], + "recent_interactions": [ + { + "interaction_id": "38ca83cb-fa79-4964-ad3c-58c1c36d0a42", + "channel": "digital_ad", + "happened_at": "2026-04-11T11:07:55.970244" + }, + { + "interaction_id": "925e4338-2ae9-49b3-a666-10bbae70da1a", + "channel": "digital_ad", + "happened_at": "2026-03-24T11:07:55.970167" + }, + { + "interaction_id": "72dd81ae-59db-4280-88ce-32116197cb11", + "channel": "referral", + "happened_at": "2026-02-09T11:07:55.970213" + }, + { + "interaction_id": "e20ec2a5-c1e2-4806-ad13-4af4f4fd6b23", + "channel": "builder_event", + "happened_at": "2026-01-20T11:07:55.970182" + }, + { + "interaction_id": "0c882b4f-2bfd-408a-8eb3-8e6f43c8b850", + "channel": "builder_event", + "happened_at": "2026-01-14T11:07:55.970228" + } + ], + "property_interests": [ + { + "project": "Merlin Avana", + "config": "4BHK", + "budget_max": 17424216 + }, + { + "project": "DTC Sojon", + "config": "1BHK", + "budget_max": 4509553 + } + ], + "tasks": [ + "Nudge for final decision" + ], + "qd_overview": { + "intent_score": 0.545, + "urgency_score": 0.622, + "engagement_score": 0.615 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Follow up on impressions", + "Send updated price list" + ], + "lead_stage": "site_visit_done", + "lead_status": "active" + }, + { + "client_ref": "bd710882-1bf8-4643-9b88-8ae7839b0a80", + "snapshot_generated_at": "2026-04-18T11:07:55.971476", + "identity": { + "full_name": "Aditya Bhadra", + "primary_email": "aditya.bhadra689@outlook.com", + "primary_phone": "+91 8406470575", + "persona_labels": "[\"upgrade_seeker\"]", + "buyer_type": "high_intent" + }, + "account_links": [ + "0c28253b-3c45-4128-ab2d-de054685657b" + ], + "active_opportunities": [ + { + "opportunity_id": "934aa99a-36e7-4127-9b91-6b47142f4b36", + "project": "Siddha Serena", + "stage": "qualified", + "value": 5444566 + } + ], + "recent_interactions": [ + { + "interaction_id": "fc4f681f-1edd-4a72-861e-2673f100ef7a", + "channel": "email", + "happened_at": "2026-03-22T11:07:55.970895" + }, + { + "interaction_id": "5ec4a9fa-309e-44f3-9bb7-45e3ef5e75e7", + "channel": "digital_ad", + "happened_at": "2026-01-23T11:07:55.971054" + }, + { + "interaction_id": "b77bcdf9-355c-49ec-b8c4-867dc6a61996", + "channel": "email", + "happened_at": "2026-01-02T11:07:55.971076" + }, + { + "interaction_id": "a720dfa3-d18e-44b8-bcfe-198fa5137984", + "channel": "referral", + "happened_at": "2025-12-27T11:07:55.970879" + }, + { + "interaction_id": "c83441eb-e922-4032-ae33-e3ec2d8dd86c", + "channel": "builder_event", + "happened_at": "2025-12-14T11:07:55.970838" + } + ], + "property_interests": [ + { + "project": "Siddha Serena", + "config": "2BHK", + "budget_max": 8759909 + }, + { + "project": "Siddha Suburbia Bungalow", + "config": "5BHK", + "budget_max": 15282410 + }, + { + "project": "Sugam Prakriti", + "config": "3BHK", + "budget_max": 8672797 + } + ], + "tasks": [ + "Check loan approval status" + ], + "qd_overview": { + "intent_score": 0.871, + "urgency_score": 0.971, + "engagement_score": 0.872 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Book site visit", + "Share payment plan" + ], + "lead_stage": "qualified", + "lead_status": "active" + }, + { + "client_ref": "a89aad97-e8b0-43ab-9149-a51fced2bad5", + "snapshot_generated_at": "2026-04-18T11:07:55.972137", + "identity": { + "full_name": "Rohit Kundu", + "primary_email": "rohit.kundu582@yahoo.com", + "primary_phone": "+91 8770916225", + "persona_labels": "[\"nri_diaspora\", \"first_time_buyer\"]", + "buyer_type": "broker_referral" + }, + "account_links": [ + "50a26214-39cd-4e63-b551-acd26576c9d2" + ], + "active_opportunities": [ + { + "opportunity_id": "d1aa46dc-322f-4b10-a39c-5a121d109b46", + "project": "Atri Surya Toron", + "stage": "proposal_sent", + "value": 4823131 + } + ], + "recent_interactions": [ + { + "interaction_id": "4996d81a-eaf3-45aa-a20c-e74ee5835a44", + "channel": "email", + "happened_at": "2026-04-16T11:07:55.971732" + }, + { + "interaction_id": "3fd8e36c-04e2-4e04-a9ec-bee83de2a051", + "channel": "referral", + "happened_at": "2025-10-25T11:07:55.971716" + }, + { + "interaction_id": "80646f8a-d03f-472d-b7c0-2e4d7d9c07db", + "channel": "whatsapp", + "happened_at": "2025-10-15T11:07:55.971648" + }, + { + "interaction_id": "639325b2-6a57-4e79-b564-533bbf2f8dbf", + "channel": "site_visit", + "happened_at": "2025-10-13T11:07:55.971762" + }, + { + "interaction_id": "c42a5d70-49dc-4066-971d-6833c5c8ca1f", + "channel": "builder_event", + "happened_at": "2025-10-05T11:07:55.971787" + } + ], + "property_interests": [ + { + "project": "Atri Surya Toron", + "config": "2BHK", + "budget_max": 6434065 + }, + { + "project": "Merlin Avana", + "config": "4BHK", + "budget_max": 15336313 + } + ], + "tasks": [ + "Check competitor comparison status" + ], + "qd_overview": { + "intent_score": 0.619, + "urgency_score": 0.521, + "engagement_score": 0.615 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Chase for decision", + "Address objections" + ], + "lead_stage": "proposal_sent", + "lead_status": "active" + }, + { + "client_ref": "26b228ad-d40c-4c2b-9b5c-b080cc91137b", + "snapshot_generated_at": "2026-04-18T11:07:55.972696", + "identity": { + "full_name": "Partha Seal", + "primary_email": "partha.seal967@gmail.com", + "primary_phone": "+91 9872066436", + "persona_labels": "[\"family_centric\", \"upgrade_seeker\", \"nri_diaspora\"]", + "buyer_type": "high_intent" + }, + "account_links": [ + "0c28253b-3c45-4128-ab2d-de054685657b" + ], + "active_opportunities": [ + { + "opportunity_id": "7a763448-5329-4b31-bdf8-b721009774d9", + "project": "Shriram Grand City", + "stage": "site_visit_done", + "value": 9860765 + } + ], + "recent_interactions": [ + { + "interaction_id": "83ed83f1-703c-4299-96ac-87d80d74f1da", + "channel": "referral", + "happened_at": "2026-04-10T11:07:55.972331" + }, + { + "interaction_id": "ad3a6232-5e8c-41e0-817a-a59661c3fb49", + "channel": "referral", + "happened_at": "2026-03-03T11:07:55.972375" + }, + { + "interaction_id": "f6fbaac7-463c-4dee-bdc0-2a3f82d4eb8f", + "channel": "email", + "happened_at": "2026-01-09T11:07:55.972347" + } + ], + "property_interests": [ + { + "project": "Shriram Grand City", + "config": "2BHK", + "budget_max": 12092184 + }, + { + "project": "Godrej Elevate", + "config": "3BHK", + "budget_max": 17314655 + }, + { + "project": "Godrej Blue", + "config": "4BHK", + "budget_max": 11633846 + } + ], + "tasks": [ + "Confirm booking appointment" + ], + "qd_overview": { + "intent_score": 0.703, + "urgency_score": 0.755, + "engagement_score": 0.773 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Follow up on impressions", + "Send updated price list" + ], + "lead_stage": "site_visit_done", + "lead_status": "active" + }, + { + "client_ref": "6c6b268f-fc18-40f8-a73e-93e62e18c25a", + "snapshot_generated_at": "2026-04-18T11:07:55.973570", + "identity": { + "full_name": "Avik Singh", + "primary_email": "avik.singh780@gmail.com", + "primary_phone": "+91 8696109383", + "persona_labels": "[\"investment_focus\", \"cash_rich_investor\"]", + "buyer_type": "family_decision_unit" + }, + "account_links": [ + "e7bc1d8b-7015-4b81-9df9-933d9a82263b" + ], + "active_opportunities": [ + { + "opportunity_id": "f3e2a589-6a8e-4360-acf6-c15f7afefbfc", + "project": "Atri Surya Toron", + "stage": "proposal_sent", + "value": 6127657 + } + ], + "recent_interactions": [ + { + "interaction_id": "41857cfd-1526-4d72-a967-4f56d9d85fe8", + "channel": "call", + "happened_at": "2026-03-01T11:07:55.972887" + }, + { + "interaction_id": "a225b6a1-20a8-4418-96d6-480ac0ad4ede", + "channel": "email", + "happened_at": "2026-01-19T11:07:55.973072" + }, + { + "interaction_id": "8ee15c71-5f26-4f76-9bdb-c65547d1bbd5", + "channel": "whatsapp", + "happened_at": "2025-10-24T11:07:55.972987" + } + ], + "property_interests": [ + { + "project": "Atri Surya Toron", + "config": "2BHK", + "budget_max": 5335744 + } + ], + "tasks": [ + "Send legal documents" + ], + "qd_overview": { + "intent_score": 0.566, + "urgency_score": 0.625, + "engagement_score": 0.598 + }, + "risk_flags": [ + "repeated_no_show" + ], + "recommended_next_actions": [ + "Chase for decision", + "Address objections" + ], + "lead_stage": "proposal_sent", + "lead_status": "active" + }, + { + "client_ref": "aee30534-fd97-45db-aacb-2b9024648593", + "snapshot_generated_at": "2026-04-18T11:07:55.974342", + "identity": { + "full_name": "Arnav Sarkar", + "primary_email": "arnav.sarkar923@yahoo.com", + "primary_phone": "+91 7701182385", + "persona_labels": "[\"emotional_buyer\", \"first_time_buyer\"]", + "buyer_type": "family_decision_unit" + }, + "account_links": [ + "be03af16-2569-467a-94bd-ce1027914660" + ], + "active_opportunities": [ + { + "opportunity_id": "7a8c9223-00c9-428a-b29e-4c9576599cc6", + "project": "Sugam Prakriti", + "stage": "qualified", + "value": 7230158 + } + ], + "recent_interactions": [ + { + "interaction_id": "7436df70-7010-4c8f-a0e1-730660177f8e", + "channel": "referral", + "happened_at": "2026-04-15T11:07:55.973890" + }, + { + "interaction_id": "2bee95ad-d87c-4983-b331-6ea29502ae9f", + "channel": "referral", + "happened_at": "2026-04-13T11:07:55.973909" + }, + { + "interaction_id": "e0ff3e11-dc11-4ed2-b993-59dcc8bbd397", + "channel": "digital_ad", + "happened_at": "2026-03-27T11:07:55.973758" + }, + { + "interaction_id": "918fb2bb-af2e-46a2-b4a2-0e4654fb9796", + "channel": "call", + "happened_at": "2026-01-14T11:07:55.973805" + }, + { + "interaction_id": "0bf0723f-f170-4c24-8b8f-a50974cf05dd", + "channel": "referral", + "happened_at": "2025-12-12T11:07:55.973774" + } + ], + "property_interests": [ + { + "project": "Sugam Prakriti", + "config": "3BHK", + "budget_max": 7495700 + } + ], + "tasks": [ + "Check competitor comparison status", + "Send legal documents" + ], + "qd_overview": { + "intent_score": 0.664, + "urgency_score": 0.647, + "engagement_score": 0.658 + }, + "risk_flags": [ + "decision_stalled_at_family" + ], + "recommended_next_actions": [ + "Book site visit", + "Share payment plan" + ], + "lead_stage": "qualified", + "lead_status": "active" + }, + { + "client_ref": "a4448419-d501-4dc0-9a24-2ec4a1ba1fca", + "snapshot_generated_at": "2026-04-18T11:07:56.025093", + "identity": { + "full_name": "Jayashree Bhadra", + "primary_email": "jayashree.bhadra437@outlook.com", + "primary_phone": "+91 8480728817", + "persona_labels": "[\"nri_diaspora\", \"first_time_buyer\", \"investment_focus\"]", + "buyer_type": "price_sensitive" + }, + "account_links": [ + "be03af16-2569-467a-94bd-ce1027914660" + ], + "active_opportunities": [ + { + "opportunity_id": "55c42678-53ec-4633-9559-b5f25acc7846", + "project": "Merlin Avana", + "stage": "proposal_sent", + "value": 13199639 + } + ], + "recent_interactions": [ + { + "interaction_id": "8907b8e1-cea1-41a1-a082-679b83d228db", + "channel": "whatsapp", + "happened_at": "2026-03-13T11:07:55.974553" + }, + { + "interaction_id": "790e004d-d497-48d6-a9ac-1f1126ca6787", + "channel": "digital_ad", + "happened_at": "2026-02-08T11:07:55.974970" + }, + { + "interaction_id": "a1ecedd9-2888-4ffc-bd9b-9bc3cf87ec70", + "channel": "call", + "happened_at": "2026-01-27T11:07:55.974864" + }, + { + "interaction_id": "d1be5efe-2470-4f7a-9983-061ebb5427b6", + "channel": "site_visit", + "happened_at": "2026-01-13T11:07:55.974826" + }, + { + "interaction_id": "6d3f1106-09f5-47fe-8e6c-155c1d96a27f", + "channel": "builder_event", + "happened_at": "2026-01-09T11:07:55.974536" + } + ], + "property_interests": [ + { + "project": "Merlin Avana", + "config": "3BHK", + "budget_max": 9537750 + }, + { + "project": "Shriram Grand City", + "config": "3BHK", + "budget_max": 11637294 + } + ], + "tasks": [ + "Follow up after site visit" + ], + "qd_overview": { + "intent_score": 0.432, + "urgency_score": 0.389, + "engagement_score": 0.433 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Chase for decision", + "Address objections" + ], + "lead_stage": "proposal_sent", + "lead_status": "active" + }, + { + "client_ref": "6d1c01b4-f218-4f92-976a-dc903ceeb2af", + "snapshot_generated_at": "2026-04-18T11:07:56.026066", + "identity": { + "full_name": "Papri Modi", + "primary_email": "papri.modi538@hotmail.com", + "primary_phone": "+91 9756590364", + "persona_labels": "[\"nri_diaspora\", \"first_time_buyer\"]", + "buyer_type": "nri" + }, + "account_links": [ + "163d9a41-edb2-4b87-a032-08b339898377" + ], + "active_opportunities": [], + "recent_interactions": [ + { + "interaction_id": "91865cbb-fc40-4ca6-82d0-8ba8faf753be", + "channel": "referral", + "happened_at": "2025-12-13T11:07:56.025366" + }, + { + "interaction_id": "9f42304d-47f6-497d-aeb7-20ce68baa2dc", + "channel": "call", + "happened_at": "2025-12-01T11:07:56.025416" + }, + { + "interaction_id": "34dcd4c5-57a4-4120-8d8f-7cbeb3bedf03", + "channel": "referral", + "happened_at": "2025-11-02T11:07:56.025562" + }, + { + "interaction_id": "88acd6bb-eb18-4834-8014-6eb47812e647", + "channel": "email", + "happened_at": "2025-10-20T11:07:56.025384" + } + ], + "property_interests": [ + { + "project": "Atri Surya Toron", + "config": "2BHK", + "budget_max": 5192143 + }, + { + "project": "Ambuja Utpaala", + "config": "2BHK", + "budget_max": 12166789 + } + ], + "tasks": [ + "Follow up after site visit", + "Schedule meeting with senior advisor", + "Follow up after site visit" + ], + "qd_overview": { + "intent_score": 0.676, + "urgency_score": 0.559, + "engagement_score": 0.542 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Send project brochure", + "Schedule site visit" + ], + "lead_stage": "inquiry", + "lead_status": "active" + }, + { + "client_ref": "d6787ef8-ce32-413b-a12f-058f42ca8e56", + "snapshot_generated_at": "2026-04-18T11:07:56.026898", + "identity": { + "full_name": "Nandita Mitra", + "primary_email": "nandita.mitra856@hotmail.com", + "primary_phone": "+91 9400647872", + "persona_labels": "[\"upgrade_seeker\", \"analytical_buyer\", \"first_time_buyer\"]", + "buyer_type": "family_decision_unit" + }, + "account_links": [ + "167e5af1-66b1-41c0-9a9d-42aa9b77a3a7" + ], + "active_opportunities": [ + { + "opportunity_id": "db60728b-b308-4047-9abb-43fcf8dca688", + "project": "Siddha Sky Waterfront", + "stage": "qualified", + "value": 15728915 + } + ], + "recent_interactions": [ + { + "interaction_id": "b5566e36-a1d5-440a-8a73-c763b75fd6e6", + "channel": "referral", + "happened_at": "2026-01-18T11:07:56.026419" + }, + { + "interaction_id": "d6cd1ef0-75a1-46ff-90e1-dab6235b2daa", + "channel": "builder_event", + "happened_at": "2026-01-07T11:07:56.026398" + }, + { + "interaction_id": "f9fa67b6-55b5-420e-a06f-22c4dacfc336", + "channel": "call", + "happened_at": "2025-11-22T11:07:56.026299" + }, + { + "interaction_id": "6d319d8b-5ab8-46de-944a-89530905a576", + "channel": "referral", + "happened_at": "2025-11-07T11:07:56.026278" + }, + { + "interaction_id": "e55a6849-8d0b-4765-9191-d6c27a34fc02", + "channel": "site_visit", + "happened_at": "2025-10-23T11:07:56.026434" + } + ], + "property_interests": [ + { + "project": "Siddha Sky Waterfront", + "config": "3BHK", + "budget_max": 16368705 + }, + { + "project": "Atri Aqua", + "config": "3BHK", + "budget_max": 8206847 + } + ], + "tasks": [ + "Re-engage after 2 weeks silence" + ], + "qd_overview": { + "intent_score": 0.739, + "urgency_score": 0.619, + "engagement_score": 0.668 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Book site visit", + "Share payment plan" + ], + "lead_stage": "qualified", + "lead_status": "active" + }, + { + "client_ref": "4b234c6d-a0aa-497a-8480-07bed9a3450a", + "snapshot_generated_at": "2026-04-18T11:07:56.027884", + "identity": { + "full_name": "Usha Haldar", + "primary_email": "usha.haldar616@outlook.com", + "primary_phone": "+91 8832798280", + "persona_labels": "[\"analytical_buyer\"]", + "buyer_type": "repeat_visitor" + }, + "account_links": [ + "be03af16-2569-467a-94bd-ce1027914660" + ], + "active_opportunities": [ + { + "opportunity_id": "2356a490-bed5-4f33-987a-dbba70bd1435", + "project": "Godrej Elevate", + "stage": "proposal_sent", + "value": 17320306 + } + ], + "recent_interactions": [ + { + "interaction_id": "5df90ba4-3c20-4ff6-80a7-19f45ce765b2", + "channel": "referral", + "happened_at": "2026-03-30T11:07:56.027278" + }, + { + "interaction_id": "b22d1f69-9ab9-4150-a425-0d4fa3031d6a", + "channel": "whatsapp", + "happened_at": "2026-03-20T11:07:56.027206" + }, + { + "interaction_id": "7103f7de-3b46-42b0-8e0a-d9c1c44c37e6", + "channel": "digital_ad", + "happened_at": "2026-03-16T11:07:56.027298" + }, + { + "interaction_id": "4b8aadd0-e846-4062-92e6-7444a6b63bf1", + "channel": "referral", + "happened_at": "2026-03-01T11:07:56.027094" + }, + { + "interaction_id": "f3d1a11f-d20e-4806-b779-7dc43072ab95", + "channel": "call", + "happened_at": "2025-12-24T11:07:56.027110" + } + ], + "property_interests": [ + { + "project": "Godrej Elevate", + "config": "3BHK", + "budget_max": 17678496 + }, + { + "project": "Shriram Grand City", + "config": "3BHK", + "budget_max": 8160621 + } + ], + "tasks": [], + "qd_overview": { + "intent_score": 0.626, + "urgency_score": 0.693, + "engagement_score": 0.68 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Chase for decision", + "Address objections" + ], + "lead_stage": "proposal_sent", + "lead_status": "active" + }, + { + "client_ref": "184d1a5f-a666-4429-9ae3-da3f162c2119", + "snapshot_generated_at": "2026-04-18T11:07:56.028685", + "identity": { + "full_name": "Souvik Shah", + "primary_email": "souvik.shah62@gmail.com", + "primary_phone": "+91 7478596975", + "persona_labels": "[\"analytical_buyer\"]", + "buyer_type": "high_intent" + }, + "account_links": [ + "d9525127-ff0d-45a0-b6d2-57b735be5c66" + ], + "active_opportunities": [ + { + "opportunity_id": "7c6cf19a-4bda-4657-941b-876914d7c9ac", + "project": "Ambuja Utpaala", + "stage": "qualified", + "value": 8885105 + } + ], + "recent_interactions": [ + { + "interaction_id": "5633d7bd-13f6-471a-ae51-42e4d50fc2e3", + "channel": "call", + "happened_at": "2026-03-23T11:07:56.028082" + }, + { + "interaction_id": "20d676a4-fa23-40bf-82d8-51087b9e1145", + "channel": "call", + "happened_at": "2026-01-04T11:07:56.028201" + }, + { + "interaction_id": "59018de1-4a59-4134-a9a5-1843a102349d", + "channel": "site_visit", + "happened_at": "2025-12-30T11:07:56.028280" + }, + { + "interaction_id": "997bb510-f37e-41eb-a0c3-957d341a2c50", + "channel": "digital_ad", + "happened_at": "2025-10-25T11:07:56.028172" + } + ], + "property_interests": [ + { + "project": "Ambuja Utpaala", + "config": "4BHK", + "budget_max": 15195006 + }, + { + "project": "Atri Surya Toron", + "config": "2BHK", + "budget_max": 5690022 + } + ], + "tasks": [], + "qd_overview": { + "intent_score": 0.716, + "urgency_score": 0.73, + "engagement_score": 0.842 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Book site visit", + "Share payment plan" + ], + "lead_stage": "qualified", + "lead_status": "active" + }, + { + "client_ref": "e596c791-2625-4998-95fb-88dc74d4b4e8", + "snapshot_generated_at": "2026-04-18T11:07:56.030286", + "identity": { + "full_name": "Arjun Singh", + "primary_email": "arjun.singh478@rediffmail.com", + "primary_phone": "+91 9231906168", + "persona_labels": "[\"upgrade_seeker\", \"nri_diaspora\", \"first_time_buyer\"]", + "buyer_type": "broker_referral" + }, + "account_links": [ + "e55acb15-9a3d-4b14-8934-cfd1c1b792b2" + ], + "active_opportunities": [ + { + "opportunity_id": "522d8110-8901-4801-99b9-d872206fb24e", + "project": "Atri Surya Toron", + "stage": "qualified", + "value": 7015736 + } + ], + "recent_interactions": [ + { + "interaction_id": "637897be-d542-494f-8041-9a2fa14b47b3", + "channel": "whatsapp", + "happened_at": "2026-03-11T11:07:56.029660" + }, + { + "interaction_id": "89fb80af-6212-436e-aa55-eb39cc5174c5", + "channel": "referral", + "happened_at": "2026-03-06T11:07:56.029642" + }, + { + "interaction_id": "9c91c4ff-2463-4ad4-817a-7903383fa885", + "channel": "site_visit", + "happened_at": "2026-02-12T11:07:56.029490" + }, + { + "interaction_id": "69d62957-3825-4fd4-8db9-d99a41035713", + "channel": "call", + "happened_at": "2025-12-20T11:07:56.029530" + } + ], + "property_interests": [ + { + "project": "Atri Surya Toron", + "config": "3BHK", + "budget_max": 6326932 + } + ], + "tasks": [ + "Check competitor comparison status" + ], + "qd_overview": { + "intent_score": 0.504, + "urgency_score": 0.512, + "engagement_score": 0.473 + }, + "risk_flags": [], + "recommended_next_actions": [ + "Book site visit", + "Share payment plan" + ], + "lead_stage": "qualified", + "lead_status": "active" + }, + { + "client_ref": "e4e743e8-54af-457e-b1c1-049c9610c2ef", + "snapshot_generated_at": "2026-04-18T11:07:56.031334", + "identity": { + "full_name": "Keya Paul", + "primary_email": "keya.paul835@hotmail.com", + "primary_phone": "+91 7661622285", + "persona_labels": "[\"analytical_buyer\", \"nri_diaspora\"]", + "buyer_type": "family_decision_unit" + }, + "account_links": [ + "163d9a41-edb2-4b87-a032-08b339898377" + ], + "active_opportunities": [ + { + "opportunity_id": "99b6fd4c-55df-42ea-8307-fb885f1a5468", + "project": "DTC Good Earth", + "stage": "site_visit_done", + "value": 5986128 + } + ], + "recent_interactions": [ + { + "interaction_id": "d549c0cd-f5c7-4d85-ba02-35be650d6e2c", + "channel": "whatsapp", + "happened_at": "2026-04-07T11:07:56.030496" + }, + { + "interaction_id": "d95c9174-b95f-474a-a8e9-6d2baa9975c1", + "channel": "call", + "happened_at": "2026-04-01T11:07:56.030609" + }, + { + "interaction_id": "3e2f76fe-96a8-41cf-b333-36c7e09f1d15", + "channel": "call", + "happened_at": "2026-01-28T11:07:56.030687" + }, + { + "interaction_id": "c576cf85-6e6f-4f28-8cab-bf2c35935ec6", + "channel": "builder_event", + "happened_at": "2026-01-24T11:07:56.030863" + }, + { + "interaction_id": "2bffddf4-951e-4275-837d-0c73e1c29004", + "channel": "builder_event", + "happened_at": "2025-12-04T11:07:56.030577" + } + ], + "property_interests": [ + { + "project": "DTC Good Earth", + "config": "3BHK", + "budget_max": 6622225 + } + ], + "tasks": [ + "Send festive offer" + ], + "qd_overview": { + "intent_score": 0.602, + "urgency_score": 0.531, + "engagement_score": 0.547 + }, + "risk_flags": [ + "visit_completed_but_silent" + ], + "recommended_next_actions": [ + "Follow up on impressions", + "Send updated price list" + ], + "lead_stage": "site_visit_done", + "lead_status": "active" + }, + { + "client_ref": "64c56004-8867-403b-bda5-51b536ad0fb8", + "snapshot_generated_at": "2026-04-18T11:07:56.031893", + "identity": { + "full_name": "Sumanta Gupta", + "primary_email": "sumanta.gupta556@rediffmail.com", + "primary_phone": "+91 9356565519", + "persona_labels": "[\"emotional_buyer\", \"investment_focus\"]", + "buyer_type": "slow_burn_investor" + }, + "account_links": [ + "ccc19201-7df7-4fb9-b3ad-d1eb1edf302c" + ], + "active_opportunities": [ + { + "opportunity_id": "ae06e422-ef74-410a-9d09-722e911d5d25", + "project": "Atri Aqua", + "stage": "negotiation", + "value": 6915702 + } + ], + "recent_interactions": [ + { + "interaction_id": "6abb6915-ef15-42a6-aa72-4b74e3d9b09d", + "channel": "email", + "happened_at": "2026-02-26T11:07:56.031549" + }, + { + "interaction_id": "4912b4ec-bfa1-42e8-a86f-d21d36b3251b", + "channel": "digital_ad", + "happened_at": "2026-01-12T11:07:56.031576" + }, + { + "interaction_id": "85587064-1319-46fe-902a-728ae86a47ae", + "channel": "site_visit", + "happened_at": "2025-11-26T11:07:56.031524" + }, + { + "interaction_id": "d84c0bda-873b-4363-8c77-8ae02f6490e7", + "channel": "builder_event", + "happened_at": "2025-10-31T11:07:56.031508" + } + ], + "property_interests": [ + { + "project": "Atri Aqua", + "config": "2BHK", + "budget_max": 8359003 + }, + { + "project": "Sugam Prakriti", + "config": "4BHK", + "budget_max": 9168009 + } + ], + "tasks": [], + "qd_overview": { + "intent_score": 0.402, + "urgency_score": 0.512, + "engagement_score": 0.389 + }, + "risk_flags": [ + "multiple_project_comparisons", + "decision_stalled_at_family" + ], + "recommended_next_actions": [ + "Escalate to senior advisor", + "Prepare final offer" + ], + "lead_stage": "negotiation", + "lead_status": "active" + }, + { + "client_ref": "f2db26dd-d18a-4ba4-87fa-6b904ed2326c", + "snapshot_generated_at": "2026-04-18T11:07:56.032699", + "identity": { + "full_name": "Rahul Roy", + "primary_email": "rahul.roy44@hotmail.com", + "primary_phone": "+91 8551033802", + "persona_labels": "[\"emotional_buyer\"]", + "buyer_type": "slow_burn_investor" + }, + "account_links": [ + "a7feb56f-2752-4b6d-bde6-84f4be7b6b3d" + ], + "active_opportunities": [], + "recent_interactions": [ + { + "interaction_id": "393e6e69-2aae-485c-90a0-58258c3ac3ea", + "channel": "email", + "happened_at": "2026-04-17T11:07:56.032275" + }, + { + "interaction_id": "f925d7a7-523f-434c-932b-e806650bed1b", + "channel": "referral", + "happened_at": "2026-03-17T11:07:56.032042" + }, + { + "interaction_id": "b277a83d-3364-44a4-8ebb-487c265e2640", + "channel": "call", + "happened_at": "2026-03-11T11:07:56.032203" + }, + { + "interaction_id": "db7e1775-7f5c-48cf-9c34-5a388d91b1d0", + "channel": "site_visit", + "happened_at": "2026-02-11T11:07:56.032056" + }, + { + "interaction_id": "76ca2b3f-0955-4ace-9929-7cbf57c1ae8e", + "channel": "email", + "happened_at": "2026-01-19T11:07:56.031998" + } + ], + "property_interests": [ + { + "project": "Atri Aqua", + "config": "2BHK", + "budget_max": 8219910 + } + ], + "tasks": [], + "qd_overview": { + "intent_score": 0.611, + "urgency_score": 0.628, + "engagement_score": 0.503 + }, + "risk_flags": [ + "multiple_project_comparisons", + "no_follow_up_in_30_days" + ], + "recommended_next_actions": [ + "Send project brochure", + "Schedule site visit" + ], + "lead_stage": "inquiry", + "lead_status": "active" + }, + { + "client_ref": "07ad31a6-e9b0-4a4c-b2a2-73bb850257a6", + "snapshot_generated_at": "2026-04-18T11:07:56.033450", + "identity": { + "full_name": "Suchismita Sharma", + "primary_email": "suchismita.sharma423@company.com", + "primary_phone": "+91 7311831661", + "persona_labels": "[\"status_buyer\"]", + "buyer_type": "high_intent" + }, + "account_links": [ + "3ee6687a-9fa3-428d-97da-4a73cc843273" + ], + "active_opportunities": [], + "recent_interactions": [ + { + "interaction_id": "3cbb0e72-8fa0-499d-a472-25acd6d5ce49", + "channel": "digital_ad", + "happened_at": "2026-04-01T11:07:56.032982" + }, + { + "interaction_id": "e5178b99-f7bf-4743-a95f-33b9cc0bca04", + "channel": "site_visit", + "happened_at": "2026-01-11T11:07:56.033001" + }, + { + "interaction_id": "8062e4e3-6e5b-45af-a142-387c630ee76b", + "channel": "builder_event", + "happened_at": "2025-12-25T11:07:56.033097" + }, + { + "interaction_id": "191ba9b2-9ffa-4ffd-8d22-65fff7b8bdbf", + "channel": "call", + "happened_at": "2025-10-24T11:07:56.033024" + }, + { + "interaction_id": "30127ca4-a392-454d-9bbf-206db29220b7", + "channel": "referral", + "happened_at": "2025-10-21T11:07:56.032865" + } + ], + "property_interests": [ + { + "project": "Eden Devprayag", + "config": "3BHK", + "budget_max": 9359856 + } + ], + "tasks": [ + "Check loan approval status" + ], + "qd_overview": { + "intent_score": 0.618, + "urgency_score": 0.697, + "engagement_score": 0.72 + }, + "risk_flags": [ + "no_follow_up_in_30_days", + "decision_stalled_at_family" + ], + "recommended_next_actions": [ + "Re-engage with new offer", + "Check status after 30 days" + ], + "lead_stage": "dropped", + "lead_status": "dropped" + }, + { + "client_ref": "af2d8579-f4d3-4ae6-a44e-287168b43c21", + "snapshot_generated_at": "2026-04-18T11:07:56.034223", + "identity": { + "full_name": "Subhro Iyer", + "primary_email": "subhro.iyer559@yahoo.com", + "primary_phone": "+91 9578476281", + "persona_labels": "[\"investment_focus\", \"value_seeker\"]", + "buyer_type": "family_decision_unit" + }, + "account_links": [ + "be03af16-2569-467a-94bd-ce1027914660" + ], + "active_opportunities": [ + { + "opportunity_id": "724497b2-c0cf-4255-8978-bbb163c87b5a", + "project": "Godrej Elevate", + "stage": "qualified", + "value": 18866406 + } + ], + "recent_interactions": [ + { + "interaction_id": "99b6f6dc-6d41-4ac1-82e9-32459f2c2aee", + "channel": "site_visit", + "happened_at": "2026-02-08T11:07:56.033813" + }, + { + "interaction_id": "989f7da1-59f7-451d-a58c-3ab2252d9014", + "channel": "digital_ad", + "happened_at": "2026-01-05T11:07:56.033837" + }, + { + "interaction_id": "0a37209c-78fe-4761-85e3-ac70c80493f0", + "channel": "whatsapp", + "happened_at": "2026-01-03T11:07:56.033641" + }, + { + "interaction_id": "c24c6cb5-1588-4c0c-b3af-621a02e7bf7d", + "channel": "whatsapp", + "happened_at": "2025-11-26T11:07:56.033718" + }, + { + "interaction_id": "07d7a461-cec7-444d-a43b-8ccf9c89f9f9", + "channel": "referral", + "happened_at": "2025-11-03T11:07:56.033799" + } + ], + "property_interests": [ + { + "project": "Godrej Elevate", + "config": "3BHK", + "budget_max": 21459304 + }, + { + "project": "Eden Devprayag", + "config": "2BHK", + "budget_max": 8275796 + }, + { + "project": "Merlin Avana", + "config": "3BHK", + "budget_max": 9618370 + } + ], + "tasks": [ + "Send festive offer", + "Schedule meeting with senior advisor", + "Re-engage after 2 weeks silence" + ], + "qd_overview": { + "intent_score": 0.534, + "urgency_score": 0.647, + "engagement_score": 0.618 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Book site visit", + "Share payment plan" + ], + "lead_stage": "qualified", + "lead_status": "active" + }, + { + "client_ref": "62dc706e-9c0d-43d7-8858-b651028a3ad2", + "snapshot_generated_at": "2026-04-18T11:07:56.035049", + "identity": { + "full_name": "Swagata Bose", + "primary_email": "swagata.bose415@rediffmail.com", + "primary_phone": "+91 8387361051", + "persona_labels": "[\"status_buyer\", \"upgrade_seeker\", \"cash_rich_investor\"]", + "buyer_type": "high_intent" + }, + "account_links": [], + "active_opportunities": [ + { + "opportunity_id": "c21ab0dc-1b39-4c57-9084-3b974a85fc7f", + "project": "Siddha Serena", + "stage": "qualified", + "value": 7117561 + } + ], + "recent_interactions": [ + { + "interaction_id": "6100e2a8-1d7e-4644-9333-f5f0d596ff33", + "channel": "digital_ad", + "happened_at": "2026-04-12T11:07:56.034559" + }, + { + "interaction_id": "a7a2e3ac-b6fc-42fa-a813-b64065420299", + "channel": "digital_ad", + "happened_at": "2026-03-24T11:07:56.034627" + }, + { + "interaction_id": "d7422e51-8f85-4c76-ab5b-172e1033e6db", + "channel": "builder_event", + "happened_at": "2026-01-21T11:07:56.034581" + }, + { + "interaction_id": "683291fe-29a6-4b83-ab7e-549c8fbe8dd4", + "channel": "site_visit", + "happened_at": "2026-01-06T11:07:56.034600" + }, + { + "interaction_id": "0eb7be76-6b23-405a-8f20-645a152ad80b", + "channel": "whatsapp", + "happened_at": "2025-11-10T11:07:56.034369" + } + ], + "property_interests": [ + { + "project": "Siddha Serena", + "config": "2BHK", + "budget_max": 5329237 + } + ], + "tasks": [], + "qd_overview": { + "intent_score": 0.859, + "urgency_score": 0.85, + "engagement_score": 1.0 + }, + "risk_flags": [ + "visit_completed_but_silent" + ], + "recommended_next_actions": [ + "Book site visit", + "Share payment plan" + ], + "lead_stage": "qualified", + "lead_status": "active" + }, + { + "client_ref": "0933cb66-6cb6-41f9-90d1-4e159409f135", + "snapshot_generated_at": "2026-04-18T11:07:56.035887", + "identity": { + "full_name": "Ranjit Patel", + "primary_email": "ranjit.patel22@company.com", + "primary_phone": "+91 8329693075", + "persona_labels": "[\"cash_rich_investor\", \"emotional_buyer\"]", + "buyer_type": "price_sensitive" + }, + "account_links": [ + "0c28253b-3c45-4128-ab2d-de054685657b" + ], + "active_opportunities": [ + { + "opportunity_id": "0a3c3396-42f6-49c7-8aab-c3778596fd57", + "project": "Eden Devprayag", + "stage": "negotiation", + "value": 11467623 + } + ], + "recent_interactions": [ + { + "interaction_id": "4ac899fe-3d35-4571-90d4-c62bdeb8bdcc", + "channel": "digital_ad", + "happened_at": "2026-04-07T11:07:56.035400" + }, + { + "interaction_id": "619d597c-3a7b-48cd-9776-b1f0dcf058ba", + "channel": "digital_ad", + "happened_at": "2026-03-30T11:07:56.035296" + }, + { + "interaction_id": "cb598075-d5b9-4163-a737-1f2d9bd13f70", + "channel": "builder_event", + "happened_at": "2026-03-06T11:07:56.035415" + }, + { + "interaction_id": "ec80e054-b661-422b-9688-2d5580efdc7c", + "channel": "builder_event", + "happened_at": "2026-02-19T11:07:56.035431" + }, + { + "interaction_id": "fe3de433-9f7e-46bb-a0c3-3265a5fccbcb", + "channel": "whatsapp", + "happened_at": "2025-11-25T11:07:56.035316" + } + ], + "property_interests": [ + { + "project": "Eden Devprayag", + "config": "2BHK", + "budget_max": 11922474 + }, + { + "project": "DTC Good Earth", + "config": "3BHK", + "budget_max": 6302395 + }, + { + "project": "Godrej Blue", + "config": "2BHK", + "budget_max": 10706106 + } + ], + "tasks": [ + "Confirm booking appointment" + ], + "qd_overview": { + "intent_score": 0.313, + "urgency_score": 0.333, + "engagement_score": 0.444 + }, + "risk_flags": [ + "multiple_project_comparisons", + "decision_stalled_at_family" + ], + "recommended_next_actions": [ + "Escalate to senior advisor", + "Prepare final offer" + ], + "lead_stage": "negotiation", + "lead_status": "active" + }, + { + "client_ref": "0e67b825-97ea-4193-8663-be2400a7e5f8", + "snapshot_generated_at": "2026-04-18T11:07:56.036664", + "identity": { + "full_name": "Avijit Dutta", + "primary_email": "avijit.dutta77@rediffmail.com", + "primary_phone": "+91 9341568045", + "persona_labels": "[\"status_buyer\"]", + "buyer_type": "repeat_visitor" + }, + "account_links": [ + "926a8c60-ae39-4028-a2cb-68f783fd2fe3" + ], + "active_opportunities": [ + { + "opportunity_id": "682f89b0-c72c-4549-b5d1-abb88e008070", + "project": "Ambuja Utpaala", + "stage": "site_visit_done", + "value": 13432778 + } + ], + "recent_interactions": [ + { + "interaction_id": "72729055-0afd-4bbd-a6f7-143f0d487c37", + "channel": "site_visit", + "happened_at": "2026-01-04T11:07:56.036234" + }, + { + "interaction_id": "7cc8eebc-e1e8-4d28-9573-074b9eb3f35e", + "channel": "whatsapp", + "happened_at": "2025-11-08T11:07:56.036093" + }, + { + "interaction_id": "deaa5539-15ea-457b-aa4f-e130cdac17d9", + "channel": "builder_event", + "happened_at": "2025-10-20T11:07:56.036186" + }, + { + "interaction_id": "e4813ba5-2ff9-4824-9e45-1134452ff0e8", + "channel": "referral", + "happened_at": "2025-10-15T11:07:56.036213" + } + ], + "property_interests": [ + { + "project": "Ambuja Utpaala", + "config": "4BHK", + "budget_max": 10143585 + } + ], + "tasks": [], + "qd_overview": { + "intent_score": 0.57, + "urgency_score": 0.625, + "engagement_score": 0.588 + }, + "risk_flags": [ + "repeated_no_show" + ], + "recommended_next_actions": [ + "Follow up on impressions", + "Send updated price list" + ], + "lead_stage": "site_visit_done", + "lead_status": "active" + }, + { + "client_ref": "bf3207b7-ca99-45db-81ac-89d3e3c1b017", + "snapshot_generated_at": "2026-04-18T11:07:56.037677", + "identity": { + "full_name": "Laboni Dutta", + "primary_email": "laboni.dutta938@hotmail.com", + "primary_phone": "+91 9172418074", + "persona_labels": "[\"cash_rich_investor\"]", + "buyer_type": "slow_burn_investor" + }, + "account_links": [ + "e7bc1d8b-7015-4b81-9df9-933d9a82263b" + ], + "active_opportunities": [ + { + "opportunity_id": "cbba693b-a8b1-4560-9be7-8c72f27bb8e1", + "project": "Eden Devprayag", + "stage": "booked", + "value": 11898875 + } + ], + "recent_interactions": [ + { + "interaction_id": "ae5fff03-5296-4e92-85ba-c5795ad927d5", + "channel": "builder_event", + "happened_at": "2026-03-20T11:07:56.037084" + }, + { + "interaction_id": "7e218ce7-d6fc-4d5d-93e7-9c0e8f143ada", + "channel": "whatsapp", + "happened_at": "2026-02-26T11:07:56.037122" + }, + { + "interaction_id": "e9b2699c-c0fc-448c-ac94-06c5ad03ac72", + "channel": "email", + "happened_at": "2026-02-10T11:07:56.037031" + }, + { + "interaction_id": "41dff0ac-9248-4771-8324-cd34be6cc4dc", + "channel": "call", + "happened_at": "2026-01-20T11:07:56.036940" + }, + { + "interaction_id": "a8b8a62d-855e-4499-aeb5-4c2144b0c714", + "channel": "whatsapp", + "happened_at": "2026-01-20T11:07:56.036864" + } + ], + "property_interests": [ + { + "project": "Eden Devprayag", + "config": "2BHK", + "budget_max": 11928009 + }, + { + "project": "Godrej Elevate", + "config": "4BHK", + "budget_max": 12651761 + }, + { + "project": "DTC Sojon", + "config": "3BHK", + "budget_max": 5956793 + } + ], + "tasks": [ + "Follow up after site visit", + "Nudge for final decision" + ], + "qd_overview": { + "intent_score": 0.519, + "urgency_score": 0.573, + "engagement_score": 0.504 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Share loan documents", + "Introduce relationship manager" + ], + "lead_stage": "booked", + "lead_status": "active" + }, + { + "client_ref": "f9a072e4-bcec-47cc-afc8-068c33c52174", + "snapshot_generated_at": "2026-04-18T11:07:56.038424", + "identity": { + "full_name": "Papri Paul", + "primary_email": "papri.paul291@outlook.com", + "primary_phone": "+91 8221329640", + "persona_labels": "[\"status_buyer\", \"nri_diaspora\", \"value_seeker\"]", + "buyer_type": "high_intent" + }, + "account_links": [ + "4a2caa8d-83f7-43da-a05a-966330cf9eab" + ], + "active_opportunities": [], + "recent_interactions": [ + { + "interaction_id": "09905096-901b-44a4-810c-f074668a80f0", + "channel": "email", + "happened_at": "2026-04-11T11:07:56.037886" + }, + { + "interaction_id": "e1f22177-32b2-418a-8618-731261d73a8f", + "channel": "builder_event", + "happened_at": "2026-03-02T11:07:56.037915" + }, + { + "interaction_id": "4ce1cbbe-5784-4628-a8a6-6a540885020a", + "channel": "site_visit", + "happened_at": "2026-02-09T11:07:56.037848" + }, + { + "interaction_id": "77ffd484-f200-4e52-be04-1b82f7aa9c89", + "channel": "site_visit", + "happened_at": "2025-12-20T11:07:56.037931" + } + ], + "property_interests": [ + { + "project": "Atri Surya Toron", + "config": "3BHK", + "budget_max": 5640696 + }, + { + "project": "DTC Good Earth", + "config": "2BHK", + "budget_max": 7201703 + }, + { + "project": "Siddha Serena", + "config": "2BHK", + "budget_max": 8544520 + } + ], + "tasks": [ + "Check loan approval status", + "Share updated price list" + ], + "qd_overview": { + "intent_score": 0.918, + "urgency_score": 0.913, + "engagement_score": 0.949 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Send project brochure", + "Schedule site visit" + ], + "lead_stage": "inquiry", + "lead_status": "active" + }, + { + "client_ref": "c61eaf7b-0c8c-4fc3-8e05-8462c6b84ea2", + "snapshot_generated_at": "2026-04-18T11:07:56.039365", + "identity": { + "full_name": "Nikhil Roy", + "primary_email": "nikhil.roy193@yahoo.com", + "primary_phone": "+91 7161736062", + "persona_labels": "[\"nri_diaspora\", \"analytical_buyer\"]", + "buyer_type": "high_intent" + }, + "account_links": [ + "83abc8f7-37e5-473d-805e-2f5b39cde2af" + ], + "active_opportunities": [ + { + "opportunity_id": "8d964820-ab66-46ff-8919-c388bf266679", + "project": "Ambuja Utpaala", + "stage": "qualified", + "value": 12033042 + } + ], + "recent_interactions": [ + { + "interaction_id": "0bb207d7-9c60-4a18-a04e-2314dd391fa0", + "channel": "builder_event", + "happened_at": "2026-04-15T11:07:56.038963" + }, + { + "interaction_id": "73b06f3b-3686-49e6-b079-db0d797d9ca9", + "channel": "call", + "happened_at": "2026-04-08T11:07:56.038826" + }, + { + "interaction_id": "ca645eb4-9d30-4893-82aa-d298d44afa65", + "channel": "call", + "happened_at": "2026-04-04T11:07:56.038716" + }, + { + "interaction_id": "b3c5633d-a69c-4340-bfe2-e3ad11aefb00", + "channel": "call", + "happened_at": "2026-04-03T11:07:56.038601" + }, + { + "interaction_id": "c2bdd078-f737-4bc2-b6bd-97c77814cebc", + "channel": "referral", + "happened_at": "2026-03-13T11:07:56.038947" + } + ], + "property_interests": [ + { + "project": "Ambuja Utpaala", + "config": "4BHK", + "budget_max": 16218796 + }, + { + "project": "Godrej Blue", + "config": "4BHK", + "budget_max": 11338813 + }, + { + "project": "Siddha Serena", + "config": "3BHK", + "budget_max": 6370166 + } + ], + "tasks": [ + "Send legal documents", + "Share updated price list" + ], + "qd_overview": { + "intent_score": 0.891, + "urgency_score": 0.931, + "engagement_score": 0.874 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Book site visit", + "Share payment plan" + ], + "lead_stage": "qualified", + "lead_status": "active" + }, + { + "client_ref": "83dd835d-e666-4287-a543-d15b1cdb0465", + "snapshot_generated_at": "2026-04-18T11:07:56.040205", + "identity": { + "full_name": "Devyani Biswas", + "primary_email": "devyani.biswas258@hotmail.com", + "primary_phone": "+91 7457092001", + "persona_labels": "[\"nri_diaspora\", \"value_seeker\"]", + "buyer_type": "price_sensitive" + }, + "account_links": [ + "4b56a688-c54f-4460-a12c-8043ea8682ae" + ], + "active_opportunities": [ + { + "opportunity_id": "2edd3158-f913-4e24-8289-7e2084cbb57f", + "project": "Godrej Elevate", + "stage": "qualified", + "value": 11649788 + } + ], + "recent_interactions": [ + { + "interaction_id": "acf255e0-d8c0-4d53-8abe-6d2685528bb2", + "channel": "site_visit", + "happened_at": "2026-03-27T11:07:56.039521" + }, + { + "interaction_id": "fb9d3037-2783-4d69-a09e-7a26fbb370cc", + "channel": "whatsapp", + "happened_at": "2026-02-24T11:07:56.039650" + }, + { + "interaction_id": "9d877ca2-e222-41bd-949d-3dd35cbf9672", + "channel": "whatsapp", + "happened_at": "2026-02-13T11:07:56.039546" + } + ], + "property_interests": [ + { + "project": "Godrej Elevate", + "config": "3BHK", + "budget_max": 12591738 + } + ], + "tasks": [ + "Check loan approval status", + "Send legal documents", + "Confirm booking appointment" + ], + "qd_overview": { + "intent_score": 0.491, + "urgency_score": 0.418, + "engagement_score": 0.464 + }, + "risk_flags": [ + "repeated_no_show", + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Book site visit", + "Share payment plan" + ], + "lead_stage": "qualified", + "lead_status": "active" + }, + { + "client_ref": "e3c278cc-d6a2-48ba-812e-8743ef8f3368", + "snapshot_generated_at": "2026-04-18T11:07:56.040862", + "identity": { + "full_name": "Arnab Haldar", + "primary_email": "arnab.haldar32@gmail.com", + "primary_phone": "+91 9347707105", + "persona_labels": "[\"first_time_buyer\", \"cash_rich_investor\", \"investment_focus\"]", + "buyer_type": "family_decision_unit" + }, + "account_links": [ + "d0f173da-010e-43de-b222-8535c26cfcfc" + ], + "active_opportunities": [ + { + "opportunity_id": "bbea849a-6d78-4728-8f75-a5a8abde4343", + "project": "Siddha Sky Waterfront", + "stage": "qualified", + "value": 9693508 + } + ], + "recent_interactions": [ + { + "interaction_id": "92a3db39-450f-4c97-988f-b743c8ec27a5", + "channel": "email", + "happened_at": "2026-04-06T11:07:56.040430" + }, + { + "interaction_id": "cbf7c1d1-b177-4b04-8341-f50faa6d8e6f", + "channel": "site_visit", + "happened_at": "2026-03-20T11:07:56.040459" + }, + { + "interaction_id": "ff5a0361-ca74-48c5-8987-c17cbc117f72", + "channel": "digital_ad", + "happened_at": "2026-02-13T11:07:56.040489" + }, + { + "interaction_id": "e0e61f8f-e97a-46ad-85dd-355e97e6e7f0", + "channel": "site_visit", + "happened_at": "2026-02-04T11:07:56.040505" + }, + { + "interaction_id": "60570efb-5480-4ee7-90c8-7992864f8f69", + "channel": "digital_ad", + "happened_at": "2025-11-06T11:07:56.040409" + } + ], + "property_interests": [ + { + "project": "Siddha Sky Waterfront", + "config": "3BHK", + "budget_max": 11588936 + }, + { + "project": "Merlin Avana", + "config": "3BHK", + "budget_max": 13167132 + } + ], + "tasks": [ + "Share updated price list" + ], + "qd_overview": { + "intent_score": 0.46, + "urgency_score": 0.535, + "engagement_score": 0.549 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Book site visit", + "Share payment plan" + ], + "lead_stage": "qualified", + "lead_status": "active" + }, + { + "client_ref": "102c44a0-4585-46b1-ab4e-6a1cdf5b75d4", + "snapshot_generated_at": "2026-04-18T11:07:56.041592", + "identity": { + "full_name": "Mahesh Banerjee", + "primary_email": "mahesh.banerjee941@outlook.com", + "primary_phone": "+91 8379618908", + "persona_labels": "[\"status_buyer\"]", + "buyer_type": "price_sensitive" + }, + "account_links": [ + "8aa4d488-571e-4cd4-aa27-8372a49aacbf" + ], + "active_opportunities": [ + { + "opportunity_id": "8cfc4223-afad-47c9-a829-4da083336080", + "project": "Godrej Elevate", + "stage": "negotiation", + "value": 13426733 + } + ], + "recent_interactions": [ + { + "interaction_id": "c648c551-8b9d-43b6-9071-25cbc05c2972", + "channel": "referral", + "happened_at": "2026-03-01T11:07:56.041043" + }, + { + "interaction_id": "b88f1722-f0cd-495f-8f7c-f42c8437a924", + "channel": "builder_event", + "happened_at": "2026-02-13T11:07:56.041126" + }, + { + "interaction_id": "fd22df86-1ccd-467d-b815-a4c2a187c7e6", + "channel": "digital_ad", + "happened_at": "2026-01-11T11:07:56.041059" + }, + { + "interaction_id": "6a17981e-da1b-43ae-97db-9a821a9567fc", + "channel": "referral", + "happened_at": "2025-12-30T11:07:56.041085" + }, + { + "interaction_id": "b0b24369-3f8a-4c21-9ef0-ff95d5d0314b", + "channel": "digital_ad", + "happened_at": "2025-12-01T11:07:56.041104" + } + ], + "property_interests": [ + { + "project": "Godrej Elevate", + "config": "4BHK", + "budget_max": 14398918 + }, + { + "project": "Siddha Suburbia Bungalow", + "config": "4BHK", + "budget_max": 16766390 + } + ], + "tasks": [ + "Share updated price list", + "Confirm booking appointment" + ], + "qd_overview": { + "intent_score": 0.528, + "urgency_score": 0.608, + "engagement_score": 0.51 + }, + "risk_flags": [ + "multiple_project_comparisons", + "decision_stalled_at_family" + ], + "recommended_next_actions": [ + "Escalate to senior advisor", + "Prepare final offer" + ], + "lead_stage": "negotiation", + "lead_status": "active" + }, + { + "client_ref": "8030451b-fd53-4111-8603-cc6b09edecc7", + "snapshot_generated_at": "2026-04-18T11:07:56.042337", + "identity": { + "full_name": "Nilanjan Dey", + "primary_email": "nilanjan.dey988@hotmail.com", + "primary_phone": "+91 9980490963", + "persona_labels": "[\"upgrade_seeker\"]", + "buyer_type": "high_intent" + }, + "account_links": [ + "be03af16-2569-467a-94bd-ce1027914660" + ], + "active_opportunities": [], + "recent_interactions": [ + { + "interaction_id": "7fe5ddb9-b20e-4dce-a816-7f88d9d5793b", + "channel": "email", + "happened_at": "2026-02-18T11:07:56.041785" + }, + { + "interaction_id": "e8b9fbd6-50d4-4fa1-be25-53daf8bb36fc", + "channel": "builder_event", + "happened_at": "2026-02-17T11:07:56.041893" + }, + { + "interaction_id": "8199ace1-7c03-4cf4-8736-f5d20c22a1b2", + "channel": "email", + "happened_at": "2026-02-12T11:07:56.041908" + }, + { + "interaction_id": "f64cd890-9672-4b3c-96ae-b2b232a41f64", + "channel": "email", + "happened_at": "2026-02-09T11:07:56.041857" + }, + { + "interaction_id": "6b73bfd3-a454-426a-b748-01f3fd94e6db", + "channel": "digital_ad", + "happened_at": "2026-01-13T11:07:56.041934" + } + ], + "property_interests": [ + { + "project": "Atri Aqua", + "config": "2BHK", + "budget_max": 6475847 + } + ], + "tasks": [], + "qd_overview": { + "intent_score": 0.574, + "urgency_score": 0.528, + "engagement_score": 0.533 + }, + "risk_flags": [ + "no_follow_up_in_30_days", + "decision_stalled_at_family" + ], + "recommended_next_actions": [ + "Re-engage with new offer", + "Check status after 30 days" + ], + "lead_stage": "cold", + "lead_status": "cold" + }, + { + "client_ref": "78fa2212-b529-489f-b024-4acf9a40e577", + "snapshot_generated_at": "2026-04-18T11:07:56.043068", + "identity": { + "full_name": "Somen Kapoor", + "primary_email": "somen.kapoor63@outlook.com", + "primary_phone": "+91 8350776151", + "persona_labels": "[\"nri_diaspora\", \"cash_rich_investor\", \"value_seeker\"]", + "buyer_type": "nri" + }, + "account_links": [ + "e7bc1d8b-7015-4b81-9df9-933d9a82263b" + ], + "active_opportunities": [ + { + "opportunity_id": "761541f7-49df-4c19-8279-b12c656c3a22", + "project": "Atri Surya Toron", + "stage": "site_visit_done", + "value": 7009105 + } + ], + "recent_interactions": [ + { + "interaction_id": "735a295b-ac50-4297-b65a-b943fce90565", + "channel": "builder_event", + "happened_at": "2026-03-19T11:07:56.042508" + }, + { + "interaction_id": "f63a4990-2834-4228-9e77-82a4abecb8e9", + "channel": "call", + "happened_at": "2026-02-18T11:07:56.042531" + }, + { + "interaction_id": "607aeec6-9f43-47f2-a749-a449b19d648c", + "channel": "digital_ad", + "happened_at": "2026-02-16T11:07:56.042635" + } + ], + "property_interests": [ + { + "project": "Atri Surya Toron", + "config": "3BHK", + "budget_max": 8227931 + }, + { + "project": "Eden Devprayag", + "config": "2BHK", + "budget_max": 10338951 + } + ], + "tasks": [ + "Schedule meeting with senior advisor" + ], + "qd_overview": { + "intent_score": 0.875, + "urgency_score": 0.723, + "engagement_score": 0.814 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Follow up on impressions", + "Send updated price list" + ], + "lead_stage": "site_visit_done", + "lead_status": "active" + }, + { + "client_ref": "a1a8a8bb-905b-4103-9235-c9fe678a0c8b", + "snapshot_generated_at": "2026-04-18T11:07:56.043851", + "identity": { + "full_name": "Sreyasi Saha", + "primary_email": "sreyasi.saha919@hotmail.com", + "primary_phone": "+91 7100388981", + "persona_labels": "[\"cash_rich_investor\"]", + "buyer_type": "price_sensitive" + }, + "account_links": [ + "e55acb15-9a3d-4b14-8934-cfd1c1b792b2" + ], + "active_opportunities": [ + { + "opportunity_id": "ccf369be-a321-4827-9b7f-7cebd44a3710", + "project": "Siddha Sky Waterfront", + "stage": "site_visit_done", + "value": 15877698 + } + ], + "recent_interactions": [ + { + "interaction_id": "95a4e409-9c10-4702-b91b-d1518319cb9f", + "channel": "builder_event", + "happened_at": "2026-04-06T11:07:56.043346" + }, + { + "interaction_id": "51733a67-91b9-4778-8623-55b633ee78dc", + "channel": "email", + "happened_at": "2026-03-15T11:07:56.043315" + }, + { + "interaction_id": "78bbacdc-9e57-4a4f-b440-c117506cc1fc", + "channel": "builder_event", + "happened_at": "2026-02-05T11:07:56.043483" + }, + { + "interaction_id": "8d13dbf8-0599-4449-8612-2223cd979e8d", + "channel": "call", + "happened_at": "2026-01-14T11:07:56.043400" + }, + { + "interaction_id": "f1c007f7-b47f-407d-84e8-c6872824173a", + "channel": "email", + "happened_at": "2025-12-07T11:07:56.043270" + } + ], + "property_interests": [ + { + "project": "Siddha Sky Waterfront", + "config": "3BHK", + "budget_max": 16036782 + }, + { + "project": "Godrej Blue", + "config": "2BHK", + "budget_max": 8372125 + }, + { + "project": "Ambuja Utpaala", + "config": "2BHK", + "budget_max": 17849802 + } + ], + "tasks": [], + "qd_overview": { + "intent_score": 0.362, + "urgency_score": 0.343, + "engagement_score": 0.312 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Follow up on impressions", + "Send updated price list" + ], + "lead_stage": "site_visit_done", + "lead_status": "active" + }, + { + "client_ref": "5783af05-943d-4ab1-a4c1-98f592da237f", + "snapshot_generated_at": "2026-04-18T11:07:56.044713", + "identity": { + "full_name": "Supratim Desai", + "primary_email": "supratim.desai825@outlook.com", + "primary_phone": "+91 9312495480", + "persona_labels": "[\"first_time_buyer\", \"value_seeker\", \"upgrade_seeker\"]", + "buyer_type": "slow_burn_investor" + }, + "account_links": [ + "a1de095a-529c-4d0a-9459-779ac5db4d88" + ], + "active_opportunities": [ + { + "opportunity_id": "fb2b876b-50f4-49b2-9aa8-1d0995fd53a7", + "project": "Godrej Elevate", + "stage": "booked", + "value": 14720834 + } + ], + "recent_interactions": [ + { + "interaction_id": "ffa50a11-146b-4549-aaa9-cf7d7c450ae5", + "channel": "call", + "happened_at": "2026-04-17T11:07:56.044251" + }, + { + "interaction_id": "2ec7ee3f-d95a-44e3-818e-d64a0aa2d2b0", + "channel": "whatsapp", + "happened_at": "2026-03-12T11:07:56.044172" + }, + { + "interaction_id": "e1d0ecd5-f072-4694-a5cc-662e92e1f7b5", + "channel": "site_visit", + "happened_at": "2026-03-08T11:07:56.044076" + }, + { + "interaction_id": "d7560da7-1296-4f08-a371-efc745799b65", + "channel": "referral", + "happened_at": "2026-01-21T11:07:56.044339" + }, + { + "interaction_id": "e61d40d7-4247-4ba7-ba97-bcc6aeff1581", + "channel": "whatsapp", + "happened_at": "2025-11-30T11:07:56.044100" + } + ], + "property_interests": [ + { + "project": "Godrej Elevate", + "config": "3BHK", + "budget_max": 13368236 + }, + { + "project": "Siddha Sky Waterfront", + "config": "4BHK", + "budget_max": 14915292 + } + ], + "tasks": [ + "Nudge for final decision" + ], + "qd_overview": { + "intent_score": 0.634, + "urgency_score": 0.647, + "engagement_score": 0.651 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Share loan documents", + "Introduce relationship manager" + ], + "lead_stage": "booked", + "lead_status": "active" + }, + { + "client_ref": "01959891-b672-4cbf-a2b7-1a615267df6a", + "snapshot_generated_at": "2026-04-18T11:07:56.045562", + "identity": { + "full_name": "Jayashree Biswas", + "primary_email": "jayashree.biswas389@outlook.com", + "primary_phone": "+91 8095662785", + "persona_labels": "[\"upgrade_seeker\"]", + "buyer_type": "high_intent" + }, + "account_links": [ + "da6384f9-5476-458c-8783-68c3219c1706" + ], + "active_opportunities": [], + "recent_interactions": [ + { + "interaction_id": "543f9fca-a298-4467-a035-ca0f79cb8906", + "channel": "email", + "happened_at": "2026-02-14T11:07:56.044883" + }, + { + "interaction_id": "12e86dee-2d1c-4348-9930-bb10bb02a23c", + "channel": "referral", + "happened_at": "2026-01-27T11:07:56.045160" + }, + { + "interaction_id": "d461cbae-49df-4b71-872d-6dabb037edc4", + "channel": "whatsapp", + "happened_at": "2025-12-25T11:07:56.045031" + }, + { + "interaction_id": "166d8dc5-cc0a-42cb-aa9f-0edb75bdf80e", + "channel": "referral", + "happened_at": "2025-12-13T11:07:56.045098" + }, + { + "interaction_id": "f9e1e060-bfc4-4be3-af03-877d983b1883", + "channel": "email", + "happened_at": "2025-12-05T11:07:56.044999" + } + ], + "property_interests": [ + { + "project": "DTC Sojon", + "config": "3BHK", + "budget_max": 7090946 + } + ], + "tasks": [], + "qd_overview": { + "intent_score": 0.856, + "urgency_score": 0.799, + "engagement_score": 0.888 + }, + "risk_flags": [ + "visit_completed_but_silent" + ], + "recommended_next_actions": [ + "Send project brochure", + "Schedule site visit" + ], + "lead_stage": "inquiry", + "lead_status": "active" + }, + { + "client_ref": "8ef14ed2-12f8-42aa-a4ee-6fbcfa4c99c6", + "snapshot_generated_at": "2026-04-18T11:07:56.046325", + "identity": { + "full_name": "Souvik Kundu", + "primary_email": "souvik.kundu701@gmail.com", + "primary_phone": "+91 9799293393", + "persona_labels": "[\"value_seeker\"]", + "buyer_type": "nri" + }, + "account_links": [ + "e7bc1d8b-7015-4b81-9df9-933d9a82263b" + ], + "active_opportunities": [ + { + "opportunity_id": "e8860573-b3f5-4247-87a3-fda8c1e62ec1", + "project": "Ambuja Utpaala", + "stage": "site_visit_done", + "value": 11169613 + } + ], + "recent_interactions": [ + { + "interaction_id": "fd94690f-84d0-4e29-b694-24585ca6952c", + "channel": "email", + "happened_at": "2026-04-02T11:07:56.045735" + }, + { + "interaction_id": "f90e5953-ef3e-4aa0-88bc-fa6532a71b7b", + "channel": "digital_ad", + "happened_at": "2026-02-19T11:07:56.045800" + }, + { + "interaction_id": "cdf908e5-725a-4db0-839e-eaa50975b6ee", + "channel": "site_visit", + "happened_at": "2026-01-19T11:07:56.045816" + }, + { + "interaction_id": "c8219fdc-4122-4c96-aba4-80ffd4ce9a9c", + "channel": "site_visit", + "happened_at": "2026-01-07T11:07:56.045770" + }, + { + "interaction_id": "8554e91d-0d9b-42a0-a44a-187873c8b436", + "channel": "builder_event", + "happened_at": "2026-01-07T11:07:56.045720" + } + ], + "property_interests": [ + { + "project": "Ambuja Utpaala", + "config": "4BHK", + "budget_max": 13376309 + }, + { + "project": "Godrej Blue", + "config": "4BHK", + "budget_max": 12694018 + } + ], + "tasks": [], + "qd_overview": { + "intent_score": 0.529, + "urgency_score": 0.566, + "engagement_score": 0.546 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Follow up on impressions", + "Send updated price list" + ], + "lead_stage": "site_visit_done", + "lead_status": "active" + }, + { + "client_ref": "b467fb6f-9051-4d9c-b205-e26d49498282", + "snapshot_generated_at": "2026-04-18T11:07:56.047083", + "identity": { + "full_name": "Ipsita Sarkar", + "primary_email": "ipsita.sarkar891@outlook.com", + "primary_phone": "+91 7587160112", + "persona_labels": "[\"analytical_buyer\"]", + "buyer_type": "broker_referral" + }, + "account_links": [ + "926a8c60-ae39-4028-a2cb-68f783fd2fe3" + ], + "active_opportunities": [], + "recent_interactions": [ + { + "interaction_id": "c4a62504-f9c2-420f-a0e0-8185c788a9f5", + "channel": "digital_ad", + "happened_at": "2026-04-06T11:07:56.046626" + }, + { + "interaction_id": "0d9dca9d-207e-431a-8154-6a11929bcdaa", + "channel": "builder_event", + "happened_at": "2026-03-09T11:07:56.046660" + }, + { + "interaction_id": "fb3e683f-3f30-434c-9306-379d7eba2501", + "channel": "referral", + "happened_at": "2025-12-21T11:07:56.046491" + }, + { + "interaction_id": "45151aea-af7d-4dec-aee3-e5417683bafe", + "channel": "call", + "happened_at": "2025-11-03T11:07:56.046544" + }, + { + "interaction_id": "4cf200c9-cc18-4a11-b6eb-3c98172816b4", + "channel": "email", + "happened_at": "2025-10-25T11:07:56.046511" + } + ], + "property_interests": [ + { + "project": "Godrej Blue", + "config": "2BHK", + "budget_max": 10477443 + }, + { + "project": "Atri Surya Toron", + "config": "3BHK", + "budget_max": 5965070 + }, + { + "project": "Godrej Elevate", + "config": "3BHK", + "budget_max": 21247787 + } + ], + "tasks": [], + "qd_overview": { + "intent_score": 0.676, + "urgency_score": 0.718, + "engagement_score": 0.735 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Send project brochure", + "Schedule site visit" + ], + "lead_stage": "inquiry", + "lead_status": "active" + }, + { + "client_ref": "76622def-7cb0-4022-b590-24550c9bf4b1", + "snapshot_generated_at": "2026-04-18T11:07:56.047865", + "identity": { + "full_name": "Arpita Nandi", + "primary_email": "arpita.nandi695@company.com", + "primary_phone": "+91 9714934783", + "persona_labels": "[\"first_time_buyer\", \"status_buyer\"]", + "buyer_type": "broker_referral" + }, + "account_links": [ + "38190594-f899-49eb-bc88-53964709cf07" + ], + "active_opportunities": [ + { + "opportunity_id": "f06c8112-6a42-446e-a8a9-d36604862ec1", + "project": "Atri Surya Toron", + "stage": "site_visit_done", + "value": 5601657 + } + ], + "recent_interactions": [ + { + "interaction_id": "cdc3a5bb-9e48-44a1-9d03-e0c4b21fade2", + "channel": "call", + "happened_at": "2026-04-14T11:07:56.047324" + }, + { + "interaction_id": "dd1cc72a-18bd-4e80-9d7d-6cfaba8427e8", + "channel": "builder_event", + "happened_at": "2026-03-04T11:07:56.047410" + }, + { + "interaction_id": "302943d2-39b1-4d6f-af29-0aeca6ca5d1a", + "channel": "digital_ad", + "happened_at": "2025-11-25T11:07:56.047310" + }, + { + "interaction_id": "c8875b62-f91f-459c-b051-11549ac1f817", + "channel": "site_visit", + "happened_at": "2025-10-28T11:07:56.047284" + }, + { + "interaction_id": "936d9616-ffc6-47ae-b2ca-89e4c809338d", + "channel": "site_visit", + "happened_at": "2025-10-24T11:07:56.047258" + } + ], + "property_interests": [ + { + "project": "Atri Surya Toron", + "config": "2BHK", + "budget_max": 5619676 + }, + { + "project": "Merlin Avana", + "config": "4BHK", + "budget_max": 13490859 + } + ], + "tasks": [ + "Send legal documents" + ], + "qd_overview": { + "intent_score": 0.748, + "urgency_score": 0.722, + "engagement_score": 0.721 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Follow up on impressions", + "Send updated price list" + ], + "lead_stage": "site_visit_done", + "lead_status": "active" + }, + { + "client_ref": "cab2ad05-e881-4fbc-9c96-5bf5c3648527", + "snapshot_generated_at": "2026-04-18T11:07:56.048665", + "identity": { + "full_name": "Suresh Singh", + "primary_email": "suresh.singh144@hotmail.com", + "primary_phone": "+91 9410603666", + "persona_labels": "[\"analytical_buyer\"]", + "buyer_type": "nri" + }, + "account_links": [ + "50a26214-39cd-4e63-b551-acd26576c9d2" + ], + "active_opportunities": [], + "recent_interactions": [ + { + "interaction_id": "7df79a20-dce5-4e53-be9c-066dfb07d1af", + "channel": "referral", + "happened_at": "2026-03-17T11:07:56.048267" + }, + { + "interaction_id": "0e33956a-a6e8-4d13-af89-0d03c3e6819c", + "channel": "email", + "happened_at": "2026-02-16T11:07:56.048143" + }, + { + "interaction_id": "c3e27984-aff6-44b4-808f-aeb72f2fa40c", + "channel": "email", + "happened_at": "2026-01-23T11:07:56.048239" + }, + { + "interaction_id": "8c3152f6-d0aa-4eab-9418-8b7a4801d5bb", + "channel": "builder_event", + "happened_at": "2026-01-22T11:07:56.048176" + }, + { + "interaction_id": "23402cc8-f9e6-4b89-a913-6863a6b11ad5", + "channel": "site_visit", + "happened_at": "2026-01-18T11:07:56.048200" + } + ], + "property_interests": [ + { + "project": "Siddha Serena", + "config": "3BHK", + "budget_max": 6208772 + }, + { + "project": "Godrej Blue", + "config": "3BHK", + "budget_max": 8004748 + }, + { + "project": "Ambuja Utpaala", + "config": "4BHK", + "budget_max": 13420988 + } + ], + "tasks": [ + "Send legal documents" + ], + "qd_overview": { + "intent_score": 0.5, + "urgency_score": 0.601, + "engagement_score": 0.502 + }, + "risk_flags": [ + "no_follow_up_in_30_days", + "multiple_project_comparisons", + "decision_stalled_at_family" + ], + "recommended_next_actions": [ + "Re-engage with new offer", + "Check status after 30 days" + ], + "lead_stage": "cold", + "lead_status": "cold" + }, + { + "client_ref": "2137043a-0863-47c9-9c64-d35580c2db56", + "snapshot_generated_at": "2026-04-18T11:07:56.049484", + "identity": { + "full_name": "Ganesh Sinha", + "primary_email": "ganesh.sinha723@outlook.com", + "primary_phone": "+91 9373186214", + "persona_labels": "[\"emotional_buyer\"]", + "buyer_type": "nri" + }, + "account_links": [ + "680245f4-619c-40a1-90ff-c098cccf2f41" + ], + "active_opportunities": [ + { + "opportunity_id": "355a570b-382a-4c9d-a839-8ce2e9538605", + "project": "Siddha Sky Waterfront", + "stage": "proposal_sent", + "value": 14476514 + } + ], + "recent_interactions": [ + { + "interaction_id": "39f37868-deac-4714-8bc0-afda0b797e37", + "channel": "digital_ad", + "happened_at": "2026-03-17T11:07:56.049055" + }, + { + "interaction_id": "1c578e35-9bc3-4bba-a598-a077ae0cb2bf", + "channel": "call", + "happened_at": "2026-03-14T11:07:56.048956" + }, + { + "interaction_id": "1a1b23d0-1f25-4cf0-a660-85c571d765a6", + "channel": "builder_event", + "happened_at": "2026-03-08T11:07:56.048938" + }, + { + "interaction_id": "61fa5849-03cb-45be-83ce-31205cb5dc7d", + "channel": "whatsapp", + "happened_at": "2026-01-30T11:07:56.048861" + } + ], + "property_interests": [ + { + "project": "Siddha Sky Waterfront", + "config": "3BHK", + "budget_max": 13965548 + }, + { + "project": "Merlin Avana", + "config": "2BHK", + "budget_max": 10598459 + }, + { + "project": "Eden Devprayag", + "config": "3BHK", + "budget_max": 10168503 + } + ], + "tasks": [ + "Check loan approval status" + ], + "qd_overview": { + "intent_score": 0.681, + "urgency_score": 0.734, + "engagement_score": 0.821 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Chase for decision", + "Address objections" + ], + "lead_stage": "proposal_sent", + "lead_status": "active" + }, + { + "client_ref": "5c1cf7cb-cee5-4706-91e1-ff468af366a7", + "snapshot_generated_at": "2026-04-18T11:07:56.050320", + "identity": { + "full_name": "Arnab Bose", + "primary_email": "arnab.bose990@company.com", + "primary_phone": "+91 7180232446", + "persona_labels": "[\"first_time_buyer\"]", + "buyer_type": "broker_referral" + }, + "account_links": [ + "3ca36680-91ab-4414-adf4-578793e34459" + ], + "active_opportunities": [ + { + "opportunity_id": "4468cd70-b9b1-4364-8e6e-5d62d72fecc7", + "project": "Siddha Suburbia Bungalow", + "stage": "qualified", + "value": 22557558 + } + ], + "recent_interactions": [ + { + "interaction_id": "59c3f66b-1dd0-4c2d-bd10-c653ccb46f3a", + "channel": "builder_event", + "happened_at": "2026-02-10T11:07:56.049673" + }, + { + "interaction_id": "ecabfa26-b295-49ae-a687-92470ab3669d", + "channel": "builder_event", + "happened_at": "2026-01-27T11:07:56.049826" + }, + { + "interaction_id": "2748398a-f3db-4306-a756-ca39c9a82ac3", + "channel": "digital_ad", + "happened_at": "2026-01-25T11:07:56.049658" + }, + { + "interaction_id": "7c636abc-5b62-4e27-b6ff-f282a5210a83", + "channel": "digital_ad", + "happened_at": "2026-01-10T11:07:56.049688" + }, + { + "interaction_id": "0934226e-71fd-4e1e-9473-42d5d8497926", + "channel": "call", + "happened_at": "2025-10-10T11:07:56.049706" + } + ], + "property_interests": [ + { + "project": "Siddha Suburbia Bungalow", + "config": "4BHK", + "budget_max": 24240928 + }, + { + "project": "Shriram Grand City", + "config": "4BHK", + "budget_max": 8373653 + } + ], + "tasks": [ + "Check loan approval status" + ], + "qd_overview": { + "intent_score": 0.714, + "urgency_score": 0.635, + "engagement_score": 0.768 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Book site visit", + "Share payment plan" + ], + "lead_stage": "qualified", + "lead_status": "active" + }, + { + "client_ref": "4884f843-f013-4371-a731-d7848d002b60", + "snapshot_generated_at": "2026-04-18T11:07:56.050991", + "identity": { + "full_name": "Shobha Majumdar", + "primary_email": "shobha.majumdar534@outlook.com", + "primary_phone": "+91 8665230912", + "persona_labels": "[\"first_time_buyer\", \"upgrade_seeker\", \"status_buyer\"]", + "buyer_type": "broker_referral" + }, + "account_links": [ + "19b72a84-3668-49b3-98a2-f004e49c3ff0" + ], + "active_opportunities": [ + { + "opportunity_id": "ca394ede-3cc5-4a04-8629-628e625169c5", + "project": "Atri Surya Toron", + "stage": "qualified", + "value": 7261965 + } + ], + "recent_interactions": [ + { + "interaction_id": "a306bf8a-390c-4127-a3ad-a6eb2230b9c8", + "channel": "site_visit", + "happened_at": "2026-03-09T11:07:56.050447" + }, + { + "interaction_id": "ccf4068e-4368-4b62-90f2-5a95af90e4f4", + "channel": "digital_ad", + "happened_at": "2026-03-07T11:07:56.050502" + }, + { + "interaction_id": "cfa917c1-61a5-4a1a-8955-5c6d029bb62d", + "channel": "digital_ad", + "happened_at": "2026-02-26T11:07:56.050517" + }, + { + "interaction_id": "0278557f-b97a-4667-b865-7d22cadab83b", + "channel": "whatsapp", + "happened_at": "2026-02-20T11:07:56.050549" + }, + { + "interaction_id": "8119e8ba-d748-4120-9f62-afc288b30fc9", + "channel": "referral", + "happened_at": "2026-02-05T11:07:56.050472" + } + ], + "property_interests": [ + { + "project": "Atri Surya Toron", + "config": "2BHK", + "budget_max": 5465783 + } + ], + "tasks": [], + "qd_overview": { + "intent_score": 0.571, + "urgency_score": 0.615, + "engagement_score": 0.678 + }, + "risk_flags": [ + "repeated_no_show", + "decision_stalled_at_family" + ], + "recommended_next_actions": [ + "Book site visit", + "Share payment plan" + ], + "lead_stage": "qualified", + "lead_status": "active" + }, + { + "client_ref": "f89fd7a1-0c21-4fba-b5f0-d66e341f7bce", + "snapshot_generated_at": "2026-04-18T11:07:56.051671", + "identity": { + "full_name": "Shobha Chowdhury", + "primary_email": "shobha.chowdhury874@company.com", + "primary_phone": "+91 9762744182", + "persona_labels": "[\"cash_rich_investor\", \"nri_diaspora\"]", + "buyer_type": "repeat_visitor" + }, + "account_links": [ + "926a8c60-ae39-4028-a2cb-68f783fd2fe3" + ], + "active_opportunities": [ + { + "opportunity_id": "5ceff902-7bf5-4766-a0ac-b87daf9a4c9e", + "project": "DTC Good Earth", + "stage": "qualified", + "value": 7239198 + } + ], + "recent_interactions": [ + { + "interaction_id": "6af43f56-8960-4e6e-a879-d5a8e911da6a", + "channel": "email", + "happened_at": "2026-04-01T11:07:56.051146" + }, + { + "interaction_id": "7e48ff37-86e0-4dcf-9b02-cd648e0f60eb", + "channel": "email", + "happened_at": "2026-02-24T11:07:56.051314" + }, + { + "interaction_id": "d4bba2b0-112b-4a43-9a89-8678ad970485", + "channel": "site_visit", + "happened_at": "2026-02-06T11:07:56.051247" + }, + { + "interaction_id": "8686cf7b-7903-4136-942d-02edc2e9cbeb", + "channel": "builder_event", + "happened_at": "2026-01-30T11:07:56.051271" + }, + { + "interaction_id": "90247c3d-861b-408f-be97-2710e9316997", + "channel": "site_visit", + "happened_at": "2025-12-20T11:07:56.051290" + } + ], + "property_interests": [ + { + "project": "DTC Good Earth", + "config": "3BHK", + "budget_max": 9023598 + }, + { + "project": "Merlin Avana", + "config": "2BHK", + "budget_max": 10076765 + } + ], + "tasks": [ + "Follow up after site visit" + ], + "qd_overview": { + "intent_score": 0.806, + "urgency_score": 0.86, + "engagement_score": 0.881 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Book site visit", + "Share payment plan" + ], + "lead_stage": "qualified", + "lead_status": "active" + }, + { + "client_ref": "8002c26a-cda0-46e7-9211-fd392175af17", + "snapshot_generated_at": "2026-04-18T11:07:56.052407", + "identity": { + "full_name": "Suresh Mukherjee", + "primary_email": "suresh.mukherjee382@rediffmail.com", + "primary_phone": "+91 7527745180", + "persona_labels": "[\"status_buyer\"]", + "buyer_type": "high_intent" + }, + "account_links": [ + "d0f173da-010e-43de-b222-8535c26cfcfc" + ], + "active_opportunities": [ + { + "opportunity_id": "01634ba0-779b-4975-b1f1-dc7d46515992", + "project": "Merlin Avana", + "stage": "qualified", + "value": 14866077 + } + ], + "recent_interactions": [ + { + "interaction_id": "b2fa4dd8-6ddf-4ccb-a3c7-5763af7261b6", + "channel": "call", + "happened_at": "2026-03-25T11:07:56.051930" + }, + { + "interaction_id": "38dae513-d143-443e-9d2f-a821bc6089b5", + "channel": "site_visit", + "happened_at": "2026-03-19T11:07:56.052025" + }, + { + "interaction_id": "80aa2aa4-19a9-450e-8f92-0ceedf0030a5", + "channel": "whatsapp", + "happened_at": "2026-02-17T11:07:56.051843" + }, + { + "interaction_id": "fb59357a-3acb-4a43-b489-470fa61b0766", + "channel": "builder_event", + "happened_at": "2026-01-27T11:07:56.052008" + } + ], + "property_interests": [ + { + "project": "Merlin Avana", + "config": "3BHK", + "budget_max": 10321006 + }, + { + "project": "DTC Good Earth", + "config": "2BHK", + "budget_max": 6039017 + }, + { + "project": "Siddha Sky Waterfront", + "config": "4BHK", + "budget_max": 18302025 + } + ], + "tasks": [ + "Confirm booking appointment" + ], + "qd_overview": { + "intent_score": 0.938, + "urgency_score": 0.921, + "engagement_score": 0.925 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Book site visit", + "Share payment plan" + ], + "lead_stage": "qualified", + "lead_status": "active" + }, + { + "client_ref": "453d3b60-d792-4627-9673-775aae8b9ad1", + "snapshot_generated_at": "2026-04-18T11:07:56.053113", + "identity": { + "full_name": "Laboni Bose", + "primary_email": "laboni.bose829@hotmail.com", + "primary_phone": "+91 9529092910", + "persona_labels": "[\"nri_diaspora\", \"value_seeker\"]", + "buyer_type": "nri" + }, + "account_links": [ + "50a26214-39cd-4e63-b551-acd26576c9d2" + ], + "active_opportunities": [ + { + "opportunity_id": "8bab7d85-0855-47d8-b16b-83aee9cbb35a", + "project": "DTC Sojon", + "stage": "site_visit_done", + "value": 4598878 + } + ], + "recent_interactions": [ + { + "interaction_id": "f55110a6-c1e5-4ced-8483-81c428e65ab6", + "channel": "site_visit", + "happened_at": "2026-03-05T11:07:56.052578" + }, + { + "interaction_id": "34bced52-0f86-4b2f-8e88-c868d8dca729", + "channel": "builder_event", + "happened_at": "2025-12-05T11:07:56.052627" + }, + { + "interaction_id": "910c1502-9fb2-4c9a-a75c-4eb40567ea8a", + "channel": "digital_ad", + "happened_at": "2025-11-22T11:07:56.052606" + }, + { + "interaction_id": "08ae5e79-3240-40c5-809f-1a666d57afd0", + "channel": "builder_event", + "happened_at": "2025-11-17T11:07:56.052661" + }, + { + "interaction_id": "a0e59c5b-1f3a-4027-b607-997af18083f7", + "channel": "referral", + "happened_at": "2025-10-10T11:07:56.052645" + } + ], + "property_interests": [ + { + "project": "DTC Sojon", + "config": "2BHK", + "budget_max": 4092950 + }, + { + "project": "Godrej Elevate", + "config": "3BHK", + "budget_max": 21922935 + } + ], + "tasks": [ + "Send festive offer" + ], + "qd_overview": { + "intent_score": 0.707, + "urgency_score": 0.703, + "engagement_score": 0.657 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Follow up on impressions", + "Send updated price list" + ], + "lead_stage": "site_visit_done", + "lead_status": "active" + }, + { + "client_ref": "13eada69-77d2-4747-99cd-3ea072032412", + "snapshot_generated_at": "2026-04-18T11:07:56.053903", + "identity": { + "full_name": "Suravi Mondal", + "primary_email": "suravi.mondal44@outlook.com", + "primary_phone": "+91 8407633783", + "persona_labels": "[\"first_time_buyer\"]", + "buyer_type": "family_decision_unit" + }, + "account_links": [ + "e7bc1d8b-7015-4b81-9df9-933d9a82263b" + ], + "active_opportunities": [ + { + "opportunity_id": "b6cdee47-457f-4468-a773-96ae9e57fc2d", + "project": "Godrej Elevate", + "stage": "site_visit_done", + "value": 18379807 + } + ], + "recent_interactions": [ + { + "interaction_id": "4b8fb824-7ff9-41d4-890c-fe147032b1e0", + "channel": "whatsapp", + "happened_at": "2026-04-08T11:07:56.053445" + }, + { + "interaction_id": "49ffe333-80b3-42c7-a229-99f058ab2b52", + "channel": "builder_event", + "happened_at": "2026-04-06T11:07:56.053536" + }, + { + "interaction_id": "9d037609-22b3-42c2-967d-2d52c0566f79", + "channel": "site_visit", + "happened_at": "2026-03-02T11:07:56.053311" + }, + { + "interaction_id": "7a5a0f85-200f-4547-8a01-a84b674b4905", + "channel": "email", + "happened_at": "2026-02-13T11:07:56.053281" + }, + { + "interaction_id": "5d5affc1-4f73-46aa-b8cb-3381ddb47061", + "channel": "call", + "happened_at": "2026-02-01T11:07:56.053369" + } + ], + "property_interests": [ + { + "project": "Godrej Elevate", + "config": "3BHK", + "budget_max": 16105328 + }, + { + "project": "DTC Good Earth", + "config": "2BHK", + "budget_max": 7129708 + } + ], + "tasks": [ + "Send festive offer", + "Re-engage after 2 weeks silence", + "Schedule meeting with senior advisor" + ], + "qd_overview": { + "intent_score": 0.495, + "urgency_score": 0.44, + "engagement_score": 0.539 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Follow up on impressions", + "Send updated price list" + ], + "lead_stage": "site_visit_done", + "lead_status": "active" + }, + { + "client_ref": "748c64a8-9c48-47d2-a469-57db802b8630", + "snapshot_generated_at": "2026-04-18T11:07:56.054759", + "identity": { + "full_name": "Rohit Bhattacharya", + "primary_email": "rohit.bhattacharya221@yahoo.com", + "primary_phone": "+91 8162744688", + "persona_labels": "[\"cash_rich_investor\", \"investment_focus\", \"emotional_buyer\"]", + "buyer_type": "nri" + }, + "account_links": [ + "522fdd95-312a-4741-b460-23b17bce070d" + ], + "active_opportunities": [ + { + "opportunity_id": "40d9757c-017d-4772-8a6c-085a57074a73", + "project": "Siddha Suburbia Bungalow", + "stage": "qualified", + "value": 14419247 + } + ], + "recent_interactions": [ + { + "interaction_id": "ad7f01af-fcc9-4f3e-8360-432b1b7c51cd", + "channel": "whatsapp", + "happened_at": "2026-03-10T11:07:56.054045" + }, + { + "interaction_id": "8f86df4d-e44f-4c52-bd29-b2c99394bc0e", + "channel": "site_visit", + "happened_at": "2026-02-14T11:07:56.054157" + }, + { + "interaction_id": "6b4aeb73-8785-4ae1-86aa-86bc15d3a088", + "channel": "referral", + "happened_at": "2025-12-20T11:07:56.054217" + }, + { + "interaction_id": "650e7a6a-c39a-4dfa-a6cb-cc3fc6030e7e", + "channel": "builder_event", + "happened_at": "2025-12-20T11:07:56.054186" + }, + { + "interaction_id": "37c48eda-42b9-403c-9603-fcb95838f34e", + "channel": "site_visit", + "happened_at": "2025-12-17T11:07:56.054132" + } + ], + "property_interests": [ + { + "project": "Siddha Suburbia Bungalow", + "config": "5BHK", + "budget_max": 23239229 + }, + { + "project": "Sugam Prakriti", + "config": "3BHK", + "budget_max": 8960010 + }, + { + "project": "DTC Sojon", + "config": "2BHK", + "budget_max": 4210464 + } + ], + "tasks": [ + "Check competitor comparison status" + ], + "qd_overview": { + "intent_score": 0.546, + "urgency_score": 0.648, + "engagement_score": 0.672 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Book site visit", + "Share payment plan" + ], + "lead_stage": "qualified", + "lead_status": "active" + }, + { + "client_ref": "abaa9291-e047-4115-bcdf-e7d6a48c9f53", + "snapshot_generated_at": "2026-04-18T11:07:56.055542", + "identity": { + "full_name": "Arnab Mandal", + "primary_email": "arnab.mandal585@rediffmail.com", + "primary_phone": "+91 9272409296", + "persona_labels": "[\"analytical_buyer\"]", + "buyer_type": "high_intent" + }, + "account_links": [ + "63cc313d-eb9d-4ad9-8502-e9dd330e5e0b" + ], + "active_opportunities": [ + { + "opportunity_id": "4e27b6a4-d58f-49bd-af7e-26c446b73ef6", + "project": "Siddha Suburbia Bungalow", + "stage": "proposal_sent", + "value": 20458563 + } + ], + "recent_interactions": [ + { + "interaction_id": "cdc893bb-9f7f-4d78-bda5-4369aaec2701", + "channel": "whatsapp", + "happened_at": "2025-12-06T11:07:56.054952" + }, + { + "interaction_id": "e0dba0fa-37f6-4695-b345-48de8d792afe", + "channel": "email", + "happened_at": "2025-11-29T11:07:56.055057" + }, + { + "interaction_id": "985e99e9-8708-4c5c-9b01-74b9054a1f8e", + "channel": "builder_event", + "happened_at": "2025-10-12T11:07:56.055041" + } + ], + "property_interests": [ + { + "project": "Siddha Suburbia Bungalow", + "config": "4BHK", + "budget_max": 15364179 + }, + { + "project": "Siddha Serena", + "config": "3BHK", + "budget_max": 6145036 + } + ], + "tasks": [], + "qd_overview": { + "intent_score": 0.704, + "urgency_score": 0.756, + "engagement_score": 0.813 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Chase for decision", + "Address objections" + ], + "lead_stage": "proposal_sent", + "lead_status": "active" + }, + { + "client_ref": "6a7247dc-c922-439e-91db-bab9f814cd83", + "snapshot_generated_at": "2026-04-18T11:07:56.056347", + "identity": { + "full_name": "Debashish Pillai", + "primary_email": "debashish.pillai355@company.com", + "primary_phone": "+91 7076875295", + "persona_labels": "[\"value_seeker\"]", + "buyer_type": "broker_referral" + }, + "account_links": [ + "3ee6687a-9fa3-428d-97da-4a73cc843273" + ], + "active_opportunities": [], + "recent_interactions": [ + { + "interaction_id": "fa30fc87-9935-4ec9-9b62-06b878b99c54", + "channel": "email", + "happened_at": "2026-03-29T11:07:56.055926" + }, + { + "interaction_id": "19881275-0541-4550-a1b4-3139bfc703e2", + "channel": "builder_event", + "happened_at": "2026-03-10T11:07:56.055830" + }, + { + "interaction_id": "2af01f2d-1b06-429f-ae2e-5371c73a141d", + "channel": "digital_ad", + "happened_at": "2026-02-23T11:07:56.055982" + }, + { + "interaction_id": "223d9914-959b-4edb-a35e-1b6436186d35", + "channel": "whatsapp", + "happened_at": "2026-01-29T11:07:56.055733" + }, + { + "interaction_id": "997d3517-8fe9-476f-9361-438087d24f7c", + "channel": "digital_ad", + "happened_at": "2026-01-28T11:07:56.055815" + } + ], + "property_interests": [ + { + "project": "Eden Devprayag", + "config": "2BHK", + "budget_max": 13070167 + }, + { + "project": "Ambuja Utpaala", + "config": "4BHK", + "budget_max": 12594027 + } + ], + "tasks": [], + "qd_overview": { + "intent_score": 0.685, + "urgency_score": 0.742, + "engagement_score": 0.636 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Send project brochure", + "Schedule site visit" + ], + "lead_stage": "inquiry", + "lead_status": "active" + }, + { + "client_ref": "9b0dcad5-42da-4bdb-bede-65afadc1f0ef", + "snapshot_generated_at": "2026-04-18T11:07:56.057114", + "identity": { + "full_name": "Shalini Mehta", + "primary_email": "shalini.mehta726@hotmail.com", + "primary_phone": "+91 7218861667", + "persona_labels": "[\"value_seeker\", \"status_buyer\", \"analytical_buyer\"]", + "buyer_type": "family_decision_unit" + }, + "account_links": [ + "a1de095a-529c-4d0a-9459-779ac5db4d88" + ], + "active_opportunities": [], + "recent_interactions": [ + { + "interaction_id": "6b4f6085-3395-4061-9148-c433fcc1ed64", + "channel": "digital_ad", + "happened_at": "2026-04-17T11:07:56.056621" + }, + { + "interaction_id": "ecab733f-ea51-449f-84a0-5616efb617d4", + "channel": "site_visit", + "happened_at": "2026-01-21T11:07:56.056712" + }, + { + "interaction_id": "becc37b0-95e0-475f-b655-7b8cb318080e", + "channel": "builder_event", + "happened_at": "2025-12-25T11:07:56.056603" + }, + { + "interaction_id": "2f372852-d39d-4967-a3fe-3a7ca504d2de", + "channel": "builder_event", + "happened_at": "2025-12-19T11:07:56.056466" + }, + { + "interaction_id": "033a23e9-a6c9-4ddf-8877-00597eac5098", + "channel": "digital_ad", + "happened_at": "2025-11-26T11:07:56.056482" + } + ], + "property_interests": [ + { + "project": "Atri Surya Toron", + "config": "2BHK", + "budget_max": 5434600 + } + ], + "tasks": [], + "qd_overview": { + "intent_score": 0.646, + "urgency_score": 0.647, + "engagement_score": 0.64 + }, + "risk_flags": [], + "recommended_next_actions": [ + "Send project brochure", + "Schedule site visit" + ], + "lead_stage": "inquiry", + "lead_status": "active" + }, + { + "client_ref": "b4608f6d-cdc1-441c-b1fb-2d3611fc40a3", + "snapshot_generated_at": "2026-04-18T11:07:56.059725", + "identity": { + "full_name": "Nandita Kundu", + "primary_email": "nandita.kundu93@gmail.com", + "primary_phone": "+91 7013487336", + "persona_labels": "[\"investment_focus\"]", + "buyer_type": "slow_burn_investor" + }, + "account_links": [ + "8aa4d488-571e-4cd4-aa27-8372a49aacbf" + ], + "active_opportunities": [ + { + "opportunity_id": "968612cc-3227-459f-861b-1aeea4b43ef5", + "project": "Siddha Serena", + "stage": "qualified", + "value": 6146168 + } + ], + "recent_interactions": [ + { + "interaction_id": "9d6cb574-dca0-4ab7-8200-f31742b1c286", + "channel": "site_visit", + "happened_at": "2026-03-12T11:07:56.057830" + }, + { + "interaction_id": "54e7eecc-7742-4e3d-a54d-138460727747", + "channel": "digital_ad", + "happened_at": "2026-02-24T11:07:56.058889" + }, + { + "interaction_id": "7b940086-9e6f-4054-939b-94f481777715", + "channel": "call", + "happened_at": "2026-01-22T11:07:56.058759" + }, + { + "interaction_id": "a18cd934-6d0e-45d2-8d0e-b374972495be", + "channel": "whatsapp", + "happened_at": "2025-12-21T11:07:56.057869" + }, + { + "interaction_id": "40f000c4-13e7-4267-9a79-e323ff91e1e4", + "channel": "site_visit", + "happened_at": "2025-10-28T11:07:56.058709" + } + ], + "property_interests": [ + { + "project": "Siddha Serena", + "config": "2BHK", + "budget_max": 5911230 + }, + { + "project": "Atri Surya Toron", + "config": "2BHK", + "budget_max": 5568176 + } + ], + "tasks": [ + "Follow up after site visit", + "Confirm booking appointment" + ], + "qd_overview": { + "intent_score": 0.584, + "urgency_score": 0.537, + "engagement_score": 0.517 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Book site visit", + "Share payment plan" + ], + "lead_stage": "qualified", + "lead_status": "active" + }, + { + "client_ref": "629f23a9-4268-41cc-b9ef-eac6b8f0ae2a", + "snapshot_generated_at": "2026-04-18T11:07:56.060385", + "identity": { + "full_name": "Sneha Sen", + "primary_email": "sneha.sen410@yahoo.com", + "primary_phone": "+91 8914044524", + "persona_labels": "[\"analytical_buyer\", \"status_buyer\"]", + "buyer_type": "broker_referral" + }, + "account_links": [ + "19b72a84-3668-49b3-98a2-f004e49c3ff0" + ], + "active_opportunities": [ + { + "opportunity_id": "57678bd9-13fb-4e65-82ba-3b3432e7c32d", + "project": "DTC Good Earth", + "stage": "qualified", + "value": 5769821 + } + ], + "recent_interactions": [ + { + "interaction_id": "a4c55ccb-240b-4822-8c2c-cf1d1b6d0646", + "channel": "call", + "happened_at": "2025-12-20T11:07:56.059978" + }, + { + "interaction_id": "6888cfc2-e2ac-4c8f-9378-2b1ef7245da1", + "channel": "digital_ad", + "happened_at": "2025-11-14T11:07:56.059963" + }, + { + "interaction_id": "c2c65e38-8dd3-4c0e-b582-7732e2356b6a", + "channel": "digital_ad", + "happened_at": "2025-11-14T11:07:56.059946" + } + ], + "property_interests": [ + { + "project": "DTC Good Earth", + "config": "3BHK", + "budget_max": 6790290 + } + ], + "tasks": [], + "qd_overview": { + "intent_score": 0.54, + "urgency_score": 0.512, + "engagement_score": 0.485 + }, + "risk_flags": [], + "recommended_next_actions": [ + "Book site visit", + "Share payment plan" + ], + "lead_stage": "qualified", + "lead_status": "active" + }, + { + "client_ref": "d3c31aa6-7541-4df6-8c41-cb521b45d0c7", + "snapshot_generated_at": "2026-04-18T11:07:56.061035", + "identity": { + "full_name": "Kaushik Singh", + "primary_email": "kaushik.singh8@company.com", + "primary_phone": "+91 7114470723", + "persona_labels": "[\"value_seeker\", \"nri_diaspora\"]", + "buyer_type": "broker_referral" + }, + "account_links": [ + "167e5af1-66b1-41c0-9a9d-42aa9b77a3a7" + ], + "active_opportunities": [ + { + "opportunity_id": "2db86fe9-d500-4076-85c6-bc508a51c6a7", + "project": "Godrej Elevate", + "stage": "qualified", + "value": 16252223 + } + ], + "recent_interactions": [ + { + "interaction_id": "aa2809f8-1e63-4f64-8287-c88e922cc109", + "channel": "digital_ad", + "happened_at": "2026-02-18T11:07:56.060539" + }, + { + "interaction_id": "8608149e-97a6-4d0b-b9ed-d7984b1d4303", + "channel": "builder_event", + "happened_at": "2026-02-06T11:07:56.060589" + }, + { + "interaction_id": "08fc979b-3e0b-4476-a751-2393e3f97350", + "channel": "site_visit", + "happened_at": "2026-01-12T11:07:56.060558" + } + ], + "property_interests": [ + { + "project": "Godrej Elevate", + "config": "3BHK", + "budget_max": 13141629 + }, + { + "project": "Godrej Blue", + "config": "2BHK", + "budget_max": 8394402 + } + ], + "tasks": [ + "Check loan approval status" + ], + "qd_overview": { + "intent_score": 0.525, + "urgency_score": 0.633, + "engagement_score": 0.576 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Book site visit", + "Share payment plan" + ], + "lead_stage": "qualified", + "lead_status": "active" + }, + { + "client_ref": "5abbe811-55bd-409c-aa79-0a8c831e4797", + "snapshot_generated_at": "2026-04-18T11:07:56.061634", + "identity": { + "full_name": "Radhika Sarkar", + "primary_email": "radhika.sarkar129@rediffmail.com", + "primary_phone": "+91 9510412952", + "persona_labels": "[\"first_time_buyer\", \"investment_focus\", \"nri_diaspora\"]", + "buyer_type": "repeat_visitor" + }, + "account_links": [ + "d0f173da-010e-43de-b222-8535c26cfcfc" + ], + "active_opportunities": [], + "recent_interactions": [ + { + "interaction_id": "3d7175ac-f1d7-4da0-9d02-5eb3c7217dcc", + "channel": "whatsapp", + "happened_at": "2026-04-05T11:07:56.061275" + }, + { + "interaction_id": "2fc6fe69-de08-4a65-ba8b-5e907fb74c08", + "channel": "digital_ad", + "happened_at": "2026-02-17T11:07:56.061259" + }, + { + "interaction_id": "3b8cc928-c437-4507-bfe2-85c7e8a774f2", + "channel": "site_visit", + "happened_at": "2026-01-05T11:07:56.061180" + }, + { + "interaction_id": "d0ab3665-792c-405c-8a0b-28c604122e8f", + "channel": "email", + "happened_at": "2025-12-28T11:07:56.061218" + } + ], + "property_interests": [ + { + "project": "Atri Aqua", + "config": "2BHK", + "budget_max": 8510428 + }, + { + "project": "Ambuja Utpaala", + "config": "3BHK", + "budget_max": 17603456 + }, + { + "project": "Godrej Elevate", + "config": "4BHK", + "budget_max": 15427057 + } + ], + "tasks": [ + "Nudge for final decision" + ], + "qd_overview": { + "intent_score": 0.826, + "urgency_score": 0.901, + "engagement_score": 0.808 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Send project brochure", + "Schedule site visit" + ], + "lead_stage": "inquiry", + "lead_status": "active" + }, + { + "client_ref": "ec8ba3a4-4c4a-4524-83d5-cb41faf4870a", + "snapshot_generated_at": "2026-04-18T11:07:56.062350", + "identity": { + "full_name": "Rupali Ganguly", + "primary_email": "rupali.ganguly635@company.com", + "primary_phone": "+91 9425075705", + "persona_labels": "[\"emotional_buyer\"]", + "buyer_type": "repeat_visitor" + }, + "account_links": [ + "19b72a84-3668-49b3-98a2-f004e49c3ff0" + ], + "active_opportunities": [ + { + "opportunity_id": "8e3f322f-f03a-46e6-b20a-b48134f63ce4", + "project": "Siddha Suburbia Bungalow", + "stage": "qualified", + "value": 13304754 + } + ], + "recent_interactions": [ + { + "interaction_id": "2ce3138f-7cf0-4463-8bf5-802c2b9dae74", + "channel": "referral", + "happened_at": "2026-02-09T11:07:56.061898" + }, + { + "interaction_id": "4d44740a-e4a4-4be1-bbf6-f2471c49a730", + "channel": "whatsapp", + "happened_at": "2025-11-16T11:07:56.061780" + }, + { + "interaction_id": "9f6d18d2-79b2-4db1-9c44-c27161335433", + "channel": "site_visit", + "happened_at": "2025-10-11T11:07:56.061867" + } + ], + "property_interests": [ + { + "project": "Siddha Suburbia Bungalow", + "config": "5BHK", + "budget_max": 16304457 + }, + { + "project": "Ambuja Utpaala", + "config": "3BHK", + "budget_max": 12974007 + } + ], + "tasks": [ + "Check competitor comparison status" + ], + "qd_overview": { + "intent_score": 0.876, + "urgency_score": 0.834, + "engagement_score": 0.828 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Book site visit", + "Share payment plan" + ], + "lead_stage": "qualified", + "lead_status": "active" + }, + { + "client_ref": "1fad8d4e-7c4a-4853-b459-a7934aa5ef05", + "snapshot_generated_at": "2026-04-18T11:07:56.063802", + "identity": { + "full_name": "Gopal Pillai", + "primary_email": "gopal.pillai25@rediffmail.com", + "primary_phone": "+91 8352539330", + "persona_labels": "[\"first_time_buyer\", \"cash_rich_investor\", \"upgrade_seeker\"]", + "buyer_type": "family_decision_unit" + }, + "account_links": [ + "ccc19201-7df7-4fb9-b3ad-d1eb1edf302c" + ], + "active_opportunities": [ + { + "opportunity_id": "9f05a7ab-840e-4920-8a8d-149c8dd124d0", + "project": "Siddha Serena", + "stage": "proposal_sent", + "value": 7736678 + } + ], + "recent_interactions": [ + { + "interaction_id": "583effd9-8671-4167-9871-a70cf4a1f6b3", + "channel": "digital_ad", + "happened_at": "2026-02-14T11:07:56.062996" + }, + { + "interaction_id": "3902e80c-d180-40cb-8399-cb357ab523bb", + "channel": "email", + "happened_at": "2026-02-10T11:07:56.062908" + }, + { + "interaction_id": "b436b1aa-bede-44d2-9a8b-e0c2ddfd0352", + "channel": "call", + "happened_at": "2025-10-16T11:07:56.062746" + } + ], + "property_interests": [ + { + "project": "Siddha Serena", + "config": "2BHK", + "budget_max": 7794784 + }, + { + "project": "Eden Devprayag", + "config": "2BHK", + "budget_max": 9973866 + }, + { + "project": "Siddha Suburbia Bungalow", + "config": "4BHK", + "budget_max": 21958095 + } + ], + "tasks": [], + "qd_overview": { + "intent_score": 0.651, + "urgency_score": 0.699, + "engagement_score": 0.73 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Chase for decision", + "Address objections" + ], + "lead_stage": "proposal_sent", + "lead_status": "active" + }, + { + "client_ref": "65e258b8-dbdb-4def-9ff7-f599ca87d612", + "snapshot_generated_at": "2026-04-18T11:07:56.065379", + "identity": { + "full_name": "Usha Kapoor", + "primary_email": "usha.kapoor391@rediffmail.com", + "primary_phone": "+91 9795855101", + "persona_labels": "[\"status_buyer\", \"family_centric\"]", + "buyer_type": "high_intent" + }, + "account_links": [ + "870432f8-c386-4b6b-94f4-5a61b1ed6038" + ], + "active_opportunities": [ + { + "opportunity_id": "83ecf163-ca9d-4fa3-a282-23d11e2cd602", + "project": "Shriram Grand City", + "stage": "site_visit_done", + "value": 7976611 + } + ], + "recent_interactions": [ + { + "interaction_id": "8ddd25fc-36c4-4882-94c1-d34b5b1e925e", + "channel": "digital_ad", + "happened_at": "2026-04-13T11:07:56.064313" + }, + { + "interaction_id": "78537d5f-7435-4e86-97a7-75386b5348c0", + "channel": "email", + "happened_at": "2026-03-14T11:07:56.064126" + }, + { + "interaction_id": "fc862605-8fdf-4d0d-bbbd-75c5f51d38f2", + "channel": "site_visit", + "happened_at": "2026-02-13T11:07:56.064449" + }, + { + "interaction_id": "d66cd1db-a106-48d8-a89f-c7e21a8c6ba5", + "channel": "builder_event", + "happened_at": "2026-01-05T11:07:56.064340" + }, + { + "interaction_id": "d8ed9492-6bce-41af-b462-093943394db2", + "channel": "email", + "happened_at": "2025-12-10T11:07:56.064215" + } + ], + "property_interests": [ + { + "project": "Shriram Grand City", + "config": "4BHK", + "budget_max": 7365875 + } + ], + "tasks": [], + "qd_overview": { + "intent_score": 0.879, + "urgency_score": 0.828, + "engagement_score": 0.864 + }, + "risk_flags": [ + "repeated_no_show", + "price_objection_raised" + ], + "recommended_next_actions": [ + "Follow up on impressions", + "Send updated price list" + ], + "lead_stage": "site_visit_done", + "lead_status": "active" + }, + { + "client_ref": "be2e8af3-407d-4a11-9286-d2905e508152", + "snapshot_generated_at": "2026-04-18T11:07:56.066567", + "identity": { + "full_name": "Jayashree Lahiri", + "primary_email": "jayashree.lahiri628@company.com", + "primary_phone": "+91 8867360457", + "persona_labels": "[\"analytical_buyer\"]", + "buyer_type": "family_decision_unit" + }, + "account_links": [ + "50a26214-39cd-4e63-b551-acd26576c9d2" + ], + "active_opportunities": [ + { + "opportunity_id": "04c4b526-5821-45dc-8b57-735d3b44b509", + "project": "Shriram Grand City", + "stage": "booked", + "value": 9850249 + } + ], + "recent_interactions": [ + { + "interaction_id": "909a3168-25e6-4e54-b2a6-5e8f62b56481", + "channel": "whatsapp", + "happened_at": "2026-04-14T11:07:56.065722" + }, + { + "interaction_id": "c1c38833-821d-4498-8f5a-ea904cba7024", + "channel": "digital_ad", + "happened_at": "2026-03-01T11:07:56.066006" + }, + { + "interaction_id": "870051f6-4da5-4d38-a448-bb65e79397b0", + "channel": "site_visit", + "happened_at": "2026-02-27T11:07:56.065973" + }, + { + "interaction_id": "4203710a-1ad0-4055-a500-627bf3b4ad3d", + "channel": "builder_event", + "happened_at": "2026-02-07T11:07:56.066080" + }, + { + "interaction_id": "08406fc7-ec48-48a9-b0d2-c8f48d654d91", + "channel": "builder_event", + "happened_at": "2026-01-28T11:07:56.066027" + } + ], + "property_interests": [ + { + "project": "Shriram Grand City", + "config": "2BHK", + "budget_max": 8204911 + }, + { + "project": "DTC Sojon", + "config": "2BHK", + "budget_max": 5818338 + }, + { + "project": "Atri Aqua", + "config": "3BHK", + "budget_max": 6627188 + } + ], + "tasks": [ + "Share updated price list" + ], + "qd_overview": { + "intent_score": 0.648, + "urgency_score": 0.637, + "engagement_score": 0.72 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Share loan documents", + "Introduce relationship manager" + ], + "lead_stage": "booked", + "lead_status": "active" + }, + { + "client_ref": "ac54c2ac-3f14-4885-9448-785bc06c1d2a", + "snapshot_generated_at": "2026-04-18T11:07:56.067344", + "identity": { + "full_name": "Srabanti Kumar", + "primary_email": "srabanti.kumar922@gmail.com", + "primary_phone": "+91 8855436828", + "persona_labels": "[\"first_time_buyer\"]", + "buyer_type": "nri" + }, + "account_links": [ + "e890a796-925a-4c14-af19-67fc6360449a" + ], + "active_opportunities": [ + { + "opportunity_id": "faaccac0-d6a2-40d4-b0e4-f21d4572fa01", + "project": "Shriram Grand City", + "stage": "qualified", + "value": 10660115 + } + ], + "recent_interactions": [ + { + "interaction_id": "f8aa2350-8bc3-4c21-88bd-3d7bda5d4e86", + "channel": "digital_ad", + "happened_at": "2026-02-26T11:07:56.066763" + }, + { + "interaction_id": "f5db1ef9-d260-4472-b41e-1189cf69b41f", + "channel": "referral", + "happened_at": "2026-01-21T11:07:56.066805" + }, + { + "interaction_id": "e0bdc565-aaf2-4d59-9d60-26658418f5c8", + "channel": "email", + "happened_at": "2025-10-17T11:07:56.066714" + }, + { + "interaction_id": "102e8534-cead-4aeb-bb5c-4b8f800c0f8b", + "channel": "site_visit", + "happened_at": "2025-10-07T11:07:56.066778" + }, + { + "interaction_id": "6fac80a4-cd1d-4f52-9ca1-c3d1938b2981", + "channel": "digital_ad", + "happened_at": "2025-10-02T11:07:56.066748" + } + ], + "property_interests": [ + { + "project": "Shriram Grand City", + "config": "2BHK", + "budget_max": 11040689 + }, + { + "project": "Sugam Prakriti", + "config": "4BHK", + "budget_max": 7940376 + }, + { + "project": "Godrej Blue", + "config": "4BHK", + "budget_max": 10243800 + } + ], + "tasks": [ + "Nudge for final decision" + ], + "qd_overview": { + "intent_score": 0.473, + "urgency_score": 0.505, + "engagement_score": 0.593 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Book site visit", + "Share payment plan" + ], + "lead_stage": "qualified", + "lead_status": "active" + }, + { + "client_ref": "846f3bec-5b2c-4788-af2c-fad362a30f1e", + "snapshot_generated_at": "2026-04-18T11:07:56.068089", + "identity": { + "full_name": "Shalini Ganguly", + "primary_email": "shalini.ganguly527@gmail.com", + "primary_phone": "+91 7534103773", + "persona_labels": "[\"investment_focus\", \"family_centric\"]", + "buyer_type": "broker_referral" + }, + "account_links": [ + "c64b5253-b5fb-4f37-b1aa-bd549cb7175f" + ], + "active_opportunities": [], + "recent_interactions": [ + { + "interaction_id": "4e9f056d-2aca-477e-9c56-7afe003e7c0c", + "channel": "whatsapp", + "happened_at": "2026-03-15T11:07:56.067565" + }, + { + "interaction_id": "8714318c-7c12-43fe-a773-e13c5ba28c71", + "channel": "builder_event", + "happened_at": "2025-12-31T11:07:56.067547" + }, + { + "interaction_id": "14922fe5-708f-422e-9b46-679282e9c78a", + "channel": "whatsapp", + "happened_at": "2025-12-30T11:07:56.067619" + }, + { + "interaction_id": "f54004ac-7e55-410c-bda5-b86b9b5ee666", + "channel": "email", + "happened_at": "2025-11-30T11:07:56.067510" + } + ], + "property_interests": [ + { + "project": "Siddha Suburbia Bungalow", + "config": "5BHK", + "budget_max": 20547590 + } + ], + "tasks": [], + "qd_overview": { + "intent_score": 0.583, + "urgency_score": 0.435, + "engagement_score": 0.503 + }, + "risk_flags": [], + "recommended_next_actions": [ + "Send project brochure", + "Schedule site visit" + ], + "lead_stage": "inquiry", + "lead_status": "active" + }, + { + "client_ref": "8643cfe9-068c-46fd-9f6f-f7ac40ff9588", + "snapshot_generated_at": "2026-04-18T11:07:56.069205", + "identity": { + "full_name": "Arnav Chakraborty", + "primary_email": "arnav.chakraborty140@yahoo.com", + "primary_phone": "+91 9946392738", + "persona_labels": "[\"first_time_buyer\", \"family_centric\", \"value_seeker\"]", + "buyer_type": "price_sensitive" + }, + "account_links": [ + "f37fe679-99e5-4ea8-a1a5-d31e4f8d4bf2" + ], + "active_opportunities": [], + "recent_interactions": [ + { + "interaction_id": "fe3f9e52-cbdf-4793-8405-d0d31fd8ec56", + "channel": "whatsapp", + "happened_at": "2026-04-07T11:07:56.068577" + }, + { + "interaction_id": "f86c6983-f013-43bb-8004-f7bf44f6e3d2", + "channel": "call", + "happened_at": "2026-03-17T11:07:56.068294" + }, + { + "interaction_id": "3f141145-b3be-4ade-a8f9-e658d6a0cc2b", + "channel": "site_visit", + "happened_at": "2026-03-13T11:07:56.068550" + }, + { + "interaction_id": "f82ce90f-fe0c-4bb2-b830-f8b0dc92202b", + "channel": "call", + "happened_at": "2026-01-11T11:07:56.068465" + }, + { + "interaction_id": "64ab7c5e-d2e1-421a-b2e8-954aac245d02", + "channel": "builder_event", + "happened_at": "2025-11-22T11:07:56.068678" + } + ], + "property_interests": [ + { + "project": "Siddha Suburbia Bungalow", + "config": "5BHK", + "budget_max": 25377359 + }, + { + "project": "Atri Aqua", + "config": "3BHK", + "budget_max": 7578987 + } + ], + "tasks": [], + "qd_overview": { + "intent_score": 0.357, + "urgency_score": 0.337, + "engagement_score": 0.364 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Send project brochure", + "Schedule site visit" + ], + "lead_stage": "inquiry", + "lead_status": "active" + }, + { + "client_ref": "f74fbc50-1a5f-4994-a286-1765b83ff39e", + "snapshot_generated_at": "2026-04-18T11:07:56.070219", + "identity": { + "full_name": "Partha Pillai", + "primary_email": "partha.pillai879@hotmail.com", + "primary_phone": "+91 7662134902", + "persona_labels": "[\"analytical_buyer\"]", + "buyer_type": "price_sensitive" + }, + "account_links": [ + "e7bc1d8b-7015-4b81-9df9-933d9a82263b" + ], + "active_opportunities": [ + { + "opportunity_id": "24004212-ab5a-4dfe-aeac-71ed5f6c770b", + "project": "DTC Good Earth", + "stage": "booked", + "value": 5415053 + } + ], + "recent_interactions": [ + { + "interaction_id": "6cd680a6-23da-4b62-892a-a747914827f6", + "channel": "call", + "happened_at": "2026-02-22T11:07:56.069558" + }, + { + "interaction_id": "38e1224b-b2f6-490c-88f3-f3a7922bd70d", + "channel": "builder_event", + "happened_at": "2026-01-30T11:07:56.069428" + }, + { + "interaction_id": "5b31e1cc-e0ec-4665-9cad-f07c79779552", + "channel": "email", + "happened_at": "2026-01-21T11:07:56.069665" + }, + { + "interaction_id": "4b5e3ebe-ebec-4ee8-b2a8-ce438d6187a9", + "channel": "email", + "happened_at": "2025-12-04T11:07:56.069700" + }, + { + "interaction_id": "4df0b693-d3a9-439a-9a6f-b55e7dc20166", + "channel": "whatsapp", + "happened_at": "2025-10-02T11:07:56.069448" + } + ], + "property_interests": [ + { + "project": "DTC Good Earth", + "config": "3BHK", + "budget_max": 6988627 + }, + { + "project": "Atri Aqua", + "config": "3BHK", + "budget_max": 7575041 + } + ], + "tasks": [], + "qd_overview": { + "intent_score": 0.477, + "urgency_score": 0.491, + "engagement_score": 0.504 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Share loan documents", + "Introduce relationship manager" + ], + "lead_stage": "booked", + "lead_status": "active" + }, + { + "client_ref": "5a5e5346-48ad-4514-b6df-aebbfba7e853", + "snapshot_generated_at": "2026-04-18T11:07:56.071096", + "identity": { + "full_name": "Ankita Bose", + "primary_email": "ankita.bose480@company.com", + "primary_phone": "+91 9150287127", + "persona_labels": "[\"first_time_buyer\"]", + "buyer_type": "nri" + }, + "account_links": [ + "4b56a688-c54f-4460-a12c-8043ea8682ae" + ], + "active_opportunities": [], + "recent_interactions": [ + { + "interaction_id": "c8adca08-bfb0-466d-9688-f5c45e12d2d8", + "channel": "digital_ad", + "happened_at": "2026-04-07T11:07:56.070448" + }, + { + "interaction_id": "9ce76d10-6d02-43b9-8093-dc0f7a5cf59f", + "channel": "referral", + "happened_at": "2026-04-01T11:07:56.070510" + }, + { + "interaction_id": "424c5ec4-1f7d-44a7-b75a-c91a663c2efe", + "channel": "referral", + "happened_at": "2026-04-01T11:07:56.070490" + }, + { + "interaction_id": "aad999ea-20bb-49c1-b8a1-bd9a79fd7d47", + "channel": "digital_ad", + "happened_at": "2026-02-23T11:07:56.070469" + }, + { + "interaction_id": "9a9ca500-2ed3-45a1-bd00-25741155b273", + "channel": "email", + "happened_at": "2026-01-27T11:07:56.070412" + } + ], + "property_interests": [ + { + "project": "Godrej Blue", + "config": "2BHK", + "budget_max": 11946187 + }, + { + "project": "Eden Devprayag", + "config": "2BHK", + "budget_max": 9648001 + }, + { + "project": "DTC Good Earth", + "config": "2BHK", + "budget_max": 8768504 + } + ], + "tasks": [ + "Follow up after site visit", + "Send festive offer" + ], + "qd_overview": { + "intent_score": 0.757, + "urgency_score": 0.771, + "engagement_score": 0.699 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Send project brochure", + "Schedule site visit" + ], + "lead_stage": "inquiry", + "lead_status": "active" + }, + { + "client_ref": "dde77dfe-4636-4d14-83fc-39ee828ff6c6", + "snapshot_generated_at": "2026-04-18T11:07:56.072162", + "identity": { + "full_name": "Ashok Shah", + "primary_email": "ashok.shah319@outlook.com", + "primary_phone": "+91 9186571410", + "persona_labels": "[\"investment_focus\", \"cash_rich_investor\", \"first_time_buyer\"]", + "buyer_type": "slow_burn_investor" + }, + "account_links": [ + "f37fe679-99e5-4ea8-a1a5-d31e4f8d4bf2" + ], + "active_opportunities": [ + { + "opportunity_id": "b6e98fcd-47b5-447b-a8d9-4ede3cb59399", + "project": "Godrej Elevate", + "stage": "qualified", + "value": 17720891 + } + ], + "recent_interactions": [ + { + "interaction_id": "2bad6888-9271-4a5d-8444-d1181e8f90b0", + "channel": "builder_event", + "happened_at": "2026-03-18T11:07:56.071355" + }, + { + "interaction_id": "54053c8b-935d-48d3-bcf4-b66f673b63e3", + "channel": "site_visit", + "happened_at": "2026-02-17T11:07:56.071433" + }, + { + "interaction_id": "8db97c23-3282-4fb4-8a26-bd91aae45c1a", + "channel": "referral", + "happened_at": "2025-12-11T11:07:56.071382" + }, + { + "interaction_id": "df625ab1-3ec2-450f-985c-423ad96c4715", + "channel": "referral", + "happened_at": "2025-10-30T11:07:56.071335" + }, + { + "interaction_id": "a2517a24-2e6e-44a6-a526-264dbefbb2c8", + "channel": "site_visit", + "happened_at": "2025-10-19T11:07:56.071402" + } + ], + "property_interests": [ + { + "project": "Godrej Elevate", + "config": "4BHK", + "budget_max": 14200740 + }, + { + "project": "Merlin Avana", + "config": "4BHK", + "budget_max": 12840806 + }, + { + "project": "Eden Devprayag", + "config": "2BHK", + "budget_max": 10391887 + } + ], + "tasks": [], + "qd_overview": { + "intent_score": 0.492, + "urgency_score": 0.45, + "engagement_score": 0.53 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Book site visit", + "Share payment plan" + ], + "lead_stage": "qualified", + "lead_status": "active" + }, + { + "client_ref": "d6887c43-b32a-485f-bc16-d07cf0465bae", + "snapshot_generated_at": "2026-04-18T11:07:56.072952", + "identity": { + "full_name": "Keya Shah", + "primary_email": "keya.shah630@gmail.com", + "primary_phone": "+91 8406162979", + "persona_labels": "[\"upgrade_seeker\"]", + "buyer_type": "broker_referral" + }, + "account_links": [ + "d0f173da-010e-43de-b222-8535c26cfcfc" + ], + "active_opportunities": [], + "recent_interactions": [ + { + "interaction_id": "c9b92ae6-6e52-4458-ad95-bfdd48f7e74c", + "channel": "call", + "happened_at": "2025-12-14T11:07:56.072348" + }, + { + "interaction_id": "05223db9-7658-44a4-a93b-ce06368cc142", + "channel": "referral", + "happened_at": "2025-11-19T11:07:56.072288" + }, + { + "interaction_id": "7c5390ae-a05f-449b-9645-19b5a256f1dc", + "channel": "email", + "happened_at": "2025-10-11T11:07:56.072309" + } + ], + "property_interests": [ + { + "project": "Atri Surya Toron", + "config": "2BHK", + "budget_max": 7062726 + } + ], + "tasks": [ + "Nudge for final decision", + "Confirm booking appointment" + ], + "qd_overview": { + "intent_score": 0.581, + "urgency_score": 0.502, + "engagement_score": 0.482 + }, + "risk_flags": [], + "recommended_next_actions": [ + "Send project brochure", + "Schedule site visit" + ], + "lead_stage": "inquiry", + "lead_status": "active" + }, + { + "client_ref": "3598c3dd-4e73-4a02-9b26-34991e80e689", + "snapshot_generated_at": "2026-04-18T11:07:56.073986", + "identity": { + "full_name": "Subhro Mandal", + "primary_email": "subhro.mandal173@outlook.com", + "primary_phone": "+91 7410497666", + "persona_labels": "[\"family_centric\", \"analytical_buyer\", \"cash_rich_investor\"]", + "buyer_type": "broker_referral" + }, + "account_links": [ + "8aa4d488-571e-4cd4-aa27-8372a49aacbf" + ], + "active_opportunities": [], + "recent_interactions": [ + { + "interaction_id": "dbc8bd8d-c71e-43ed-b0fc-15a945553f8d", + "channel": "whatsapp", + "happened_at": "2026-03-24T11:07:56.073110" + }, + { + "interaction_id": "c8fb7c24-fe14-4fb6-83ea-84611eb0700c", + "channel": "email", + "happened_at": "2026-03-08T11:07:56.073430" + }, + { + "interaction_id": "efad0a0b-722d-408a-b97b-72be47a29a14", + "channel": "call", + "happened_at": "2026-01-30T11:07:56.073209" + }, + { + "interaction_id": "a0a6e50a-a268-44f4-82da-4e656c2b43d4", + "channel": "site_visit", + "happened_at": "2026-01-13T11:07:56.073395" + }, + { + "interaction_id": "7cd6fa17-67f4-4db4-b2d3-cfcf50b9fa7e", + "channel": "call", + "happened_at": "2025-11-25T11:07:56.073490" + } + ], + "property_interests": [ + { + "project": "Merlin Avana", + "config": "2BHK", + "budget_max": 8976182 + }, + { + "project": "Shriram Grand City", + "config": "4BHK", + "budget_max": 10841887 + } + ], + "tasks": [ + "Re-engage after 2 weeks silence", + "Send legal documents" + ], + "qd_overview": { + "intent_score": 0.625, + "urgency_score": 0.754, + "engagement_score": 0.768 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Send project brochure", + "Schedule site visit" + ], + "lead_stage": "inquiry", + "lead_status": "active" + }, + { + "client_ref": "c71498e3-fdc0-4a5d-8ee4-c8de5081b6e4", + "snapshot_generated_at": "2026-04-18T11:07:56.074807", + "identity": { + "full_name": "Sneha Karmakar", + "primary_email": "sneha.karmakar226@company.com", + "primary_phone": "+91 7476473160", + "persona_labels": "[\"status_buyer\"]", + "buyer_type": "price_sensitive" + }, + "account_links": [ + "98ccca21-7413-4609-9b7b-c93f5ee87ff8" + ], + "active_opportunities": [], + "recent_interactions": [ + { + "interaction_id": "a8dc98a9-95d9-4b1f-b4c4-c472ca03b927", + "channel": "referral", + "happened_at": "2026-04-07T11:07:56.074305" + }, + { + "interaction_id": "01f11f29-88ad-4bd1-b255-e0674c043036", + "channel": "digital_ad", + "happened_at": "2026-03-30T11:07:56.074284" + }, + { + "interaction_id": "510f5a21-cd4f-427c-a338-10935ded8ee8", + "channel": "email", + "happened_at": "2026-03-12T11:07:56.074320" + } + ], + "property_interests": [ + { + "project": "Atri Surya Toron", + "config": "2BHK", + "budget_max": 5325113 + }, + { + "project": "Godrej Blue", + "config": "2BHK", + "budget_max": 12094471 + }, + { + "project": "Godrej Elevate", + "config": "3BHK", + "budget_max": 17294083 + } + ], + "tasks": [ + "Follow up after site visit", + "Follow up after site visit", + "Send festive offer" + ], + "qd_overview": { + "intent_score": 0.077, + "urgency_score": 0.122, + "engagement_score": 0.069 + }, + "risk_flags": [ + "no_follow_up_in_30_days", + "multiple_project_comparisons", + "decision_stalled_at_family" + ], + "recommended_next_actions": [ + "Re-engage with new offer", + "Check status after 30 days" + ], + "lead_stage": "dropped", + "lead_status": "dropped" + }, + { + "client_ref": "d87b7b36-41b2-48cf-887d-83466e9f950d", + "snapshot_generated_at": "2026-04-18T11:07:56.075515", + "identity": { + "full_name": "Ramesh Biswas", + "primary_email": "ramesh.biswas776@rediffmail.com", + "primary_phone": "+91 9133946385", + "persona_labels": "[\"family_centric\"]", + "buyer_type": "family_decision_unit" + }, + "account_links": [ + "8aa4d488-571e-4cd4-aa27-8372a49aacbf" + ], + "active_opportunities": [ + { + "opportunity_id": "7b655eb6-1275-4b17-a459-f2ae94dd80a6", + "project": "Godrej Blue", + "stage": "qualified", + "value": 11367079 + } + ], + "recent_interactions": [ + { + "interaction_id": "f67970b7-9c7d-4552-a28b-492d70e3b2a1", + "channel": "digital_ad", + "happened_at": "2026-04-07T11:07:56.075045" + }, + { + "interaction_id": "c9306f95-2f84-4bc7-9f5b-95d13a02fa41", + "channel": "site_visit", + "happened_at": "2026-03-02T11:07:56.075105" + }, + { + "interaction_id": "2259e61b-7bd1-4869-9e2c-3f46ae26f45a", + "channel": "email", + "happened_at": "2025-11-01T11:07:56.075067" + } + ], + "property_interests": [ + { + "project": "Godrej Blue", + "config": "4BHK", + "budget_max": 11011628 + }, + { + "project": "Shriram Grand City", + "config": "4BHK", + "budget_max": 8088400 + }, + { + "project": "Ambuja Utpaala", + "config": "4BHK", + "budget_max": 15638208 + } + ], + "tasks": [ + "Check competitor comparison status" + ], + "qd_overview": { + "intent_score": 0.638, + "urgency_score": 0.708, + "engagement_score": 0.736 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Book site visit", + "Share payment plan" + ], + "lead_stage": "qualified", + "lead_status": "active" + }, + { + "client_ref": "f7e96d24-d591-4c17-b5e4-11cc4733b8df", + "snapshot_generated_at": "2026-04-18T11:07:56.125996", + "identity": { + "full_name": "Tanushree Saha", + "primary_email": "tanushree.saha131@company.com", + "primary_phone": "+91 7073846020", + "persona_labels": "[\"analytical_buyer\", \"upgrade_seeker\", \"status_buyer\"]", + "buyer_type": "nri" + }, + "account_links": [ + "522fdd95-312a-4741-b460-23b17bce070d" + ], + "active_opportunities": [ + { + "opportunity_id": "3a445d6e-d130-4057-b5c6-564b6402b33a", + "project": "Godrej Blue", + "stage": "negotiation", + "value": 13367408 + } + ], + "recent_interactions": [ + { + "interaction_id": "5ccec6e6-26df-452a-ad62-26c49b941c2e", + "channel": "referral", + "happened_at": "2026-04-10T11:07:56.125558" + }, + { + "interaction_id": "e2731b8c-2473-4947-af08-b1eefa879158", + "channel": "call", + "happened_at": "2026-02-22T11:07:56.125485" + }, + { + "interaction_id": "155f5eb4-2f9a-4bf0-a3ac-8251de6c8bee", + "channel": "site_visit", + "happened_at": "2026-02-12T11:07:56.125145" + }, + { + "interaction_id": "5a7e3502-00f4-4581-bd37-1794af37f977", + "channel": "whatsapp", + "happened_at": "2026-01-26T11:07:56.125174" + }, + { + "interaction_id": "3203b500-4e80-4294-9494-213b81358150", + "channel": "email", + "happened_at": "2026-01-16T11:07:56.125286" + } + ], + "property_interests": [ + { + "project": "Godrej Blue", + "config": "2BHK", + "budget_max": 14958726 + } + ], + "tasks": [ + "Follow up after site visit" + ], + "qd_overview": { + "intent_score": 0.677, + "urgency_score": 0.774, + "engagement_score": 0.781 + }, + "risk_flags": [ + "price_objection_raised" + ], + "recommended_next_actions": [ + "Escalate to senior advisor", + "Prepare final offer" + ], + "lead_stage": "negotiation", + "lead_status": "active" + }, + { + "client_ref": "42baaf92-e8ca-4fac-9cc8-34e77f4d9b86", + "snapshot_generated_at": "2026-04-18T11:07:56.126866", + "identity": { + "full_name": "Arjun Bhattacharya", + "primary_email": "arjun.bhattacharya664@outlook.com", + "primary_phone": "+91 8848068225", + "persona_labels": "[\"value_seeker\"]", + "buyer_type": "nri" + }, + "account_links": [], + "active_opportunities": [ + { + "opportunity_id": "18372c37-4f8c-4429-9ad0-fbf7102017f5", + "project": "Sugam Prakriti", + "stage": "site_visit_done", + "value": 9090918 + } + ], + "recent_interactions": [ + { + "interaction_id": "8ffa4951-2ec4-436e-8283-92690d67e1d5", + "channel": "call", + "happened_at": "2026-04-12T11:07:56.126417" + }, + { + "interaction_id": "14e0d16f-d5a1-454b-a482-9c01c2f16902", + "channel": "call", + "happened_at": "2026-04-11T11:07:56.126245" + }, + { + "interaction_id": "d550ae70-d370-4a4d-915e-a74be7ba09b0", + "channel": "call", + "happened_at": "2026-01-22T11:07:56.126338" + }, + { + "interaction_id": "2077f808-eead-4a60-a8b2-8e600ae79557", + "channel": "builder_event", + "happened_at": "2025-12-31T11:07:56.126230" + }, + { + "interaction_id": "dc3a7a63-4984-4bef-b447-49caadfbb6c6", + "channel": "digital_ad", + "happened_at": "2025-12-18T11:07:56.126212" + } + ], + "property_interests": [ + { + "project": "Sugam Prakriti", + "config": "3BHK", + "budget_max": 9452250 + }, + { + "project": "Siddha Sky Waterfront", + "config": "4BHK", + "budget_max": 16800873 + } + ], + "tasks": [], + "qd_overview": { + "intent_score": 0.586, + "urgency_score": 0.597, + "engagement_score": 0.605 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Follow up on impressions", + "Send updated price list" + ], + "lead_stage": "site_visit_done", + "lead_status": "active" + }, + { + "client_ref": "a4a7633a-f50c-4d7c-a114-e9f61be5f527", + "snapshot_generated_at": "2026-04-18T11:07:56.127694", + "identity": { + "full_name": "Debashish Kumar", + "primary_email": "debashish.kumar807@yahoo.com", + "primary_phone": "+91 8257168754", + "persona_labels": "[\"family_centric\", \"analytical_buyer\", \"value_seeker\"]", + "buyer_type": "slow_burn_investor" + }, + "account_links": [ + "d9525127-ff0d-45a0-b6d2-57b735be5c66" + ], + "active_opportunities": [ + { + "opportunity_id": "4a18057d-69be-41d1-a2e7-c94226da05bf", + "project": "Godrej Blue", + "stage": "site_visit_done", + "value": 7974902 + } + ], + "recent_interactions": [ + { + "interaction_id": "720a0db5-8aff-4c64-8413-f89ff6589510", + "channel": "email", + "happened_at": "2026-03-16T11:07:56.127082" + }, + { + "interaction_id": "17f329a0-4a65-409f-8988-b9e5cfe057e5", + "channel": "call", + "happened_at": "2026-01-10T11:07:56.127228" + }, + { + "interaction_id": "8b738b98-502e-49f3-8644-0a2be546df4f", + "channel": "referral", + "happened_at": "2026-01-10T11:07:56.127128" + }, + { + "interaction_id": "25f56fd9-0d7b-479e-b3bb-dda744cb6230", + "channel": "builder_event", + "happened_at": "2025-12-23T11:07:56.127110" + }, + { + "interaction_id": "1cccf19b-c032-4788-8814-197f2c665c76", + "channel": "site_visit", + "happened_at": "2025-12-11T11:07:56.127182" + } + ], + "property_interests": [ + { + "project": "Godrej Blue", + "config": "4BHK", + "budget_max": 10388022 + }, + { + "project": "Siddha Serena", + "config": "2BHK", + "budget_max": 5711878 + }, + { + "project": "Atri Aqua", + "config": "3BHK", + "budget_max": 9026354 + } + ], + "tasks": [ + "Nudge for final decision" + ], + "qd_overview": { + "intent_score": 0.397, + "urgency_score": 0.359, + "engagement_score": 0.38 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Follow up on impressions", + "Send updated price list" + ], + "lead_stage": "site_visit_done", + "lead_status": "active" + }, + { + "client_ref": "a6e7b6e4-28f8-4877-b9c0-7e186d529cb7", + "snapshot_generated_at": "2026-04-18T11:07:56.128435", + "identity": { + "full_name": "Arnav Dey", + "primary_email": "arnav.dey254@company.com", + "primary_phone": "+91 9818072322", + "persona_labels": "[\"status_buyer\", \"family_centric\"]", + "buyer_type": "repeat_visitor" + }, + "account_links": [ + "e7bc1d8b-7015-4b81-9df9-933d9a82263b" + ], + "active_opportunities": [ + { + "opportunity_id": "b82f0eb1-0536-4bcc-8d92-3d7581a81306", + "project": "Siddha Serena", + "stage": "site_visit_done", + "value": 5079071 + } + ], + "recent_interactions": [ + { + "interaction_id": "3d9a835b-0e36-4164-995f-ed7181f899f3", + "channel": "referral", + "happened_at": "2026-04-02T11:07:56.127963" + }, + { + "interaction_id": "55618fad-efe6-47f2-8e11-9a2cf59d7fde", + "channel": "referral", + "happened_at": "2025-11-24T11:07:56.127861" + }, + { + "interaction_id": "7efa429f-2656-4bd3-9b9d-121bfebc354c", + "channel": "call", + "happened_at": "2025-10-15T11:07:56.127883" + } + ], + "property_interests": [ + { + "project": "Siddha Serena", + "config": "3BHK", + "budget_max": 7768767 + }, + { + "project": "Merlin Avana", + "config": "4BHK", + "budget_max": 16818733 + }, + { + "project": "Siddha Sky Waterfront", + "config": "4BHK", + "budget_max": 14224192 + } + ], + "tasks": [ + "Share updated price list", + "Schedule meeting with senior advisor" + ], + "qd_overview": { + "intent_score": 0.736, + "urgency_score": 0.739, + "engagement_score": 0.78 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Follow up on impressions", + "Send updated price list" + ], + "lead_stage": "site_visit_done", + "lead_status": "active" + }, + { + "client_ref": "d6519a25-0ae3-4201-a937-7ef5303d59d3", + "snapshot_generated_at": "2026-04-18T11:07:56.129335", + "identity": { + "full_name": "Ranjit Bose", + "primary_email": "ranjit.bose649@hotmail.com", + "primary_phone": "+91 8218186610", + "persona_labels": "[\"status_buyer\", \"first_time_buyer\"]", + "buyer_type": "price_sensitive" + }, + "account_links": [ + "e890a796-925a-4c14-af19-67fc6360449a" + ], + "active_opportunities": [ + { + "opportunity_id": "defce2fd-5456-48e1-a0eb-c8544a972b26", + "project": "DTC Good Earth", + "stage": "proposal_sent", + "value": 8266021 + } + ], + "recent_interactions": [ + { + "interaction_id": "c84e1366-dff6-40f9-9b8a-23796896b7d6", + "channel": "builder_event", + "happened_at": "2026-04-14T11:07:56.128623" + }, + { + "interaction_id": "9946a228-8a27-4d35-b767-91de11816a59", + "channel": "whatsapp", + "happened_at": "2026-04-03T11:07:56.128638" + }, + { + "interaction_id": "39b3afa5-e665-468f-b896-c672c44f83cf", + "channel": "digital_ad", + "happened_at": "2026-02-18T11:07:56.128737" + }, + { + "interaction_id": "9ac3e9b3-2de0-466b-bebe-41ac924611b7", + "channel": "digital_ad", + "happened_at": "2026-02-14T11:07:56.128893" + }, + { + "interaction_id": "f93a2b37-b365-4917-b306-5bd19ae5b929", + "channel": "call", + "happened_at": "2025-12-02T11:07:56.128785" + } + ], + "property_interests": [ + { + "project": "DTC Good Earth", + "config": "2BHK", + "budget_max": 6932000 + }, + { + "project": "Ambuja Utpaala", + "config": "4BHK", + "budget_max": 12421753 + }, + { + "project": "Merlin Avana", + "config": "2BHK", + "budget_max": 15159626 + } + ], + "tasks": [ + "Check competitor comparison status" + ], + "qd_overview": { + "intent_score": 0.457, + "urgency_score": 0.508, + "engagement_score": 0.454 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Chase for decision", + "Address objections" + ], + "lead_stage": "proposal_sent", + "lead_status": "active" + }, + { + "client_ref": "f809e3d0-e2ac-4b00-8ecc-636fe3cb0076", + "snapshot_generated_at": "2026-04-18T11:07:56.129986", + "identity": { + "full_name": "Dipankar Das", + "primary_email": "dipankar.das793@gmail.com", + "primary_phone": "+91 7018738073", + "persona_labels": "[\"nri_diaspora\", \"analytical_buyer\", \"first_time_buyer\"]", + "buyer_type": "high_intent" + }, + "account_links": [ + "63cc313d-eb9d-4ad9-8502-e9dd330e5e0b" + ], + "active_opportunities": [ + { + "opportunity_id": "1b91a433-ab14-4bbb-a727-3844a6285e0e", + "project": "Eden Devprayag", + "stage": "qualified", + "value": 7639756 + } + ], + "recent_interactions": [ + { + "interaction_id": "588b444f-c8ce-470a-b111-1746ee424be7", + "channel": "email", + "happened_at": "2026-02-20T11:07:56.129609" + }, + { + "interaction_id": "edc81e40-695e-4401-b275-d811964a617a", + "channel": "call", + "happened_at": "2025-12-18T11:07:56.129539" + }, + { + "interaction_id": "8e102fc3-aee7-495c-bcee-367d2b598a6c", + "channel": "whatsapp", + "happened_at": "2025-12-11T11:07:56.129492" + } + ], + "property_interests": [ + { + "project": "Eden Devprayag", + "config": "2BHK", + "budget_max": 10060216 + }, + { + "project": "DTC Sojon", + "config": "3BHK", + "budget_max": 3910867 + } + ], + "tasks": [], + "qd_overview": { + "intent_score": 0.79, + "urgency_score": 0.825, + "engagement_score": 0.754 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Book site visit", + "Share payment plan" + ], + "lead_stage": "qualified", + "lead_status": "active" + }, + { + "client_ref": "3ddfa755-0bea-4d65-aa3a-88905686ed85", + "snapshot_generated_at": "2026-04-18T11:07:56.130616", + "identity": { + "full_name": "Subhajit Menon", + "primary_email": "subhajit.menon24@rediffmail.com", + "primary_phone": "+91 7794532072", + "persona_labels": "[\"investment_focus\"]", + "buyer_type": "price_sensitive" + }, + "account_links": [], + "active_opportunities": [ + { + "opportunity_id": "e0beb840-3961-429a-99e6-7618b12c44b8", + "project": "Godrej Blue", + "stage": "negotiation", + "value": 8577819 + } + ], + "recent_interactions": [ + { + "interaction_id": "392ec324-2702-41f3-90fb-572e828a8935", + "channel": "builder_event", + "happened_at": "2026-03-13T11:07:56.130263" + }, + { + "interaction_id": "b0f589f4-5300-4219-9646-2dedfe856b61", + "channel": "digital_ad", + "happened_at": "2026-01-26T11:07:56.130283" + }, + { + "interaction_id": "feee651f-dd9e-413d-989d-8ff648137aef", + "channel": "whatsapp", + "happened_at": "2025-12-16T11:07:56.130185" + } + ], + "property_interests": [ + { + "project": "Godrej Blue", + "config": "2BHK", + "budget_max": 15058787 + }, + { + "project": "Godrej Elevate", + "config": "4BHK", + "budget_max": 12638744 + } + ], + "tasks": [ + "Check competitor comparison status" + ], + "qd_overview": { + "intent_score": 0.414, + "urgency_score": 0.299, + "engagement_score": 0.288 + }, + "risk_flags": [ + "multiple_project_comparisons", + "decision_stalled_at_family" + ], + "recommended_next_actions": [ + "Escalate to senior advisor", + "Prepare final offer" + ], + "lead_stage": "negotiation", + "lead_status": "active" + }, + { + "client_ref": "398e724b-b136-41e4-8019-64e2645414e5", + "snapshot_generated_at": "2026-04-18T11:07:56.131396", + "identity": { + "full_name": "Indranil Singh", + "primary_email": "indranil.singh199@gmail.com", + "primary_phone": "+91 9239126570", + "persona_labels": "[\"investment_focus\"]", + "buyer_type": "nri" + }, + "account_links": [ + "a7feb56f-2752-4b6d-bde6-84f4be7b6b3d" + ], + "active_opportunities": [ + { + "opportunity_id": "7b8685c0-8816-4a44-b5b6-7ac7701ef469", + "project": "Siddha Serena", + "stage": "proposal_sent", + "value": 6145084 + } + ], + "recent_interactions": [ + { + "interaction_id": "09e3cc8e-7f54-462c-ad85-93d2dadb6a57", + "channel": "site_visit", + "happened_at": "2026-04-17T11:07:56.130805" + }, + { + "interaction_id": "1d01e252-642f-48e9-bd63-1e49a33a22f5", + "channel": "email", + "happened_at": "2026-04-15T11:07:56.130961" + }, + { + "interaction_id": "9805d170-1874-48b6-bdd3-4fb6d6e06756", + "channel": "email", + "happened_at": "2026-04-03T11:07:56.130918" + }, + { + "interaction_id": "834814bd-a0b3-4bf9-ba23-2ff768330b5f", + "channel": "whatsapp", + "happened_at": "2026-01-12T11:07:56.130848" + }, + { + "interaction_id": "e867de44-49a4-4f20-863d-a8733c7257db", + "channel": "digital_ad", + "happened_at": "2025-11-10T11:07:56.130830" + } + ], + "property_interests": [ + { + "project": "Siddha Serena", + "config": "2BHK", + "budget_max": 7162404 + }, + { + "project": "Ambuja Utpaala", + "config": "2BHK", + "budget_max": 16544229 + }, + { + "project": "Sugam Prakriti", + "config": "2BHK", + "budget_max": 11298937 + } + ], + "tasks": [ + "Re-engage after 2 weeks silence" + ], + "qd_overview": { + "intent_score": 0.681, + "urgency_score": 0.776, + "engagement_score": 0.692 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Chase for decision", + "Address objections" + ], + "lead_stage": "proposal_sent", + "lead_status": "active" + }, + { + "client_ref": "6d693e77-57b2-48e6-833e-b8b4cd54af3e", + "snapshot_generated_at": "2026-04-18T11:07:56.132505", + "identity": { + "full_name": "Geeta Das", + "primary_email": "geeta.das511@gmail.com", + "primary_phone": "+91 8015018365", + "persona_labels": "[\"upgrade_seeker\"]", + "buyer_type": "nri" + }, + "account_links": [ + "c64b5253-b5fb-4f37-b1aa-bd549cb7175f" + ], + "active_opportunities": [], + "recent_interactions": [ + { + "interaction_id": "35bf8152-0f03-4aee-81e2-c506e7748834", + "channel": "call", + "happened_at": "2026-04-17T11:07:56.131602" + }, + { + "interaction_id": "7990d5cc-93df-4e7a-9948-06182db2a434", + "channel": "whatsapp", + "happened_at": "2026-02-21T11:07:56.131741" + }, + { + "interaction_id": "e23e83ea-3ff4-4fdb-989f-0be9bae989a0", + "channel": "site_visit", + "happened_at": "2026-02-09T11:07:56.131685" + }, + { + "interaction_id": "62ae814e-d6e6-4901-bcc9-3d1368523d3e", + "channel": "call", + "happened_at": "2026-02-05T11:07:56.131834" + }, + { + "interaction_id": "86eeb65f-ff73-4baa-8f03-fdecea480b20", + "channel": "builder_event", + "happened_at": "2026-01-05T11:07:56.131914" + } + ], + "property_interests": [ + { + "project": "Ambuja Utpaala", + "config": "4BHK", + "budget_max": 15889975 + } + ], + "tasks": [ + "Share updated price list", + "Check competitor comparison status" + ], + "qd_overview": { + "intent_score": 0.461, + "urgency_score": 0.445, + "engagement_score": 0.449 + }, + "risk_flags": [ + "no_follow_up_in_30_days", + "decision_stalled_at_family" + ], + "recommended_next_actions": [ + "Re-engage with new offer", + "Check status after 30 days" + ], + "lead_stage": "dropped", + "lead_status": "dropped" + }, + { + "client_ref": "f8a2e0a4-1c13-4fc1-9e48-71aadc00d952", + "snapshot_generated_at": "2026-04-18T11:07:56.133173", + "identity": { + "full_name": "Sabarna Kapoor", + "primary_email": "sabarna.kapoor326@yahoo.com", + "primary_phone": "+91 7402936736", + "persona_labels": "[\"first_time_buyer\"]", + "buyer_type": "price_sensitive" + }, + "account_links": [ + "38190594-f899-49eb-bc88-53964709cf07" + ], + "active_opportunities": [], + "recent_interactions": [ + { + "interaction_id": "0968f5c7-e5d5-4a75-ae4d-ab3970a3daa6", + "channel": "call", + "happened_at": "2026-02-01T11:07:56.132773" + }, + { + "interaction_id": "85d78e60-581a-4572-af97-66b3c4824f49", + "channel": "call", + "happened_at": "2026-01-29T11:07:56.132696" + }, + { + "interaction_id": "5661d6e5-32ca-4f88-9f3c-b7a771bf93a0", + "channel": "site_visit", + "happened_at": "2025-10-31T11:07:56.132669" + } + ], + "property_interests": [ + { + "project": "DTC Sojon", + "config": "3BHK", + "budget_max": 6558922 + }, + { + "project": "Shriram Grand City", + "config": "3BHK", + "budget_max": 7301349 + }, + { + "project": "Merlin Avana", + "config": "3BHK", + "budget_max": 14669141 + } + ], + "tasks": [], + "qd_overview": { + "intent_score": 0.316, + "urgency_score": 0.418, + "engagement_score": 0.395 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Send project brochure", + "Schedule site visit" + ], + "lead_stage": "inquiry", + "lead_status": "active" + }, + { + "client_ref": "33419d26-e422-4bcc-af49-34fed4d13ffd", + "snapshot_generated_at": "2026-04-18T11:07:56.133863", + "identity": { + "full_name": "Suravi Dutta", + "primary_email": "suravi.dutta832@outlook.com", + "primary_phone": "+91 7754745461", + "persona_labels": "[\"investment_focus\", \"analytical_buyer\", \"nri_diaspora\"]", + "buyer_type": "family_decision_unit" + }, + "account_links": [ + "d9525127-ff0d-45a0-b6d2-57b735be5c66" + ], + "active_opportunities": [ + { + "opportunity_id": "72620ca4-b7d5-4c0e-9fec-b5d9d591c7be", + "project": "Atri Surya Toron", + "stage": "qualified", + "value": 6922704 + } + ], + "recent_interactions": [ + { + "interaction_id": "962a3aac-8907-4561-b339-347726947640", + "channel": "whatsapp", + "happened_at": "2026-04-11T11:07:56.133448" + }, + { + "interaction_id": "6431f2b0-8616-4658-8cc7-6f926671cc5b", + "channel": "call", + "happened_at": "2026-02-06T11:07:56.133357" + }, + { + "interaction_id": "94858651-b549-4b44-8bbb-329a4e8ed17e", + "channel": "referral", + "happened_at": "2025-12-26T11:07:56.133430" + }, + { + "interaction_id": "198ef885-ca63-46c2-81ab-83443f5f41d9", + "channel": "referral", + "happened_at": "2025-12-08T11:07:56.133342" + } + ], + "property_interests": [ + { + "project": "Atri Surya Toron", + "config": "3BHK", + "budget_max": 5702449 + }, + { + "project": "Merlin Avana", + "config": "3BHK", + "budget_max": 16583627 + } + ], + "tasks": [ + "Schedule meeting with senior advisor" + ], + "qd_overview": { + "intent_score": 0.58, + "urgency_score": 0.602, + "engagement_score": 0.589 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Book site visit", + "Share payment plan" + ], + "lead_stage": "qualified", + "lead_status": "active" + }, + { + "client_ref": "64066e13-d76b-4931-9690-dfb8ad8301ad", + "snapshot_generated_at": "2026-04-18T11:07:56.134684", + "identity": { + "full_name": "Saurav Gupta", + "primary_email": "saurav.gupta969@yahoo.com", + "primary_phone": "+91 8814460577", + "persona_labels": "[\"nri_diaspora\", \"value_seeker\"]", + "buyer_type": "high_intent" + }, + "account_links": [ + "8cc07347-b8d7-49c0-9b9c-a2f32b8d481d" + ], + "active_opportunities": [ + { + "opportunity_id": "f3a18997-6fbd-473e-8185-860ae9100646", + "project": "DTC Good Earth", + "stage": "booked", + "value": 5975717 + } + ], + "recent_interactions": [ + { + "interaction_id": "247ae53f-c865-41bf-acaa-6caf01a1eeae", + "channel": "digital_ad", + "happened_at": "2026-04-09T11:07:56.134175" + }, + { + "interaction_id": "2eddf6c3-00c9-4027-83fb-f5e2fd32eca8", + "channel": "email", + "happened_at": "2026-02-28T11:07:56.134049" + }, + { + "interaction_id": "f390bf61-c05e-4a8d-9a32-9e3b0d2b248a", + "channel": "call", + "happened_at": "2026-02-25T11:07:56.134252" + }, + { + "interaction_id": "b24270be-65bb-46ae-8ecd-92b32785a6a4", + "channel": "whatsapp", + "happened_at": "2026-02-09T11:07:56.134103" + }, + { + "interaction_id": "f3e11024-a58e-416d-bdc4-a6337de7d7e7", + "channel": "email", + "happened_at": "2026-01-20T11:07:56.134227" + } + ], + "property_interests": [ + { + "project": "DTC Good Earth", + "config": "2BHK", + "budget_max": 7978576 + }, + { + "project": "Shriram Grand City", + "config": "3BHK", + "budget_max": 9941028 + }, + { + "project": "Godrej Elevate", + "config": "3BHK", + "budget_max": 14388999 + } + ], + "tasks": [ + "Confirm booking appointment" + ], + "qd_overview": { + "intent_score": 0.935, + "urgency_score": 1.0, + "engagement_score": 0.988 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Share loan documents", + "Introduce relationship manager" + ], + "lead_stage": "booked", + "lead_status": "active" + }, + { + "client_ref": "0f924929-dab5-4765-a28e-1f3026e9b047", + "snapshot_generated_at": "2026-04-18T11:07:56.135691", + "identity": { + "full_name": "Partha Mondal", + "primary_email": "partha.mondal953@rediffmail.com", + "primary_phone": "+91 9887067102", + "persona_labels": "[\"investment_focus\", \"emotional_buyer\"]", + "buyer_type": "high_intent" + }, + "account_links": [ + "c64b5253-b5fb-4f37-b1aa-bd549cb7175f" + ], + "active_opportunities": [ + { + "opportunity_id": "5c221e73-cf31-4e78-8792-294fd0ddc369", + "project": "Ambuja Utpaala", + "stage": "negotiation", + "value": 13574207 + } + ], + "recent_interactions": [ + { + "interaction_id": "c44ce46b-eb5c-4ceb-b2ea-23e6f2b7d1b0", + "channel": "call", + "happened_at": "2026-03-24T11:07:56.134921" + }, + { + "interaction_id": "b7e42c8e-f9e0-4e4a-9e20-e6649ee8107c", + "channel": "builder_event", + "happened_at": "2026-03-20T11:07:56.134870" + }, + { + "interaction_id": "5085d99f-79ce-4db7-b52a-580b7a42f7b8", + "channel": "builder_event", + "happened_at": "2026-01-29T11:07:56.135118" + }, + { + "interaction_id": "cacf2fad-c717-4c5f-bdd1-3cddea82f940", + "channel": "site_visit", + "happened_at": "2026-01-19T11:07:56.134896" + }, + { + "interaction_id": "da1f226a-2596-46a2-b79b-8304d68ef993", + "channel": "email", + "happened_at": "2026-01-15T11:07:56.135086" + } + ], + "property_interests": [ + { + "project": "Ambuja Utpaala", + "config": "2BHK", + "budget_max": 13110875 + }, + { + "project": "Siddha Serena", + "config": "2BHK", + "budget_max": 5319966 + } + ], + "tasks": [ + "Re-engage after 2 weeks silence", + "Check competitor comparison status" + ], + "qd_overview": { + "intent_score": 0.772, + "urgency_score": 0.772, + "engagement_score": 0.812 + }, + "risk_flags": [ + "multiple_project_comparisons", + "decision_stalled_at_family" + ], + "recommended_next_actions": [ + "Escalate to senior advisor", + "Prepare final offer" + ], + "lead_stage": "negotiation", + "lead_status": "active" + }, + { + "client_ref": "95f6fab0-02a2-48c6-8eb6-4027be63e400", + "snapshot_generated_at": "2026-04-18T11:07:56.136769", + "identity": { + "full_name": "Lakshmi Pal", + "primary_email": "lakshmi.pal936@rediffmail.com", + "primary_phone": "+91 9216239374", + "persona_labels": "[\"analytical_buyer\", \"family_centric\", \"cash_rich_investor\"]", + "buyer_type": "family_decision_unit" + }, + "account_links": [ + "49fbf504-dd6b-4be1-a90d-d1a9d5acb417" + ], + "active_opportunities": [ + { + "opportunity_id": "e87e2dd3-8693-4483-9f20-360021cb2172", + "project": "Siddha Serena", + "stage": "qualified", + "value": 6474111 + } + ], + "recent_interactions": [ + { + "interaction_id": "d14c374e-abc7-445d-8652-87f8493bbf99", + "channel": "whatsapp", + "happened_at": "2026-02-22T11:07:56.135978" + }, + { + "interaction_id": "84c6299e-23c9-4111-91d6-55069e047a82", + "channel": "email", + "happened_at": "2026-02-17T11:07:56.136062" + }, + { + "interaction_id": "df4aa1df-4ba8-40be-b4cb-75bc0216b6e2", + "channel": "referral", + "happened_at": "2026-01-04T11:07:56.136162" + }, + { + "interaction_id": "8a706acc-0087-4d81-a08d-4a0ffd65f564", + "channel": "whatsapp", + "happened_at": "2026-01-01T11:07:56.135895" + }, + { + "interaction_id": "5c24e92d-7f15-4b0f-be52-b9c1a8b25907", + "channel": "builder_event", + "happened_at": "2025-11-21T11:07:56.135962" + } + ], + "property_interests": [ + { + "project": "Siddha Serena", + "config": "3BHK", + "budget_max": 5472198 + }, + { + "project": "Siddha Suburbia Bungalow", + "config": "5BHK", + "budget_max": 21239922 + } + ], + "tasks": [ + "Re-engage after 2 weeks silence", + "Check loan approval status" + ], + "qd_overview": { + "intent_score": 0.591, + "urgency_score": 0.578, + "engagement_score": 0.575 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Book site visit", + "Share payment plan" + ], + "lead_stage": "qualified", + "lead_status": "active" + }, + { + "client_ref": "5931675e-867c-4925-9805-5b5e642cf23f", + "snapshot_generated_at": "2026-04-18T11:07:56.137555", + "identity": { + "full_name": "Vikram Bose", + "primary_email": "vikram.bose149@yahoo.com", + "primary_phone": "+91 9251960987", + "persona_labels": "[\"upgrade_seeker\", \"value_seeker\", \"first_time_buyer\"]", + "buyer_type": "nri" + }, + "account_links": [ + "37aff800-e6b2-40fb-be5b-993814cd281a" + ], + "active_opportunities": [ + { + "opportunity_id": "95c13c84-615a-425f-bc39-763204af5323", + "project": "DTC Good Earth", + "stage": "booked", + "value": 7381213 + } + ], + "recent_interactions": [ + { + "interaction_id": "eb45bc57-206d-449d-96d5-75c0047b7eea", + "channel": "referral", + "happened_at": "2026-04-01T11:07:56.137034" + }, + { + "interaction_id": "7ea0c377-9820-4055-933e-96d665983dd7", + "channel": "digital_ad", + "happened_at": "2026-02-24T11:07:56.136996" + }, + { + "interaction_id": "5ce2eef2-35f5-42f9-bebe-58d9e375c643", + "channel": "digital_ad", + "happened_at": "2026-01-31T11:07:56.137014" + }, + { + "interaction_id": "c27c7c66-a6a9-481b-a29b-e5c3d4f879b6", + "channel": "digital_ad", + "happened_at": "2025-12-03T11:07:56.137066" + }, + { + "interaction_id": "7eb766ef-7a3b-4742-82b2-45b30e6e0402", + "channel": "referral", + "happened_at": "2025-10-23T11:07:56.137050" + } + ], + "property_interests": [ + { + "project": "DTC Good Earth", + "config": "3BHK", + "budget_max": 7511098 + }, + { + "project": "Siddha Sky Waterfront", + "config": "3BHK", + "budget_max": 14077042 + } + ], + "tasks": [ + "Share updated price list" + ], + "qd_overview": { + "intent_score": 0.759, + "urgency_score": 0.824, + "engagement_score": 0.786 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Share loan documents", + "Introduce relationship manager" + ], + "lead_stage": "booked", + "lead_status": "active" + }, + { + "client_ref": "3bdf4c9c-bf45-4089-9368-49d320de4101", + "snapshot_generated_at": "2026-04-18T11:07:56.138391", + "identity": { + "full_name": "Saurav Das", + "primary_email": "saurav.das880@yahoo.com", + "primary_phone": "+91 8235818454", + "persona_labels": "[\"investment_focus\", \"upgrade_seeker\"]", + "buyer_type": "slow_burn_investor" + }, + "account_links": [ + "926a8c60-ae39-4028-a2cb-68f783fd2fe3" + ], + "active_opportunities": [ + { + "opportunity_id": "4cfb13d3-d6f5-4e94-ac2c-0f612de42f53", + "project": "Siddha Serena", + "stage": "qualified", + "value": 6483135 + } + ], + "recent_interactions": [ + { + "interaction_id": "5de70f5f-3d43-4a48-8c19-4778d25a9129", + "channel": "site_visit", + "happened_at": "2026-04-06T11:07:56.137736" + }, + { + "interaction_id": "f754436b-62dd-479d-b9d0-c2eb791190d0", + "channel": "email", + "happened_at": "2026-03-17T11:07:56.137879" + }, + { + "interaction_id": "15ef6756-8fbc-4bd4-a76f-8736bbb60ed9", + "channel": "site_visit", + "happened_at": "2026-03-06T11:07:56.137765" + }, + { + "interaction_id": "1b3c9937-c46d-4441-8290-d26c035c7397", + "channel": "whatsapp", + "happened_at": "2026-01-31T11:07:56.137794" + }, + { + "interaction_id": "406b38fd-bb56-4019-acce-da2151349c33", + "channel": "call", + "happened_at": "2025-12-11T11:07:56.137916" + } + ], + "property_interests": [ + { + "project": "Siddha Serena", + "config": "3BHK", + "budget_max": 5759193 + }, + { + "project": "Siddha Sky Waterfront", + "config": "3BHK", + "budget_max": 17712163 + } + ], + "tasks": [], + "qd_overview": { + "intent_score": 0.443, + "urgency_score": 0.489, + "engagement_score": 0.494 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Book site visit", + "Share payment plan" + ], + "lead_stage": "qualified", + "lead_status": "active" + }, + { + "client_ref": "34bcfac6-a197-4492-be3b-a784cb03b8ed", + "snapshot_generated_at": "2026-04-18T11:07:56.140058", + "identity": { + "full_name": "Sudip Desai", + "primary_email": "sudip.desai885@company.com", + "primary_phone": "+91 8676498485", + "persona_labels": "[\"investment_focus\", \"emotional_buyer\", \"value_seeker\"]", + "buyer_type": "repeat_visitor" + }, + "account_links": [ + "50a26214-39cd-4e63-b551-acd26576c9d2" + ], + "active_opportunities": [ + { + "opportunity_id": "7895f5f4-bad4-465a-a156-10781673b6cc", + "project": "Atri Aqua", + "stage": "qualified", + "value": 5846484 + } + ], + "recent_interactions": [ + { + "interaction_id": "2acd3596-c7de-4ae9-a3c3-c427c8fd3636", + "channel": "referral", + "happened_at": "2026-03-23T11:07:56.138606" + }, + { + "interaction_id": "bcccd98b-d512-4ef6-afd4-edb27e14c1cc", + "channel": "referral", + "happened_at": "2026-02-21T11:07:56.138621" + }, + { + "interaction_id": "e8bfd7de-3c01-4087-8098-26d85ed4d122", + "channel": "referral", + "happened_at": "2025-11-03T11:07:56.138590" + }, + { + "interaction_id": "56c13417-2059-4ff7-83d9-4f5243ff0022", + "channel": "builder_event", + "happened_at": "2025-10-15T11:07:56.138639" + } + ], + "property_interests": [ + { + "project": "Atri Aqua", + "config": "2BHK", + "budget_max": 8751714 + }, + { + "project": "Merlin Avana", + "config": "4BHK", + "budget_max": 16783114 + }, + { + "project": "Ambuja Utpaala", + "config": "4BHK", + "budget_max": 14385399 + } + ], + "tasks": [ + "Send legal documents", + "Check loan approval status", + "Re-engage after 2 weeks silence" + ], + "qd_overview": { + "intent_score": 0.603, + "urgency_score": 0.601, + "engagement_score": 0.704 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Book site visit", + "Share payment plan" + ], + "lead_stage": "qualified", + "lead_status": "active" + }, + { + "client_ref": "101593c6-f19a-4e66-9bf3-6f8e2abb696e", + "snapshot_generated_at": "2026-04-18T11:07:56.140788", + "identity": { + "full_name": "Debashish Joshi", + "primary_email": "debashish.joshi71@rediffmail.com", + "primary_phone": "+91 8605302840", + "persona_labels": "[\"analytical_buyer\", \"emotional_buyer\"]", + "buyer_type": "price_sensitive" + }, + "account_links": [ + "c64b5253-b5fb-4f37-b1aa-bd549cb7175f" + ], + "active_opportunities": [ + { + "opportunity_id": "767b685d-05f5-42fc-8b1d-35785bae6137", + "project": "Atri Surya Toron", + "stage": "qualified", + "value": 7174356 + } + ], + "recent_interactions": [ + { + "interaction_id": "3d52ecfe-0fa8-4362-972d-ea5ddf0e35cf", + "channel": "email", + "happened_at": "2026-03-17T11:07:56.140390" + }, + { + "interaction_id": "06c99297-c784-43b3-a6a1-a1a303e2b8fd", + "channel": "site_visit", + "happened_at": "2026-01-28T11:07:56.140345" + }, + { + "interaction_id": "34d82d74-6374-4075-bd43-4cbb73fd21ee", + "channel": "builder_event", + "happened_at": "2026-01-24T11:07:56.140324" + }, + { + "interaction_id": "93d79133-2355-40e8-9398-88802f5d664c", + "channel": "builder_event", + "happened_at": "2025-10-23T11:07:56.140374" + } + ], + "property_interests": [ + { + "project": "Atri Surya Toron", + "config": "3BHK", + "budget_max": 5589219 + }, + { + "project": "Sugam Prakriti", + "config": "2BHK", + "budget_max": 7643456 + } + ], + "tasks": [ + "Confirm booking appointment" + ], + "qd_overview": { + "intent_score": 0.249, + "urgency_score": 0.31, + "engagement_score": 0.347 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Book site visit", + "Share payment plan" + ], + "lead_stage": "qualified", + "lead_status": "active" + }, + { + "client_ref": "c1855849-51d8-4a60-bd63-6db402cf5f7c", + "snapshot_generated_at": "2026-04-18T11:07:56.141630", + "identity": { + "full_name": "Ananya Bhadra", + "primary_email": "ananya.bhadra95@outlook.com", + "primary_phone": "+91 8662224154", + "persona_labels": "[\"upgrade_seeker\", \"status_buyer\", \"emotional_buyer\"]", + "buyer_type": "high_intent" + }, + "account_links": [ + "63cc313d-eb9d-4ad9-8502-e9dd330e5e0b" + ], + "active_opportunities": [ + { + "opportunity_id": "65220cb1-bb73-43a4-8197-cf38b71d0578", + "project": "Merlin Avana", + "stage": "qualified", + "value": 14733923 + } + ], + "recent_interactions": [ + { + "interaction_id": "d6243773-29c8-46b5-ba03-1801483a46c3", + "channel": "site_visit", + "happened_at": "2026-02-19T11:07:56.141069" + }, + { + "interaction_id": "a034f843-8c7b-48d3-a738-eded01151da6", + "channel": "builder_event", + "happened_at": "2026-01-03T11:07:56.141054" + }, + { + "interaction_id": "a0e20a47-67ef-4905-b285-8628298fde38", + "channel": "whatsapp", + "happened_at": "2025-12-27T11:07:56.140962" + }, + { + "interaction_id": "6fdca4e2-106b-4a34-9b11-d5ff952634b8", + "channel": "referral", + "happened_at": "2025-11-18T11:07:56.141188" + }, + { + "interaction_id": "34efc7c5-a0a3-447e-a00b-f8ec3e4d2a4a", + "channel": "whatsapp", + "happened_at": "2025-10-28T11:07:56.141111" + } + ], + "property_interests": [ + { + "project": "Merlin Avana", + "config": "3BHK", + "budget_max": 12616079 + }, + { + "project": "Godrej Blue", + "config": "4BHK", + "budget_max": 12061421 + }, + { + "project": "Shriram Grand City", + "config": "4BHK", + "budget_max": 9289702 + } + ], + "tasks": [ + "Check competitor comparison status" + ], + "qd_overview": { + "intent_score": 0.845, + "urgency_score": 0.862, + "engagement_score": 0.934 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Book site visit", + "Share payment plan" + ], + "lead_stage": "qualified", + "lead_status": "active" + }, + { + "client_ref": "53ec419c-7155-43e3-900b-a6649272d54a", + "snapshot_generated_at": "2026-04-18T11:07:56.142421", + "identity": { + "full_name": "Partha Modi", + "primary_email": "partha.modi5@gmail.com", + "primary_phone": "+91 8392348507", + "persona_labels": "[\"first_time_buyer\", \"cash_rich_investor\", \"analytical_buyer\"]", + "buyer_type": "slow_burn_investor" + }, + "account_links": [ + "49fbf504-dd6b-4be1-a90d-d1a9d5acb417" + ], + "active_opportunities": [ + { + "opportunity_id": "1bda7821-c39e-44d3-ab23-436db2392245", + "project": "Atri Aqua", + "stage": "qualified", + "value": 8564452 + } + ], + "recent_interactions": [ + { + "interaction_id": "aad41d46-947b-47a6-9ec6-c01a114b1f90", + "channel": "call", + "happened_at": "2026-04-04T11:07:56.141761" + }, + { + "interaction_id": "c49f110e-4fd1-45cd-9d44-1d476fdd89c9", + "channel": "referral", + "happened_at": "2026-03-15T11:07:56.141944" + }, + { + "interaction_id": "2aae5328-09ef-4f63-9ada-f6973c6cbc32", + "channel": "whatsapp", + "happened_at": "2026-02-10T11:07:56.141855" + }, + { + "interaction_id": "888500e4-473d-409d-b1c2-7abc90b80eed", + "channel": "builder_event", + "happened_at": "2026-02-08T11:07:56.142021" + }, + { + "interaction_id": "aab707ed-e946-4fa6-a323-1a45c49dc539", + "channel": "whatsapp", + "happened_at": "2025-11-22T11:07:56.141960" + } + ], + "property_interests": [ + { + "project": "Atri Aqua", + "config": "2BHK", + "budget_max": 6429567 + } + ], + "tasks": [ + "Re-engage after 2 weeks silence" + ], + "qd_overview": { + "intent_score": 0.304, + "urgency_score": 0.454, + "engagement_score": 0.457 + }, + "risk_flags": [ + "visit_completed_but_silent" + ], + "recommended_next_actions": [ + "Book site visit", + "Share payment plan" + ], + "lead_stage": "qualified", + "lead_status": "active" + }, + { + "client_ref": "b6f460b5-f1ac-4cc5-a161-4730e97fd2bf", + "snapshot_generated_at": "2026-04-18T11:07:56.143306", + "identity": { + "full_name": "Mainak Chatterjee", + "primary_email": "mainak.chatterjee716@outlook.com", + "primary_phone": "+91 9074165225", + "persona_labels": "[\"investment_focus\", \"analytical_buyer\", \"emotional_buyer\"]", + "buyer_type": "broker_referral" + }, + "account_links": [ + "3ca36680-91ab-4414-adf4-578793e34459" + ], + "active_opportunities": [ + { + "opportunity_id": "6a3e8614-0d63-4e0a-ac8a-ac2776b9ed8a", + "project": "Godrej Blue", + "stage": "qualified", + "value": 8852404 + } + ], + "recent_interactions": [ + { + "interaction_id": "5c03b600-5d77-4d98-abf8-8eb11e888f26", + "channel": "builder_event", + "happened_at": "2026-02-19T11:07:56.142765" + }, + { + "interaction_id": "ccf51689-5956-4ddd-890a-386db2c6887b", + "channel": "email", + "happened_at": "2026-02-13T11:07:56.142915" + }, + { + "interaction_id": "5607e1bb-80f0-49db-91b9-65593fc8fb1f", + "channel": "builder_event", + "happened_at": "2026-01-25T11:07:56.142855" + }, + { + "interaction_id": "5cf84358-9501-4528-9f92-c0f76c641f56", + "channel": "email", + "happened_at": "2025-11-12T11:07:56.142782" + }, + { + "interaction_id": "14c64282-4ec7-4911-a274-48230120fb9a", + "channel": "referral", + "happened_at": "2025-11-05T11:07:56.142819" + } + ], + "property_interests": [ + { + "project": "Godrej Blue", + "config": "3BHK", + "budget_max": 14914865 + }, + { + "project": "Atri Aqua", + "config": "2BHK", + "budget_max": 9361887 + } + ], + "tasks": [ + "Follow up after site visit" + ], + "qd_overview": { + "intent_score": 0.574, + "urgency_score": 0.527, + "engagement_score": 0.606 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Book site visit", + "Share payment plan" + ], + "lead_stage": "qualified", + "lead_status": "active" + }, + { + "client_ref": "5322228f-0110-413c-bc8f-b5e19f013809", + "snapshot_generated_at": "2026-04-18T11:07:56.144071", + "identity": { + "full_name": "Prosenjit Chakraborty", + "primary_email": "prosenjit.chakraborty46@outlook.com", + "primary_phone": "+91 7311913029", + "persona_labels": "[\"status_buyer\"]", + "buyer_type": "family_decision_unit" + }, + "account_links": [ + "3ca36680-91ab-4414-adf4-578793e34459" + ], + "active_opportunities": [ + { + "opportunity_id": "93440938-8241-4d71-9ba9-465670293243", + "project": "Merlin Avana", + "stage": "qualified", + "value": 8454150 + } + ], + "recent_interactions": [ + { + "interaction_id": "a8a13ae5-6245-41b7-b644-87a537b2d272", + "channel": "site_visit", + "happened_at": "2026-03-30T11:07:56.143638" + }, + { + "interaction_id": "550200aa-d11b-4fb8-8f87-daa18b5b13b9", + "channel": "builder_event", + "happened_at": "2026-03-29T11:07:56.143579" + }, + { + "interaction_id": "6e761097-0c87-4222-8ea8-b554d615f24c", + "channel": "digital_ad", + "happened_at": "2026-01-02T11:07:56.143564" + }, + { + "interaction_id": "e862bdc2-06ee-4175-8a09-4a3ce73e3670", + "channel": "builder_event", + "happened_at": "2025-12-28T11:07:56.143547" + }, + { + "interaction_id": "81aa02f1-637f-49aa-8abb-0bcf6cf6ac97", + "channel": "digital_ad", + "happened_at": "2025-12-01T11:07:56.143594" + } + ], + "property_interests": [ + { + "project": "Merlin Avana", + "config": "4BHK", + "budget_max": 11261640 + }, + { + "project": "Siddha Sky Waterfront", + "config": "4BHK", + "budget_max": 16741083 + } + ], + "tasks": [ + "Send legal documents" + ], + "qd_overview": { + "intent_score": 0.55, + "urgency_score": 0.532, + "engagement_score": 0.628 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Book site visit", + "Share payment plan" + ], + "lead_stage": "qualified", + "lead_status": "active" + }, + { + "client_ref": "de0d946e-f593-48c9-911d-3b376b2d199e", + "snapshot_generated_at": "2026-04-18T11:07:56.144687", + "identity": { + "full_name": "Mahesh Roy", + "primary_email": "mahesh.roy47@outlook.com", + "primary_phone": "+91 9872625705", + "persona_labels": "[\"investment_focus\", \"family_centric\"]", + "buyer_type": "slow_burn_investor" + }, + "account_links": [ + "a1de095a-529c-4d0a-9459-779ac5db4d88" + ], + "active_opportunities": [ + { + "opportunity_id": "4cc5caa3-253e-463a-96fe-049e90c3167a", + "project": "DTC Sojon", + "stage": "proposal_sent", + "value": 4114673 + } + ], + "recent_interactions": [ + { + "interaction_id": "32b915a9-4502-4fb1-9fae-a8808e655b6e", + "channel": "referral", + "happened_at": "2026-04-09T11:07:56.144270" + }, + { + "interaction_id": "577b3625-58ca-44ce-809f-b0405ea66d53", + "channel": "referral", + "happened_at": "2026-02-23T11:07:56.144318" + }, + { + "interaction_id": "7b3cedba-2912-4772-a2be-8585d9d21a14", + "channel": "builder_event", + "happened_at": "2025-12-12T11:07:56.144334" + }, + { + "interaction_id": "0e36545b-4224-4cd7-8a9c-8196bcf4c9e0", + "channel": "digital_ad", + "happened_at": "2025-11-24T11:07:56.144302" + }, + { + "interaction_id": "c181f091-6b10-4a85-9866-7b6900770971", + "channel": "digital_ad", + "happened_at": "2025-10-15T11:07:56.144287" + } + ], + "property_interests": [ + { + "project": "DTC Sojon", + "config": "1BHK", + "budget_max": 7170776 + }, + { + "project": "Siddha Serena", + "config": "3BHK", + "budget_max": 7257087 + }, + { + "project": "Atri Surya Toron", + "config": "3BHK", + "budget_max": 7174330 + } + ], + "tasks": [ + "Follow up after site visit", + "Follow up after site visit" + ], + "qd_overview": { + "intent_score": 0.365, + "urgency_score": 0.369, + "engagement_score": 0.429 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Chase for decision", + "Address objections" + ], + "lead_stage": "proposal_sent", + "lead_status": "active" + }, + { + "client_ref": "85959ddf-9f36-4351-bbde-10136906b951", + "snapshot_generated_at": "2026-04-18T11:07:56.145407", + "identity": { + "full_name": "Vikram Bhadra", + "primary_email": "vikram.bhadra335@yahoo.com", + "primary_phone": "+91 9034248318", + "persona_labels": "[\"status_buyer\", \"nri_diaspora\"]", + "buyer_type": "family_decision_unit" + }, + "account_links": [ + "98ccca21-7413-4609-9b7b-c93f5ee87ff8" + ], + "active_opportunities": [], + "recent_interactions": [ + { + "interaction_id": "0a4cbe2e-ddfd-4032-aa42-44ce7a80a0bf", + "channel": "site_visit", + "happened_at": "2026-03-27T11:07:56.144885" + }, + { + "interaction_id": "c80a8517-8d88-4405-8374-bd5cf96829ca", + "channel": "builder_event", + "happened_at": "2026-03-22T11:07:56.144928" + }, + { + "interaction_id": "72566f10-f42c-4f6a-9a30-7c5cb4b89f49", + "channel": "builder_event", + "happened_at": "2026-02-13T11:07:56.144847" + }, + { + "interaction_id": "c26b7caf-af45-4e27-beea-27a5a6c2be85", + "channel": "digital_ad", + "happened_at": "2026-01-27T11:07:56.144959" + }, + { + "interaction_id": "0549adc4-53c9-4bdd-a45c-a59f0f321cb4", + "channel": "referral", + "happened_at": "2026-01-03T11:07:56.144862" + } + ], + "property_interests": [ + { + "project": "Godrej Elevate", + "config": "4BHK", + "budget_max": 19350690 + } + ], + "tasks": [ + "Nudge for final decision" + ], + "qd_overview": { + "intent_score": 0.698, + "urgency_score": 0.741, + "engagement_score": 0.631 + }, + "risk_flags": [], + "recommended_next_actions": [ + "Send project brochure", + "Schedule site visit" + ], + "lead_stage": "inquiry", + "lead_status": "active" + }, + { + "client_ref": "69b0b9e4-91aa-42e3-8dae-7e0a2fe06310", + "snapshot_generated_at": "2026-04-18T11:07:56.146055", + "identity": { + "full_name": "Poulomi Iyer", + "primary_email": "poulomi.iyer948@hotmail.com", + "primary_phone": "+91 8036959244", + "persona_labels": "[\"family_centric\"]", + "buyer_type": "nri" + }, + "account_links": [ + "98ccca21-7413-4609-9b7b-c93f5ee87ff8" + ], + "active_opportunities": [ + { + "opportunity_id": "0b48e306-ce78-4cd9-91e5-2597668ca255", + "project": "Atri Surya Toron", + "stage": "site_visit_done", + "value": 6129476 + } + ], + "recent_interactions": [ + { + "interaction_id": "3e40635b-fc5c-411e-8e54-3baeec28f7ca", + "channel": "site_visit", + "happened_at": "2026-04-04T11:07:56.145632" + }, + { + "interaction_id": "c7daf711-fe1c-45a9-b54f-a953c245721d", + "channel": "builder_event", + "happened_at": "2026-02-25T11:07:56.145574" + }, + { + "interaction_id": "98440099-b3cb-4beb-b727-de2fb2e68e5a", + "channel": "site_visit", + "happened_at": "2025-12-03T11:07:56.145590" + }, + { + "interaction_id": "bdb737e6-b122-405b-854e-8834e1f52f1e", + "channel": "referral", + "happened_at": "2025-10-19T11:07:56.145614" + } + ], + "property_interests": [ + { + "project": "Atri Surya Toron", + "config": "3BHK", + "budget_max": 5048356 + }, + { + "project": "DTC Good Earth", + "config": "3BHK", + "budget_max": 7640215 + } + ], + "tasks": [ + "Share updated price list" + ], + "qd_overview": { + "intent_score": 0.697, + "urgency_score": 0.667, + "engagement_score": 0.655 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Follow up on impressions", + "Send updated price list" + ], + "lead_stage": "site_visit_done", + "lead_status": "active" + }, + { + "client_ref": "d918b0ea-e93c-4a7c-b8bf-07bd1d40c524", + "snapshot_generated_at": "2026-04-18T11:07:56.146741", + "identity": { + "full_name": "Souvik Paul", + "primary_email": "souvik.paul902@rediffmail.com", + "primary_phone": "+91 7521560030", + "persona_labels": "[\"upgrade_seeker\", \"value_seeker\"]", + "buyer_type": "family_decision_unit" + }, + "account_links": [ + "f37fe679-99e5-4ea8-a1a5-d31e4f8d4bf2" + ], + "active_opportunities": [ + { + "opportunity_id": "33b8aa11-8631-440a-9ae0-178f26358198", + "project": "Siddha Suburbia Bungalow", + "stage": "proposal_sent", + "value": 21940997 + } + ], + "recent_interactions": [ + { + "interaction_id": "9381d04a-8af1-41d2-a9d0-c0c0f461491d", + "channel": "site_visit", + "happened_at": "2026-03-30T11:07:56.146265" + }, + { + "interaction_id": "83f8d7a9-6d73-4512-bffc-3b408d0c97a6", + "channel": "builder_event", + "happened_at": "2026-02-12T11:07:56.146301" + }, + { + "interaction_id": "57ffff7f-c339-46e0-a049-dfc60b0711f5", + "channel": "digital_ad", + "happened_at": "2025-11-09T11:07:56.146318" + } + ], + "property_interests": [ + { + "project": "Siddha Suburbia Bungalow", + "config": "5BHK", + "budget_max": 13487444 + }, + { + "project": "DTC Good Earth", + "config": "2BHK", + "budget_max": 6564740 + } + ], + "tasks": [], + "qd_overview": { + "intent_score": 0.436, + "urgency_score": 0.578, + "engagement_score": 0.538 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Chase for decision", + "Address objections" + ], + "lead_stage": "proposal_sent", + "lead_status": "active" + }, + { + "client_ref": "d7a57fc2-7447-42ee-8d7c-b4706d422683", + "snapshot_generated_at": "2026-04-18T11:07:56.147524", + "identity": { + "full_name": "Sreyasi Kundu", + "primary_email": "sreyasi.kundu286@yahoo.com", + "primary_phone": "+91 9704943705", + "persona_labels": "[\"investment_focus\", \"cash_rich_investor\"]", + "buyer_type": "repeat_visitor" + }, + "account_links": [ + "3ee6687a-9fa3-428d-97da-4a73cc843273" + ], + "active_opportunities": [ + { + "opportunity_id": "d43508ba-306e-4400-937a-279a6559307b", + "project": "Atri Surya Toron", + "stage": "site_visit_done", + "value": 6287132 + } + ], + "recent_interactions": [ + { + "interaction_id": "dd9a2686-daba-4e2b-a36d-d47ed1a8d3a7", + "channel": "digital_ad", + "happened_at": "2026-02-08T11:07:56.146923" + }, + { + "interaction_id": "b190683f-e4e9-467a-90b3-68d784c25fdb", + "channel": "builder_event", + "happened_at": "2026-01-19T11:07:56.147071" + }, + { + "interaction_id": "8299669d-3bb1-4464-906d-6907c5a26e08", + "channel": "referral", + "happened_at": "2026-01-16T11:07:56.147040" + }, + { + "interaction_id": "8f0f80f1-b0a9-415b-bfff-19a52d0d1a7d", + "channel": "call", + "happened_at": "2025-12-19T11:07:56.146939" + }, + { + "interaction_id": "9d09ffb3-a3bd-4f60-ad67-f8319b14a396", + "channel": "builder_event", + "happened_at": "2025-11-22T11:07:56.147023" + } + ], + "property_interests": [ + { + "project": "Atri Surya Toron", + "config": "3BHK", + "budget_max": 5062150 + } + ], + "tasks": [], + "qd_overview": { + "intent_score": 0.659, + "urgency_score": 0.647, + "engagement_score": 0.644 + }, + "risk_flags": [], + "recommended_next_actions": [ + "Follow up on impressions", + "Send updated price list" + ], + "lead_stage": "site_visit_done", + "lead_status": "active" + }, + { + "client_ref": "d114f7c5-7218-4b12-b9c7-d1f77eebda60", + "snapshot_generated_at": "2026-04-18T11:07:56.148259", + "identity": { + "full_name": "Priya Gupta", + "primary_email": "priya.gupta133@yahoo.com", + "primary_phone": "+91 8384005098", + "persona_labels": "[\"upgrade_seeker\"]", + "buyer_type": "family_decision_unit" + }, + "account_links": [ + "3ee6687a-9fa3-428d-97da-4a73cc843273" + ], + "active_opportunities": [ + { + "opportunity_id": "c0a68b2d-6e48-4f10-ad0e-2d6c75cb1b8c", + "project": "Atri Surya Toron", + "stage": "proposal_sent", + "value": 5358621 + } + ], + "recent_interactions": [ + { + "interaction_id": "78ffa360-53cb-4cbf-9acb-3e642c96231d", + "channel": "referral", + "happened_at": "2026-04-10T11:07:56.147719" + }, + { + "interaction_id": "9a80ce96-84dc-41ac-aaeb-f706646dfd49", + "channel": "email", + "happened_at": "2026-03-24T11:07:56.147787" + }, + { + "interaction_id": "3838eabe-fe71-4ab4-bad5-512df43d87a6", + "channel": "site_visit", + "happened_at": "2025-10-22T11:07:56.147763" + }, + { + "interaction_id": "e4f9e0dc-2a3c-4ab9-a9a1-82907ab1322d", + "channel": "email", + "happened_at": "2025-10-13T11:07:56.147738" + }, + { + "interaction_id": "02da7329-293b-440e-b175-79611146e868", + "channel": "builder_event", + "happened_at": "2025-10-11T11:07:56.147702" + } + ], + "property_interests": [ + { + "project": "Atri Surya Toron", + "config": "2BHK", + "budget_max": 6955769 + }, + { + "project": "Siddha Serena", + "config": "3BHK", + "budget_max": 8553278 + } + ], + "tasks": [ + "Re-engage after 2 weeks silence" + ], + "qd_overview": { + "intent_score": 0.537, + "urgency_score": 0.4, + "engagement_score": 0.445 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Chase for decision", + "Address objections" + ], + "lead_stage": "proposal_sent", + "lead_status": "active" + }, + { + "client_ref": "50e58ea3-b2e0-45be-9c63-dc853645bf3d", + "snapshot_generated_at": "2026-04-18T11:07:56.149171", + "identity": { + "full_name": "Mahesh Biswas", + "primary_email": "mahesh.biswas676@yahoo.com", + "primary_phone": "+91 7779682905", + "persona_labels": "[\"upgrade_seeker\", \"analytical_buyer\", \"emotional_buyer\"]", + "buyer_type": "high_intent" + }, + "account_links": [ + "1c0d28e8-4df2-4190-9ecf-6d7b779bd40d" + ], + "active_opportunities": [ + { + "opportunity_id": "37ec4f21-4cc3-460b-92a7-fbe96bbe2833", + "project": "Atri Surya Toron", + "stage": "proposal_sent", + "value": 7355309 + } + ], + "recent_interactions": [ + { + "interaction_id": "35ce1616-ddbf-4c40-95c1-8c2292a9d89a", + "channel": "call", + "happened_at": "2026-04-04T11:07:56.148449" + }, + { + "interaction_id": "e9e1e494-3785-4265-a7f7-05af5d2804fa", + "channel": "builder_event", + "happened_at": "2026-02-19T11:07:56.148594" + }, + { + "interaction_id": "850e5595-ecf8-4ec1-adc0-5b3d58002acd", + "channel": "site_visit", + "happened_at": "2026-01-23T11:07:56.148618" + }, + { + "interaction_id": "224bc2a4-ed3b-4863-99fb-67f6714f976f", + "channel": "call", + "happened_at": "2026-01-09T11:07:56.148522" + }, + { + "interaction_id": "1f789de8-474e-4641-be1f-a5e1052d6875", + "channel": "whatsapp", + "happened_at": "2025-12-25T11:07:56.148687" + } + ], + "property_interests": [ + { + "project": "Atri Surya Toron", + "config": "2BHK", + "budget_max": 5549344 + }, + { + "project": "Siddha Suburbia Bungalow", + "config": "5BHK", + "budget_max": 18381468 + }, + { + "project": "Siddha Serena", + "config": "3BHK", + "budget_max": 7943582 + } + ], + "tasks": [ + "Schedule meeting with senior advisor" + ], + "qd_overview": { + "intent_score": 0.771, + "urgency_score": 0.738, + "engagement_score": 0.788 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Chase for decision", + "Address objections" + ], + "lead_stage": "proposal_sent", + "lead_status": "active" + }, + { + "client_ref": "f9256fba-d5a3-4136-9fa7-0ba14da331b8", + "snapshot_generated_at": "2026-04-18T11:07:56.150279", + "identity": { + "full_name": "Sujan Biswas", + "primary_email": "sujan.biswas332@outlook.com", + "primary_phone": "+91 9493796823", + "persona_labels": "[\"analytical_buyer\", \"investment_focus\", \"family_centric\"]", + "buyer_type": "family_decision_unit" + }, + "account_links": [ + "167e5af1-66b1-41c0-9a9d-42aa9b77a3a7" + ], + "active_opportunities": [ + { + "opportunity_id": "e2f46d01-e10c-426e-9493-5e9d171b9c27", + "project": "Godrej Blue", + "stage": "qualified", + "value": 13657077 + } + ], + "recent_interactions": [ + { + "interaction_id": "816d7c1e-dee0-4e52-b5a5-43a9802dc6d9", + "channel": "referral", + "happened_at": "2026-04-04T11:07:56.149620" + }, + { + "interaction_id": "2c380f38-c6bf-49aa-a803-00d2e07259ac", + "channel": "site_visit", + "happened_at": "2026-02-09T11:07:56.149694" + }, + { + "interaction_id": "e268ee46-db24-4bea-bc62-8a53b323c388", + "channel": "whatsapp", + "happened_at": "2026-01-20T11:07:56.149385" + }, + { + "interaction_id": "9e3b9777-a2de-4a48-98ab-62a28ee3375c", + "channel": "call", + "happened_at": "2026-01-15T11:07:56.149717" + }, + { + "interaction_id": "f000e64f-fa40-41ec-9acd-d2e4d4a854ba", + "channel": "site_visit", + "happened_at": "2026-01-03T11:07:56.149668" + } + ], + "property_interests": [ + { + "project": "Godrej Blue", + "config": "2BHK", + "budget_max": 9841573 + }, + { + "project": "Godrej Elevate", + "config": "3BHK", + "budget_max": 16950934 + }, + { + "project": "DTC Sojon", + "config": "3BHK", + "budget_max": 7272607 + } + ], + "tasks": [ + "Send festive offer" + ], + "qd_overview": { + "intent_score": 0.65, + "urgency_score": 0.69, + "engagement_score": 0.632 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Book site visit", + "Share payment plan" + ], + "lead_stage": "qualified", + "lead_status": "active" + }, + { + "client_ref": "1cb51c49-2b1a-4dce-9bad-b868b864c450", + "snapshot_generated_at": "2026-04-18T11:07:56.150974", + "identity": { + "full_name": "Ayan Chakraborty", + "primary_email": "ayan.chakraborty34@gmail.com", + "primary_phone": "+91 7051347072", + "persona_labels": "[\"cash_rich_investor\"]", + "buyer_type": "high_intent" + }, + "account_links": [], + "active_opportunities": [ + { + "opportunity_id": "7ed1c9ed-40be-4ce0-bba5-a0e4a6bea3d2", + "project": "DTC Sojon", + "stage": "proposal_sent", + "value": 6283386 + } + ], + "recent_interactions": [ + { + "interaction_id": "4eb956b1-7251-42d6-b5d2-dabb0f97cd83", + "channel": "referral", + "happened_at": "2026-04-09T11:07:56.150553" + }, + { + "interaction_id": "c5f8fb74-0039-425c-91fc-9fc712cd9e4a", + "channel": "whatsapp", + "happened_at": "2026-02-22T11:07:56.150568" + }, + { + "interaction_id": "1a5f3058-7f30-400c-bf2b-333e0eeb9a5a", + "channel": "site_visit", + "happened_at": "2026-01-10T11:07:56.150454" + }, + { + "interaction_id": "67a8231b-8886-41e3-9beb-66e6850a353d", + "channel": "email", + "happened_at": "2025-12-11T11:07:56.150499" + }, + { + "interaction_id": "a7d95cc6-da79-4dbc-a4be-224ad195b50b", + "channel": "builder_event", + "happened_at": "2025-12-03T11:07:56.150484" + } + ], + "property_interests": [ + { + "project": "DTC Sojon", + "config": "2BHK", + "budget_max": 6802807 + }, + { + "project": "Shriram Grand City", + "config": "4BHK", + "budget_max": 10214402 + } + ], + "tasks": [], + "qd_overview": { + "intent_score": 0.94, + "urgency_score": 0.935, + "engagement_score": 0.96 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Chase for decision", + "Address objections" + ], + "lead_stage": "proposal_sent", + "lead_status": "active" + }, + { + "client_ref": "2e951f4e-a9d1-4752-8688-6c9e8200c07b", + "snapshot_generated_at": "2026-04-18T11:07:56.151824", + "identity": { + "full_name": "Saurav Mehta", + "primary_email": "saurav.mehta434@hotmail.com", + "primary_phone": "+91 8837633978", + "persona_labels": "[\"cash_rich_investor\"]", + "buyer_type": "slow_burn_investor" + }, + "account_links": [ + "b353486d-00ac-4fe1-a3ef-8aab66e3cbe4" + ], + "active_opportunities": [ + { + "opportunity_id": "14deeca3-f82d-4ef2-bb98-b6ecc021325b", + "project": "Merlin Avana", + "stage": "proposal_sent", + "value": 10763118 + } + ], + "recent_interactions": [ + { + "interaction_id": "8e23f0c6-7ed5-425e-a5d0-5454d55e842a", + "channel": "whatsapp", + "happened_at": "2026-03-22T11:07:56.151331" + }, + { + "interaction_id": "8cf4d4d1-c865-4009-824c-6cd9519fb005", + "channel": "site_visit", + "happened_at": "2026-03-18T11:07:56.151148" + }, + { + "interaction_id": "1e468ab6-3a85-42c0-bdae-b75534f7c60a", + "channel": "whatsapp", + "happened_at": "2026-02-22T11:07:56.151271" + }, + { + "interaction_id": "3594dbaa-086f-400a-a824-b6df9c2d2e0d", + "channel": "referral", + "happened_at": "2026-01-05T11:07:56.151416" + }, + { + "interaction_id": "44fb55b1-ce86-41e3-99b3-98c2d208c2d6", + "channel": "site_visit", + "happened_at": "2026-01-01T11:07:56.151375" + } + ], + "property_interests": [ + { + "project": "Merlin Avana", + "config": "4BHK", + "budget_max": 11180524 + }, + { + "project": "Siddha Suburbia Bungalow", + "config": "4BHK", + "budget_max": 15332406 + } + ], + "tasks": [ + "Re-engage after 2 weeks silence" + ], + "qd_overview": { + "intent_score": 0.34, + "urgency_score": 0.44, + "engagement_score": 0.405 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Chase for decision", + "Address objections" + ], + "lead_stage": "proposal_sent", + "lead_status": "active" + }, + { + "client_ref": "e175ba85-39fd-4ca6-92d8-2d2f79fb68d5", + "snapshot_generated_at": "2026-04-18T11:07:56.152486", + "identity": { + "full_name": "Sabarna Joshi", + "primary_email": "sabarna.joshi795@hotmail.com", + "primary_phone": "+91 7947582999", + "persona_labels": "[\"status_buyer\", \"analytical_buyer\"]", + "buyer_type": "high_intent" + }, + "account_links": [ + "a7feb56f-2752-4b6d-bde6-84f4be7b6b3d" + ], + "active_opportunities": [], + "recent_interactions": [ + { + "interaction_id": "fcbb35a3-39e7-4ffd-a21d-a6c162bf18fe", + "channel": "builder_event", + "happened_at": "2026-03-30T11:07:56.151997" + }, + { + "interaction_id": "34cf26b5-2a28-4b1b-9d80-f055978d36e2", + "channel": "digital_ad", + "happened_at": "2026-03-03T11:07:56.151981" + }, + { + "interaction_id": "f05f34e6-2350-4246-a4eb-14c5515f022f", + "channel": "call", + "happened_at": "2026-02-04T11:07:56.152012" + }, + { + "interaction_id": "cb2a5b1b-ee76-4539-b68d-775620df9f5f", + "channel": "referral", + "happened_at": "2025-11-16T11:07:56.152082" + } + ], + "property_interests": [ + { + "project": "Godrej Elevate", + "config": "3BHK", + "budget_max": 18209826 + } + ], + "tasks": [ + "Follow up after site visit", + "Re-engage after 2 weeks silence" + ], + "qd_overview": { + "intent_score": 0.555, + "urgency_score": 0.615, + "engagement_score": 0.549 + }, + "risk_flags": [ + "no_follow_up_in_30_days", + "decision_stalled_at_family" + ], + "recommended_next_actions": [ + "Re-engage with new offer", + "Check status after 30 days" + ], + "lead_stage": "cold", + "lead_status": "cold" + }, + { + "client_ref": "4a018508-ec6c-4efe-b41b-7ed706e6d60f", + "snapshot_generated_at": "2026-04-18T11:07:56.153264", + "identity": { + "full_name": "Suravi Iyer", + "primary_email": "suravi.iyer666@outlook.com", + "primary_phone": "+91 7413522421", + "persona_labels": "[\"emotional_buyer\"]", + "buyer_type": "slow_burn_investor" + }, + "account_links": [ + "719009b0-4ad2-4ab0-ab36-7144c1c43981" + ], + "active_opportunities": [ + { + "opportunity_id": "6f700061-694f-49b9-a352-002004735181", + "project": "Merlin Avana", + "stage": "negotiation", + "value": 14743023 + } + ], + "recent_interactions": [ + { + "interaction_id": "9065d759-50fa-405e-98ec-980cc8debfa7", + "channel": "referral", + "happened_at": "2026-04-02T11:07:56.152694" + }, + { + "interaction_id": "14d1e059-ef2c-4d73-8dbf-9f3777cd904c", + "channel": "whatsapp", + "happened_at": "2026-02-04T11:07:56.152710" + }, + { + "interaction_id": "f2a60f83-43d8-4708-8924-460936b3b7f9", + "channel": "referral", + "happened_at": "2026-01-26T11:07:56.152676" + }, + { + "interaction_id": "09e5f216-af0f-4ded-bb5f-d1d828b2bc87", + "channel": "call", + "happened_at": "2025-12-20T11:07:56.152821" + }, + { + "interaction_id": "956c912f-921c-429d-8f92-b1604c80e61d", + "channel": "email", + "happened_at": "2025-12-17T11:07:56.152792" + } + ], + "property_interests": [ + { + "project": "Merlin Avana", + "config": "2BHK", + "budget_max": 9172421 + }, + { + "project": "Atri Aqua", + "config": "3BHK", + "budget_max": 8187216 + } + ], + "tasks": [ + "Send festive offer" + ], + "qd_overview": { + "intent_score": 0.527, + "urgency_score": 0.606, + "engagement_score": 0.559 + }, + "risk_flags": [ + "multiple_project_comparisons", + "decision_stalled_at_family" + ], + "recommended_next_actions": [ + "Escalate to senior advisor", + "Prepare final offer" + ], + "lead_stage": "negotiation", + "lead_status": "active" + }, + { + "client_ref": "46f231db-e166-43ce-808b-9c457887084b", + "snapshot_generated_at": "2026-04-18T11:07:56.154433", + "identity": { + "full_name": "Kaushal Bhattacharya", + "primary_email": "kaushal.bhattacharya627@hotmail.com", + "primary_phone": "+91 7883793757", + "persona_labels": "[\"upgrade_seeker\", \"analytical_buyer\", \"status_buyer\"]", + "buyer_type": "slow_burn_investor" + }, + "account_links": [ + "37aff800-e6b2-40fb-be5b-993814cd281a" + ], + "active_opportunities": [ + { + "opportunity_id": "555aec71-26fd-4ad9-ab2c-d0505ccd1226", + "project": "Godrej Blue", + "stage": "qualified", + "value": 13424565 + } + ], + "recent_interactions": [ + { + "interaction_id": "55c10479-24ee-45e7-ab3e-582e2c12a401", + "channel": "digital_ad", + "happened_at": "2026-04-16T11:07:56.153469" + }, + { + "interaction_id": "baaf4313-0af1-4a0c-bdbe-74eb106c9020", + "channel": "site_visit", + "happened_at": "2026-03-01T11:07:56.153486" + }, + { + "interaction_id": "b774d77d-3cb8-4935-8841-6f24c7bb8020", + "channel": "site_visit", + "happened_at": "2026-02-18T11:07:56.153673" + }, + { + "interaction_id": "63cb7761-b82e-4fdd-95f0-02a34cc88b35", + "channel": "call", + "happened_at": "2026-02-15T11:07:56.153600" + }, + { + "interaction_id": "fc361d5e-ee15-4ab2-b6d6-60c383464701", + "channel": "referral", + "happened_at": "2025-12-25T11:07:56.153699" + } + ], + "property_interests": [ + { + "project": "Godrej Blue", + "config": "2BHK", + "budget_max": 9713433 + }, + { + "project": "Atri Surya Toron", + "config": "3BHK", + "budget_max": 7362590 + }, + { + "project": "Shriram Grand City", + "config": "4BHK", + "budget_max": 6498049 + } + ], + "tasks": [ + "Confirm booking appointment", + "Nudge for final decision" + ], + "qd_overview": { + "intent_score": 0.388, + "urgency_score": 0.454, + "engagement_score": 0.532 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Book site visit", + "Share payment plan" + ], + "lead_stage": "qualified", + "lead_status": "active" + }, + { + "client_ref": "732104f3-4fd5-4838-bda1-af6e600365aa", + "snapshot_generated_at": "2026-04-18T11:07:56.155235", + "identity": { + "full_name": "Partha Karmakar", + "primary_email": "partha.karmakar836@company.com", + "primary_phone": "+91 9698805662", + "persona_labels": "[\"status_buyer\"]", + "buyer_type": "high_intent" + }, + "account_links": [ + "e890a796-925a-4c14-af19-67fc6360449a" + ], + "active_opportunities": [ + { + "opportunity_id": "39be997c-aa25-46fe-a9ff-0c9472a29d51", + "project": "DTC Good Earth", + "stage": "qualified", + "value": 7988559 + } + ], + "recent_interactions": [ + { + "interaction_id": "fd704dfe-9e63-4283-a95e-7b537ac9fe77", + "channel": "email", + "happened_at": "2026-03-25T11:07:56.154725" + }, + { + "interaction_id": "c84dddc5-416e-4f81-90e7-626b8b16a596", + "channel": "digital_ad", + "happened_at": "2026-02-15T11:07:56.154678" + }, + { + "interaction_id": "320055ba-e47a-4336-a93e-e929a1ec5662", + "channel": "builder_event", + "happened_at": "2026-02-07T11:07:56.154694" + }, + { + "interaction_id": "30848938-c859-4734-834b-414724cd27eb", + "channel": "referral", + "happened_at": "2026-01-30T11:07:56.154709" + }, + { + "interaction_id": "9df92fde-9e12-4bc5-bba2-c357ae7ce15e", + "channel": "email", + "happened_at": "2026-01-04T11:07:56.154803" + } + ], + "property_interests": [ + { + "project": "DTC Good Earth", + "config": "3BHK", + "budget_max": 8774939 + }, + { + "project": "Atri Aqua", + "config": "3BHK", + "budget_max": 7365300 + }, + { + "project": "Siddha Serena", + "config": "3BHK", + "budget_max": 5917563 + } + ], + "tasks": [ + "Share updated price list" + ], + "qd_overview": { + "intent_score": 0.911, + "urgency_score": 0.883, + "engagement_score": 0.844 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Book site visit", + "Share payment plan" + ], + "lead_stage": "qualified", + "lead_status": "active" + }, + { + "client_ref": "fedfa4f0-9bb5-4e48-9423-dff29bf4725d", + "snapshot_generated_at": "2026-04-18T11:07:56.155960", + "identity": { + "full_name": "Supratim Desai", + "primary_email": "supratim.desai370@rediffmail.com", + "primary_phone": "+91 7873031279", + "persona_labels": "[\"first_time_buyer\"]", + "buyer_type": "slow_burn_investor" + }, + "account_links": [ + "d0f173da-010e-43de-b222-8535c26cfcfc" + ], + "active_opportunities": [ + { + "opportunity_id": "55d292f7-dbbe-4e7a-be99-8fdaef87abf1", + "project": "Siddha Sky Waterfront", + "stage": "qualified", + "value": 9732731 + } + ], + "recent_interactions": [ + { + "interaction_id": "8372f3f6-f950-43b7-a807-7de03b0d4d7e", + "channel": "referral", + "happened_at": "2026-02-07T11:07:56.155505" + }, + { + "interaction_id": "e4f533dd-4575-4ea5-939b-c60b33c67dec", + "channel": "site_visit", + "happened_at": "2026-01-26T11:07:56.155431" + }, + { + "interaction_id": "a0642567-639a-4a4b-bb61-55fdaf57d236", + "channel": "site_visit", + "happened_at": "2025-11-21T11:07:56.155525" + }, + { + "interaction_id": "6b211982-b43a-4742-ad57-566a96d6ce76", + "channel": "email", + "happened_at": "2025-10-26T11:07:56.155471" + }, + { + "interaction_id": "904b46bf-0b94-43c0-8611-c250f175e167", + "channel": "email", + "happened_at": "2025-10-04T11:07:56.155555" + } + ], + "property_interests": [ + { + "project": "Siddha Sky Waterfront", + "config": "3BHK", + "budget_max": 19167864 + }, + { + "project": "Atri Aqua", + "config": "2BHK", + "budget_max": 8298816 + }, + { + "project": "Sugam Prakriti", + "config": "4BHK", + "budget_max": 8674299 + } + ], + "tasks": [ + "Check competitor comparison status" + ], + "qd_overview": { + "intent_score": 0.615, + "urgency_score": 0.645, + "engagement_score": 0.623 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Book site visit", + "Share payment plan" + ], + "lead_stage": "qualified", + "lead_status": "active" + }, + { + "client_ref": "96121797-ac62-41a5-9692-b50e13b6a88e", + "snapshot_generated_at": "2026-04-18T11:07:56.156624", + "identity": { + "full_name": "Radha Mukherjee", + "primary_email": "radha.mukherjee196@yahoo.com", + "primary_phone": "+91 7844617801", + "persona_labels": "[\"upgrade_seeker\", \"analytical_buyer\", \"investment_focus\"]", + "buyer_type": "family_decision_unit" + }, + "account_links": [ + "0d840fb4-dbe4-4fba-b4a7-01aff24a3e15" + ], + "active_opportunities": [ + { + "opportunity_id": "858ce78f-1edb-4197-875a-2599e6182b31", + "project": "DTC Sojon", + "stage": "site_visit_done", + "value": 6125369 + } + ], + "recent_interactions": [ + { + "interaction_id": "c5371403-8bd5-4736-8af0-3e4f2a449fbd", + "channel": "digital_ad", + "happened_at": "2026-03-11T11:07:56.156151" + }, + { + "interaction_id": "31584854-0bb8-483a-9b56-53a3454ac874", + "channel": "builder_event", + "happened_at": "2025-12-23T11:07:56.156166" + }, + { + "interaction_id": "a82c6c38-3526-4321-bc8d-a52f078433c6", + "channel": "referral", + "happened_at": "2025-12-03T11:07:56.156211" + }, + { + "interaction_id": "81cba2b4-9c03-4dd9-b55f-78712de9c858", + "channel": "digital_ad", + "happened_at": "2025-11-14T11:07:56.156182" + } + ], + "property_interests": [ + { + "project": "DTC Sojon", + "config": "1BHK", + "budget_max": 5092857 + }, + { + "project": "Siddha Serena", + "config": "3BHK", + "budget_max": 8752946 + } + ], + "tasks": [], + "qd_overview": { + "intent_score": 0.577, + "urgency_score": 0.712, + "engagement_score": 0.59 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Follow up on impressions", + "Send updated price list" + ], + "lead_stage": "site_visit_done", + "lead_status": "active" + }, + { + "client_ref": "57b7df29-105f-4723-9e51-6815847771d1", + "snapshot_generated_at": "2026-04-18T11:07:56.157340", + "identity": { + "full_name": "Saurav Dey", + "primary_email": "saurav.dey963@yahoo.com", + "primary_phone": "+91 8632815201", + "persona_labels": "[\"value_seeker\"]", + "buyer_type": "nri" + }, + "account_links": [ + "a1de095a-529c-4d0a-9459-779ac5db4d88" + ], + "active_opportunities": [ + { + "opportunity_id": "a3514fbe-9988-497b-82c2-9f9cd02dd39d", + "project": "Ambuja Utpaala", + "stage": "proposal_sent", + "value": 11931026 + } + ], + "recent_interactions": [ + { + "interaction_id": "c86d4c63-d78f-4c36-97ff-01a4a1f5a88f", + "channel": "digital_ad", + "happened_at": "2026-04-12T11:07:56.156784" + }, + { + "interaction_id": "720cbf86-7a35-47e1-8e50-c1c2f5da0bf4", + "channel": "referral", + "happened_at": "2026-04-10T11:07:56.156902" + }, + { + "interaction_id": "da65c742-c4a1-495c-8ffc-50b93dd3e23e", + "channel": "site_visit", + "happened_at": "2026-02-06T11:07:56.156973" + }, + { + "interaction_id": "6afd1714-9a25-4f5c-aa7f-b3c89f766f12", + "channel": "email", + "happened_at": "2026-01-08T11:07:56.156918" + }, + { + "interaction_id": "9c5f25a6-c022-4561-b676-ee5644230f44", + "channel": "builder_event", + "happened_at": "2026-01-04T11:07:56.156998" + } + ], + "property_interests": [ + { + "project": "Ambuja Utpaala", + "config": "3BHK", + "budget_max": 18669598 + }, + { + "project": "Atri Aqua", + "config": "3BHK", + "budget_max": 9129814 + }, + { + "project": "Godrej Elevate", + "config": "3BHK", + "budget_max": 12291497 + } + ], + "tasks": [ + "Follow up after site visit", + "Check loan approval status" + ], + "qd_overview": { + "intent_score": 0.695, + "urgency_score": 0.691, + "engagement_score": 0.66 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Chase for decision", + "Address objections" + ], + "lead_stage": "proposal_sent", + "lead_status": "active" + }, + { + "client_ref": "ffac9927-3234-4fc9-a6bc-a0fce72110bc", + "snapshot_generated_at": "2026-04-18T11:07:56.157922", + "identity": { + "full_name": "Tapas Chowdhury", + "primary_email": "tapas.chowdhury601@outlook.com", + "primary_phone": "+91 9069832083", + "persona_labels": "[\"analytical_buyer\", \"cash_rich_investor\"]", + "buyer_type": "broker_referral" + }, + "account_links": [ + "37aff800-e6b2-40fb-be5b-993814cd281a" + ], + "active_opportunities": [], + "recent_interactions": [ + { + "interaction_id": "7ce0af07-4e28-4470-95b7-53b5ad71b3d8", + "channel": "builder_event", + "happened_at": "2026-03-13T11:07:56.157576" + }, + { + "interaction_id": "e075778e-ed72-4666-a36d-85d37d233c4b", + "channel": "referral", + "happened_at": "2026-02-20T11:07:56.157560" + }, + { + "interaction_id": "02d4979a-5830-474d-a75b-5b8f87ac7c2b", + "channel": "site_visit", + "happened_at": "2025-10-20T11:07:56.157521" + } + ], + "property_interests": [ + { + "project": "Eden Devprayag", + "config": "2BHK", + "budget_max": 10000383 + }, + { + "project": "DTC Good Earth", + "config": "2BHK", + "budget_max": 8155604 + }, + { + "project": "Shriram Grand City", + "config": "4BHK", + "budget_max": 10091835 + } + ], + "tasks": [], + "qd_overview": { + "intent_score": 0.622, + "urgency_score": 0.569, + "engagement_score": 0.602 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Send project brochure", + "Schedule site visit" + ], + "lead_stage": "inquiry", + "lead_status": "active" + }, + { + "client_ref": "f9ee83f6-a81d-4113-901f-366bd0aee026", + "snapshot_generated_at": "2026-04-18T11:07:56.158686", + "identity": { + "full_name": "Sneha Biswas", + "primary_email": "sneha.biswas773@gmail.com", + "primary_phone": "+91 7932662251", + "persona_labels": "[\"emotional_buyer\"]", + "buyer_type": "price_sensitive" + }, + "account_links": [ + "ccc19201-7df7-4fb9-b3ad-d1eb1edf302c" + ], + "active_opportunities": [ + { + "opportunity_id": "92dd2612-0276-4774-9435-285ca8a8664c", + "project": "Godrej Elevate", + "stage": "proposal_sent", + "value": 12264611 + } + ], + "recent_interactions": [ + { + "interaction_id": "4aec3651-5fe7-4caf-a064-3598e5e29d44", + "channel": "call", + "happened_at": "2026-04-06T11:07:56.158173" + }, + { + "interaction_id": "88324187-c032-490c-885a-2eea5d684779", + "channel": "referral", + "happened_at": "2026-03-16T11:07:56.158309" + }, + { + "interaction_id": "2ee2d262-c042-4d59-a14d-2c62bd078d1a", + "channel": "referral", + "happened_at": "2026-02-03T11:07:56.158130" + }, + { + "interaction_id": "ba75259c-9f6e-479b-8744-7e4160a6170f", + "channel": "site_visit", + "happened_at": "2025-12-27T11:07:56.158282" + }, + { + "interaction_id": "77c56ba7-f5fa-47b8-a448-ef138f87a168", + "channel": "email", + "happened_at": "2025-12-22T11:07:56.158101" + } + ], + "property_interests": [ + { + "project": "Godrej Elevate", + "config": "4BHK", + "budget_max": 13986220 + }, + { + "project": "Ambuja Utpaala", + "config": "4BHK", + "budget_max": 15360463 + }, + { + "project": "DTC Good Earth", + "config": "3BHK", + "budget_max": 5553310 + } + ], + "tasks": [ + "Check loan approval status", + "Nudge for final decision" + ], + "qd_overview": { + "intent_score": 0.593, + "urgency_score": 0.463, + "engagement_score": 0.505 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Chase for decision", + "Address objections" + ], + "lead_stage": "proposal_sent", + "lead_status": "active" + }, + { + "client_ref": "419e9ba8-1ef2-412b-979d-ba14ed8348cb", + "snapshot_generated_at": "2026-04-18T11:07:56.159463", + "identity": { + "full_name": "Aritra Kundu", + "primary_email": "aritra.kundu984@gmail.com", + "primary_phone": "+91 9925157692", + "persona_labels": "[\"first_time_buyer\", \"emotional_buyer\", \"cash_rich_investor\"]", + "buyer_type": "high_intent" + }, + "account_links": [ + "9814396b-0d9f-4407-9116-799d6a7b359f" + ], + "active_opportunities": [ + { + "opportunity_id": "63a8daad-1838-431d-9036-112fe851374e", + "project": "Merlin Avana", + "stage": "negotiation", + "value": 11788786 + } + ], + "recent_interactions": [ + { + "interaction_id": "eeca4743-e2c6-4ca2-9469-48ad8df12383", + "channel": "call", + "happened_at": "2026-03-30T11:07:56.158977" + }, + { + "interaction_id": "e1424d8c-9ffd-4ce9-a6e3-06734990bb4e", + "channel": "site_visit", + "happened_at": "2026-03-08T11:07:56.158864" + }, + { + "interaction_id": "bcfe44cb-e625-426a-a78e-282621db63ce", + "channel": "whatsapp", + "happened_at": "2026-02-05T11:07:56.159052" + }, + { + "interaction_id": "dd63e196-7303-4352-9e45-5adabb32c594", + "channel": "email", + "happened_at": "2026-01-25T11:07:56.158933" + }, + { + "interaction_id": "cbfb25eb-baaf-408b-a2b1-5fe404b2fd5c", + "channel": "site_visit", + "happened_at": "2026-01-10T11:07:56.158895" + } + ], + "property_interests": [ + { + "project": "Merlin Avana", + "config": "3BHK", + "budget_max": 15963301 + }, + { + "project": "Siddha Sky Waterfront", + "config": "4BHK", + "budget_max": 19719335 + } + ], + "tasks": [], + "qd_overview": { + "intent_score": 0.823, + "urgency_score": 0.738, + "engagement_score": 0.852 + }, + "risk_flags": [ + "multiple_project_comparisons", + "decision_stalled_at_family" + ], + "recommended_next_actions": [ + "Escalate to senior advisor", + "Prepare final offer" + ], + "lead_stage": "negotiation", + "lead_status": "active" + }, + { + "client_ref": "d7ff1c7e-b01b-453b-87b0-8fb101fe8344", + "snapshot_generated_at": "2026-04-18T11:07:56.160187", + "identity": { + "full_name": "Sunita Chowdhury", + "primary_email": "sunita.chowdhury137@hotmail.com", + "primary_phone": "+91 8122824732", + "persona_labels": "[\"value_seeker\", \"upgrade_seeker\", \"investment_focus\"]", + "buyer_type": "repeat_visitor" + }, + "account_links": [ + "3ee6687a-9fa3-428d-97da-4a73cc843273" + ], + "active_opportunities": [ + { + "opportunity_id": "c2536e44-54a3-43a8-8e59-956859f93db6", + "project": "DTC Good Earth", + "stage": "qualified", + "value": 7768798 + } + ], + "recent_interactions": [ + { + "interaction_id": "23018ea9-9bca-489b-bc64-e45cb7613125", + "channel": "builder_event", + "happened_at": "2026-01-08T11:07:56.159655" + }, + { + "interaction_id": "4c193b5e-23a1-4e4b-840a-e47a81ce8fff", + "channel": "call", + "happened_at": "2025-12-19T11:07:56.159670" + }, + { + "interaction_id": "9789fe4b-9193-489e-9b54-ea6e48ba812a", + "channel": "site_visit", + "happened_at": "2025-11-22T11:07:56.159742" + } + ], + "property_interests": [ + { + "project": "DTC Good Earth", + "config": "3BHK", + "budget_max": 5649768 + } + ], + "tasks": [ + "Check competitor comparison status" + ], + "qd_overview": { + "intent_score": 0.755, + "urgency_score": 0.719, + "engagement_score": 0.827 + }, + "risk_flags": [], + "recommended_next_actions": [ + "Book site visit", + "Share payment plan" + ], + "lead_stage": "qualified", + "lead_status": "active" + }, + { + "client_ref": "85361167-24a9-4c89-a83d-5038137f4fe5", + "snapshot_generated_at": "2026-04-18T11:07:56.161467", + "identity": { + "full_name": "Rupali Dutta", + "primary_email": "rupali.dutta636@hotmail.com", + "primary_phone": "+91 7444779568", + "persona_labels": "[\"upgrade_seeker\", \"value_seeker\", \"investment_focus\"]", + "buyer_type": "price_sensitive" + }, + "account_links": [ + "9814396b-0d9f-4407-9116-799d6a7b359f" + ], + "active_opportunities": [ + { + "opportunity_id": "057e059a-dad6-44d6-9c24-0ca128db88fb", + "project": "DTC Sojon", + "stage": "proposal_sent", + "value": 4792912 + } + ], + "recent_interactions": [ + { + "interaction_id": "956c6ab5-0727-431d-928c-53e2c8e48e7c", + "channel": "email", + "happened_at": "2026-02-22T11:07:56.160383" + }, + { + "interaction_id": "8eac655b-4613-4c37-a3ad-d022015342f3", + "channel": "site_visit", + "happened_at": "2026-02-20T11:07:56.160687" + }, + { + "interaction_id": "43fd857c-744e-4c18-8a7c-0ceb763cf8bc", + "channel": "whatsapp", + "happened_at": "2026-02-16T11:07:56.160583" + }, + { + "interaction_id": "7181e795-f8a7-4bc8-9919-940c46395375", + "channel": "site_visit", + "happened_at": "2026-01-30T11:07:56.160654" + }, + { + "interaction_id": "721ed2c9-4373-4d77-b06a-e6e1953f1c87", + "channel": "builder_event", + "happened_at": "2026-01-26T11:07:56.160495" + } + ], + "property_interests": [ + { + "project": "DTC Sojon", + "config": "3BHK", + "budget_max": 6703946 + } + ], + "tasks": [ + "Follow up after site visit" + ], + "qd_overview": { + "intent_score": 0.339, + "urgency_score": 0.349, + "engagement_score": 0.33 + }, + "risk_flags": [ + "financing_uncertainty", + "competitor_visit_detected" + ], + "recommended_next_actions": [ + "Chase for decision", + "Address objections" + ], + "lead_stage": "proposal_sent", + "lead_status": "active" + }, + { + "client_ref": "e4423e0d-0456-4560-8ec4-a061de26e8c7", + "snapshot_generated_at": "2026-04-18T11:07:56.162364", + "identity": { + "full_name": "Aditya Gupta", + "primary_email": "aditya.gupta10@outlook.com", + "primary_phone": "+91 9978231605", + "persona_labels": "[\"nri_diaspora\", \"first_time_buyer\"]", + "buyer_type": "slow_burn_investor" + }, + "account_links": [ + "167e5af1-66b1-41c0-9a9d-42aa9b77a3a7" + ], + "active_opportunities": [], + "recent_interactions": [ + { + "interaction_id": "a1c562ba-c7f5-42da-b314-cb30c6e15dd6", + "channel": "email", + "happened_at": "2026-04-07T11:07:56.161732" + }, + { + "interaction_id": "302d41ec-041b-4613-bfda-c227bba346e0", + "channel": "email", + "happened_at": "2026-04-02T11:07:56.161897" + }, + { + "interaction_id": "13e7789c-1299-4603-8c88-16d2234ab2b6", + "channel": "referral", + "happened_at": "2026-03-18T11:07:56.161881" + }, + { + "interaction_id": "2eb73896-1f1c-4b9d-8c7d-b0366c226178", + "channel": "call", + "happened_at": "2026-03-01T11:07:56.161761" + }, + { + "interaction_id": "311c1252-b708-425c-aca9-dd64e01001bf", + "channel": "email", + "happened_at": "2026-01-05T11:07:56.161848" + } + ], + "property_interests": [ + { + "project": "Eden Devprayag", + "config": "2BHK", + "budget_max": 11031072 + }, + { + "project": "Siddha Serena", + "config": "2BHK", + "budget_max": 6331922 + } + ], + "tasks": [ + "Confirm booking appointment", + "Share updated price list", + "Check competitor comparison status" + ], + "qd_overview": { + "intent_score": 0.238, + "urgency_score": 0.192, + "engagement_score": 0.234 + }, + "risk_flags": [ + "no_follow_up_in_30_days", + "multiple_project_comparisons", + "decision_stalled_at_family" + ], + "recommended_next_actions": [ + "Re-engage with new offer", + "Check status after 30 days" + ], + "lead_stage": "dropped", + "lead_status": "dropped" + }, + { + "client_ref": "6d5409bf-a7a0-4c6f-8ae7-089cd07e3af0", + "snapshot_generated_at": "2026-04-18T11:07:56.163157", + "identity": { + "full_name": "Abhijit Saha", + "primary_email": "abhijit.saha882@outlook.com", + "primary_phone": "+91 9183146925", + "persona_labels": "[\"cash_rich_investor\", \"status_buyer\"]", + "buyer_type": "high_intent" + }, + "account_links": [ + "b353486d-00ac-4fe1-a3ef-8aab66e3cbe4" + ], + "active_opportunities": [ + { + "opportunity_id": "2092cc51-2536-4cdf-be7b-9bfe3a5e9c64", + "project": "Siddha Serena", + "stage": "proposal_sent", + "value": 7209308 + } + ], + "recent_interactions": [ + { + "interaction_id": "feaf2477-b423-437a-8dc3-82591fc0ef14", + "channel": "site_visit", + "happened_at": "2026-03-26T11:07:56.162786" + }, + { + "interaction_id": "0f48be5b-f5b9-4514-afb2-2a7e41f8ee63", + "channel": "email", + "happened_at": "2026-03-22T11:07:56.162661" + }, + { + "interaction_id": "0035db16-fc15-4d3b-8f6d-da27d0e66354", + "channel": "whatsapp", + "happened_at": "2026-03-09T11:07:56.162556" + }, + { + "interaction_id": "9f0f657c-5704-407c-b6dc-f9461a93a0a9", + "channel": "call", + "happened_at": "2026-02-02T11:07:56.162688" + }, + { + "interaction_id": "79314a3a-5249-4161-8e36-714c4b73bec9", + "channel": "digital_ad", + "happened_at": "2025-11-08T11:07:56.162645" + } + ], + "property_interests": [ + { + "project": "Siddha Serena", + "config": "2BHK", + "budget_max": 6986791 + }, + { + "project": "Siddha Suburbia Bungalow", + "config": "5BHK", + "budget_max": 15938431 + } + ], + "tasks": [ + "Send festive offer", + "Re-engage after 2 weeks silence" + ], + "qd_overview": { + "intent_score": 0.764, + "urgency_score": 0.725, + "engagement_score": 0.776 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Chase for decision", + "Address objections" + ], + "lead_stage": "proposal_sent", + "lead_status": "active" + }, + { + "client_ref": "8eb8c872-8c9a-491f-aa6a-a94cbbbf4ac7", + "snapshot_generated_at": "2026-04-18T11:07:56.163792", + "identity": { + "full_name": "Kaushal Pillai", + "primary_email": "kaushal.pillai246@hotmail.com", + "primary_phone": "+91 9550709140", + "persona_labels": "[\"cash_rich_investor\", \"nri_diaspora\"]", + "buyer_type": "family_decision_unit" + }, + "account_links": [ + "ccc19201-7df7-4fb9-b3ad-d1eb1edf302c" + ], + "active_opportunities": [], + "recent_interactions": [ + { + "interaction_id": "ae944e87-cd1e-4154-9958-5fa665e71442", + "channel": "referral", + "happened_at": "2026-03-11T11:07:56.163351" + }, + { + "interaction_id": "5c9f0c7d-0a35-42b2-9d17-3dc859c3acf7", + "channel": "referral", + "happened_at": "2026-03-02T11:07:56.163335" + }, + { + "interaction_id": "b73d789b-97b4-4109-8aa0-a417bd2d3464", + "channel": "email", + "happened_at": "2026-01-09T11:07:56.163402" + }, + { + "interaction_id": "d1f722b0-b729-40e2-b4d4-54167cc3d490", + "channel": "site_visit", + "happened_at": "2025-12-31T11:07:56.163309" + }, + { + "interaction_id": "afba0a20-b7df-457f-b6e6-6cbc26e98dca", + "channel": "digital_ad", + "happened_at": "2025-11-03T11:07:56.163386" + } + ], + "property_interests": [ + { + "project": "Siddha Sky Waterfront", + "config": "4BHK", + "budget_max": 17537105 + }, + { + "project": "Siddha Serena", + "config": "3BHK", + "budget_max": 6803828 + } + ], + "tasks": [ + "Re-engage after 2 weeks silence" + ], + "qd_overview": { + "intent_score": 0.712, + "urgency_score": 0.7, + "engagement_score": 0.774 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Send project brochure", + "Schedule site visit" + ], + "lead_stage": "inquiry", + "lead_status": "active" + }, + { + "client_ref": "cff9c11b-c573-4a4a-8514-7e87a0ad854c", + "snapshot_generated_at": "2026-04-18T11:07:56.164388", + "identity": { + "full_name": "Partha Sarkar", + "primary_email": "partha.sarkar421@rediffmail.com", + "primary_phone": "+91 7879660573", + "persona_labels": "[\"cash_rich_investor\", \"first_time_buyer\", \"upgrade_seeker\"]", + "buyer_type": "price_sensitive" + }, + "account_links": [ + "49fbf504-dd6b-4be1-a90d-d1a9d5acb417" + ], + "active_opportunities": [ + { + "opportunity_id": "4b185a9c-fc74-4d29-bd54-18720e73e7f3", + "project": "Siddha Sky Waterfront", + "stage": "qualified", + "value": 9526236 + } + ], + "recent_interactions": [ + { + "interaction_id": "de17a9aa-3498-4e7e-8fd5-cc96f3d205d2", + "channel": "whatsapp", + "happened_at": "2026-03-20T11:07:56.163962" + }, + { + "interaction_id": "e4dea14a-33e5-4303-9e98-f8ba13cfde92", + "channel": "digital_ad", + "happened_at": "2026-03-02T11:07:56.163929" + }, + { + "interaction_id": "eafb8534-6179-4401-82ad-28249ddb8241", + "channel": "referral", + "happened_at": "2025-11-10T11:07:56.163945" + } + ], + "property_interests": [ + { + "project": "Siddha Sky Waterfront", + "config": "4BHK", + "budget_max": 11198481 + } + ], + "tasks": [], + "qd_overview": { + "intent_score": 0.439, + "urgency_score": 0.396, + "engagement_score": 0.526 + }, + "risk_flags": [], + "recommended_next_actions": [ + "Book site visit", + "Share payment plan" + ], + "lead_stage": "qualified", + "lead_status": "active" + }, + { + "client_ref": "430a3c09-705e-47be-96bb-5bf1c8466975", + "snapshot_generated_at": "2026-04-18T11:07:56.164987", + "identity": { + "full_name": "Vivek Saha", + "primary_email": "vivek.saha339@hotmail.com", + "primary_phone": "+91 7240797521", + "persona_labels": "[\"investment_focus\", \"family_centric\", \"emotional_buyer\"]", + "buyer_type": "high_intent" + }, + "account_links": [ + "870432f8-c386-4b6b-94f4-5a61b1ed6038" + ], + "active_opportunities": [], + "recent_interactions": [ + { + "interaction_id": "8ff22027-8197-45ca-a2a5-b693f094d067", + "channel": "whatsapp", + "happened_at": "2026-01-04T11:07:56.164568" + }, + { + "interaction_id": "717bcaf1-131b-460e-8cdd-e6fbb182f8b9", + "channel": "referral", + "happened_at": "2025-11-30T11:07:56.164552" + }, + { + "interaction_id": "c72eed65-6539-45b9-90b2-c78aa5a53fc2", + "channel": "whatsapp", + "happened_at": "2025-11-13T11:07:56.164490" + } + ], + "property_interests": [ + { + "project": "Siddha Suburbia Bungalow", + "config": "5BHK", + "budget_max": 20808321 + } + ], + "tasks": [], + "qd_overview": { + "intent_score": 0.922, + "urgency_score": 0.965, + "engagement_score": 1.0 + }, + "risk_flags": [], + "recommended_next_actions": [ + "Send project brochure", + "Schedule site visit" + ], + "lead_stage": "inquiry", + "lead_status": "active" + }, + { + "client_ref": "ecd38915-a39a-4f4c-98ad-e9e988bd5da1", + "snapshot_generated_at": "2026-04-18T11:07:56.165659", + "identity": { + "full_name": "Sneha Seal", + "primary_email": "sneha.seal286@company.com", + "primary_phone": "+91 7014981557", + "persona_labels": "[\"analytical_buyer\", \"emotional_buyer\"]", + "buyer_type": "high_intent" + }, + "account_links": [ + "f37fe679-99e5-4ea8-a1a5-d31e4f8d4bf2" + ], + "active_opportunities": [ + { + "opportunity_id": "f0c78a77-e56e-42f6-a05e-060f151bb41f", + "project": "DTC Sojon", + "stage": "site_visit_done", + "value": 5450096 + } + ], + "recent_interactions": [ + { + "interaction_id": "a7a89281-5057-4712-8b89-d58ad217ef3b", + "channel": "whatsapp", + "happened_at": "2025-12-12T11:07:56.165163" + }, + { + "interaction_id": "8084142d-1bd8-4413-a6c0-bb571deab9c8", + "channel": "builder_event", + "happened_at": "2025-11-11T11:07:56.165273" + }, + { + "interaction_id": "fe599dd1-59f5-4512-b4d8-5f3b928dfa4a", + "channel": "digital_ad", + "happened_at": "2025-10-26T11:07:56.165289" + } + ], + "property_interests": [ + { + "project": "DTC Sojon", + "config": "2BHK", + "budget_max": 6137322 + }, + { + "project": "Shriram Grand City", + "config": "2BHK", + "budget_max": 9609008 + }, + { + "project": "Siddha Sky Waterfront", + "config": "4BHK", + "budget_max": 18326611 + } + ], + "tasks": [ + "Share updated price list" + ], + "qd_overview": { + "intent_score": 0.745, + "urgency_score": 0.707, + "engagement_score": 0.76 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Follow up on impressions", + "Send updated price list" + ], + "lead_stage": "site_visit_done", + "lead_status": "active" + }, + { + "client_ref": "2d7d4ae9-e9f2-4794-8300-721bdee25cc5", + "snapshot_generated_at": "2026-04-18T11:07:56.166462", + "identity": { + "full_name": "Somen Majumdar", + "primary_email": "somen.majumdar76@yahoo.com", + "primary_phone": "+91 9874696035", + "persona_labels": "[\"emotional_buyer\", \"upgrade_seeker\", \"investment_focus\"]", + "buyer_type": "family_decision_unit" + }, + "account_links": [ + "50a26214-39cd-4e63-b551-acd26576c9d2" + ], + "active_opportunities": [ + { + "opportunity_id": "57d41692-7c40-45c7-b761-81c6b5807487", + "project": "Merlin Avana", + "stage": "site_visit_done", + "value": 15189446 + } + ], + "recent_interactions": [ + { + "interaction_id": "67a92e0e-d225-408c-8010-e8d3e769ae82", + "channel": "call", + "happened_at": "2026-03-19T11:07:56.165868" + }, + { + "interaction_id": "31df27b5-0dbd-45d0-9230-36da4541b5ed", + "channel": "site_visit", + "happened_at": "2026-03-07T11:07:56.166060" + }, + { + "interaction_id": "2eeea328-6d6f-4480-a14f-7d018f5a7c16", + "channel": "site_visit", + "happened_at": "2026-02-10T11:07:56.165844" + }, + { + "interaction_id": "2e20f51f-d161-4188-9a56-4cebc7da0416", + "channel": "email", + "happened_at": "2025-12-21T11:07:56.165947" + }, + { + "interaction_id": "442d6728-0365-4419-9e3e-79e1db3c5034", + "channel": "email", + "happened_at": "2025-10-24T11:07:56.166012" + } + ], + "property_interests": [ + { + "project": "Merlin Avana", + "config": "4BHK", + "budget_max": 10098512 + }, + { + "project": "Siddha Serena", + "config": "2BHK", + "budget_max": 8662203 + }, + { + "project": "Ambuja Utpaala", + "config": "3BHK", + "budget_max": 17058726 + } + ], + "tasks": [ + "Check loan approval status", + "Send legal documents" + ], + "qd_overview": { + "intent_score": 0.726, + "urgency_score": 0.638, + "engagement_score": 0.739 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Follow up on impressions", + "Send updated price list" + ], + "lead_stage": "site_visit_done", + "lead_status": "active" + }, + { + "client_ref": "25719a50-0410-4d23-8cc3-6825221aa59d", + "snapshot_generated_at": "2026-04-18T11:07:56.167329", + "identity": { + "full_name": "Subhro Das", + "primary_email": "subhro.das770@gmail.com", + "primary_phone": "+91 7929427089", + "persona_labels": "[\"investment_focus\"]", + "buyer_type": "slow_burn_investor" + }, + "account_links": [ + "be03af16-2569-467a-94bd-ce1027914660" + ], + "active_opportunities": [ + { + "opportunity_id": "8c011335-565d-4658-a442-a7d24e845e60", + "project": "DTC Good Earth", + "stage": "qualified", + "value": 5645235 + } + ], + "recent_interactions": [ + { + "interaction_id": "bc8f01cd-bc1f-44e9-857f-89ad3c59a57c", + "channel": "call", + "happened_at": "2026-03-22T11:07:56.166684" + }, + { + "interaction_id": "24608715-69fb-4ca2-92bb-94c2590b3d16", + "channel": "call", + "happened_at": "2026-02-15T11:07:56.166772" + }, + { + "interaction_id": "eb274324-f473-43e7-ab4a-748aa9c422da", + "channel": "whatsapp", + "happened_at": "2026-02-13T11:07:56.166589" + }, + { + "interaction_id": "782b2195-6083-4271-8771-6e41830d0ba4", + "channel": "builder_event", + "happened_at": "2026-02-02T11:07:56.166855" + }, + { + "interaction_id": "d2dc48b4-10cf-4bde-b4ae-381ddd2fa49f", + "channel": "referral", + "happened_at": "2026-01-27T11:07:56.166668" + } + ], + "property_interests": [ + { + "project": "DTC Good Earth", + "config": "2BHK", + "budget_max": 6056905 + } + ], + "tasks": [ + "Schedule meeting with senior advisor" + ], + "qd_overview": { + "intent_score": 0.507, + "urgency_score": 0.636, + "engagement_score": 0.557 + }, + "risk_flags": [ + "visit_completed_but_silent", + "competitor_visit_detected" + ], + "recommended_next_actions": [ + "Book site visit", + "Share payment plan" + ], + "lead_stage": "qualified", + "lead_status": "active" + }, + { + "client_ref": "21eb3a96-3697-43d3-a701-d9cd3771e343", + "snapshot_generated_at": "2026-04-18T11:07:56.169326", + "identity": { + "full_name": "Subhajit Trivedi", + "primary_email": "subhajit.trivedi832@outlook.com", + "primary_phone": "+91 9485931336", + "persona_labels": "[\"first_time_buyer\"]", + "buyer_type": "family_decision_unit" + }, + "account_links": [ + "163d9a41-edb2-4b87-a032-08b339898377" + ], + "active_opportunities": [], + "recent_interactions": [ + { + "interaction_id": "9a16e7a7-c218-4ab6-b29d-f6fbabf39334", + "channel": "referral", + "happened_at": "2026-03-28T11:07:56.167547" + }, + { + "interaction_id": "3b9c3ef8-58ef-48d9-a657-fe7cf4d89c5b", + "channel": "whatsapp", + "happened_at": "2025-12-04T11:07:56.167563" + }, + { + "interaction_id": "de3dd67c-fde4-4469-b602-1482fc8e0adf", + "channel": "whatsapp", + "happened_at": "2025-12-02T11:07:56.167665" + }, + { + "interaction_id": "62d2a223-f7a2-496c-a079-fdc9a4c0b143", + "channel": "email", + "happened_at": "2025-11-28T11:07:56.167723" + } + ], + "property_interests": [ + { + "project": "Merlin Avana", + "config": "2BHK", + "budget_max": 15332881 + }, + { + "project": "Ambuja Utpaala", + "config": "2BHK", + "budget_max": 16980572 + }, + { + "project": "Sugam Prakriti", + "config": "4BHK", + "budget_max": 10389914 + } + ], + "tasks": [ + "Share updated price list" + ], + "qd_overview": { + "intent_score": 0.351, + "urgency_score": 0.298, + "engagement_score": 0.349 + }, + "risk_flags": [ + "no_follow_up_in_30_days", + "multiple_project_comparisons", + "decision_stalled_at_family" + ], + "recommended_next_actions": [ + "Re-engage with new offer", + "Check status after 30 days" + ], + "lead_stage": "cold", + "lead_status": "cold" + }, + { + "client_ref": "7e3b4a03-dec1-441c-8967-282a1c15b26a", + "snapshot_generated_at": "2026-04-18T11:07:56.170306", + "identity": { + "full_name": "Arnav Bagchi", + "primary_email": "arnav.bagchi928@hotmail.com", + "primary_phone": "+91 9109286470", + "persona_labels": "[\"cash_rich_investor\", \"first_time_buyer\", \"upgrade_seeker\"]", + "buyer_type": "family_decision_unit" + }, + "account_links": [ + "c64b5253-b5fb-4f37-b1aa-bd549cb7175f" + ], + "active_opportunities": [ + { + "opportunity_id": "05f4b2e9-df37-4eae-8375-a059bb71d99a", + "project": "Godrej Blue", + "stage": "site_visit_done", + "value": 7704849 + } + ], + "recent_interactions": [ + { + "interaction_id": "65e8c97c-5757-4781-8dd5-bf1bf6903ffa", + "channel": "builder_event", + "happened_at": "2026-04-08T11:07:56.169860" + }, + { + "interaction_id": "f9df3875-ee6f-4cd3-9c93-ac7077fd96f8", + "channel": "site_visit", + "happened_at": "2026-01-26T11:07:56.169647" + }, + { + "interaction_id": "45382c6d-e315-43b7-84c3-c94d0b4941df", + "channel": "digital_ad", + "happened_at": "2026-01-04T11:07:56.169591" + }, + { + "interaction_id": "bf5c93a5-5677-4a59-9919-ad36a833f929", + "channel": "builder_event", + "happened_at": "2025-12-06T11:07:56.169888" + }, + { + "interaction_id": "64e8b53e-80db-49d1-9e9c-8202c6d927e4", + "channel": "call", + "happened_at": "2025-12-06T11:07:56.169761" + } + ], + "property_interests": [ + { + "project": "Godrej Blue", + "config": "4BHK", + "budget_max": 12994358 + } + ], + "tasks": [ + "Follow up after site visit" + ], + "qd_overview": { + "intent_score": 0.732, + "urgency_score": 0.728, + "engagement_score": 0.736 + }, + "risk_flags": [], + "recommended_next_actions": [ + "Follow up on impressions", + "Send updated price list" + ], + "lead_stage": "site_visit_done", + "lead_status": "active" + }, + { + "client_ref": "89b49a15-9872-4cc5-8bd7-bf09d266ab5d", + "snapshot_generated_at": "2026-04-18T11:07:56.171073", + "identity": { + "full_name": "Souvik Halder", + "primary_email": "souvik.halder414@company.com", + "primary_phone": "+91 7690819074", + "persona_labels": "[\"cash_rich_investor\", \"first_time_buyer\", \"value_seeker\"]", + "buyer_type": "slow_burn_investor" + }, + "account_links": [ + "19b72a84-3668-49b3-98a2-f004e49c3ff0" + ], + "active_opportunities": [ + { + "opportunity_id": "434520c1-1ff2-4d5a-9a05-9ec3ac896251", + "project": "Siddha Sky Waterfront", + "stage": "negotiation", + "value": 14338756 + } + ], + "recent_interactions": [ + { + "interaction_id": "2d299205-0c66-442b-9374-18584755fee5", + "channel": "builder_event", + "happened_at": "2026-04-09T11:07:56.170588" + }, + { + "interaction_id": "710d81ad-c75d-4a9f-817a-abe3b9c9617c", + "channel": "whatsapp", + "happened_at": "2026-03-30T11:07:56.170491" + }, + { + "interaction_id": "47e982e1-ec58-499c-b92d-216e42b896c8", + "channel": "builder_event", + "happened_at": "2026-03-16T11:07:56.170604" + }, + { + "interaction_id": "6377a3de-6715-4db4-a01b-048f62e5a43f", + "channel": "digital_ad", + "happened_at": "2026-03-09T11:07:56.170470" + }, + { + "interaction_id": "8e4bd70a-f395-404e-88ac-af0ea9fce134", + "channel": "referral", + "happened_at": "2026-02-24T11:07:56.170563" + } + ], + "property_interests": [ + { + "project": "Siddha Sky Waterfront", + "config": "3BHK", + "budget_max": 12958014 + } + ], + "tasks": [], + "qd_overview": { + "intent_score": 0.605, + "urgency_score": 0.524, + "engagement_score": 0.564 + }, + "risk_flags": [ + "decision_stalled_at_family" + ], + "recommended_next_actions": [ + "Escalate to senior advisor", + "Prepare final offer" + ], + "lead_stage": "negotiation", + "lead_status": "active" + }, + { + "client_ref": "4cc124b4-68e5-49ab-9b4d-a8708e23e449", + "snapshot_generated_at": "2026-04-18T11:07:56.171749", + "identity": { + "full_name": "Rajesh Ganguly", + "primary_email": "rajesh.ganguly104@yahoo.com", + "primary_phone": "+91 7520908307", + "persona_labels": "[\"investment_focus\", \"nri_diaspora\", \"analytical_buyer\"]", + "buyer_type": "family_decision_unit" + }, + "account_links": [ + "b353486d-00ac-4fe1-a3ef-8aab66e3cbe4" + ], + "active_opportunities": [], + "recent_interactions": [ + { + "interaction_id": "0b1770ef-323a-4a4e-a29b-4acd08bb0ed5", + "channel": "email", + "happened_at": "2026-03-09T11:07:56.171269" + }, + { + "interaction_id": "a72a23a1-d3e2-45da-8b37-ceb5ec82d9af", + "channel": "whatsapp", + "happened_at": "2025-12-11T11:07:56.171302" + }, + { + "interaction_id": "19b548b1-ce39-4fb7-9b31-106edbdc9381", + "channel": "referral", + "happened_at": "2025-12-03T11:07:56.171253" + }, + { + "interaction_id": "b112e1d5-f8b4-4985-a4ef-10efc5e13c60", + "channel": "digital_ad", + "happened_at": "2025-11-06T11:07:56.171237" + } + ], + "property_interests": [ + { + "project": "Eden Devprayag", + "config": "2BHK", + "budget_max": 9554167 + }, + { + "project": "Sugam Prakriti", + "config": "2BHK", + "budget_max": 10264586 + } + ], + "tasks": [], + "qd_overview": { + "intent_score": 0.613, + "urgency_score": 0.666, + "engagement_score": 0.604 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Send project brochure", + "Schedule site visit" + ], + "lead_stage": "inquiry", + "lead_status": "active" + }, + { + "client_ref": "0754c46e-2b4d-4486-b552-58626e33c8cd", + "snapshot_generated_at": "2026-04-18T11:07:56.172612", + "identity": { + "full_name": "Poulomi Bagchi", + "primary_email": "poulomi.bagchi70@outlook.com", + "primary_phone": "+91 8531042655", + "persona_labels": "[\"nri_diaspora\", \"family_centric\", \"status_buyer\"]", + "buyer_type": "high_intent" + }, + "account_links": [ + "8cc07347-b8d7-49c0-9b9c-a2f32b8d481d" + ], + "active_opportunities": [ + { + "opportunity_id": "18fcf165-bf36-48a3-a0f9-5babd496f274", + "project": "Sugam Prakriti", + "stage": "negotiation", + "value": 9801515 + } + ], + "recent_interactions": [ + { + "interaction_id": "589d8618-82b7-4151-a847-d31c9d74e6f8", + "channel": "call", + "happened_at": "2026-04-10T11:07:56.171910" + }, + { + "interaction_id": "b2dc09f5-a6aa-4b88-abf8-76209dc4580d", + "channel": "whatsapp", + "happened_at": "2025-12-21T11:07:56.172023" + }, + { + "interaction_id": "32f9891a-ca6b-423b-99c8-a80bac972853", + "channel": "digital_ad", + "happened_at": "2025-12-20T11:07:56.172007" + }, + { + "interaction_id": "6c0fe6d1-ffd0-43f3-a789-9742af100243", + "channel": "builder_event", + "happened_at": "2025-11-09T11:07:56.171991" + } + ], + "property_interests": [ + { + "project": "Sugam Prakriti", + "config": "2BHK", + "budget_max": 6879787 + } + ], + "tasks": [ + "Follow up after site visit" + ], + "qd_overview": { + "intent_score": 0.863, + "urgency_score": 0.892, + "engagement_score": 0.908 + }, + "risk_flags": [ + "decision_stalled_at_family" + ], + "recommended_next_actions": [ + "Escalate to senior advisor", + "Prepare final offer" + ], + "lead_stage": "negotiation", + "lead_status": "active" + }, + { + "client_ref": "2e255e4c-c3f3-4602-8826-23e7ead652d4", + "snapshot_generated_at": "2026-04-18T11:07:56.173724", + "identity": { + "full_name": "Subrata Mondal", + "primary_email": "subrata.mondal991@yahoo.com", + "primary_phone": "+91 8197177669", + "persona_labels": "[\"upgrade_seeker\", \"analytical_buyer\"]", + "buyer_type": "slow_burn_investor" + }, + "account_links": [ + "0d840fb4-dbe4-4fba-b4a7-01aff24a3e15" + ], + "active_opportunities": [ + { + "opportunity_id": "516710aa-13aa-4100-93f0-917d7050a2fb", + "project": "Siddha Suburbia Bungalow", + "stage": "qualified", + "value": 19357476 + } + ], + "recent_interactions": [ + { + "interaction_id": "652fe499-eae1-497f-8ec9-38d21cf2e757", + "channel": "site_visit", + "happened_at": "2026-04-12T11:07:56.172871" + }, + { + "interaction_id": "076aae27-7381-412d-8e5a-c3be6efce79c", + "channel": "whatsapp", + "happened_at": "2026-03-12T11:07:56.172786" + }, + { + "interaction_id": "e7af80b3-9eab-41da-b255-29bf1430688a", + "channel": "digital_ad", + "happened_at": "2026-02-24T11:07:56.172944" + }, + { + "interaction_id": "8308a2f4-459f-489d-927d-c66b9ccb96bb", + "channel": "email", + "happened_at": "2026-02-15T11:07:56.173077" + }, + { + "interaction_id": "36703f1c-56fb-4929-bfe9-7acb7747b811", + "channel": "call", + "happened_at": "2026-02-08T11:07:56.172960" + } + ], + "property_interests": [ + { + "project": "Siddha Suburbia Bungalow", + "config": "4BHK", + "budget_max": 18190348 + } + ], + "tasks": [ + "Check competitor comparison status" + ], + "qd_overview": { + "intent_score": 0.467, + "urgency_score": 0.377, + "engagement_score": 0.484 + }, + "risk_flags": [ + "competitor_visit_detected", + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Book site visit", + "Share payment plan" + ], + "lead_stage": "qualified", + "lead_status": "active" + }, + { + "client_ref": "dd4c25ba-bf91-48bc-97a0-9e99a71fe33c", + "snapshot_generated_at": "2026-04-18T11:07:56.225563", + "identity": { + "full_name": "Tanushree Shah", + "primary_email": "tanushree.shah902@outlook.com", + "primary_phone": "+91 7794764136", + "persona_labels": "[\"value_seeker\", \"nri_diaspora\", \"investment_focus\"]", + "buyer_type": "high_intent" + }, + "account_links": [ + "8aa4d488-571e-4cd4-aa27-8372a49aacbf" + ], + "active_opportunities": [], + "recent_interactions": [ + { + "interaction_id": "327daac1-f83e-442e-8b7e-f628375cb370", + "channel": "email", + "happened_at": "2026-04-09T11:07:56.173961" + }, + { + "interaction_id": "a27c9793-50a6-4806-9fe6-bf2817d26352", + "channel": "whatsapp", + "happened_at": "2026-03-21T11:07:56.174073" + }, + { + "interaction_id": "8712f297-1607-4873-9da9-50a248074807", + "channel": "whatsapp", + "happened_at": "2026-02-14T11:07:56.174004" + }, + { + "interaction_id": "2e03ae37-19f7-46a1-ab14-4128a21c961d", + "channel": "call", + "happened_at": "2026-01-26T11:07:56.174225" + }, + { + "interaction_id": "e993852e-60f6-40c4-b6a4-458e85d26105", + "channel": "call", + "happened_at": "2026-01-24T11:07:56.224754" + } + ], + "property_interests": [ + { + "project": "Godrej Blue", + "config": "3BHK", + "budget_max": 9024983 + } + ], + "tasks": [], + "qd_overview": { + "intent_score": 0.901, + "urgency_score": 0.876, + "engagement_score": 0.861 + }, + "risk_flags": [ + "decision_stalled_at_family", + "competitor_visit_detected" + ], + "recommended_next_actions": [ + "Send project brochure", + "Schedule site visit" + ], + "lead_stage": "inquiry", + "lead_status": "active" + }, + { + "client_ref": "9f318e36-b630-4a6e-83ab-6bb22e194915", + "snapshot_generated_at": "2026-04-18T11:07:56.226540", + "identity": { + "full_name": "Sreyasi Chowdhury", + "primary_email": "sreyasi.chowdhury272@outlook.com", + "primary_phone": "+91 7016791115", + "persona_labels": "[\"cash_rich_investor\", \"upgrade_seeker\", \"analytical_buyer\"]", + "buyer_type": "family_decision_unit" + }, + "account_links": [ + "3ca36680-91ab-4414-adf4-578793e34459" + ], + "active_opportunities": [ + { + "opportunity_id": "bdfe1ce8-dbef-4e67-8f5f-f37497fbe022", + "project": "Merlin Avana", + "stage": "site_visit_done", + "value": 15874408 + } + ], + "recent_interactions": [ + { + "interaction_id": "6f0cb0db-95f3-4763-b271-f9e3a99ef07d", + "channel": "email", + "happened_at": "2026-04-02T11:07:56.225863" + }, + { + "interaction_id": "141f9074-8f0b-41d4-a339-d9a85d16d1c7", + "channel": "builder_event", + "happened_at": "2026-03-13T11:07:56.225840" + }, + { + "interaction_id": "21020c41-9a38-4ad7-98e9-d581745e8865", + "channel": "whatsapp", + "happened_at": "2025-12-27T11:07:56.225917" + } + ], + "property_interests": [ + { + "project": "Merlin Avana", + "config": "2BHK", + "budget_max": 15780495 + }, + { + "project": "Shriram Grand City", + "config": "3BHK", + "budget_max": 9216383 + }, + { + "project": "Godrej Elevate", + "config": "3BHK", + "budget_max": 20290542 + } + ], + "tasks": [], + "qd_overview": { + "intent_score": 0.479, + "urgency_score": 0.599, + "engagement_score": 0.505 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Follow up on impressions", + "Send updated price list" + ], + "lead_stage": "site_visit_done", + "lead_status": "active" + }, + { + "client_ref": "65b78533-e9e3-4dd6-84d1-d34952098613", + "snapshot_generated_at": "2026-04-18T11:07:56.227460", + "identity": { + "full_name": "Samir Dutta", + "primary_email": "samir.dutta343@outlook.com", + "primary_phone": "+91 8764452232", + "persona_labels": "[\"nri_diaspora\", \"first_time_buyer\", \"investment_focus\"]", + "buyer_type": "nri" + }, + "account_links": [ + "b353486d-00ac-4fe1-a3ef-8aab66e3cbe4" + ], + "active_opportunities": [ + { + "opportunity_id": "536a62a9-471f-455a-9f1d-f30a474b81c3", + "project": "Godrej Blue", + "stage": "qualified", + "value": 10011303 + } + ], + "recent_interactions": [ + { + "interaction_id": "00186d19-ea45-4ff3-86ea-dcb898ed2084", + "channel": "referral", + "happened_at": "2026-03-12T11:07:56.226939" + }, + { + "interaction_id": "33ff132a-4e58-4497-af26-800e1c189e58", + "channel": "builder_event", + "happened_at": "2026-01-23T11:07:56.227057" + }, + { + "interaction_id": "534296be-316b-4615-a85c-7372f89eb0dc", + "channel": "digital_ad", + "happened_at": "2026-01-13T11:07:56.226782" + }, + { + "interaction_id": "15af37ae-d93e-425a-8e93-cc95c98cbf8b", + "channel": "builder_event", + "happened_at": "2025-12-28T11:07:56.227025" + }, + { + "interaction_id": "d2a68b57-5d52-48f3-9af2-646eecbcfe80", + "channel": "call", + "happened_at": "2025-12-22T11:07:56.226829" + } + ], + "property_interests": [ + { + "project": "Godrej Blue", + "config": "4BHK", + "budget_max": 15238960 + }, + { + "project": "DTC Sojon", + "config": "2BHK", + "budget_max": 3908164 + } + ], + "tasks": [], + "qd_overview": { + "intent_score": 0.644, + "urgency_score": 0.722, + "engagement_score": 0.711 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Book site visit", + "Share payment plan" + ], + "lead_stage": "qualified", + "lead_status": "active" + }, + { + "client_ref": "4932edd8-28b0-41f3-aa23-cc072d49bd73", + "snapshot_generated_at": "2026-04-18T11:07:56.228332", + "identity": { + "full_name": "Rupa Chowdhury", + "primary_email": "rupa.chowdhury966@company.com", + "primary_phone": "+91 7727612712", + "persona_labels": "[\"first_time_buyer\", \"cash_rich_investor\"]", + "buyer_type": "price_sensitive" + }, + "account_links": [ + "98ccca21-7413-4609-9b7b-c93f5ee87ff8" + ], + "active_opportunities": [ + { + "opportunity_id": "17e8a8c0-18aa-4ad2-b49f-2885e7bb784f", + "project": "DTC Good Earth", + "stage": "negotiation", + "value": 6749393 + } + ], + "recent_interactions": [ + { + "interaction_id": "c75aae08-4a70-4c21-bfe1-dd8a94ce226a", + "channel": "whatsapp", + "happened_at": "2026-03-02T11:07:56.227761" + }, + { + "interaction_id": "95fe7832-0d20-4466-b10c-388e0f2cf02b", + "channel": "whatsapp", + "happened_at": "2026-02-27T11:07:56.227683" + }, + { + "interaction_id": "be6f0cf5-a294-4d8a-9197-b6b6e5b6819c", + "channel": "call", + "happened_at": "2026-02-11T11:07:56.227866" + }, + { + "interaction_id": "e2eb112d-0360-4bf0-9e55-b4bc521b9275", + "channel": "builder_event", + "happened_at": "2026-01-28T11:07:56.227850" + } + ], + "property_interests": [ + { + "project": "DTC Good Earth", + "config": "2BHK", + "budget_max": 6559072 + }, + { + "project": "Godrej Blue", + "config": "2BHK", + "budget_max": 14116811 + }, + { + "project": "Shriram Grand City", + "config": "2BHK", + "budget_max": 9695237 + } + ], + "tasks": [ + "Send legal documents", + "Re-engage after 2 weeks silence" + ], + "qd_overview": { + "intent_score": 0.423, + "urgency_score": 0.38, + "engagement_score": 0.52 + }, + "risk_flags": [ + "multiple_project_comparisons", + "decision_stalled_at_family" + ], + "recommended_next_actions": [ + "Escalate to senior advisor", + "Prepare final offer" + ], + "lead_stage": "negotiation", + "lead_status": "active" + }, + { + "client_ref": "baacf61e-da3e-48f2-8965-80e3a688d944", + "snapshot_generated_at": "2026-04-18T11:07:56.229054", + "identity": { + "full_name": "Ankita Pal", + "primary_email": "ankita.pal811@yahoo.com", + "primary_phone": "+91 7333305266", + "persona_labels": "[\"analytical_buyer\", \"investment_focus\", \"cash_rich_investor\"]", + "buyer_type": "high_intent" + }, + "account_links": [ + "0d840fb4-dbe4-4fba-b4a7-01aff24a3e15" + ], + "active_opportunities": [], + "recent_interactions": [ + { + "interaction_id": "48366b48-6537-4390-a066-2eb6540c645c", + "channel": "email", + "happened_at": "2026-04-01T11:07:56.228621" + }, + { + "interaction_id": "1700a001-712b-4488-9194-dc3cbc417061", + "channel": "builder_event", + "happened_at": "2026-03-29T11:07:56.228652" + }, + { + "interaction_id": "ecb2afa5-2fcc-4e26-9007-5a027f6cf7c7", + "channel": "whatsapp", + "happened_at": "2025-10-07T11:07:56.228560" + } + ], + "property_interests": [ + { + "project": "Atri Aqua", + "config": "3BHK", + "budget_max": 8110405 + }, + { + "project": "Siddha Sky Waterfront", + "config": "4BHK", + "budget_max": 18793186 + } + ], + "tasks": [ + "Check competitor comparison status" + ], + "qd_overview": { + "intent_score": 0.547, + "urgency_score": 0.537, + "engagement_score": 0.593 + }, + "risk_flags": [ + "no_follow_up_in_30_days", + "multiple_project_comparisons", + "decision_stalled_at_family" + ], + "recommended_next_actions": [ + "Re-engage with new offer", + "Check status after 30 days" + ], + "lead_stage": "cold", + "lead_status": "cold" + }, + { + "client_ref": "2d855f7d-8d0c-44a7-8dc4-0d22cda9ffe5", + "snapshot_generated_at": "2026-04-18T11:07:56.229862", + "identity": { + "full_name": "Rajesh Patel", + "primary_email": "rajesh.patel981@yahoo.com", + "primary_phone": "+91 9660299128", + "persona_labels": "[\"first_time_buyer\", \"upgrade_seeker\", \"value_seeker\"]", + "buyer_type": "slow_burn_investor" + }, + "account_links": [ + "4b56a688-c54f-4460-a12c-8043ea8682ae" + ], + "active_opportunities": [ + { + "opportunity_id": "887e32ff-92da-47ef-adc2-f5094ae96387", + "project": "Atri Surya Toron", + "stage": "site_visit_done", + "value": 7293315 + } + ], + "recent_interactions": [ + { + "interaction_id": "d2393234-017b-4b10-96f0-15df55d15224", + "channel": "call", + "happened_at": "2026-02-27T11:07:56.229329" + }, + { + "interaction_id": "a37ba32a-24b1-49db-8bda-ec25a6bdc057", + "channel": "whatsapp", + "happened_at": "2026-02-09T11:07:56.229270" + }, + { + "interaction_id": "98a58c8a-c080-4189-9cf0-5770d3898c1b", + "channel": "email", + "happened_at": "2025-12-16T11:07:56.229424" + } + ], + "property_interests": [ + { + "project": "Atri Surya Toron", + "config": "3BHK", + "budget_max": 5851745 + }, + { + "project": "Godrej Blue", + "config": "4BHK", + "budget_max": 10339034 + }, + { + "project": "Siddha Sky Waterfront", + "config": "3BHK", + "budget_max": 16338879 + } + ], + "tasks": [ + "Share updated price list" + ], + "qd_overview": { + "intent_score": 0.419, + "urgency_score": 0.433, + "engagement_score": 0.386 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Follow up on impressions", + "Send updated price list" + ], + "lead_stage": "site_visit_done", + "lead_status": "active" + }, + { + "client_ref": "34fc6668-6bc7-4be5-890a-e04929b12194", + "snapshot_generated_at": "2026-04-18T11:07:56.230518", + "identity": { + "full_name": "Rajib Banerjee", + "primary_email": "rajib.banerjee2@outlook.com", + "primary_phone": "+91 7226358600", + "persona_labels": "[\"status_buyer\", \"emotional_buyer\", \"nri_diaspora\"]", + "buyer_type": "broker_referral" + }, + "account_links": [ + "83abc8f7-37e5-473d-805e-2f5b39cde2af" + ], + "active_opportunities": [ + { + "opportunity_id": "571318f3-2283-4f05-83c2-af2cbb2795dd", + "project": "Atri Surya Toron", + "stage": "proposal_sent", + "value": 5224155 + } + ], + "recent_interactions": [ + { + "interaction_id": "f73559df-3d62-4607-8b37-9b9450fc946d", + "channel": "site_visit", + "happened_at": "2026-01-25T11:07:56.230087" + }, + { + "interaction_id": "0f329abb-a101-4e15-9dcb-db526755f55c", + "channel": "builder_event", + "happened_at": "2025-12-13T11:07:56.230113" + }, + { + "interaction_id": "ecd714b6-48e5-4b93-9f3c-74c0e7d3171b", + "channel": "builder_event", + "happened_at": "2025-11-15T11:07:56.230071" + }, + { + "interaction_id": "b3e31838-94c4-47a5-a08c-5b3603c9a73d", + "channel": "digital_ad", + "happened_at": "2025-11-15T11:07:56.230050" + }, + { + "interaction_id": "699e5b97-5c4e-40fc-9e29-dd4cde9d6dde", + "channel": "builder_event", + "happened_at": "2025-11-13T11:07:56.230129" + } + ], + "property_interests": [ + { + "project": "Atri Surya Toron", + "config": "2BHK", + "budget_max": 7506857 + }, + { + "project": "DTC Sojon", + "config": "2BHK", + "budget_max": 4500581 + }, + { + "project": "Atri Aqua", + "config": "3BHK", + "budget_max": 8900763 + } + ], + "tasks": [ + "Confirm booking appointment" + ], + "qd_overview": { + "intent_score": 0.489, + "urgency_score": 0.53, + "engagement_score": 0.551 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Chase for decision", + "Address objections" + ], + "lead_stage": "proposal_sent", + "lead_status": "active" + }, + { + "client_ref": "05a9c1e6-981f-450a-9fd6-552cc49a79d2", + "snapshot_generated_at": "2026-04-18T11:07:56.231225", + "identity": { + "full_name": "Ankita Saha", + "primary_email": "ankita.saha574@rediffmail.com", + "primary_phone": "+91 8514490457", + "persona_labels": "[\"status_buyer\", \"upgrade_seeker\"]", + "buyer_type": "slow_burn_investor" + }, + "account_links": [ + "37aff800-e6b2-40fb-be5b-993814cd281a" + ], + "active_opportunities": [ + { + "opportunity_id": "02b6ea95-de36-4cdd-bb65-646b62a13a53", + "project": "Siddha Serena", + "stage": "proposal_sent", + "value": 5461854 + } + ], + "recent_interactions": [ + { + "interaction_id": "0b5a3166-51af-44b6-940a-bfc2487c11db", + "channel": "digital_ad", + "happened_at": "2026-02-25T11:07:56.230746" + }, + { + "interaction_id": "54ae3118-0698-43f2-8d89-a7c86279fd12", + "channel": "digital_ad", + "happened_at": "2026-02-13T11:07:56.230781" + }, + { + "interaction_id": "598f08f5-ebe3-4332-bf84-0909188fa75b", + "channel": "referral", + "happened_at": "2025-12-15T11:07:56.230762" + } + ], + "property_interests": [ + { + "project": "Siddha Serena", + "config": "3BHK", + "budget_max": 7997435 + }, + { + "project": "Godrej Elevate", + "config": "4BHK", + "budget_max": 18148703 + }, + { + "project": "Merlin Avana", + "config": "4BHK", + "budget_max": 16859499 + } + ], + "tasks": [ + "Share updated price list" + ], + "qd_overview": { + "intent_score": 0.389, + "urgency_score": 0.39, + "engagement_score": 0.43 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Chase for decision", + "Address objections" + ], + "lead_stage": "proposal_sent", + "lead_status": "active" + }, + { + "client_ref": "dda0d158-d4d9-4f7a-9868-81377b9fbe61", + "snapshot_generated_at": "2026-04-18T11:07:56.232083", + "identity": { + "full_name": "Mitali Gupta", + "primary_email": "mitali.gupta750@yahoo.com", + "primary_phone": "+91 7825237974", + "persona_labels": "[\"first_time_buyer\"]", + "buyer_type": "slow_burn_investor" + }, + "account_links": [ + "167e5af1-66b1-41c0-9a9d-42aa9b77a3a7" + ], + "active_opportunities": [], + "recent_interactions": [ + { + "interaction_id": "1e1d1998-8208-4ebd-bcd9-a588984921d3", + "channel": "site_visit", + "happened_at": "2026-04-06T11:07:56.231594" + }, + { + "interaction_id": "28f700b4-2186-4687-9844-554a51073769", + "channel": "digital_ad", + "happened_at": "2026-03-26T11:07:56.231716" + }, + { + "interaction_id": "7b76cd30-e65a-4640-b8b1-1c669eb89a40", + "channel": "site_visit", + "happened_at": "2026-03-12T11:07:56.231619" + }, + { + "interaction_id": "7e46e0ac-d9b6-45a9-b4e7-8abcdf4e984e", + "channel": "call", + "happened_at": "2026-02-16T11:07:56.231501" + }, + { + "interaction_id": "9ea1a0c6-d0d0-4468-b172-deb925438bcf", + "channel": "digital_ad", + "happened_at": "2026-01-30T11:07:56.231577" + } + ], + "property_interests": [ + { + "project": "Siddha Sky Waterfront", + "config": "3BHK", + "budget_max": 13093782 + }, + { + "project": "Merlin Avana", + "config": "3BHK", + "budget_max": 8931082 + }, + { + "project": "Godrej Elevate", + "config": "3BHK", + "budget_max": 17580261 + } + ], + "tasks": [ + "Re-engage after 2 weeks silence" + ], + "qd_overview": { + "intent_score": 0.429, + "urgency_score": 0.376, + "engagement_score": 0.321 + }, + "risk_flags": [ + "no_follow_up_in_30_days", + "multiple_project_comparisons", + "decision_stalled_at_family" + ], + "recommended_next_actions": [ + "Re-engage with new offer", + "Check status after 30 days" + ], + "lead_stage": "dropped", + "lead_status": "dropped" + }, + { + "client_ref": "687efc96-5ca1-42b1-9fb2-1d531e7f838c", + "snapshot_generated_at": "2026-04-18T11:07:56.232813", + "identity": { + "full_name": "Laboni Rao", + "primary_email": "laboni.rao897@yahoo.com", + "primary_phone": "+91 7774944955", + "persona_labels": "[\"status_buyer\", \"nri_diaspora\"]", + "buyer_type": "high_intent" + }, + "account_links": [ + "3ca36680-91ab-4414-adf4-578793e34459" + ], + "active_opportunities": [ + { + "opportunity_id": "8b7b08b8-884d-44db-be24-b8da08bd0b80", + "project": "DTC Good Earth", + "stage": "qualified", + "value": 5463874 + } + ], + "recent_interactions": [ + { + "interaction_id": "a0a8ed6c-fbec-4b4d-bfd1-1b9384a50930", + "channel": "call", + "happened_at": "2026-04-13T11:07:56.232296" + }, + { + "interaction_id": "84b107ad-16b4-4904-b9ae-2e6bd5d132ff", + "channel": "email", + "happened_at": "2026-04-01T11:07:56.232268" + }, + { + "interaction_id": "2c18c13d-43b6-4d22-94d2-3a5e87238793", + "channel": "digital_ad", + "happened_at": "2026-02-02T11:07:56.232236" + }, + { + "interaction_id": "99880832-b877-482c-a7d6-9e3a37edd96d", + "channel": "referral", + "happened_at": "2026-01-23T11:07:56.232392" + }, + { + "interaction_id": "c144402c-6b27-4679-a77b-854c68d36e5b", + "channel": "digital_ad", + "happened_at": "2026-01-02T11:07:56.232408" + } + ], + "property_interests": [ + { + "project": "DTC Good Earth", + "config": "3BHK", + "budget_max": 7301446 + }, + { + "project": "Godrej Blue", + "config": "4BHK", + "budget_max": 11623955 + } + ], + "tasks": [ + "Share updated price list" + ], + "qd_overview": { + "intent_score": 0.859, + "urgency_score": 0.892, + "engagement_score": 0.92 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Book site visit", + "Share payment plan" + ], + "lead_stage": "qualified", + "lead_status": "active" + }, + { + "client_ref": "fc356489-0075-4fd3-ae02-fb7e7548d0a1", + "snapshot_generated_at": "2026-04-18T11:07:56.233655", + "identity": { + "full_name": "Prabir Sinha", + "primary_email": "prabir.sinha419@outlook.com", + "primary_phone": "+91 8891776161", + "persona_labels": "[\"nri_diaspora\"]", + "buyer_type": "slow_burn_investor" + }, + "account_links": [ + "a1de095a-529c-4d0a-9459-779ac5db4d88" + ], + "active_opportunities": [ + { + "opportunity_id": "324139d7-711e-4d4a-b656-6fa6616f6df7", + "project": "DTC Sojon", + "stage": "qualified", + "value": 6471389 + } + ], + "recent_interactions": [ + { + "interaction_id": "a179f3a6-d834-4468-9cda-112b6c94bed8", + "channel": "builder_event", + "happened_at": "2026-04-14T11:07:56.233043" + }, + { + "interaction_id": "11df5eee-dea1-4fc5-bcfa-bf43de5783c3", + "channel": "site_visit", + "happened_at": "2026-03-14T11:07:56.233128" + }, + { + "interaction_id": "077ac6f9-6f5a-4959-a7aa-49c12e10a5e1", + "channel": "whatsapp", + "happened_at": "2026-03-09T11:07:56.233073" + }, + { + "interaction_id": "96bedc98-b940-4c7c-9e61-021d3ddb0e5c", + "channel": "builder_event", + "happened_at": "2026-02-28T11:07:56.233024" + }, + { + "interaction_id": "8aff0811-3d28-4b98-819a-993e6c689e5e", + "channel": "referral", + "happened_at": "2025-11-28T11:07:56.233169" + } + ], + "property_interests": [ + { + "project": "DTC Sojon", + "config": "3BHK", + "budget_max": 6924637 + }, + { + "project": "Merlin Avana", + "config": "3BHK", + "budget_max": 14155633 + }, + { + "project": "Ambuja Utpaala", + "config": "3BHK", + "budget_max": 16903221 + } + ], + "tasks": [ + "Send festive offer" + ], + "qd_overview": { + "intent_score": 0.429, + "urgency_score": 0.401, + "engagement_score": 0.404 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Book site visit", + "Share payment plan" + ], + "lead_stage": "qualified", + "lead_status": "active" + }, + { + "client_ref": "1816ab79-6b60-47c6-826e-9198c42eac46", + "snapshot_generated_at": "2026-04-18T11:07:56.234706", + "identity": { + "full_name": "Avik Haldar", + "primary_email": "avik.haldar865@hotmail.com", + "primary_phone": "+91 9458675898", + "persona_labels": "[\"investment_focus\", \"upgrade_seeker\", \"cash_rich_investor\"]", + "buyer_type": "repeat_visitor" + }, + "account_links": [ + "f37fe679-99e5-4ea8-a1a5-d31e4f8d4bf2" + ], + "active_opportunities": [ + { + "opportunity_id": "248ac43c-b836-4501-9b77-1d31dd0d64be", + "project": "Merlin Avana", + "stage": "proposal_sent", + "value": 8567770 + } + ], + "recent_interactions": [ + { + "interaction_id": "03197ede-0ac8-4a52-8b46-a96ae9f02736", + "channel": "whatsapp", + "happened_at": "2026-03-29T11:07:56.234072" + }, + { + "interaction_id": "6264ec03-fed3-405b-b759-f67c3ecb46e1", + "channel": "referral", + "happened_at": "2026-03-23T11:07:56.233964" + }, + { + "interaction_id": "c39cd006-9fd8-4232-ad94-e327b98ad781", + "channel": "site_visit", + "happened_at": "2026-02-03T11:07:56.233938" + }, + { + "interaction_id": "17e4b7ba-7537-43c6-903e-201d59416a5f", + "channel": "whatsapp", + "happened_at": "2026-01-16T11:07:56.234175" + }, + { + "interaction_id": "6b74720e-1d91-458e-8a34-431b3a552e80", + "channel": "call", + "happened_at": "2026-01-03T11:07:56.233980" + } + ], + "property_interests": [ + { + "project": "Merlin Avana", + "config": "4BHK", + "budget_max": 10821138 + }, + { + "project": "Godrej Blue", + "config": "3BHK", + "budget_max": 8861300 + }, + { + "project": "DTC Good Earth", + "config": "2BHK", + "budget_max": 5977819 + } + ], + "tasks": [], + "qd_overview": { + "intent_score": 0.883, + "urgency_score": 0.793, + "engagement_score": 0.836 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Chase for decision", + "Address objections" + ], + "lead_stage": "proposal_sent", + "lead_status": "active" + }, + { + "client_ref": "9899b0a6-9925-4092-8d60-d6d48051f41d", + "snapshot_generated_at": "2026-04-18T11:07:56.235676", + "identity": { + "full_name": "Naresh Rao", + "primary_email": "naresh.rao741@yahoo.com", + "primary_phone": "+91 7925994714", + "persona_labels": "[\"upgrade_seeker\", \"investment_focus\", \"cash_rich_investor\"]", + "buyer_type": "repeat_visitor" + }, + "account_links": [ + "8cc07347-b8d7-49c0-9b9c-a2f32b8d481d" + ], + "active_opportunities": [ + { + "opportunity_id": "855fde9d-ca12-4308-b5c0-6f89428ede24", + "project": "Godrej Elevate", + "stage": "booked", + "value": 17932482 + } + ], + "recent_interactions": [ + { + "interaction_id": "2bb8f183-5f6b-487d-a002-39514062ec19", + "channel": "call", + "happened_at": "2026-03-11T11:07:56.235110" + }, + { + "interaction_id": "5a3064a3-f7d8-4993-bc31-2935fb274eb4", + "channel": "whatsapp", + "happened_at": "2026-02-25T11:07:56.235024" + }, + { + "interaction_id": "c0e33e85-ca02-4bf4-9acd-8eb1a60e82d0", + "channel": "referral", + "happened_at": "2025-12-26T11:07:56.235188" + }, + { + "interaction_id": "1958d286-ecd8-40a0-80bd-00956c38b0ec", + "channel": "site_visit", + "happened_at": "2025-12-10T11:07:56.235085" + } + ], + "property_interests": [ + { + "project": "Godrej Elevate", + "config": "3BHK", + "budget_max": 15591860 + }, + { + "project": "Shriram Grand City", + "config": "4BHK", + "budget_max": 8638468 + } + ], + "tasks": [ + "Follow up after site visit", + "Nudge for final decision" + ], + "qd_overview": { + "intent_score": 0.854, + "urgency_score": 0.892, + "engagement_score": 0.856 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Share loan documents", + "Introduce relationship manager" + ], + "lead_stage": "booked", + "lead_status": "active" + }, + { + "client_ref": "8245d372-be30-4834-b8bb-614d2de69f79", + "snapshot_generated_at": "2026-04-18T11:07:56.236571", + "identity": { + "full_name": "Avijit Bhattacharya", + "primary_email": "avijit.bhattacharya586@yahoo.com", + "primary_phone": "+91 8488400036", + "persona_labels": "[\"investment_focus\", \"value_seeker\", \"status_buyer\"]", + "buyer_type": "slow_burn_investor" + }, + "account_links": [ + "49fbf504-dd6b-4be1-a90d-d1a9d5acb417" + ], + "active_opportunities": [ + { + "opportunity_id": "055d5562-4460-449c-ab1b-e725b4599dc1", + "project": "Siddha Sky Waterfront", + "stage": "qualified", + "value": 13591675 + } + ], + "recent_interactions": [ + { + "interaction_id": "43210815-10e5-4257-b5a5-f072f898e3bc", + "channel": "email", + "happened_at": "2026-04-06T11:07:56.236056" + }, + { + "interaction_id": "42ec76b9-6f03-4331-9b8b-a261b82a4683", + "channel": "call", + "happened_at": "2026-03-20T11:07:56.235949" + }, + { + "interaction_id": "0e0740bb-9d10-4651-9005-e3926ae55fbc", + "channel": "referral", + "happened_at": "2026-02-18T11:07:56.236090" + }, + { + "interaction_id": "9bcdc3c7-f6e1-4293-9eb2-60b5e274e9ac", + "channel": "email", + "happened_at": "2026-02-01T11:07:56.236109" + }, + { + "interaction_id": "e689c71a-078c-4a75-83c3-980f6c4c0815", + "channel": "referral", + "happened_at": "2025-11-19T11:07:56.236136" + } + ], + "property_interests": [ + { + "project": "Siddha Sky Waterfront", + "config": "3BHK", + "budget_max": 16836458 + }, + { + "project": "Merlin Avana", + "config": "3BHK", + "budget_max": 13791028 + }, + { + "project": "Eden Devprayag", + "config": "2BHK", + "budget_max": 12860190 + } + ], + "tasks": [ + "Schedule meeting with senior advisor" + ], + "qd_overview": { + "intent_score": 0.521, + "urgency_score": 0.487, + "engagement_score": 0.586 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Book site visit", + "Share payment plan" + ], + "lead_stage": "qualified", + "lead_status": "active" + }, + { + "client_ref": "3465da0f-1213-4421-a238-d025aae69581", + "snapshot_generated_at": "2026-04-18T11:07:56.237436", + "identity": { + "full_name": "Biswanath Chowdhury", + "primary_email": "biswanath.chowdhury810@company.com", + "primary_phone": "+91 9913623070", + "persona_labels": "[\"family_centric\"]", + "buyer_type": "price_sensitive" + }, + "account_links": [], + "active_opportunities": [], + "recent_interactions": [ + { + "interaction_id": "d1f90e71-d093-4bf4-8b58-0e0492f05033", + "channel": "call", + "happened_at": "2026-01-05T11:07:56.236918" + }, + { + "interaction_id": "8f770bf3-004e-4db6-acec-93000633c13a", + "channel": "referral", + "happened_at": "2025-11-18T11:07:56.237006" + }, + { + "interaction_id": "1620123d-1656-4c58-a09e-96ef6ac1eeb0", + "channel": "call", + "happened_at": "2025-11-15T11:07:56.236737" + }, + { + "interaction_id": "49390402-1e13-418d-a259-60e33efd1a98", + "channel": "call", + "happened_at": "2025-10-27T11:07:56.236834" + }, + { + "interaction_id": "187b2fb9-f88b-48e0-b3b8-908ee24c6ca4", + "channel": "digital_ad", + "happened_at": "2025-10-15T11:07:56.236988" + } + ], + "property_interests": [ + { + "project": "Atri Aqua", + "config": "3BHK", + "budget_max": 8279130 + } + ], + "tasks": [ + "Re-engage after 2 weeks silence" + ], + "qd_overview": { + "intent_score": 0.134, + "urgency_score": 0.087, + "engagement_score": 0.169 + }, + "risk_flags": [ + "no_follow_up_in_30_days", + "decision_stalled_at_family" + ], + "recommended_next_actions": [ + "Re-engage with new offer", + "Check status after 30 days" + ], + "lead_stage": "dropped", + "lead_status": "dropped" + }, + { + "client_ref": "a502e99b-64ba-4fd8-9a53-831f8f30a476", + "snapshot_generated_at": "2026-04-18T11:07:56.238154", + "identity": { + "full_name": "Baisakhi Chowdhury", + "primary_email": "baisakhi.chowdhury761@outlook.com", + "primary_phone": "+91 8110777848", + "persona_labels": "[\"investment_focus\", \"value_seeker\", \"upgrade_seeker\"]", + "buyer_type": "broker_referral" + }, + "account_links": [ + "8aa4d488-571e-4cd4-aa27-8372a49aacbf" + ], + "active_opportunities": [], + "recent_interactions": [ + { + "interaction_id": "9474a28f-676f-41ab-9cee-883b5c4f8e19", + "channel": "site_visit", + "happened_at": "2026-04-02T11:07:56.237631" + }, + { + "interaction_id": "abd25fbb-c9f4-41a8-9a35-2577060e4aa1", + "channel": "digital_ad", + "happened_at": "2025-12-19T11:07:56.237725" + }, + { + "interaction_id": "d5d502e6-09e4-42fe-9404-15eaa09add7f", + "channel": "site_visit", + "happened_at": "2025-10-25T11:07:56.237657" + }, + { + "interaction_id": "2a1b855f-fbcd-4bb7-97aa-74be5c0087c6", + "channel": "referral", + "happened_at": "2025-10-19T11:07:56.237710" + }, + { + "interaction_id": "ca8c45cd-2154-4e30-86a0-2f720affb842", + "channel": "site_visit", + "happened_at": "2025-10-01T11:07:56.237685" + } + ], + "property_interests": [ + { + "project": "Godrej Elevate", + "config": "4BHK", + "budget_max": 17190965 + } + ], + "tasks": [ + "Confirm booking appointment" + ], + "qd_overview": { + "intent_score": 0.468, + "urgency_score": 0.517, + "engagement_score": 0.512 + }, + "risk_flags": [ + "no_follow_up_in_30_days", + "decision_stalled_at_family" + ], + "recommended_next_actions": [ + "Re-engage with new offer", + "Check status after 30 days" + ], + "lead_stage": "dropped", + "lead_status": "dropped" + }, + { + "client_ref": "cda114da-0dc5-406f-a077-4e7546e834f2", + "snapshot_generated_at": "2026-04-18T11:07:56.238915", + "identity": { + "full_name": "Rekha Sen", + "primary_email": "rekha.sen192@gmail.com", + "primary_phone": "+91 7960260257", + "persona_labels": "[\"analytical_buyer\", \"family_centric\", \"upgrade_seeker\"]", + "buyer_type": "high_intent" + }, + "account_links": [ + "167e5af1-66b1-41c0-9a9d-42aa9b77a3a7" + ], + "active_opportunities": [], + "recent_interactions": [ + { + "interaction_id": "a1877185-582b-4a80-a986-616539f19339", + "channel": "builder_event", + "happened_at": "2026-03-12T11:07:56.238480" + }, + { + "interaction_id": "1edd5ff5-7af1-4103-81c9-98b10aed5a4f", + "channel": "digital_ad", + "happened_at": "2026-03-04T11:07:56.238301" + }, + { + "interaction_id": "5b40adab-a5a3-471d-be37-ef3771356026", + "channel": "referral", + "happened_at": "2026-01-06T11:07:56.238317" + }, + { + "interaction_id": "a1a2c210-564c-4cb7-9ab0-ae5107448835", + "channel": "call", + "happened_at": "2026-01-05T11:07:56.238333" + }, + { + "interaction_id": "824c00e1-0415-4adc-b1cd-0b2233d39f88", + "channel": "builder_event", + "happened_at": "2025-12-23T11:07:56.238520" + } + ], + "property_interests": [ + { + "project": "Merlin Avana", + "config": "2BHK", + "budget_max": 11709447 + }, + { + "project": "Ambuja Utpaala", + "config": "3BHK", + "budget_max": 16093369 + } + ], + "tasks": [ + "Re-engage after 2 weeks silence" + ], + "qd_overview": { + "intent_score": 0.814, + "urgency_score": 0.861, + "engagement_score": 0.79 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Send project brochure", + "Schedule site visit" + ], + "lead_stage": "inquiry", + "lead_status": "active" + }, + { + "client_ref": "33bd70da-e03d-490d-ac1e-1bdf66b3f14e", + "snapshot_generated_at": "2026-04-18T11:07:56.239759", + "identity": { + "full_name": "Kavita Mehta", + "primary_email": "kavita.mehta77@yahoo.com", + "primary_phone": "+91 8669852523", + "persona_labels": "[\"first_time_buyer\", \"investment_focus\", \"family_centric\"]", + "buyer_type": "broker_referral" + }, + "account_links": [ + "680245f4-619c-40a1-90ff-c098cccf2f41" + ], + "active_opportunities": [ + { + "opportunity_id": "1ff6b057-231c-44e4-9aba-17f5bc514864", + "project": "Ambuja Utpaala", + "stage": "booked", + "value": 14446228 + } + ], + "recent_interactions": [ + { + "interaction_id": "42a16378-e307-4c8d-a0ab-341de21abe63", + "channel": "call", + "happened_at": "2026-03-03T11:07:56.239311" + }, + { + "interaction_id": "a2086c66-b08a-4856-964b-b98c6528d959", + "channel": "referral", + "happened_at": "2026-02-14T11:07:56.239181" + }, + { + "interaction_id": "4b4e8689-99f1-469e-981a-55ac8b49f98c", + "channel": "builder_event", + "happened_at": "2025-12-09T11:07:56.239164" + }, + { + "interaction_id": "d6fb1815-4178-435b-9ebb-a8fbf9b769f0", + "channel": "whatsapp", + "happened_at": "2025-12-06T11:07:56.239209" + }, + { + "interaction_id": "540bfd41-1cc7-4ee3-a05b-9e9bf59b67d1", + "channel": "referral", + "happened_at": "2025-10-10T11:07:56.239388" + } + ], + "property_interests": [ + { + "project": "Ambuja Utpaala", + "config": "3BHK", + "budget_max": 11131843 + }, + { + "project": "Sugam Prakriti", + "config": "3BHK", + "budget_max": 7129105 + }, + { + "project": "DTC Good Earth", + "config": "2BHK", + "budget_max": 7335968 + } + ], + "tasks": [ + "Nudge for final decision", + "Nudge for final decision" + ], + "qd_overview": { + "intent_score": 0.666, + "urgency_score": 0.712, + "engagement_score": 0.649 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Share loan documents", + "Introduce relationship manager" + ], + "lead_stage": "booked", + "lead_status": "active" + }, + { + "client_ref": "61620b71-7b4d-469c-94f5-d5a29a32af9d", + "snapshot_generated_at": "2026-04-18T11:07:56.240514", + "identity": { + "full_name": "Priyanka Majumdar", + "primary_email": "priyanka.majumdar259@outlook.com", + "primary_phone": "+91 8915131449", + "persona_labels": "[\"value_seeker\", \"upgrade_seeker\"]", + "buyer_type": "slow_burn_investor" + }, + "account_links": [ + "50a26214-39cd-4e63-b551-acd26576c9d2" + ], + "active_opportunities": [], + "recent_interactions": [ + { + "interaction_id": "f20cf578-9e1c-4342-a53e-6b0cc5265f2a", + "channel": "email", + "happened_at": "2026-01-03T11:07:56.239971" + }, + { + "interaction_id": "2320f1de-7f12-4759-896a-919bbe56baa6", + "channel": "email", + "happened_at": "2026-01-02T11:07:56.240003" + }, + { + "interaction_id": "8085e7ef-4437-4754-8ab5-4ab19905a0e8", + "channel": "digital_ad", + "happened_at": "2026-01-01T11:07:56.240067" + }, + { + "interaction_id": "8fe1c7c5-ade6-48ac-83cb-2ed0e06ea921", + "channel": "builder_event", + "happened_at": "2025-12-27T11:07:56.240048" + }, + { + "interaction_id": "dd1464c6-49c6-493b-8ec3-cdb2ac34cc2b", + "channel": "builder_event", + "happened_at": "2025-11-23T11:07:56.240031" + } + ], + "property_interests": [ + { + "project": "Siddha Suburbia Bungalow", + "config": "5BHK", + "budget_max": 16699136 + }, + { + "project": "DTC Good Earth", + "config": "3BHK", + "budget_max": 6313612 + }, + { + "project": "Eden Devprayag", + "config": "2BHK", + "budget_max": 11650379 + } + ], + "tasks": [ + "Send festive offer" + ], + "qd_overview": { + "intent_score": 0.585, + "urgency_score": 0.555, + "engagement_score": 0.517 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Send project brochure", + "Schedule site visit" + ], + "lead_stage": "inquiry", + "lead_status": "active" + }, + { + "client_ref": "5c0493ae-afd0-457a-86a9-20440e0ea424", + "snapshot_generated_at": "2026-04-18T11:07:56.241481", + "identity": { + "full_name": "Srabanti Dey", + "primary_email": "srabanti.dey886@outlook.com", + "primary_phone": "+91 7883354284", + "persona_labels": "[\"value_seeker\"]", + "buyer_type": "repeat_visitor" + }, + "account_links": [ + "8aa4d488-571e-4cd4-aa27-8372a49aacbf" + ], + "active_opportunities": [ + { + "opportunity_id": "16c3814c-db98-4776-8200-5eba9c3386df", + "project": "Godrej Elevate", + "stage": "site_visit_done", + "value": 19926023 + } + ], + "recent_interactions": [ + { + "interaction_id": "44440c08-cc21-44ab-a5fc-e2f4565d541f", + "channel": "whatsapp", + "happened_at": "2026-02-21T11:07:56.240715" + }, + { + "interaction_id": "24b6fc0f-13ad-463f-bdc8-ee1d52d6c491", + "channel": "digital_ad", + "happened_at": "2026-02-14T11:07:56.240696" + }, + { + "interaction_id": "2d2050d6-c341-430d-b232-833aad5ac5eb", + "channel": "call", + "happened_at": "2025-12-26T11:07:56.240903" + }, + { + "interaction_id": "29937dda-3abc-408c-9a11-482c27ed0567", + "channel": "whatsapp", + "happened_at": "2025-12-17T11:07:56.240776" + }, + { + "interaction_id": "73724e7b-3f14-4578-a83d-9b2e7e5a8723", + "channel": "builder_event", + "happened_at": "2025-11-22T11:07:56.240886" + } + ], + "property_interests": [ + { + "project": "Godrej Elevate", + "config": "4BHK", + "budget_max": 18054869 + }, + { + "project": "Atri Aqua", + "config": "3BHK", + "budget_max": 8814851 + }, + { + "project": "DTC Good Earth", + "config": "3BHK", + "budget_max": 5846086 + } + ], + "tasks": [ + "Re-engage after 2 weeks silence" + ], + "qd_overview": { + "intent_score": 0.805, + "urgency_score": 0.788, + "engagement_score": 0.777 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Follow up on impressions", + "Send updated price list" + ], + "lead_stage": "site_visit_done", + "lead_status": "active" + }, + { + "client_ref": "5d713eb5-8049-4bd4-9866-dfa46a2cb531", + "snapshot_generated_at": "2026-04-18T11:07:56.242274", + "identity": { + "full_name": "Tanmoy Lahiri", + "primary_email": "tanmoy.lahiri744@yahoo.com", + "primary_phone": "+91 8506458829", + "persona_labels": "[\"cash_rich_investor\", \"upgrade_seeker\", \"emotional_buyer\"]", + "buyer_type": "price_sensitive" + }, + "account_links": [ + "19b72a84-3668-49b3-98a2-f004e49c3ff0" + ], + "active_opportunities": [], + "recent_interactions": [ + { + "interaction_id": "80be8335-15b6-4b02-8c38-171481ff14e8", + "channel": "call", + "happened_at": "2026-02-21T11:07:56.241783" + }, + { + "interaction_id": "395a203e-e1fa-4b45-ad0b-dae84d9d16c3", + "channel": "call", + "happened_at": "2026-01-09T11:07:56.241709" + }, + { + "interaction_id": "2692c69a-cdca-4ef8-ae31-5104c9f09a2e", + "channel": "site_visit", + "happened_at": "2025-12-02T11:07:56.241683" + }, + { + "interaction_id": "518f97ba-ad60-4701-9aac-c5073f0ce6b1", + "channel": "digital_ad", + "happened_at": "2025-11-24T11:07:56.241858" + } + ], + "property_interests": [ + { + "project": "Siddha Suburbia Bungalow", + "config": "4BHK", + "budget_max": 21594291 + }, + { + "project": "DTC Sojon", + "config": "1BHK", + "budget_max": 4417044 + } + ], + "tasks": [ + "Confirm booking appointment", + "Check competitor comparison status" + ], + "qd_overview": { + "intent_score": 0.287, + "urgency_score": 0.214, + "engagement_score": 0.318 + }, + "risk_flags": [ + "no_follow_up_in_30_days", + "multiple_project_comparisons", + "decision_stalled_at_family" + ], + "recommended_next_actions": [ + "Re-engage with new offer", + "Check status after 30 days" + ], + "lead_stage": "dropped", + "lead_status": "dropped" + }, + { + "client_ref": "2ba64e53-4945-4526-9799-f897d760079b", + "snapshot_generated_at": "2026-04-18T11:07:56.243147", + "identity": { + "full_name": "Suchandra Sinha", + "primary_email": "suchandra.sinha298@hotmail.com", + "primary_phone": "+91 7539813127", + "persona_labels": "[\"status_buyer\", \"investment_focus\", \"first_time_buyer\"]", + "buyer_type": "high_intent" + }, + "account_links": [ + "163d9a41-edb2-4b87-a032-08b339898377" + ], + "active_opportunities": [ + { + "opportunity_id": "3f696ac3-5087-4bc7-b232-523c2e748bdd", + "project": "Atri Surya Toron", + "stage": "site_visit_done", + "value": 5316836 + } + ], + "recent_interactions": [ + { + "interaction_id": "fd0f20a4-1378-46ba-834d-956d0942bcfa", + "channel": "digital_ad", + "happened_at": "2026-03-02T11:07:56.242549" + }, + { + "interaction_id": "13db1847-f90e-4532-8f56-48313a0983dc", + "channel": "call", + "happened_at": "2026-01-04T11:07:56.242568" + }, + { + "interaction_id": "92a0f7fd-1b3f-4410-8997-bda07367900f", + "channel": "call", + "happened_at": "2025-12-27T11:07:56.242473" + }, + { + "interaction_id": "4abea810-d50e-45b6-b141-de515dd91a50", + "channel": "builder_event", + "happened_at": "2025-12-25T11:07:56.242666" + }, + { + "interaction_id": "9f9f7e36-7e00-42eb-b7d8-f476e17348f7", + "channel": "site_visit", + "happened_at": "2025-12-22T11:07:56.242447" + } + ], + "property_interests": [ + { + "project": "Atri Surya Toron", + "config": "3BHK", + "budget_max": 7776060 + } + ], + "tasks": [], + "qd_overview": { + "intent_score": 0.826, + "urgency_score": 0.887, + "engagement_score": 0.926 + }, + "risk_flags": [], + "recommended_next_actions": [ + "Follow up on impressions", + "Send updated price list" + ], + "lead_stage": "site_visit_done", + "lead_status": "active" + }, + { + "client_ref": "884d34d8-0fb8-499f-be04-c8529c4dad07", + "snapshot_generated_at": "2026-04-18T11:07:56.243960", + "identity": { + "full_name": "Nilanjan Pal", + "primary_email": "nilanjan.pal644@company.com", + "primary_phone": "+91 8375062910", + "persona_labels": "[\"cash_rich_investor\", \"first_time_buyer\", \"emotional_buyer\"]", + "buyer_type": "broker_referral" + }, + "account_links": [ + "e7bc1d8b-7015-4b81-9df9-933d9a82263b" + ], + "active_opportunities": [], + "recent_interactions": [ + { + "interaction_id": "e9b90139-0cb8-46ed-b308-e6738a2edf66", + "channel": "email", + "happened_at": "2026-04-01T11:07:56.243489" + }, + { + "interaction_id": "6c2cb695-b79a-4ec1-8b61-21322c9ce6d0", + "channel": "digital_ad", + "happened_at": "2026-02-20T11:07:56.243471" + }, + { + "interaction_id": "0aceb79f-9046-45f6-83e0-8d14b522eaf8", + "channel": "referral", + "happened_at": "2026-01-29T11:07:56.243378" + }, + { + "interaction_id": "0071edb6-1e72-4063-b888-9bfadaee8339", + "channel": "call", + "happened_at": "2026-01-22T11:07:56.243396" + }, + { + "interaction_id": "c7764134-af78-46ce-b1a3-989cdf5d403b", + "channel": "digital_ad", + "happened_at": "2025-11-12T11:07:56.243516" + } + ], + "property_interests": [ + { + "project": "Eden Devprayag", + "config": "3BHK", + "budget_max": 9040306 + }, + { + "project": "Atri Aqua", + "config": "2BHK", + "budget_max": 6589542 + }, + { + "project": "Siddha Suburbia Bungalow", + "config": "4BHK", + "budget_max": 21100968 + } + ], + "tasks": [ + "Schedule meeting with senior advisor" + ], + "qd_overview": { + "intent_score": 0.266, + "urgency_score": 0.292, + "engagement_score": 0.239 + }, + "risk_flags": [ + "no_follow_up_in_30_days", + "multiple_project_comparisons", + "price_objection_raised" + ], + "recommended_next_actions": [ + "Re-engage with new offer", + "Check status after 30 days" + ], + "lead_stage": "dropped", + "lead_status": "dropped" + }, + { + "client_ref": "227b3708-bc75-4d71-a4b4-651904e90abc", + "snapshot_generated_at": "2026-04-18T11:07:56.244743", + "identity": { + "full_name": "Kaushal Roy", + "primary_email": "kaushal.roy291@outlook.com", + "primary_phone": "+91 9929971487", + "persona_labels": "[\"nri_diaspora\"]", + "buyer_type": "price_sensitive" + }, + "account_links": [ + "4b56a688-c54f-4460-a12c-8043ea8682ae" + ], + "active_opportunities": [ + { + "opportunity_id": "fddb31b4-490c-4e04-b606-e9ad0972a380", + "project": "Ambuja Utpaala", + "stage": "proposal_sent", + "value": 16266294 + } + ], + "recent_interactions": [ + { + "interaction_id": "9c2e7f9c-c831-4744-a7b1-05429ec0c6e3", + "channel": "referral", + "happened_at": "2026-03-04T11:07:56.244246" + }, + { + "interaction_id": "5302882b-9f20-4398-8b84-fc038523fa1e", + "channel": "call", + "happened_at": "2025-12-28T11:07:56.244157" + }, + { + "interaction_id": "16f249b7-ba84-488d-95b8-e3ca2bd67f81", + "channel": "whatsapp", + "happened_at": "2025-12-26T11:07:56.244263" + }, + { + "interaction_id": "6fb53434-7d21-464c-9491-9f8265ec8f9d", + "channel": "whatsapp", + "happened_at": "2025-10-12T11:07:56.244321" + } + ], + "property_interests": [ + { + "project": "Ambuja Utpaala", + "config": "4BHK", + "budget_max": 10171920 + }, + { + "project": "Godrej Blue", + "config": "2BHK", + "budget_max": 13263613 + }, + { + "project": "Sugam Prakriti", + "config": "4BHK", + "budget_max": 10218799 + } + ], + "tasks": [ + "Send festive offer", + "Nudge for final decision" + ], + "qd_overview": { + "intent_score": 0.383, + "urgency_score": 0.388, + "engagement_score": 0.314 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Chase for decision", + "Address objections" + ], + "lead_stage": "proposal_sent", + "lead_status": "active" + }, + { + "client_ref": "daddf4be-b5fa-41be-be4e-f4a4f89e3251", + "snapshot_generated_at": "2026-04-18T11:07:56.245574", + "identity": { + "full_name": "Supratim Iyer", + "primary_email": "supratim.iyer566@rediffmail.com", + "primary_phone": "+91 9598990737", + "persona_labels": "[\"investment_focus\"]", + "buyer_type": "high_intent" + }, + "account_links": [ + "49fbf504-dd6b-4be1-a90d-d1a9d5acb417" + ], + "active_opportunities": [ + { + "opportunity_id": "7be00e17-28b7-4aad-bf5d-39e3c0761ecc", + "project": "DTC Sojon", + "stage": "proposal_sent", + "value": 4914951 + } + ], + "recent_interactions": [ + { + "interaction_id": "c633589c-1c54-4364-9f8d-51732182ed14", + "channel": "site_visit", + "happened_at": "2026-03-27T11:07:56.244966" + }, + { + "interaction_id": "5fd191be-d654-428c-a4d5-bf6510b903d3", + "channel": "site_visit", + "happened_at": "2026-02-19T11:07:56.244939" + }, + { + "interaction_id": "8fa889f0-e138-4d2e-b245-a5db5ccd9e20", + "channel": "call", + "happened_at": "2025-11-10T11:07:56.244989" + } + ], + "property_interests": [ + { + "project": "DTC Sojon", + "config": "1BHK", + "budget_max": 5768441 + }, + { + "project": "Sugam Prakriti", + "config": "2BHK", + "budget_max": 7314081 + } + ], + "tasks": [], + "qd_overview": { + "intent_score": 0.905, + "urgency_score": 0.916, + "engagement_score": 0.831 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Chase for decision", + "Address objections" + ], + "lead_stage": "proposal_sent", + "lead_status": "active" + }, + { + "client_ref": "c7d5bdf5-021d-4601-ace5-bac5c9afeff6", + "snapshot_generated_at": "2026-04-18T11:07:56.246266", + "identity": { + "full_name": "Sumita Bhadra", + "primary_email": "sumita.bhadra343@gmail.com", + "primary_phone": "+91 9592971939", + "persona_labels": "[\"upgrade_seeker\", \"investment_focus\"]", + "buyer_type": "broker_referral" + }, + "account_links": [ + "be03af16-2569-467a-94bd-ce1027914660" + ], + "active_opportunities": [], + "recent_interactions": [ + { + "interaction_id": "c6c3ece2-888c-4568-bdbc-aae775f83281", + "channel": "site_visit", + "happened_at": "2026-04-12T11:07:56.245681" + }, + { + "interaction_id": "9461d5b0-9949-4b88-9c10-bd924d32dd00", + "channel": "site_visit", + "happened_at": "2026-03-27T11:07:56.245738" + }, + { + "interaction_id": "7dd944a9-f407-43c0-8f98-ddfec2b324c0", + "channel": "email", + "happened_at": "2026-03-07T11:07:56.245834" + }, + { + "interaction_id": "3bede6df-4c14-458f-aad1-5126d1d5cafa", + "channel": "email", + "happened_at": "2025-12-24T11:07:56.245711" + }, + { + "interaction_id": "9fa8ecf3-c12d-447b-9673-6b48a00be426", + "channel": "digital_ad", + "happened_at": "2025-12-12T11:07:56.245762" + } + ], + "property_interests": [ + { + "project": "DTC Good Earth", + "config": "2BHK", + "budget_max": 8442120 + }, + { + "project": "Godrej Elevate", + "config": "4BHK", + "budget_max": 13706101 + } + ], + "tasks": [], + "qd_overview": { + "intent_score": 0.647, + "urgency_score": 0.622, + "engagement_score": 0.755 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Send project brochure", + "Schedule site visit" + ], + "lead_stage": "inquiry", + "lead_status": "active" + }, + { + "client_ref": "ed37f35b-df5b-4efb-a0fd-1f0c2c33df93", + "snapshot_generated_at": "2026-04-18T11:07:56.246969", + "identity": { + "full_name": "Gopal Nair", + "primary_email": "gopal.nair325@outlook.com", + "primary_phone": "+91 9829860492", + "persona_labels": "[\"investment_focus\"]", + "buyer_type": "slow_burn_investor" + }, + "account_links": [ + "163d9a41-edb2-4b87-a032-08b339898377" + ], + "active_opportunities": [], + "recent_interactions": [ + { + "interaction_id": "772985b9-bbd0-403d-a0dd-a9dbfd1cf4ee", + "channel": "call", + "happened_at": "2026-04-01T11:07:56.246366" + }, + { + "interaction_id": "3a28c2b9-c531-4507-872e-4849e341799b", + "channel": "builder_event", + "happened_at": "2026-02-15T11:07:56.246494" + }, + { + "interaction_id": "98e40cb6-e645-410a-b7f0-973597713a2b", + "channel": "digital_ad", + "happened_at": "2025-12-30T11:07:56.246477" + }, + { + "interaction_id": "b51e4b88-bfff-4962-8bdb-4cece3ec91d5", + "channel": "digital_ad", + "happened_at": "2025-10-27T11:07:56.246455" + }, + { + "interaction_id": "f3439b22-9554-41db-ac0b-8ad3ef9eebe6", + "channel": "whatsapp", + "happened_at": "2025-10-06T11:07:56.246511" + } + ], + "property_interests": [ + { + "project": "DTC Sojon", + "config": "1BHK", + "budget_max": 7274976 + } + ], + "tasks": [ + "Nudge for final decision" + ], + "qd_overview": { + "intent_score": 0.473, + "urgency_score": 0.501, + "engagement_score": 0.546 + }, + "risk_flags": [ + "price_objection_raised", + "visit_completed_but_silent" + ], + "recommended_next_actions": [ + "Send project brochure", + "Schedule site visit" + ], + "lead_stage": "inquiry", + "lead_status": "active" + }, + { + "client_ref": "97a8886c-c0b8-4e7c-b4ff-10230e1731b7", + "snapshot_generated_at": "2026-04-18T11:07:56.247638", + "identity": { + "full_name": "Kaushik Gupta", + "primary_email": "kaushik.gupta400@hotmail.com", + "primary_phone": "+91 9140479361", + "persona_labels": "[\"value_seeker\"]", + "buyer_type": "family_decision_unit" + }, + "account_links": [ + "167e5af1-66b1-41c0-9a9d-42aa9b77a3a7" + ], + "active_opportunities": [ + { + "opportunity_id": "0f21f499-9c7b-46e6-bc3d-31e755e52a64", + "project": "Atri Aqua", + "stage": "qualified", + "value": 8433093 + } + ], + "recent_interactions": [ + { + "interaction_id": "9266f2a1-75f8-42ce-8b17-50fd8990d8b3", + "channel": "digital_ad", + "happened_at": "2026-03-02T11:07:56.247275" + }, + { + "interaction_id": "41ef22c7-28f8-48c5-9487-e51e3fe139a6", + "channel": "digital_ad", + "happened_at": "2025-12-08T11:07:56.247125" + }, + { + "interaction_id": "eab8ff54-f5d4-485b-b69d-c86060beb4bb", + "channel": "digital_ad", + "happened_at": "2025-11-28T11:07:56.247230" + }, + { + "interaction_id": "20495960-df94-4d45-bcc9-dac4c1bcac57", + "channel": "site_visit", + "happened_at": "2025-11-13T11:07:56.247247" + }, + { + "interaction_id": "a85669d2-b057-48cb-bb3f-7fe6b6142014", + "channel": "whatsapp", + "happened_at": "2025-11-10T11:07:56.247141" + } + ], + "property_interests": [ + { + "project": "Atri Aqua", + "config": "2BHK", + "budget_max": 7255132 + }, + { + "project": "Shriram Grand City", + "config": "4BHK", + "budget_max": 10613573 + } + ], + "tasks": [], + "qd_overview": { + "intent_score": 0.405, + "urgency_score": 0.532, + "engagement_score": 0.558 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Book site visit", + "Share payment plan" + ], + "lead_stage": "qualified", + "lead_status": "active" + }, + { + "client_ref": "fe9ff2fe-3587-48ed-8a6e-50b03df1220b", + "snapshot_generated_at": "2026-04-18T11:07:56.249796", + "identity": { + "full_name": "Anita Lahiri", + "primary_email": "anita.lahiri806@yahoo.com", + "primary_phone": "+91 9320623588", + "persona_labels": "[\"cash_rich_investor\", \"first_time_buyer\"]", + "buyer_type": "nri" + }, + "account_links": [ + "63cc313d-eb9d-4ad9-8502-e9dd330e5e0b" + ], + "active_opportunities": [ + { + "opportunity_id": "a7f186c4-cff5-40cd-aa34-81f9a6aebb6c", + "project": "Atri Surya Toron", + "stage": "negotiation", + "value": 6368089 + } + ], + "recent_interactions": [ + { + "interaction_id": "3c8655f1-5df3-4c65-a672-367c427502ed", + "channel": "whatsapp", + "happened_at": "2026-03-14T11:07:56.247802" + }, + { + "interaction_id": "b6c08b48-d7b1-4e6d-888d-1641552fc80e", + "channel": "builder_event", + "happened_at": "2026-02-17T11:07:56.247940" + }, + { + "interaction_id": "c102f4f3-2b48-411c-880c-e90ad4d9d9e3", + "channel": "digital_ad", + "happened_at": "2026-01-05T11:07:56.247923" + }, + { + "interaction_id": "0b20c621-bcce-4f00-95d3-19b322867b47", + "channel": "site_visit", + "happened_at": "2025-11-22T11:07:56.248035" + }, + { + "interaction_id": "337bc0a6-0c9c-48f3-870d-05f44d305f41", + "channel": "whatsapp", + "happened_at": "2025-11-22T11:07:56.247956" + } + ], + "property_interests": [ + { + "project": "Atri Surya Toron", + "config": "2BHK", + "budget_max": 8046476 + } + ], + "tasks": [], + "qd_overview": { + "intent_score": 0.635, + "urgency_score": 0.598, + "engagement_score": 0.613 + }, + "risk_flags": [ + "decision_stalled_at_family" + ], + "recommended_next_actions": [ + "Escalate to senior advisor", + "Prepare final offer" + ], + "lead_stage": "negotiation", + "lead_status": "active" + }, + { + "client_ref": "6009fa98-4f61-4279-a15b-629dc9d66bcc", + "snapshot_generated_at": "2026-04-18T11:07:56.250630", + "identity": { + "full_name": "Tapas Kapoor", + "primary_email": "tapas.kapoor358@rediffmail.com", + "primary_phone": "+91 9702163870", + "persona_labels": "[\"investment_focus\"]", + "buyer_type": "high_intent" + }, + "account_links": [], + "active_opportunities": [ + { + "opportunity_id": "fb2ed4ea-82b4-4717-bad3-0729f5e7b3e7", + "project": "Eden Devprayag", + "stage": "qualified", + "value": 9964557 + } + ], + "recent_interactions": [ + { + "interaction_id": "b978bf96-acd1-4f45-bb87-2ab5ef458d04", + "channel": "email", + "happened_at": "2026-03-03T11:07:56.250160" + }, + { + "interaction_id": "58a3931e-2658-4571-92f5-dbba1b620892", + "channel": "site_visit", + "happened_at": "2025-12-30T11:07:56.250081" + }, + { + "interaction_id": "9d7c9c65-cdbc-4792-bd18-f9d3c0666f4a", + "channel": "digital_ad", + "happened_at": "2025-12-18T11:07:56.250108" + }, + { + "interaction_id": "b07fcb0d-08d2-425a-9fea-aacadfeec65f", + "channel": "email", + "happened_at": "2025-11-14T11:07:56.250188" + }, + { + "interaction_id": "7cb4f847-a62c-4152-ac95-66be5c42380f", + "channel": "email", + "happened_at": "2025-10-10T11:07:56.250127" + } + ], + "property_interests": [ + { + "project": "Eden Devprayag", + "config": "2BHK", + "budget_max": 8457604 + } + ], + "tasks": [], + "qd_overview": { + "intent_score": 0.833, + "urgency_score": 0.744, + "engagement_score": 0.755 + }, + "risk_flags": [ + "repeated_no_show" + ], + "recommended_next_actions": [ + "Book site visit", + "Share payment plan" + ], + "lead_stage": "qualified", + "lead_status": "active" + }, + { + "client_ref": "35bd51d8-383e-47e9-b39b-4f6d19cccd32", + "snapshot_generated_at": "2026-04-18T11:07:56.251400", + "identity": { + "full_name": "Amitabha Sinha", + "primary_email": "amitabha.sinha47@outlook.com", + "primary_phone": "+91 8066145979", + "persona_labels": "[\"upgrade_seeker\"]", + "buyer_type": "nri" + }, + "account_links": [ + "50a26214-39cd-4e63-b551-acd26576c9d2" + ], + "active_opportunities": [ + { + "opportunity_id": "be8e0e58-4588-4722-80be-c0196f181871", + "project": "Ambuja Utpaala", + "stage": "negotiation", + "value": 15988794 + } + ], + "recent_interactions": [ + { + "interaction_id": "8d9b69cd-5fb0-488c-a2f9-5eb54f2ae19b", + "channel": "digital_ad", + "happened_at": "2026-02-22T11:07:56.250829" + }, + { + "interaction_id": "f85b72fd-fcc1-47fa-bd7a-d0646c78ada4", + "channel": "builder_event", + "happened_at": "2026-01-01T11:07:56.250862" + }, + { + "interaction_id": "b8e1bdf1-0590-427e-a8ac-3d9413e7cf13", + "channel": "referral", + "happened_at": "2025-11-02T11:07:56.250847" + }, + { + "interaction_id": "00b23a9f-67d6-4896-b3a8-4f79440b6c1e", + "channel": "builder_event", + "happened_at": "2025-11-01T11:07:56.250813" + }, + { + "interaction_id": "7c02e5bc-6146-479e-b5b7-6eaf996b0ecc", + "channel": "whatsapp", + "happened_at": "2025-10-30T11:07:56.250886" + } + ], + "property_interests": [ + { + "project": "Ambuja Utpaala", + "config": "3BHK", + "budget_max": 17498591 + } + ], + "tasks": [ + "Send festive offer", + "Confirm booking appointment" + ], + "qd_overview": { + "intent_score": 0.647, + "urgency_score": 0.706, + "engagement_score": 0.62 + }, + "risk_flags": [ + "decision_stalled_at_family" + ], + "recommended_next_actions": [ + "Escalate to senior advisor", + "Prepare final offer" + ], + "lead_stage": "negotiation", + "lead_status": "active" + }, + { + "client_ref": "4b6935f4-8c23-42d6-b0d2-d9da0c5e73df", + "snapshot_generated_at": "2026-04-18T11:07:56.252169", + "identity": { + "full_name": "Indranil Chatterjee", + "primary_email": "indranil.chatterjee181@outlook.com", + "primary_phone": "+91 7154941132", + "persona_labels": "[\"family_centric\"]", + "buyer_type": "repeat_visitor" + }, + "account_links": [ + "50a26214-39cd-4e63-b551-acd26576c9d2" + ], + "active_opportunities": [], + "recent_interactions": [ + { + "interaction_id": "705d02f4-449a-473a-9079-de67aae1aec7", + "channel": "call", + "happened_at": "2026-04-10T11:07:56.251609" + }, + { + "interaction_id": "e884eac8-848d-4327-b61a-b9dc0f723786", + "channel": "email", + "happened_at": "2026-04-07T11:07:56.251534" + }, + { + "interaction_id": "a7cd3b9c-abbc-4b91-aa06-2fb603764dc5", + "channel": "referral", + "happened_at": "2026-03-24T11:07:56.251564" + }, + { + "interaction_id": "e91e7714-7f2e-470b-a423-7f9229fc361c", + "channel": "builder_event", + "happened_at": "2026-01-31T11:07:56.251519" + }, + { + "interaction_id": "901e0c53-3469-4309-a323-54ac2431aae8", + "channel": "site_visit", + "happened_at": "2026-01-16T11:07:56.251583" + } + ], + "property_interests": [ + { + "project": "Atri Aqua", + "config": "2BHK", + "budget_max": 6147509 + }, + { + "project": "Atri Surya Toron", + "config": "3BHK", + "budget_max": 7623738 + }, + { + "project": "Eden Devprayag", + "config": "2BHK", + "budget_max": 9891104 + } + ], + "tasks": [ + "Check loan approval status" + ], + "qd_overview": { + "intent_score": 0.852, + "urgency_score": 0.83, + "engagement_score": 0.839 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Send project brochure", + "Schedule site visit" + ], + "lead_stage": "inquiry", + "lead_status": "active" + }, + { + "client_ref": "fa779639-4f0b-41ef-b2eb-eb0a9aa91f68", + "snapshot_generated_at": "2026-04-18T11:07:56.252957", + "identity": { + "full_name": "Rahul Nair", + "primary_email": "rahul.nair524@outlook.com", + "primary_phone": "+91 8586468654", + "persona_labels": "[\"emotional_buyer\"]", + "buyer_type": "price_sensitive" + }, + "account_links": [ + "a1de095a-529c-4d0a-9459-779ac5db4d88" + ], + "active_opportunities": [ + { + "opportunity_id": "b8b41ac4-e37a-442e-b4d2-dc5ca370e024", + "project": "Siddha Serena", + "stage": "site_visit_done", + "value": 5187031 + } + ], + "recent_interactions": [ + { + "interaction_id": "58c95c51-5bf4-4b5a-ae8f-6eebed1460ac", + "channel": "whatsapp", + "happened_at": "2026-04-09T11:07:56.252418" + }, + { + "interaction_id": "697cb180-0832-426a-b633-9ee6b51ab66e", + "channel": "builder_event", + "happened_at": "2026-03-10T11:07:56.252467" + }, + { + "interaction_id": "69e178d8-e149-434e-8720-b90da7116ad7", + "channel": "whatsapp", + "happened_at": "2026-03-05T11:07:56.252368" + }, + { + "interaction_id": "b2bb8bbf-cde1-4631-b84b-64156592a295", + "channel": "referral", + "happened_at": "2026-01-22T11:07:56.252533" + }, + { + "interaction_id": "a8b025cc-8af7-480e-abfc-f9806c60dabb", + "channel": "site_visit", + "happened_at": "2025-11-15T11:07:56.252485" + } + ], + "property_interests": [ + { + "project": "Siddha Serena", + "config": "3BHK", + "budget_max": 6938454 + }, + { + "project": "Siddha Suburbia Bungalow", + "config": "4BHK", + "budget_max": 15112925 + }, + { + "project": "Godrej Blue", + "config": "4BHK", + "budget_max": 12139096 + } + ], + "tasks": [ + "Send legal documents" + ], + "qd_overview": { + "intent_score": 0.45, + "urgency_score": 0.451, + "engagement_score": 0.446 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Follow up on impressions", + "Send updated price list" + ], + "lead_stage": "site_visit_done", + "lead_status": "active" + }, + { + "client_ref": "a585160b-415b-4a19-ab50-ba5b8ff09d85", + "snapshot_generated_at": "2026-04-18T11:07:56.253602", + "identity": { + "full_name": "Soumya Sen", + "primary_email": "soumya.sen591@hotmail.com", + "primary_phone": "+91 7662118483", + "persona_labels": "[\"nri_diaspora\"]", + "buyer_type": "family_decision_unit" + }, + "account_links": [ + "e890a796-925a-4c14-af19-67fc6360449a" + ], + "active_opportunities": [ + { + "opportunity_id": "f6a7c943-98e5-4443-a9f8-fd82da29751c", + "project": "Ambuja Utpaala", + "stage": "qualified", + "value": 9901576 + } + ], + "recent_interactions": [ + { + "interaction_id": "840ada02-d5b0-4a92-a591-64f6edc45ed7", + "channel": "site_visit", + "happened_at": "2026-04-06T11:07:56.253113" + }, + { + "interaction_id": "3ed4eed8-e4e5-4681-bced-af36d53bc587", + "channel": "digital_ad", + "happened_at": "2026-01-14T11:07:56.253211" + }, + { + "interaction_id": "d6d04352-d966-4ea9-976b-9c23c926cbe3", + "channel": "site_visit", + "happened_at": "2025-12-02T11:07:56.253228" + }, + { + "interaction_id": "a03e4200-084e-44aa-a6a7-78e812c479c9", + "channel": "whatsapp", + "happened_at": "2025-11-14T11:07:56.253139" + }, + { + "interaction_id": "0fdd217f-d485-40e5-b168-2bf379090f40", + "channel": "referral", + "happened_at": "2025-10-26T11:07:56.253272" + } + ], + "property_interests": [ + { + "project": "Ambuja Utpaala", + "config": "3BHK", + "budget_max": 10046833 + } + ], + "tasks": [], + "qd_overview": { + "intent_score": 0.645, + "urgency_score": 0.694, + "engagement_score": 0.621 + }, + "risk_flags": [], + "recommended_next_actions": [ + "Book site visit", + "Share payment plan" + ], + "lead_stage": "qualified", + "lead_status": "active" + }, + { + "client_ref": "e97e3094-6275-43ff-aae4-b86d97def829", + "snapshot_generated_at": "2026-04-18T11:07:56.254355", + "identity": { + "full_name": "Keya Dey", + "primary_email": "keya.dey825@company.com", + "primary_phone": "+91 7084267502", + "persona_labels": "[\"investment_focus\", \"family_centric\"]", + "buyer_type": "price_sensitive" + }, + "account_links": [ + "49fbf504-dd6b-4be1-a90d-d1a9d5acb417" + ], + "active_opportunities": [], + "recent_interactions": [ + { + "interaction_id": "f85298b8-89ba-41ee-b1a4-63d8886966c0", + "channel": "whatsapp", + "happened_at": "2026-03-18T11:07:56.253842" + }, + { + "interaction_id": "97372b97-1595-4c37-a713-11b477bcb98b", + "channel": "whatsapp", + "happened_at": "2026-02-09T11:07:56.253785" + }, + { + "interaction_id": "019115d3-f5d1-4c51-9f13-f63f4d22992d", + "channel": "email", + "happened_at": "2026-02-04T11:07:56.253755" + } + ], + "property_interests": [ + { + "project": "Atri Surya Toron", + "config": "2BHK", + "budget_max": 7901506 + }, + { + "project": "DTC Sojon", + "config": "2BHK", + "budget_max": 6227337 + }, + { + "project": "Siddha Suburbia Bungalow", + "config": "4BHK", + "budget_max": 18305617 + } + ], + "tasks": [ + "Confirm booking appointment", + "Confirm booking appointment", + "Send legal documents" + ], + "qd_overview": { + "intent_score": 0.622, + "urgency_score": 0.49, + "engagement_score": 0.489 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Send project brochure", + "Schedule site visit" + ], + "lead_stage": "inquiry", + "lead_status": "active" + }, + { + "client_ref": "a71616e1-459f-4cd4-ab08-6a7e12df51f0", + "snapshot_generated_at": "2026-04-18T11:07:56.255399", + "identity": { + "full_name": "Rajib Menon", + "primary_email": "rajib.menon779@gmail.com", + "primary_phone": "+91 8581234730", + "persona_labels": "[\"family_centric\", \"nri_diaspora\"]", + "buyer_type": "high_intent" + }, + "account_links": [ + "c64b5253-b5fb-4f37-b1aa-bd549cb7175f" + ], + "active_opportunities": [], + "recent_interactions": [ + { + "interaction_id": "d67220b1-d65e-4963-9723-804f6484f847", + "channel": "digital_ad", + "happened_at": "2026-03-09T11:07:56.254528" + }, + { + "interaction_id": "a576076e-a6fd-4df9-875a-648b918c906a", + "channel": "site_visit", + "happened_at": "2025-12-29T11:07:56.254504" + }, + { + "interaction_id": "5023d2d7-21c2-4126-b22e-8df7ea52a601", + "channel": "builder_event", + "happened_at": "2025-11-29T11:07:56.254487" + }, + { + "interaction_id": "a9d2634b-4807-49d7-b09d-63c58f505f2d", + "channel": "whatsapp", + "happened_at": "2025-10-11T11:07:56.254545" + } + ], + "property_interests": [ + { + "project": "Sugam Prakriti", + "config": "4BHK", + "budget_max": 11019247 + }, + { + "project": "Siddha Sky Waterfront", + "config": "3BHK", + "budget_max": 10594590 + }, + { + "project": "Siddha Serena", + "config": "2BHK", + "budget_max": 8470405 + } + ], + "tasks": [], + "qd_overview": { + "intent_score": 0.68, + "urgency_score": 0.705, + "engagement_score": 0.704 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Send project brochure", + "Schedule site visit" + ], + "lead_stage": "inquiry", + "lead_status": "active" + }, + { + "client_ref": "fb2c46b7-cf94-4801-9bb4-1b68b8a95e8c", + "snapshot_generated_at": "2026-04-18T11:07:56.256254", + "identity": { + "full_name": "Rahul Nair", + "primary_email": "rahul.nair305@gmail.com", + "primary_phone": "+91 8375147288", + "persona_labels": "[\"analytical_buyer\", \"nri_diaspora\", \"first_time_buyer\"]", + "buyer_type": "family_decision_unit" + }, + "account_links": [ + "719009b0-4ad2-4ab0-ab36-7144c1c43981" + ], + "active_opportunities": [ + { + "opportunity_id": "56ac7585-7b81-4581-8773-6da18028e6c5", + "project": "Ambuja Utpaala", + "stage": "proposal_sent", + "value": 12050852 + } + ], + "recent_interactions": [ + { + "interaction_id": "a38bc04c-7454-44a1-a3bc-3184211a53c3", + "channel": "call", + "happened_at": "2026-03-20T11:07:56.255637" + }, + { + "interaction_id": "a31ccf94-af03-49c8-9605-531127b14bd6", + "channel": "digital_ad", + "happened_at": "2026-02-12T11:07:56.255621" + }, + { + "interaction_id": "bb3a888d-715a-49f7-aabd-a805c66e1a77", + "channel": "digital_ad", + "happened_at": "2026-01-26T11:07:56.255781" + }, + { + "interaction_id": "290142b0-d7a5-477f-be83-9470f4a707a7", + "channel": "email", + "happened_at": "2025-12-25T11:07:56.255733" + }, + { + "interaction_id": "5a266be5-462c-4bbc-a260-5b895671dbae", + "channel": "digital_ad", + "happened_at": "2025-12-14T11:07:56.255766" + } + ], + "property_interests": [ + { + "project": "Ambuja Utpaala", + "config": "3BHK", + "budget_max": 12542297 + } + ], + "tasks": [ + "Confirm booking appointment", + "Check competitor comparison status" + ], + "qd_overview": { + "intent_score": 0.596, + "urgency_score": 0.673, + "engagement_score": 0.619 + }, + "risk_flags": [ + "price_objection_raised", + "visit_completed_but_silent" + ], + "recommended_next_actions": [ + "Chase for decision", + "Address objections" + ], + "lead_stage": "proposal_sent", + "lead_status": "active" + }, + { + "client_ref": "5fa5cbac-cf94-4510-809e-269928d995ae", + "snapshot_generated_at": "2026-04-18T11:07:56.257132", + "identity": { + "full_name": "Ajoy Ganguly", + "primary_email": "ajoy.ganguly793@yahoo.com", + "primary_phone": "+91 7677942904", + "persona_labels": "[\"upgrade_seeker\", \"status_buyer\", \"analytical_buyer\"]", + "buyer_type": "repeat_visitor" + }, + "account_links": [ + "9814396b-0d9f-4407-9116-799d6a7b359f" + ], + "active_opportunities": [ + { + "opportunity_id": "0c1191b6-d4aa-4e85-a781-5362c5f7739a", + "project": "Siddha Sky Waterfront", + "stage": "negotiation", + "value": 10602685 + } + ], + "recent_interactions": [ + { + "interaction_id": "7fc90765-16ba-451d-953f-82db4a27a35a", + "channel": "referral", + "happened_at": "2026-04-15T11:07:56.256724" + }, + { + "interaction_id": "249fdb20-9c70-49a9-b87d-266c742b2e90", + "channel": "site_visit", + "happened_at": "2026-03-10T11:07:56.256698" + }, + { + "interaction_id": "0bf22503-8f0c-4ccd-9144-0e5101a2932c", + "channel": "whatsapp", + "happened_at": "2026-02-10T11:07:56.256530" + }, + { + "interaction_id": "3c39e425-2be9-4120-a065-4e17140f26b1", + "channel": "email", + "happened_at": "2026-01-16T11:07:56.256501" + }, + { + "interaction_id": "b3a0f91a-e3d2-4113-9b4d-54f6902dbd17", + "channel": "email", + "happened_at": "2025-12-18T11:07:56.256669" + } + ], + "property_interests": [ + { + "project": "Siddha Sky Waterfront", + "config": "3BHK", + "budget_max": 19579431 + }, + { + "project": "DTC Sojon", + "config": "1BHK", + "budget_max": 5499869 + }, + { + "project": "Godrej Elevate", + "config": "3BHK", + "budget_max": 20559415 + } + ], + "tasks": [ + "Send festive offer" + ], + "qd_overview": { + "intent_score": 0.795, + "urgency_score": 0.786, + "engagement_score": 0.788 + }, + "risk_flags": [ + "multiple_project_comparisons", + "decision_stalled_at_family" + ], + "recommended_next_actions": [ + "Escalate to senior advisor", + "Prepare final offer" + ], + "lead_stage": "negotiation", + "lead_status": "active" + }, + { + "client_ref": "3df786c7-16b5-4dee-acfb-505416f32b00", + "snapshot_generated_at": "2026-04-18T11:07:56.257746", + "identity": { + "full_name": "Gautam Chowdhury", + "primary_email": "gautam.chowdhury54@hotmail.com", + "primary_phone": "+91 7250137320", + "persona_labels": "[\"upgrade_seeker\"]", + "buyer_type": "family_decision_unit" + }, + "account_links": [ + "a7feb56f-2752-4b6d-bde6-84f4be7b6b3d" + ], + "active_opportunities": [ + { + "opportunity_id": "c742594b-3261-4f26-9dc7-33778b3a216d", + "project": "Atri Surya Toron", + "stage": "site_visit_done", + "value": 5252061 + } + ], + "recent_interactions": [ + { + "interaction_id": "e882a7b2-9ee7-4a9a-8055-61be29a091d8", + "channel": "builder_event", + "happened_at": "2026-03-11T11:07:56.257395" + }, + { + "interaction_id": "4022c76f-1dce-4146-94e8-374d3b242074", + "channel": "referral", + "happened_at": "2026-03-06T11:07:56.257379" + }, + { + "interaction_id": "a947b7fd-42bf-46f3-b1f5-ff98d6b7b35c", + "channel": "referral", + "happened_at": "2026-01-15T11:07:56.257346" + }, + { + "interaction_id": "804f43af-6be7-4349-a64b-11bcaf3e7809", + "channel": "digital_ad", + "happened_at": "2025-11-23T11:07:56.257363" + } + ], + "property_interests": [ + { + "project": "Atri Surya Toron", + "config": "3BHK", + "budget_max": 8243257 + }, + { + "project": "Atri Aqua", + "config": "2BHK", + "budget_max": 6065302 + }, + { + "project": "Siddha Serena", + "config": "3BHK", + "budget_max": 5464978 + } + ], + "tasks": [], + "qd_overview": { + "intent_score": 0.471, + "urgency_score": 0.554, + "engagement_score": 0.475 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Follow up on impressions", + "Send updated price list" + ], + "lead_stage": "site_visit_done", + "lead_status": "active" + }, + { + "client_ref": "f84ceb99-3c0b-4608-bda9-32bb7941086f", + "snapshot_generated_at": "2026-04-18T11:07:56.258495", + "identity": { + "full_name": "Srija Trivedi", + "primary_email": "srija.trivedi693@company.com", + "primary_phone": "+91 9043241197", + "persona_labels": "[\"nri_diaspora\"]", + "buyer_type": "nri" + }, + "account_links": [ + "49fbf504-dd6b-4be1-a90d-d1a9d5acb417" + ], + "active_opportunities": [ + { + "opportunity_id": "b13575d1-bded-4733-8432-f0e86a728d07", + "project": "Siddha Sky Waterfront", + "stage": "qualified", + "value": 11748108 + } + ], + "recent_interactions": [ + { + "interaction_id": "37e2503a-0727-43d2-9d76-54ff3599a932", + "channel": "call", + "happened_at": "2026-03-26T11:07:56.257992" + }, + { + "interaction_id": "e8e81d1a-8ff8-40ad-a505-48248365951d", + "channel": "builder_event", + "happened_at": "2026-03-12T11:07:56.257869" + }, + { + "interaction_id": "c899e28b-e72f-487b-b6ed-df0121c9f75b", + "channel": "referral", + "happened_at": "2026-01-23T11:07:56.257932" + }, + { + "interaction_id": "5e377e1a-446c-447c-ac6f-e25533c0cae2", + "channel": "digital_ad", + "happened_at": "2026-01-22T11:07:56.258090" + }, + { + "interaction_id": "2484d6b6-b777-49bc-bf28-8969f5ac87fd", + "channel": "digital_ad", + "happened_at": "2025-12-25T11:07:56.257947" + } + ], + "property_interests": [ + { + "project": "Siddha Sky Waterfront", + "config": "3BHK", + "budget_max": 18652720 + } + ], + "tasks": [ + "Follow up after site visit", + "Confirm booking appointment" + ], + "qd_overview": { + "intent_score": 0.779, + "urgency_score": 0.8, + "engagement_score": 0.829 + }, + "risk_flags": [ + "no_follow_up_in_30_days" + ], + "recommended_next_actions": [ + "Book site visit", + "Share payment plan" + ], + "lead_stage": "qualified", + "lead_status": "active" + }, + { + "client_ref": "51ae5256-891c-4510-b217-e686dde6feb0", + "snapshot_generated_at": "2026-04-18T11:07:56.259761", + "identity": { + "full_name": "Debasmita Mehta", + "primary_email": "debasmita.mehta656@rediffmail.com", + "primary_phone": "+91 9015547903", + "persona_labels": "[\"upgrade_seeker\"]", + "buyer_type": "high_intent" + }, + "account_links": [ + "926a8c60-ae39-4028-a2cb-68f783fd2fe3" + ], + "active_opportunities": [ + { + "opportunity_id": "af1dae33-6d58-4ffd-b2a4-31920330a673", + "project": "Godrej Blue", + "stage": "booked", + "value": 10248424 + } + ], + "recent_interactions": [ + { + "interaction_id": "87e72f96-acd5-44f1-bd25-b50437365d05", + "channel": "referral", + "happened_at": "2026-04-01T11:07:56.258773" + }, + { + "interaction_id": "9bedc7b8-86eb-4272-a144-6d7f0832c0be", + "channel": "whatsapp", + "happened_at": "2026-02-19T11:07:56.258921" + }, + { + "interaction_id": "d9299922-f004-49c9-80a3-d10252789d8a", + "channel": "whatsapp", + "happened_at": "2025-12-01T11:07:56.258810" + }, + { + "interaction_id": "948ca596-06c5-4db4-83c1-46c6366a448a", + "channel": "referral", + "happened_at": "2025-11-24T11:07:56.259017" + }, + { + "interaction_id": "6fea78a3-db6e-4af9-856c-f77e7a4fe708", + "channel": "whatsapp", + "happened_at": "2025-11-09T11:07:56.259051" + } + ], + "property_interests": [ + { + "project": "Godrej Blue", + "config": "4BHK", + "budget_max": 8149288 + } + ], + "tasks": [ + "Send festive offer", + "Send festive offer" + ], + "qd_overview": { + "intent_score": 0.933, + "urgency_score": 0.926, + "engagement_score": 0.962 + }, + "risk_flags": [ + "decision_stalled_at_family", + "financing_uncertainty" + ], + "recommended_next_actions": [ + "Share loan documents", + "Introduce relationship manager" + ], + "lead_stage": "booked", + "lead_status": "active" + }, + { + "client_ref": "4effb632-b087-4e29-bab3-79fc7e69cebb", + "snapshot_generated_at": "2026-04-18T11:07:56.260685", + "identity": { + "full_name": "Moumita Halder", + "primary_email": "moumita.halder698@rediffmail.com", + "primary_phone": "+91 7946460898", + "persona_labels": "[\"family_centric\"]", + "buyer_type": "high_intent" + }, + "account_links": [ + "37aff800-e6b2-40fb-be5b-993814cd281a" + ], + "active_opportunities": [ + { + "opportunity_id": "38d8bc94-8386-4199-b603-57be765afe39", + "project": "Siddha Serena", + "stage": "proposal_sent", + "value": 6166906 + } + ], + "recent_interactions": [ + { + "interaction_id": "b3de6544-0602-4792-8612-4d62c2eb58f3", + "channel": "referral", + "happened_at": "2026-04-02T11:07:56.260032" + }, + { + "interaction_id": "ba9abcac-dd21-4666-8a9f-51bd1c0eff94", + "channel": "email", + "happened_at": "2025-12-01T11:07:56.260054" + }, + { + "interaction_id": "3b494625-c34f-4a13-b1c0-8b6c529cd728", + "channel": "digital_ad", + "happened_at": "2025-10-29T11:07:56.260092" + } + ], + "property_interests": [ + { + "project": "Siddha Serena", + "config": "3BHK", + "budget_max": 6044866 + }, + { + "project": "Godrej Elevate", + "config": "3BHK", + "budget_max": 18998193 + }, + { + "project": "Godrej Blue", + "config": "4BHK", + "budget_max": 10705348 + } + ], + "tasks": [ + "Follow up after site visit", + "Check loan approval status" + ], + "qd_overview": { + "intent_score": 1.0, + "urgency_score": 0.953, + "engagement_score": 0.936 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Chase for decision", + "Address objections" + ], + "lead_stage": "proposal_sent", + "lead_status": "active" + }, + { + "client_ref": "244a9979-9a8a-4748-b086-1e884057a974", + "snapshot_generated_at": "2026-04-18T11:07:56.261932", + "identity": { + "full_name": "Namrata Mitra", + "primary_email": "namrata.mitra613@outlook.com", + "primary_phone": "+91 9797489745", + "persona_labels": "[\"family_centric\"]", + "buyer_type": "high_intent" + }, + "account_links": [], + "active_opportunities": [ + { + "opportunity_id": "4c36e79a-2834-452d-8d7e-741cdd4489c1", + "project": "Siddha Sky Waterfront", + "stage": "booked", + "value": 15935731 + } + ], + "recent_interactions": [ + { + "interaction_id": "b73df29d-ab74-4bac-b2ad-0d06313d8e67", + "channel": "whatsapp", + "happened_at": "2026-03-08T11:07:56.261121" + }, + { + "interaction_id": "78312344-6b70-432b-8e6f-19c2b8812516", + "channel": "whatsapp", + "happened_at": "2026-02-19T11:07:56.261332" + }, + { + "interaction_id": "2ff97157-df96-4e34-a940-db21bb484c50", + "channel": "email", + "happened_at": "2026-02-19T11:07:56.261302" + }, + { + "interaction_id": "30dfcaaf-78e4-4fc5-a21d-4d5a3eda334c", + "channel": "builder_event", + "happened_at": "2026-02-19T11:07:56.260987" + }, + { + "interaction_id": "0154d907-2f09-4f6a-b752-c94a88ddf698", + "channel": "digital_ad", + "happened_at": "2026-02-18T11:07:56.261105" + } + ], + "property_interests": [ + { + "project": "Siddha Sky Waterfront", + "config": "3BHK", + "budget_max": 11715818 + } + ], + "tasks": [ + "Send legal documents", + "Check competitor comparison status" + ], + "qd_overview": { + "intent_score": 0.961, + "urgency_score": 0.955, + "engagement_score": 0.909 + }, + "risk_flags": [ + "competitor_visit_detected" + ], + "recommended_next_actions": [ + "Share loan documents", + "Introduce relationship manager" + ], + "lead_stage": "booked", + "lead_status": "active" + }, + { + "client_ref": "c7a2c895-83d6-471e-b6e0-e6b6f451a8c1", + "snapshot_generated_at": "2026-04-18T11:07:56.262716", + "identity": { + "full_name": "Anirban Ganguly", + "primary_email": "anirban.ganguly864@company.com", + "primary_phone": "+91 7481427953", + "persona_labels": "[\"nri_diaspora\"]", + "buyer_type": "high_intent" + }, + "account_links": [ + "c64b5253-b5fb-4f37-b1aa-bd549cb7175f" + ], + "active_opportunities": [ + { + "opportunity_id": "74f176fb-7ad4-4e2c-84cb-2dceba4c9b9c", + "project": "Siddha Serena", + "stage": "negotiation", + "value": 4887654 + } + ], + "recent_interactions": [ + { + "interaction_id": "cd1b7f0e-1352-493f-ac53-dd9d7b9fd368", + "channel": "call", + "happened_at": "2026-04-01T11:07:56.262132" + }, + { + "interaction_id": "ab0717fa-518b-4a4a-8cc7-9a19a38f0344", + "channel": "digital_ad", + "happened_at": "2026-03-25T11:07:56.262244" + }, + { + "interaction_id": "c2b1d666-858e-4157-a90e-e408e7fbc8ee", + "channel": "email", + "happened_at": "2026-01-25T11:07:56.262306" + }, + { + "interaction_id": "0a5b10c0-5806-4d7f-b455-035106d06b0e", + "channel": "referral", + "happened_at": "2025-12-05T11:07:56.262282" + }, + { + "interaction_id": "22c0b269-9724-4b43-8fb7-d1abf869d5b1", + "channel": "builder_event", + "happened_at": "2025-11-12T11:07:56.262265" + } + ], + "property_interests": [ + { + "project": "Siddha Serena", + "config": "3BHK", + "budget_max": 7131221 + }, + { + "project": "DTC Sojon", + "config": "3BHK", + "budget_max": 6227006 + } + ], + "tasks": [ + "Schedule meeting with senior advisor", + "Nudge for final decision", + "Check loan approval status" + ], + "qd_overview": { + "intent_score": 0.747, + "urgency_score": 0.805, + "engagement_score": 0.871 + }, + "risk_flags": [ + "multiple_project_comparisons", + "price_objection_raised" + ], + "recommended_next_actions": [ + "Escalate to senior advisor", + "Prepare final offer" + ], + "lead_stage": "negotiation", + "lead_status": "active" + }, + { + "client_ref": "4a6fc481-171b-4abb-a6e6-e42f33fef4eb", + "snapshot_generated_at": "2026-04-18T11:07:56.263624", + "identity": { + "full_name": "Deepak Bhadra", + "primary_email": "deepak.bhadra534@outlook.com", + "primary_phone": "+91 9700001252", + "persona_labels": "[\"nri_diaspora\", \"emotional_buyer\", \"analytical_buyer\"]", + "buyer_type": "high_intent" + }, + "account_links": [ + "ccc19201-7df7-4fb9-b3ad-d1eb1edf302c" + ], + "active_opportunities": [], + "recent_interactions": [ + { + "interaction_id": "cf7d4c38-666e-445f-809f-b52ae33719aa", + "channel": "digital_ad", + "happened_at": "2026-02-17T11:07:56.263150" + }, + { + "interaction_id": "ee23c85f-16de-4086-b1e6-897185aa1f9b", + "channel": "email", + "happened_at": "2026-02-14T11:07:56.262966" + }, + { + "interaction_id": "bdd064f0-6233-42ee-9504-7c389f089524", + "channel": "whatsapp", + "happened_at": "2026-01-23T11:07:56.262882" + }, + { + "interaction_id": "42377c1e-1622-450f-add3-c2716814c981", + "channel": "referral", + "happened_at": "2026-01-11T11:07:56.263022" + }, + { + "interaction_id": "0f6f110f-a7c5-462d-a8a3-c730f326eebd", + "channel": "digital_ad", + "happened_at": "2026-01-03T11:07:56.263037" + } + ], + "property_interests": [ + { + "project": "Ambuja Utpaala", + "config": "4BHK", + "budget_max": 11524374 + }, + { + "project": "Shriram Grand City", + "config": "4BHK", + "budget_max": 7943085 + }, + { + "project": "Siddha Sky Waterfront", + "config": "4BHK", + "budget_max": 19474209 + } + ], + "tasks": [ + "Share updated price list", + "Schedule meeting with senior advisor" + ], + "qd_overview": { + "intent_score": 0.82, + "urgency_score": 0.951, + "engagement_score": 0.932 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Send project brochure", + "Schedule site visit" + ], + "lead_stage": "inquiry", + "lead_status": "active" + }, + { + "client_ref": "e82236c4-37c3-4536-9f7a-578b3980be16", + "snapshot_generated_at": "2026-04-18T11:07:56.264513", + "identity": { + "full_name": "Keya Mukherjee", + "primary_email": "keya.mukherjee570@company.com", + "primary_phone": "+91 7732175784", + "persona_labels": "[\"investment_focus\", \"nri_diaspora\"]", + "buyer_type": "nri" + }, + "account_links": [ + "83abc8f7-37e5-473d-805e-2f5b39cde2af" + ], + "active_opportunities": [ + { + "opportunity_id": "b2a5573a-d3cf-4f15-9d5a-5be4f56abcea", + "project": "Ambuja Utpaala", + "stage": "proposal_sent", + "value": 12894082 + } + ], + "recent_interactions": [ + { + "interaction_id": "29f07a29-3e12-431d-a758-442670deeb78", + "channel": "referral", + "happened_at": "2026-03-30T11:07:56.264004" + }, + { + "interaction_id": "676d0c60-8eed-465d-a767-e6f97f672e81", + "channel": "referral", + "happened_at": "2026-03-29T11:07:56.263847" + }, + { + "interaction_id": "55baf53d-bf28-4387-8930-c21ddc78f420", + "channel": "call", + "happened_at": "2026-03-26T11:07:56.263901" + }, + { + "interaction_id": "e1da319c-f4a0-4e2f-b8fc-7d5b923ab15c", + "channel": "email", + "happened_at": "2026-02-23T11:07:56.263865" + }, + { + "interaction_id": "cbef7dfc-72b6-43ac-8014-71fc2a731800", + "channel": "digital_ad", + "happened_at": "2026-02-12T11:07:56.263984" + } + ], + "property_interests": [ + { + "project": "Ambuja Utpaala", + "config": "4BHK", + "budget_max": 12951420 + }, + { + "project": "Atri Surya Toron", + "config": "2BHK", + "budget_max": 5649922 + } + ], + "tasks": [], + "qd_overview": { + "intent_score": 0.766, + "urgency_score": 0.72, + "engagement_score": 0.774 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Chase for decision", + "Address objections" + ], + "lead_stage": "proposal_sent", + "lead_status": "active" + }, + { + "client_ref": "3c2e2060-a178-471a-8fd1-3c1a0652bac9", + "snapshot_generated_at": "2026-04-18T11:07:56.265347", + "identity": { + "full_name": "Rekha Karmakar", + "primary_email": "rekha.karmakar427@gmail.com", + "primary_phone": "+91 9178413452", + "persona_labels": "[\"status_buyer\", \"cash_rich_investor\", \"upgrade_seeker\"]", + "buyer_type": "family_decision_unit" + }, + "account_links": [ + "283303e6-6a31-4582-8839-6075a7675ffb" + ], + "active_opportunities": [ + { + "opportunity_id": "b31d0178-06c5-486d-b828-0f1f8baaf120", + "project": "Shriram Grand City", + "stage": "site_visit_done", + "value": 7820078 + } + ], + "recent_interactions": [ + { + "interaction_id": "8c30ab4d-3161-4233-952a-a084ed6c7482", + "channel": "site_visit", + "happened_at": "2026-04-17T11:07:56.264859" + }, + { + "interaction_id": "dcd80dc3-2f5a-4b0c-9626-7c0d78ea45f2", + "channel": "digital_ad", + "happened_at": "2026-03-08T11:07:56.264778" + }, + { + "interaction_id": "4f76b904-4aca-4bca-ad33-9615b6ccdbf0", + "channel": "referral", + "happened_at": "2026-02-24T11:07:56.264892" + }, + { + "interaction_id": "586eadf7-610e-4328-b0c3-ae2c51ee2edc", + "channel": "email", + "happened_at": "2026-01-26T11:07:56.264829" + }, + { + "interaction_id": "dd0a831f-8e27-4ef9-bb8a-b717a1af36c4", + "channel": "referral", + "happened_at": "2025-11-28T11:07:56.264796" + } + ], + "property_interests": [ + { + "project": "Shriram Grand City", + "config": "3BHK", + "budget_max": 10710807 + } + ], + "tasks": [ + "Send legal documents" + ], + "qd_overview": { + "intent_score": 0.483, + "urgency_score": 0.544, + "engagement_score": 0.451 + }, + "risk_flags": [ + "financing_uncertainty", + "repeated_no_show" + ], + "recommended_next_actions": [ + "Follow up on impressions", + "Send updated price list" + ], + "lead_stage": "site_visit_done", + "lead_status": "active" + }, + { + "client_ref": "39f6934c-4c4d-4797-bc27-98da25581bd0", + "snapshot_generated_at": "2026-04-18T11:07:56.266095", + "identity": { + "full_name": "Paulami Bhadra", + "primary_email": "paulami.bhadra527@hotmail.com", + "primary_phone": "+91 8375343611", + "persona_labels": "[\"analytical_buyer\", \"first_time_buyer\"]", + "buyer_type": "high_intent" + }, + "account_links": [ + "283303e6-6a31-4582-8839-6075a7675ffb" + ], + "active_opportunities": [ + { + "opportunity_id": "fd69daf6-04f4-4c8e-a4d4-389e81b1c962", + "project": "Sugam Prakriti", + "stage": "proposal_sent", + "value": 9274426 + } + ], + "recent_interactions": [ + { + "interaction_id": "8314e414-a056-440e-89f2-ada046a36fd1", + "channel": "site_visit", + "happened_at": "2026-01-18T11:07:56.265537" + }, + { + "interaction_id": "daad7db0-3e7b-4191-b91b-3fb7438fa34b", + "channel": "whatsapp", + "happened_at": "2025-11-03T11:07:56.265565" + }, + { + "interaction_id": "730433fd-fe21-4a5d-8aca-8939486b7d45", + "channel": "digital_ad", + "happened_at": "2025-10-22T11:07:56.265616" + }, + { + "interaction_id": "585668d0-5d65-4040-8fd1-54050f60e481", + "channel": "call", + "happened_at": "2025-10-09T11:07:56.265635" + } + ], + "property_interests": [ + { + "project": "Sugam Prakriti", + "config": "2BHK", + "budget_max": 11802038 + }, + { + "project": "Atri Aqua", + "config": "2BHK", + "budget_max": 6151593 + } + ], + "tasks": [], + "qd_overview": { + "intent_score": 0.843, + "urgency_score": 0.895, + "engagement_score": 0.819 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Chase for decision", + "Address objections" + ], + "lead_stage": "proposal_sent", + "lead_status": "active" + }, + { + "client_ref": "c3025e16-80a8-4fc0-8a85-89588583360f", + "snapshot_generated_at": "2026-04-18T11:07:56.267013", + "identity": { + "full_name": "Ajoy Chatterjee", + "primary_email": "ajoy.chatterjee471@gmail.com", + "primary_phone": "+91 9017311405", + "persona_labels": "[\"family_centric\", \"first_time_buyer\", \"upgrade_seeker\"]", + "buyer_type": "family_decision_unit" + }, + "account_links": [ + "98ccca21-7413-4609-9b7b-c93f5ee87ff8" + ], + "active_opportunities": [ + { + "opportunity_id": "44952ff6-4fa0-4fd6-8586-4ec067104bf6", + "project": "Siddha Serena", + "stage": "proposal_sent", + "value": 7700835 + } + ], + "recent_interactions": [ + { + "interaction_id": "6f919b91-2f95-45ba-94d2-cc8310525c91", + "channel": "call", + "happened_at": "2026-03-26T11:07:56.266518" + }, + { + "interaction_id": "6507d77a-bd34-4286-b115-b354f63a8c70", + "channel": "call", + "happened_at": "2026-02-11T11:07:56.266431" + }, + { + "interaction_id": "82fd9942-c9ff-4808-bc74-634a6715504f", + "channel": "site_visit", + "happened_at": "2026-01-06T11:07:56.266321" + }, + { + "interaction_id": "6753e251-49b8-484a-9f04-bb7ee540cc6c", + "channel": "email", + "happened_at": "2025-12-27T11:07:56.266591" + }, + { + "interaction_id": "a5069d99-523e-4507-b598-8cd739b70cff", + "channel": "whatsapp", + "happened_at": "2025-09-30T11:07:56.266352" + } + ], + "property_interests": [ + { + "project": "Siddha Serena", + "config": "3BHK", + "budget_max": 8401207 + }, + { + "project": "Godrej Blue", + "config": "3BHK", + "budget_max": 8318688 + } + ], + "tasks": [ + "Check competitor comparison status" + ], + "qd_overview": { + "intent_score": 0.418, + "urgency_score": 0.517, + "engagement_score": 0.547 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Chase for decision", + "Address objections" + ], + "lead_stage": "proposal_sent", + "lead_status": "active" + }, + { + "client_ref": "daef8550-8c49-4623-8e03-36150d67c873", + "snapshot_generated_at": "2026-04-18T11:07:56.267795", + "identity": { + "full_name": "Aditya Mondal", + "primary_email": "aditya.mondal54@outlook.com", + "primary_phone": "+91 9884585883", + "persona_labels": "[\"first_time_buyer\", \"value_seeker\"]", + "buyer_type": "broker_referral" + }, + "account_links": [ + "d0f173da-010e-43de-b222-8535c26cfcfc" + ], + "active_opportunities": [ + { + "opportunity_id": "4dae87ff-1473-4263-b233-f0c4ad5fcf1b", + "project": "Godrej Blue", + "stage": "qualified", + "value": 9925763 + } + ], + "recent_interactions": [ + { + "interaction_id": "a7f2de15-5862-4bbb-8a7d-e0c4363bc321", + "channel": "call", + "happened_at": "2026-03-21T11:07:56.267253" + }, + { + "interaction_id": "80879a4e-b137-41d9-a595-f1014bd03bcb", + "channel": "referral", + "happened_at": "2026-01-30T11:07:56.267349" + }, + { + "interaction_id": "8781d9d7-a049-409b-a86f-286f91ea00fe", + "channel": "digital_ad", + "happened_at": "2026-01-10T11:07:56.267331" + }, + { + "interaction_id": "27e50ba0-0b27-4da8-912a-613c6c76638c", + "channel": "builder_event", + "happened_at": "2025-10-12T11:07:56.267235" + } + ], + "property_interests": [ + { + "project": "Godrej Blue", + "config": "4BHK", + "budget_max": 11892345 + } + ], + "tasks": [ + "Confirm booking appointment", + "Schedule meeting with senior advisor" + ], + "qd_overview": { + "intent_score": 0.643, + "urgency_score": 0.553, + "engagement_score": 0.607 + }, + "risk_flags": [ + "repeated_no_show", + "no_follow_up_in_30_days" + ], + "recommended_next_actions": [ + "Book site visit", + "Share payment plan" + ], + "lead_stage": "qualified", + "lead_status": "active" + }, + { + "client_ref": "22966ec8-24b7-4629-9a19-95b3e8511322", + "snapshot_generated_at": "2026-04-18T11:07:56.268545", + "identity": { + "full_name": "Namrata Kundu", + "primary_email": "namrata.kundu60@yahoo.com", + "primary_phone": "+91 8707523548", + "persona_labels": "[\"emotional_buyer\"]", + "buyer_type": "repeat_visitor" + }, + "account_links": [ + "da6384f9-5476-458c-8783-68c3219c1706" + ], + "active_opportunities": [ + { + "opportunity_id": "b27c4853-07fe-4809-bbe9-a737f0c4c8e9", + "project": "DTC Sojon", + "stage": "qualified", + "value": 5241092 + } + ], + "recent_interactions": [ + { + "interaction_id": "c867f16d-37ba-4e0e-bcff-d2a246927f46", + "channel": "builder_event", + "happened_at": "2026-02-01T11:07:56.268032" + }, + { + "interaction_id": "5c94c3d4-4439-49c1-b8a0-2034f74cc960", + "channel": "whatsapp", + "happened_at": "2026-01-23T11:07:56.267958" + }, + { + "interaction_id": "0172129e-d2f7-438c-bc90-765c759ea83b", + "channel": "referral", + "happened_at": "2026-01-11T11:07:56.268012" + }, + { + "interaction_id": "63fe43ab-50bd-42a3-b26d-325e1ff427d4", + "channel": "referral", + "happened_at": "2025-10-30T11:07:56.268052" + } + ], + "property_interests": [ + { + "project": "DTC Sojon", + "config": "3BHK", + "budget_max": 5789132 + } + ], + "tasks": [], + "qd_overview": { + "intent_score": 0.638, + "urgency_score": 0.675, + "engagement_score": 0.657 + }, + "risk_flags": [ + "financing_uncertainty" + ], + "recommended_next_actions": [ + "Book site visit", + "Share payment plan" + ], + "lead_stage": "qualified", + "lead_status": "active" + }, + { + "client_ref": "87a3794a-c9ad-4f8b-9a15-aa5732f11f0b", + "snapshot_generated_at": "2026-04-18T11:07:56.269547", + "identity": { + "full_name": "Madhumita Joshi", + "primary_email": "madhumita.joshi216@company.com", + "primary_phone": "+91 7599155335", + "persona_labels": "[\"investment_focus\", \"emotional_buyer\"]", + "buyer_type": "family_decision_unit" + }, + "account_links": [ + "680245f4-619c-40a1-90ff-c098cccf2f41" + ], + "active_opportunities": [ + { + "opportunity_id": "90575c4b-b699-4489-b3b6-83430f3c34c7", + "project": "Sugam Prakriti", + "stage": "site_visit_done", + "value": 7470341 + } + ], + "recent_interactions": [ + { + "interaction_id": "578d74ac-8171-4cc3-87c5-d8d4f7a25e3c", + "channel": "referral", + "happened_at": "2026-01-22T11:07:56.268918" + }, + { + "interaction_id": "726c2dfe-c2ef-40b1-a2da-19ef31c2ecb2", + "channel": "call", + "happened_at": "2026-01-20T11:07:56.268955" + }, + { + "interaction_id": "25a71620-e533-44ca-8a95-ab9ddd03523f", + "channel": "call", + "happened_at": "2025-12-31T11:07:56.268821" + }, + { + "interaction_id": "ac3c1097-5646-4f68-b448-092a7768dd87", + "channel": "site_visit", + "happened_at": "2025-12-29T11:07:56.268797" + }, + { + "interaction_id": "51325064-1527-4fe5-ae5c-ae8165116491", + "channel": "digital_ad", + "happened_at": "2025-12-19T11:07:56.268935" + } + ], + "property_interests": [ + { + "project": "Sugam Prakriti", + "config": "3BHK", + "budget_max": 8677333 + } + ], + "tasks": [], + "qd_overview": { + "intent_score": 0.62, + "urgency_score": 0.65, + "engagement_score": 0.585 + }, + "risk_flags": [], + "recommended_next_actions": [ + "Follow up on impressions", + "Send updated price list" + ], + "lead_stage": "site_visit_done", + "lead_status": "active" + }, + { + "client_ref": "8eb4a236-666b-4176-84d2-361b9e6d9fd1", + "snapshot_generated_at": "2026-04-18T11:07:56.270390", + "identity": { + "full_name": "Chandan Paul", + "primary_email": "chandan.paul346@company.com", + "primary_phone": "+91 7413077604", + "persona_labels": "[\"emotional_buyer\"]", + "buyer_type": "high_intent" + }, + "account_links": [ + "0d840fb4-dbe4-4fba-b4a7-01aff24a3e15" + ], + "active_opportunities": [ + { + "opportunity_id": "4e233f13-9976-4165-9840-6d2c0cd749cf", + "project": "Siddha Suburbia Bungalow", + "stage": "negotiation", + "value": 22450134 + } + ], + "recent_interactions": [ + { + "interaction_id": "96f7020e-782a-4344-a409-c20fe3eef829", + "channel": "whatsapp", + "happened_at": "2026-04-09T11:07:56.269946" + }, + { + "interaction_id": "28ee2c3e-4bf4-4cfb-bf05-616f481eee1b", + "channel": "site_visit", + "happened_at": "2026-03-21T11:07:56.269917" + }, + { + "interaction_id": "dfefcd5a-137b-4178-9250-c5a537e8dbbc", + "channel": "digital_ad", + "happened_at": "2026-01-17T11:07:56.269899" + }, + { + "interaction_id": "d27b636d-dd06-4dfc-bd3a-18cce5a7c18a", + "channel": "call", + "happened_at": "2025-12-22T11:07:56.269801" + }, + { + "interaction_id": "7884ce80-01ca-40fd-82c9-b9b09352b7e6", + "channel": "site_visit", + "happened_at": "2025-12-17T11:07:56.270014" + } + ], + "property_interests": [ + { + "project": "Siddha Suburbia Bungalow", + "config": "5BHK", + "budget_max": 26898829 + } + ], + "tasks": [ + "Re-engage after 2 weeks silence" + ], + "qd_overview": { + "intent_score": 0.833, + "urgency_score": 0.921, + "engagement_score": 0.919 + }, + "risk_flags": [ + "decision_stalled_at_family" + ], + "recommended_next_actions": [ + "Escalate to senior advisor", + "Prepare final offer" + ], + "lead_stage": "negotiation", + "lead_status": "active" + }, + { + "client_ref": "14a4b8c2-35b4-4702-98c4-72fdf8acaf49", + "snapshot_generated_at": "2026-04-18T11:07:56.271278", + "identity": { + "full_name": "Sudipta Rao", + "primary_email": "sudipta.rao466@gmail.com", + "primary_phone": "+91 7263771706", + "persona_labels": "[\"value_seeker\", \"analytical_buyer\", \"status_buyer\"]", + "buyer_type": "price_sensitive" + }, + "account_links": [ + "ccc19201-7df7-4fb9-b3ad-d1eb1edf302c" + ], + "active_opportunities": [ + { + "opportunity_id": "019965a8-03da-49d3-a5c7-9f4bfe0c8b42", + "project": "Godrej Blue", + "stage": "proposal_sent", + "value": 10284876 + } + ], + "recent_interactions": [ + { + "interaction_id": "132d4bba-5384-405e-a46d-70c182d1ea70", + "channel": "call", + "happened_at": "2026-02-15T11:07:56.270560" + }, + { + "interaction_id": "86b2bb5f-ce18-41fe-9792-e22c66e572ac", + "channel": "referral", + "happened_at": "2026-02-05T11:07:56.270725" + }, + { + "interaction_id": "0eda785e-c2ee-424a-a695-9367b65ed1a5", + "channel": "builder_event", + "happened_at": "2025-12-06T11:07:56.270808" + }, + { + "interaction_id": "64b35d8a-6a27-4bf3-aee7-b24e1aacea9a", + "channel": "builder_event", + "happened_at": "2025-12-06T11:07:56.270742" + }, + { + "interaction_id": "4a317b24-94a0-44ae-bc35-d7ef74613c76", + "channel": "email", + "happened_at": "2025-11-18T11:07:56.270774" + } + ], + "property_interests": [ + { + "project": "Godrej Blue", + "config": "2BHK", + "budget_max": 8741305 + }, + { + "project": "Siddha Serena", + "config": "2BHK", + "budget_max": 7948750 + }, + { + "project": "DTC Good Earth", + "config": "2BHK", + "budget_max": 7596217 + } + ], + "tasks": [], + "qd_overview": { + "intent_score": 0.571, + "urgency_score": 0.491, + "engagement_score": 0.605 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Chase for decision", + "Address objections" + ], + "lead_stage": "proposal_sent", + "lead_status": "active" + }, + { + "client_ref": "4ad9e38c-3df8-4f08-9268-bc9994d47822", + "snapshot_generated_at": "2026-04-18T11:07:56.272065", + "identity": { + "full_name": "Subhro Banerjee", + "primary_email": "subhro.banerjee161@yahoo.com", + "primary_phone": "+91 7066185685", + "persona_labels": "[\"analytical_buyer\"]", + "buyer_type": "high_intent" + }, + "account_links": [ + "e890a796-925a-4c14-af19-67fc6360449a" + ], + "active_opportunities": [ + { + "opportunity_id": "92d2880d-cdaa-4097-b3ee-c9804a3dda23", + "project": "DTC Good Earth", + "stage": "qualified", + "value": 6509612 + } + ], + "recent_interactions": [ + { + "interaction_id": "a3f887d8-5ca6-42c6-a38a-e9401ff28655", + "channel": "whatsapp", + "happened_at": "2026-04-01T11:07:56.271545" + }, + { + "interaction_id": "2b536ad6-d66e-48be-aa41-472f1dce93e2", + "channel": "call", + "happened_at": "2026-02-03T11:07:56.271449" + }, + { + "interaction_id": "b380c2ab-df86-4b10-8c8d-66cd99331a91", + "channel": "referral", + "happened_at": "2026-01-22T11:07:56.271527" + }, + { + "interaction_id": "da6739df-e854-44b8-9b1b-1a883397250e", + "channel": "site_visit", + "happened_at": "2025-10-15T11:07:56.271646" + } + ], + "property_interests": [ + { + "project": "DTC Good Earth", + "config": "3BHK", + "budget_max": 7101175 + }, + { + "project": "Merlin Avana", + "config": "3BHK", + "budget_max": 16890657 + } + ], + "tasks": [ + "Check competitor comparison status" + ], + "qd_overview": { + "intent_score": 0.796, + "urgency_score": 0.82, + "engagement_score": 0.762 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Book site visit", + "Share payment plan" + ], + "lead_stage": "qualified", + "lead_status": "active" + }, + { + "client_ref": "353e3bfb-b36b-4344-95b7-22903035914e", + "snapshot_generated_at": "2026-04-18T11:07:56.273059", + "identity": { + "full_name": "Shalini Kapoor", + "primary_email": "shalini.kapoor710@company.com", + "primary_phone": "+91 7239635531", + "persona_labels": "[\"value_seeker\", \"status_buyer\", \"cash_rich_investor\"]", + "buyer_type": "high_intent" + }, + "account_links": [ + "37aff800-e6b2-40fb-be5b-993814cd281a" + ], + "active_opportunities": [ + { + "opportunity_id": "1c961adf-6ab5-45f8-829b-e9e6f6dd63eb", + "project": "Merlin Avana", + "stage": "proposal_sent", + "value": 15636996 + } + ], + "recent_interactions": [ + { + "interaction_id": "b4a46022-8062-4998-97c3-693097869e51", + "channel": "email", + "happened_at": "2026-04-06T11:07:56.272350" + }, + { + "interaction_id": "1051ba79-b3ef-4597-8c8a-00ac2a1ec0e3", + "channel": "digital_ad", + "happened_at": "2026-01-11T11:07:56.272253" + }, + { + "interaction_id": "0e2b70fa-867d-4ef9-bdf1-6b70b11aa671", + "channel": "email", + "happened_at": "2025-12-13T11:07:56.272648" + }, + { + "interaction_id": "adedde1d-1a15-4e45-be2c-d15de697d523", + "channel": "whatsapp", + "happened_at": "2025-12-09T11:07:56.272502" + }, + { + "interaction_id": "dbc0d090-f159-44c4-b680-7de663f102b8", + "channel": "email", + "happened_at": "2025-12-03T11:07:56.272620" + } + ], + "property_interests": [ + { + "project": "Merlin Avana", + "config": "3BHK", + "budget_max": 14308145 + } + ], + "tasks": [ + "Send festive offer", + "Confirm booking appointment", + "Confirm booking appointment" + ], + "qd_overview": { + "intent_score": 0.942, + "urgency_score": 0.952, + "engagement_score": 0.947 + }, + "risk_flags": [ + "price_objection_raised", + "financing_uncertainty" + ], + "recommended_next_actions": [ + "Chase for decision", + "Address objections" + ], + "lead_stage": "proposal_sent", + "lead_status": "active" + }, + { + "client_ref": "59cfe1e2-da23-44bc-bb2f-03554c1c1b6c", + "snapshot_generated_at": "2026-04-18T11:07:56.274010", + "identity": { + "full_name": "Kaushik Kapoor", + "primary_email": "kaushik.kapoor99@rediffmail.com", + "primary_phone": "+91 8002166856", + "persona_labels": "[\"analytical_buyer\", \"upgrade_seeker\"]", + "buyer_type": "slow_burn_investor" + }, + "account_links": [ + "167e5af1-66b1-41c0-9a9d-42aa9b77a3a7" + ], + "active_opportunities": [ + { + "opportunity_id": "4125b99c-7948-4296-b8d6-fbca38ec1473", + "project": "Siddha Suburbia Bungalow", + "stage": "qualified", + "value": 18305729 + } + ], + "recent_interactions": [ + { + "interaction_id": "994a569c-23e9-42dc-a7eb-8b1828609113", + "channel": "email", + "happened_at": "2026-03-03T11:07:56.273413" + }, + { + "interaction_id": "0412c8dd-6aa5-4054-92f0-744a3f54d792", + "channel": "digital_ad", + "happened_at": "2025-12-23T11:07:56.273316" + }, + { + "interaction_id": "8421c958-00fe-4bcd-93bb-3597b4641f1e", + "channel": "call", + "happened_at": "2025-11-29T11:07:56.273332" + }, + { + "interaction_id": "c802ab64-e539-437e-88aa-1ed41bd57391", + "channel": "referral", + "happened_at": "2025-11-22T11:07:56.273300" + }, + { + "interaction_id": "eab7db60-a683-4708-a9c7-315b9940be19", + "channel": "builder_event", + "happened_at": "2025-11-15T11:07:56.273283" + } + ], + "property_interests": [ + { + "project": "Siddha Suburbia Bungalow", + "config": "5BHK", + "budget_max": 14233560 + }, + { + "project": "DTC Good Earth", + "config": "3BHK", + "budget_max": 6494402 + }, + { + "project": "Shriram Grand City", + "config": "2BHK", + "budget_max": 6052462 + } + ], + "tasks": [ + "Send festive offer", + "Check loan approval status", + "Confirm booking appointment" + ], + "qd_overview": { + "intent_score": 0.406, + "urgency_score": 0.478, + "engagement_score": 0.501 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Book site visit", + "Share payment plan" + ], + "lead_stage": "qualified", + "lead_status": "active" + }, + { + "client_ref": "edda883a-94f1-4a27-a38e-beea683f8b42", + "snapshot_generated_at": "2026-04-18T11:07:56.274804", + "identity": { + "full_name": "Sumanta Nair", + "primary_email": "sumanta.nair805@rediffmail.com", + "primary_phone": "+91 9446432124", + "persona_labels": "[\"nri_diaspora\", \"first_time_buyer\"]", + "buyer_type": "slow_burn_investor" + }, + "account_links": [ + "3ee6687a-9fa3-428d-97da-4a73cc843273" + ], + "active_opportunities": [ + { + "opportunity_id": "390608a0-86cc-44a6-89d6-e96f0d19d984", + "project": "Atri Aqua", + "stage": "proposal_sent", + "value": 8686534 + } + ], + "recent_interactions": [ + { + "interaction_id": "80f09372-e35b-461b-950a-2ccbfc79a8d3", + "channel": "email", + "happened_at": "2026-02-04T11:07:56.274357" + }, + { + "interaction_id": "adba15d4-407d-4794-b87c-eafb50dc4c1d", + "channel": "email", + "happened_at": "2025-11-18T11:07:56.274297" + }, + { + "interaction_id": "a1b1d734-a58f-4403-845f-9cda35337389", + "channel": "digital_ad", + "happened_at": "2025-10-28T11:07:56.274341" + }, + { + "interaction_id": "105168bd-9b5c-46c9-98ba-322f8bd35d9b", + "channel": "digital_ad", + "happened_at": "2025-10-02T11:07:56.274276" + } + ], + "property_interests": [ + { + "project": "Atri Aqua", + "config": "2BHK", + "budget_max": 9349503 + }, + { + "project": "Siddha Suburbia Bungalow", + "config": "4BHK", + "budget_max": 15787978 + } + ], + "tasks": [], + "qd_overview": { + "intent_score": 0.455, + "urgency_score": 0.457, + "engagement_score": 0.387 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Chase for decision", + "Address objections" + ], + "lead_stage": "proposal_sent", + "lead_status": "active" + }, + { + "client_ref": "67852f87-f29a-497d-b2e8-20995b252cd9", + "snapshot_generated_at": "2026-04-18T11:07:56.275516", + "identity": { + "full_name": "Arpita Sen", + "primary_email": "arpita.sen118@gmail.com", + "primary_phone": "+91 8438616175", + "persona_labels": "[\"first_time_buyer\"]", + "buyer_type": "price_sensitive" + }, + "account_links": [ + "8aa4d488-571e-4cd4-aa27-8372a49aacbf" + ], + "active_opportunities": [ + { + "opportunity_id": "d0c2f7f6-315e-4766-a6fc-338991cba978", + "project": "Siddha Suburbia Bungalow", + "stage": "qualified", + "value": 12599976 + } + ], + "recent_interactions": [ + { + "interaction_id": "08b32512-3e0f-429e-a948-8e433d6c00db", + "channel": "digital_ad", + "happened_at": "2025-11-17T11:07:56.275039" + }, + { + "interaction_id": "3177d738-1a94-458b-8684-c53b31a9b745", + "channel": "digital_ad", + "happened_at": "2025-11-12T11:07:56.275023" + }, + { + "interaction_id": "b3553519-8e34-4929-8f8d-54dccdc2f894", + "channel": "email", + "happened_at": "2025-10-14T11:07:56.274992" + }, + { + "interaction_id": "044011fe-d30f-429c-a13d-81428ee0e39a", + "channel": "referral", + "happened_at": "2025-10-11T11:07:56.275084" + }, + { + "interaction_id": "2bce77d4-7f40-4eb2-a460-3d8096995565", + "channel": "email", + "happened_at": "2025-10-03T11:07:56.275058" + } + ], + "property_interests": [ + { + "project": "Siddha Suburbia Bungalow", + "config": "5BHK", + "budget_max": 15138478 + } + ], + "tasks": [ + "Send festive offer" + ], + "qd_overview": { + "intent_score": 0.439, + "urgency_score": 0.476, + "engagement_score": 0.363 + }, + "risk_flags": [ + "price_objection_raised", + "no_follow_up_in_30_days" + ], + "recommended_next_actions": [ + "Book site visit", + "Share payment plan" + ], + "lead_stage": "qualified", + "lead_status": "active" + }, + { + "client_ref": "cc3b15d1-4bc5-4ed9-a550-4324bb752dac", + "snapshot_generated_at": "2026-04-18T11:07:56.326056", + "identity": { + "full_name": "Tanushree Patel", + "primary_email": "tanushree.patel17@gmail.com", + "primary_phone": "+91 8916485955", + "persona_labels": "[\"emotional_buyer\", \"nri_diaspora\"]", + "buyer_type": "high_intent" + }, + "account_links": [ + "d9525127-ff0d-45a0-b6d2-57b735be5c66" + ], + "active_opportunities": [ + { + "opportunity_id": "1b3a6dcc-dc00-45bc-a7eb-c6bf91975816", + "project": "Ambuja Utpaala", + "stage": "qualified", + "value": 10351446 + } + ], + "recent_interactions": [ + { + "interaction_id": "fc50fe93-ebaa-497b-a4e7-2e151020e368", + "channel": "whatsapp", + "happened_at": "2026-02-26T11:07:56.325481" + }, + { + "interaction_id": "e7d4c084-23b8-47d4-b4c0-153319c15c3c", + "channel": "digital_ad", + "happened_at": "2025-12-01T11:07:56.325437" + }, + { + "interaction_id": "16007fe1-6582-49f6-8071-9bc758493cc8", + "channel": "whatsapp", + "happened_at": "2025-11-28T11:07:56.325110" + }, + { + "interaction_id": "811dafc3-890c-4c38-a5ad-063246164df0", + "channel": "builder_event", + "happened_at": "2025-11-25T11:07:56.325465" + }, + { + "interaction_id": "ea304935-efbb-4bc5-8c98-969da5c73255", + "channel": "call", + "happened_at": "2025-11-16T11:07:56.325221" + } + ], + "property_interests": [ + { + "project": "Ambuja Utpaala", + "config": "2BHK", + "budget_max": 9717272 + }, + { + "project": "DTC Good Earth", + "config": "2BHK", + "budget_max": 8924701 + }, + { + "project": "Godrej Blue", + "config": "3BHK", + "budget_max": 9696393 + } + ], + "tasks": [ + "Follow up after site visit", + "Re-engage after 2 weeks silence" + ], + "qd_overview": { + "intent_score": 0.831, + "urgency_score": 0.894, + "engagement_score": 0.833 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Book site visit", + "Share payment plan" + ], + "lead_stage": "qualified", + "lead_status": "active" + }, + { + "client_ref": "1bda96c2-dd86-4cab-bd8d-967bfee8f992", + "snapshot_generated_at": "2026-04-18T11:07:56.326650", + "identity": { + "full_name": "Sumita Sen", + "primary_email": "sumita.sen555@outlook.com", + "primary_phone": "+91 9389969852", + "persona_labels": "[\"value_seeker\"]", + "buyer_type": "high_intent" + }, + "account_links": [ + "e7bc1d8b-7015-4b81-9df9-933d9a82263b" + ], + "active_opportunities": [], + "recent_interactions": [ + { + "interaction_id": "0a4faea8-95e4-4076-923b-bfcbbfef0a7e", + "channel": "builder_event", + "happened_at": "2026-03-08T11:07:56.326268" + }, + { + "interaction_id": "66ca1ae2-68a2-45e2-98a1-8635b49ce4b8", + "channel": "builder_event", + "happened_at": "2025-12-29T11:07:56.326286" + }, + { + "interaction_id": "bf8453fa-12d3-4223-8c1d-d96619eba1a4", + "channel": "site_visit", + "happened_at": "2025-10-11T11:07:56.326302" + } + ], + "property_interests": [ + { + "project": "Godrej Elevate", + "config": "4BHK", + "budget_max": 20189844 + }, + { + "project": "DTC Sojon", + "config": "2BHK", + "budget_max": 5660177 + } + ], + "tasks": [ + "Check competitor comparison status" + ], + "qd_overview": { + "intent_score": 0.965, + "urgency_score": 0.989, + "engagement_score": 0.918 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Send project brochure", + "Schedule site visit" + ], + "lead_stage": "inquiry", + "lead_status": "active" + }, + { + "client_ref": "35f02967-7fcd-4397-9871-1a29407fea31", + "snapshot_generated_at": "2026-04-18T11:07:56.327527", + "identity": { + "full_name": "Suravi Dey", + "primary_email": "suravi.dey521@yahoo.com", + "primary_phone": "+91 7855994163", + "persona_labels": "[\"investment_focus\", \"family_centric\", \"cash_rich_investor\"]", + "buyer_type": "family_decision_unit" + }, + "account_links": [ + "c64b5253-b5fb-4f37-b1aa-bd549cb7175f" + ], + "active_opportunities": [ + { + "opportunity_id": "6b298e75-3d9c-4a8a-8ae7-22540897e45d", + "project": "Atri Surya Toron", + "stage": "qualified", + "value": 4692198 + } + ], + "recent_interactions": [ + { + "interaction_id": "925109fe-b353-4810-90ae-b2ce200df526", + "channel": "site_visit", + "happened_at": "2026-03-31T11:07:56.327015" + }, + { + "interaction_id": "4d973013-d40c-4528-a28b-482035592f9e", + "channel": "call", + "happened_at": "2026-03-10T11:07:56.326917" + }, + { + "interaction_id": "0f958653-fc3b-4e18-b541-c93dda4f332a", + "channel": "builder_event", + "happened_at": "2025-12-27T11:07:56.326896" + } + ], + "property_interests": [ + { + "project": "Atri Surya Toron", + "config": "2BHK", + "budget_max": 7694401 + }, + { + "project": "Siddha Sky Waterfront", + "config": "4BHK", + "budget_max": 18703744 + } + ], + "tasks": [ + "Check competitor comparison status" + ], + "qd_overview": { + "intent_score": 0.735, + "urgency_score": 0.771, + "engagement_score": 0.704 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Book site visit", + "Share payment plan" + ], + "lead_stage": "qualified", + "lead_status": "active" + } +] \ No newline at end of file diff --git a/db assets/synthetic_crm_v1/json/claude_supplement/intel_perception_cctv_events.json b/db assets/synthetic_crm_v1/json/claude_supplement/intel_perception_cctv_events.json new file mode 100644 index 00000000..990f5957 --- /dev/null +++ b/db assets/synthetic_crm_v1/json/claude_supplement/intel_perception_cctv_events.json @@ -0,0 +1,2007 @@ +[ + { + "event_id": "f3690900-9264-439e-9533-9b506998d4b7", + "event_type": "number_plate_detected", + "person_id": "a89609fc-f886-4b7e-92c4-28214ad4efd8", + "project_ref": "Merlin Avana", + "detected_at": "2026-02-04T11:07:55.878410", + "vehicle_plate_hash": "WB86B1861", + "confidence": 0.787, + "media_ref": "cctv_clip_94bd98e4.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "189f5877-ce0d-4cb6-805d-db73684cc175", + "event_type": "perception_session", + "person_id": "a89609fc-f886-4b7e-92c4-28214ad4efd8", + "project_ref": "Merlin Avana", + "session_at": "2026-04-14T11:07:55.878431", + "rooms_visited": "[\"lobby\", \"model_flat_3bhk\", \"model_flat_2bhk\"]", + "dwell_time_seconds": 1916, + "engagement_score": 0.738, + "cctv_ref": "cctv_219f250b", + "notes": "Perception session recorded during scheduled site visit" + }, + { + "event_id": "c5f6aa8e-3b79-41da-9e77-51ad19448dfa", + "event_type": "number_plate_detected", + "person_id": "2c58c356-9fd0-4895-ad39-29fd1ec72787", + "project_ref": "Godrej Elevate", + "detected_at": "2026-04-05T11:07:55.879166", + "vehicle_plate_hash": "WB74J9626", + "confidence": 0.759, + "media_ref": "cctv_clip_b8595f35.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "9d5a4c34-98ec-41a8-98b4-fed27d5157f3", + "event_type": "number_plate_detected", + "person_id": "66232df4-c729-4792-ab0e-8c61f1b74766", + "project_ref": "Ambuja Utpaala", + "detected_at": "2026-02-27T11:07:55.880326", + "vehicle_plate_hash": "WB53C9129", + "confidence": 0.916, + "media_ref": "cctv_clip_bc43a231.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "558b8d5b-327c-49d5-b088-6beff1cd4fb5", + "event_type": "perception_session", + "person_id": "c92d380b-c092-4338-a62b-7e43abed7c3c", + "project_ref": "Siddha Serena", + "session_at": "2026-02-23T11:07:55.881967", + "rooms_visited": "[\"terrace\", \"model_flat_2bhk\"]", + "dwell_time_seconds": 1365, + "engagement_score": 0.93, + "cctv_ref": "cctv_e37fdff7", + "notes": "Perception session recorded during scheduled site visit" + }, + { + "event_id": "4e5d6e76-3834-42f0-a864-80689359abe0", + "event_type": "number_plate_detected", + "person_id": "8460df77-6d5a-4cf5-9861-eb3ce0ccd387", + "project_ref": "Eden Devprayag", + "detected_at": "2026-04-03T11:07:55.882873", + "vehicle_plate_hash": "WB14L7868", + "confidence": 0.898, + "media_ref": "cctv_clip_27b0d22b.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "7bd0c870-479a-4c65-9b0d-9c7b3a8ced4f", + "event_type": "perception_session", + "person_id": "8460df77-6d5a-4cf5-9861-eb3ce0ccd387", + "project_ref": "Eden Devprayag", + "session_at": "2026-02-20T11:07:55.882918", + "rooms_visited": "[\"model_flat_2bhk\"]", + "dwell_time_seconds": 1024, + "engagement_score": 0.533, + "cctv_ref": "cctv_59e115b0", + "notes": "Perception session recorded during scheduled site visit" + }, + { + "event_id": "ba5a2ab5-28e3-4108-84b8-6014bd5a530c", + "event_type": "number_plate_detected", + "person_id": "ac74f467-ebd5-4ed2-888e-4e66e89e4899", + "project_ref": "Ambuja Utpaala", + "detected_at": "2026-01-21T11:07:55.883699", + "vehicle_plate_hash": "WB65C2753", + "confidence": 0.97, + "media_ref": "cctv_clip_b9b08e69.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "4199760e-339d-485f-a684-50329ac71205", + "event_type": "perception_session", + "person_id": "bbcac2d6-131a-4a5c-be34-d3ecb31e8df0", + "project_ref": "DTC Good Earth", + "session_at": "2026-03-18T11:07:55.884552", + "rooms_visited": "[\"terrace\", \"amenity_deck\", \"model_flat_3bhk\"]", + "dwell_time_seconds": 330, + "engagement_score": 0.887, + "cctv_ref": "cctv_4454e049", + "notes": "Perception session recorded during scheduled site visit" + }, + { + "event_id": "65af8ca0-3d28-4d5d-b1b5-e2fa5c3f037f", + "event_type": "perception_session", + "person_id": "fd0b72d4-c589-4874-a16d-d85f81c51ef7", + "project_ref": "Siddha Suburbia Bungalow", + "session_at": "2026-03-14T11:07:55.885178", + "rooms_visited": "[\"terrace\"]", + "dwell_time_seconds": 1075, + "engagement_score": 0.985, + "cctv_ref": "cctv_8a4c884f", + "notes": "Perception session recorded during scheduled site visit" + }, + { + "event_id": "10a2f45a-0797-4474-8f4f-4bb47b560d6e", + "event_type": "perception_session", + "person_id": "405d9dbb-49c2-4379-8b55-4c8a59597cbc", + "project_ref": "Godrej Blue", + "session_at": "2026-03-14T11:07:55.886011", + "rooms_visited": "[\"terrace\", \"lobby\"]", + "dwell_time_seconds": 1450, + "engagement_score": 0.842, + "cctv_ref": "cctv_4f3df3d1", + "notes": "Perception session recorded during scheduled site visit" + }, + { + "event_id": "dd4f207c-69a0-4a08-bc8b-7edc75fa391c", + "event_type": "perception_session", + "person_id": "d1734cba-c12b-43fd-bd6c-c931f5dbb7d9", + "project_ref": "Eden Devprayag", + "session_at": "2026-03-01T11:07:55.888239", + "rooms_visited": "[\"amenity_deck\", \"model_flat_3bhk\"]", + "dwell_time_seconds": 410, + "engagement_score": 0.752, + "cctv_ref": "cctv_98afce93", + "notes": "Perception session recorded during scheduled site visit" + }, + { + "event_id": "40c8d8de-0548-4613-b013-98882ded1083", + "event_type": "number_plate_detected", + "person_id": "f3ca7bc0-6ba9-44d8-af5b-1f57260ec7e3", + "project_ref": "Siddha Sky Waterfront", + "detected_at": "2026-02-18T11:07:55.888861", + "vehicle_plate_hash": "WB28F3954", + "confidence": 0.937, + "media_ref": "cctv_clip_8e5ba3cc.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "a444464d-a8cb-4e17-8607-b2409d4e45f8", + "event_type": "number_plate_detected", + "person_id": "c0bf70c1-1d37-4c7f-94e1-d80ac2a50306", + "project_ref": "Siddha Serena", + "detected_at": "2026-04-01T11:07:55.889545", + "vehicle_plate_hash": "WB71H2850", + "confidence": 0.963, + "media_ref": "cctv_clip_8ba05add.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "968f4ec3-4292-4c7f-8c41-af8c4c888bf7", + "event_type": "number_plate_detected", + "person_id": "8a80acad-4f4d-42d7-9a5c-ff0b77b94313", + "project_ref": "Godrej Blue", + "detected_at": "2026-01-27T11:07:55.890091", + "vehicle_plate_hash": "WB37D4435", + "confidence": 0.9, + "media_ref": "cctv_clip_f7538c01.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "ed5d1a74-9980-4108-91c6-7bed11c5eccc", + "event_type": "perception_session", + "person_id": "088d8d2c-eb7f-40b2-8332-b46a9596fecd", + "project_ref": "Siddha Sky Waterfront", + "session_at": "2026-03-13T11:07:55.890974", + "rooms_visited": "[\"amenity_deck\"]", + "dwell_time_seconds": 1112, + "engagement_score": 0.946, + "cctv_ref": "cctv_add16e7f", + "notes": "Perception session recorded during scheduled site visit" + }, + { + "event_id": "026f042d-3e5b-411d-8273-f24333d799eb", + "event_type": "number_plate_detected", + "person_id": "8d73b35d-23ea-40a7-96f5-a7ee5ca4e577", + "project_ref": "Siddha Suburbia Bungalow", + "detected_at": "2026-02-18T11:07:55.892275", + "vehicle_plate_hash": "WB86K2127", + "confidence": 0.805, + "media_ref": "cctv_clip_e4c8a4c0.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "68a8a265-70af-43d1-8dd2-23953b5eed49", + "event_type": "number_plate_detected", + "person_id": "8e869aad-116e-49e4-86ba-7ead41c8bb16", + "project_ref": "Shriram Grand City", + "detected_at": "2026-04-08T11:07:55.926334", + "vehicle_plate_hash": "WB11D9051", + "confidence": 0.973, + "media_ref": "cctv_clip_f0b4c387.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "6069add1-06a2-4b29-b035-aa209c6cab91", + "event_type": "perception_session", + "person_id": "8e869aad-116e-49e4-86ba-7ead41c8bb16", + "project_ref": "Shriram Grand City", + "session_at": "2026-03-19T11:07:55.926352", + "rooms_visited": "[\"lobby\", \"model_flat_3bhk\", \"terrace\"]", + "dwell_time_seconds": 1883, + "engagement_score": 0.903, + "cctv_ref": "cctv_31198ac1", + "notes": "Perception session recorded during scheduled site visit" + }, + { + "event_id": "7b164067-428e-4a5f-bf4e-c36c0382aab9", + "event_type": "number_plate_detected", + "person_id": "344764f4-5574-4942-a1a9-471e3201f337", + "project_ref": "Shriram Grand City", + "detected_at": "2026-03-17T11:07:55.927686", + "vehicle_plate_hash": "WB64G1685", + "confidence": 0.896, + "media_ref": "cctv_clip_3c8d5935.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "1a9248d2-9fe7-481c-b9a3-860f973e98cf", + "event_type": "perception_session", + "person_id": "344764f4-5574-4942-a1a9-471e3201f337", + "project_ref": "Shriram Grand City", + "session_at": "2026-03-02T11:07:55.927702", + "rooms_visited": "[\"terrace\", \"lobby\"]", + "dwell_time_seconds": 2312, + "engagement_score": 0.554, + "cctv_ref": "cctv_696263dc", + "notes": "Perception session recorded during scheduled site visit" + }, + { + "event_id": "fe097785-23ed-440b-885c-89fde9500286", + "event_type": "number_plate_detected", + "person_id": "834c1510-616b-4ea4-ad9b-d500936b8e62", + "project_ref": "Shriram Grand City", + "detected_at": "2026-01-22T11:07:55.928966", + "vehicle_plate_hash": "WB52F8426", + "confidence": 0.867, + "media_ref": "cctv_clip_177164e2.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "8c754641-e032-4d31-b65d-7cd98a343261", + "event_type": "number_plate_detected", + "person_id": "38d6bf20-f8aa-481c-a650-49c3b0b1fec4", + "project_ref": "Atri Surya Toron", + "detected_at": "2026-03-11T11:07:55.929595", + "vehicle_plate_hash": "WB89A5699", + "confidence": 0.866, + "media_ref": "cctv_clip_d97e5173.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "00c1906c-5f32-481a-9f84-754bb17cfce2", + "event_type": "perception_session", + "person_id": "870afb2f-5b75-4ae8-bb42-b41230b30247", + "project_ref": "Ambuja Utpaala", + "session_at": "2026-04-02T11:07:55.931238", + "rooms_visited": "[\"terrace\", \"model_flat_2bhk\"]", + "dwell_time_seconds": 790, + "engagement_score": 0.948, + "cctv_ref": "cctv_dadc8f22", + "notes": "Perception session recorded during scheduled site visit" + }, + { + "event_id": "21d706c3-bcba-4545-8df6-1c4a05d17957", + "event_type": "number_plate_detected", + "person_id": "be4e9b58-51f8-4caa-8796-ee0526dcba5f", + "project_ref": "Atri Surya Toron", + "detected_at": "2026-02-28T11:07:55.932350", + "vehicle_plate_hash": "WB21A7708", + "confidence": 0.903, + "media_ref": "cctv_clip_183c2c02.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "be4ff8f5-e140-45ce-bc13-0d16e7e8e0ea", + "event_type": "number_plate_detected", + "person_id": "c5a40327-e1f1-4498-95f9-24a7f5ad693a", + "project_ref": "Atri Aqua", + "detected_at": "2026-03-27T11:07:55.933316", + "vehicle_plate_hash": "WB18F4261", + "confidence": 0.831, + "media_ref": "cctv_clip_9a25206f.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "56c17aac-b929-451f-9cf7-4cee012ca852", + "event_type": "number_plate_detected", + "person_id": "6f088528-9c50-4101-8989-477367278d76", + "project_ref": "Siddha Serena", + "detected_at": "2026-02-08T11:07:55.934313", + "vehicle_plate_hash": "WB40H7364", + "confidence": 0.752, + "media_ref": "cctv_clip_77f55155.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "fc841cc3-bcfe-4d35-b4e0-ac56ef8a48da", + "event_type": "perception_session", + "person_id": "6f088528-9c50-4101-8989-477367278d76", + "project_ref": "Siddha Serena", + "session_at": "2026-02-17T11:07:55.934330", + "rooms_visited": "[\"model_flat_3bhk\", \"lobby\"]", + "dwell_time_seconds": 1144, + "engagement_score": 0.646, + "cctv_ref": "cctv_c1b16903", + "notes": "Perception session recorded during scheduled site visit" + }, + { + "event_id": "8a7be9bb-1796-4ae7-8cdf-ace7d81e2a2f", + "event_type": "number_plate_detected", + "person_id": "e8d454ea-a7c7-4afc-8b7e-939d491abb6a", + "project_ref": "Eden Devprayag", + "detected_at": "2026-03-29T11:07:55.935325", + "vehicle_plate_hash": "WB25E9042", + "confidence": 0.942, + "media_ref": "cctv_clip_538031c1.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "9275e286-9334-42de-ba98-723bf3a8ad70", + "event_type": "perception_session", + "person_id": "e8d454ea-a7c7-4afc-8b7e-939d491abb6a", + "project_ref": "Eden Devprayag", + "session_at": "2026-02-18T11:07:55.935344", + "rooms_visited": "[\"amenity_deck\", \"model_flat_2bhk\"]", + "dwell_time_seconds": 1650, + "engagement_score": 0.826, + "cctv_ref": "cctv_6b225f4f", + "notes": "Perception session recorded during scheduled site visit" + }, + { + "event_id": "f54219e7-a25e-4a9a-9857-7bce78845de5", + "event_type": "number_plate_detected", + "person_id": "0776fa7f-5e82-42a7-8c27-79f93a93f446", + "project_ref": "DTC Sojon", + "detected_at": "2026-01-28T11:07:55.936039", + "vehicle_plate_hash": "WB36E2412", + "confidence": 0.91, + "media_ref": "cctv_clip_714ec00b.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "de3e9043-37b1-4d5c-afdc-ed16141a99bf", + "event_type": "number_plate_detected", + "person_id": "91fdfa84-e8eb-445e-870b-36e89f0347fa", + "project_ref": "Sugam Prakriti", + "detected_at": "2026-02-16T11:07:55.937382", + "vehicle_plate_hash": "WB37H2279", + "confidence": 0.839, + "media_ref": "cctv_clip_f88d328c.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "e5e6903e-b24c-4017-82d8-045024aed6c8", + "event_type": "number_plate_detected", + "person_id": "2b204321-de96-4816-967e-ff0dbae8e049", + "project_ref": "Merlin Avana", + "detected_at": "2026-02-19T11:07:55.940495", + "vehicle_plate_hash": "WB44D6269", + "confidence": 0.832, + "media_ref": "cctv_clip_1b9ed732.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "88a443ea-e6eb-4631-a265-a4a10aef32a4", + "event_type": "number_plate_detected", + "person_id": "a286b72d-c0a6-4fd4-89fb-9feeb569db3c", + "project_ref": "Ambuja Utpaala", + "detected_at": "2026-04-11T11:07:55.941247", + "vehicle_plate_hash": "WB52J4878", + "confidence": 0.976, + "media_ref": "cctv_clip_d470c2c3.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "96423acf-bdba-4375-b53f-72b99791d476", + "event_type": "perception_session", + "person_id": "a286b72d-c0a6-4fd4-89fb-9feeb569db3c", + "project_ref": "Ambuja Utpaala", + "session_at": "2026-03-09T11:07:55.941266", + "rooms_visited": "[\"lobby\", \"terrace\"]", + "dwell_time_seconds": 691, + "engagement_score": 0.542, + "cctv_ref": "cctv_e2f942bc", + "notes": "Perception session recorded during scheduled site visit" + }, + { + "event_id": "6e2d0ac4-0acf-47e2-8798-4b7e937686a7", + "event_type": "number_plate_detected", + "person_id": "fac56177-d06c-49df-81b6-35dc3c283e56", + "project_ref": "Godrej Elevate", + "detected_at": "2026-02-01T11:07:55.942015", + "vehicle_plate_hash": "WB34J5819", + "confidence": 0.94, + "media_ref": "cctv_clip_191b9ece.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "cd8d9751-a079-4b4a-adf2-e8ceb27cac13", + "event_type": "number_plate_detected", + "person_id": "1c8e549e-fc62-48df-91d0-345424b4ab21", + "project_ref": "Siddha Suburbia Bungalow", + "detected_at": "2026-03-04T11:07:55.945766", + "vehicle_plate_hash": "WB64H2645", + "confidence": 0.926, + "media_ref": "cctv_clip_57a2bec6.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "df0938cb-15b0-4b59-8d28-4924b43bf1ee", + "event_type": "number_plate_detected", + "person_id": "f8b2f20e-b0b6-4d9f-bb02-db9373bd080c", + "project_ref": "Shriram Grand City", + "detected_at": "2026-03-13T11:07:55.946521", + "vehicle_plate_hash": "WB90L8292", + "confidence": 0.838, + "media_ref": "cctv_clip_5d442f48.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "cfe4dcc0-2392-413b-9191-5ed63e5f72e2", + "event_type": "number_plate_detected", + "person_id": "96796e23-41ae-4399-b43a-720fbe211b57", + "project_ref": "Sugam Prakriti", + "detected_at": "2026-02-21T11:07:55.949458", + "vehicle_plate_hash": "WB57C8848", + "confidence": 0.772, + "media_ref": "cctv_clip_7d4531fb.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "506d57ab-1367-4b23-9d31-48a84a690f98", + "event_type": "number_plate_detected", + "person_id": "9989191b-f5c7-4bdc-8b50-68a2f61dafc7", + "project_ref": "Sugam Prakriti", + "detected_at": "2026-03-12T11:07:55.950373", + "vehicle_plate_hash": "WB24C1983", + "confidence": 0.961, + "media_ref": "cctv_clip_f067c300.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "14281b9c-4a72-46ea-99e4-2753d8e9a6cd", + "event_type": "number_plate_detected", + "person_id": "27919455-6b98-4e70-9bb8-bde79da8f413", + "project_ref": "Ambuja Utpaala", + "detected_at": "2026-02-13T11:07:55.953159", + "vehicle_plate_hash": "WB88A7444", + "confidence": 0.822, + "media_ref": "cctv_clip_78c23d12.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "0f0c43bf-c135-4c1b-af92-6026fbbe06b3", + "event_type": "perception_session", + "person_id": "27919455-6b98-4e70-9bb8-bde79da8f413", + "project_ref": "Ambuja Utpaala", + "session_at": "2026-03-17T11:07:55.953177", + "rooms_visited": "[\"lobby\", \"model_flat_3bhk\", \"terrace\"]", + "dwell_time_seconds": 600, + "engagement_score": 0.514, + "cctv_ref": "cctv_b694b26d", + "notes": "Perception session recorded during scheduled site visit" + }, + { + "event_id": "d672a1df-43ef-4d5b-bcef-c44a37f957e6", + "event_type": "number_plate_detected", + "person_id": "7392c761-ad6a-4fea-a8f9-2cc61a7f5a52", + "project_ref": "Merlin Avana", + "detected_at": "2026-02-26T11:07:55.955272", + "vehicle_plate_hash": "WB18L8925", + "confidence": 0.84, + "media_ref": "cctv_clip_9ee486bf.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "dbd3a7e3-6358-42b5-9d66-0f988dd110ee", + "event_type": "number_plate_detected", + "person_id": "676f8eb7-363e-4986-8144-271ad837036f", + "project_ref": "Atri Surya Toron", + "detected_at": "2026-03-01T11:07:55.958345", + "vehicle_plate_hash": "WB70E1510", + "confidence": 0.788, + "media_ref": "cctv_clip_6eb2546f.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "7019bfe1-dae6-4305-9e89-36804dd0710c", + "event_type": "number_plate_detected", + "person_id": "a9c6daba-54c3-4d90-98ab-99c453cd1743", + "project_ref": "Atri Surya Toron", + "detected_at": "2026-03-28T11:07:55.964408", + "vehicle_plate_hash": "WB76M2990", + "confidence": 0.79, + "media_ref": "cctv_clip_96aeb676.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "426ea53a-f5c9-474f-8357-aeb8332281d7", + "event_type": "number_plate_detected", + "person_id": "235eb77c-90e2-45c8-91c5-693d3cf66d65", + "project_ref": "Merlin Avana", + "detected_at": "2026-03-06T11:07:55.965241", + "vehicle_plate_hash": "WB96F3772", + "confidence": 0.967, + "media_ref": "cctv_clip_8be018c3.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "95e85548-4d90-4922-9eb3-cea76ac3199a", + "event_type": "number_plate_detected", + "person_id": "e6ee8582-a00b-42ba-a91a-c2f4dee4030c", + "project_ref": "DTC Sojon", + "detected_at": "2026-03-29T11:07:55.965995", + "vehicle_plate_hash": "WB97J7131", + "confidence": 0.751, + "media_ref": "cctv_clip_81502b0e.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "c5b522d5-bd88-4196-a063-eb897eb5d3fd", + "event_type": "number_plate_detected", + "person_id": "803ede13-da5d-4a3a-83ba-f6e73fa38729", + "project_ref": "Merlin Avana", + "detected_at": "2026-03-13T11:07:55.966771", + "vehicle_plate_hash": "WB74L1749", + "confidence": 0.895, + "media_ref": "cctv_clip_22738fed.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "bd92db52-58e6-4bbf-8597-fbd736a230ad", + "event_type": "perception_session", + "person_id": "803ede13-da5d-4a3a-83ba-f6e73fa38729", + "project_ref": "Merlin Avana", + "session_at": "2026-03-05T11:07:55.966793", + "rooms_visited": "[\"model_flat_3bhk\", \"lobby\"]", + "dwell_time_seconds": 1847, + "engagement_score": 0.601, + "cctv_ref": "cctv_f719658d", + "notes": "Perception session recorded during scheduled site visit" + }, + { + "event_id": "7cce96f8-1c37-4892-aaea-02d7765d6335", + "event_type": "perception_session", + "person_id": "92f3abdf-7121-40d4-a773-c805fb4f5b96", + "project_ref": "Sugam Prakriti", + "session_at": "2026-02-27T11:07:55.968168", + "rooms_visited": "[\"model_flat_2bhk\", \"terrace\", \"lobby\"]", + "dwell_time_seconds": 1211, + "engagement_score": 0.87, + "cctv_ref": "cctv_b3336bfa", + "notes": "Perception session recorded during scheduled site visit" + }, + { + "event_id": "1e2b61ab-ed2b-47b5-9588-120e3c5d1ab2", + "event_type": "perception_session", + "person_id": "35508d7f-2c44-473c-ab94-df6576e1a667", + "project_ref": "Merlin Avana", + "session_at": "2026-04-13T11:07:55.970616", + "rooms_visited": "[\"model_flat_3bhk\"]", + "dwell_time_seconds": 755, + "engagement_score": 0.937, + "cctv_ref": "cctv_dca40cd7", + "notes": "Perception session recorded during scheduled site visit" + }, + { + "event_id": "229612bc-d2f0-4c1b-a31d-2f2fc5cbf5f4", + "event_type": "perception_session", + "person_id": "6c6b268f-fc18-40f8-a73e-93e62e18c25a", + "project_ref": "Atri Surya Toron", + "session_at": "2026-04-05T11:07:55.973514", + "rooms_visited": "[\"model_flat_2bhk\", \"amenity_deck\", \"terrace\"]", + "dwell_time_seconds": 450, + "engagement_score": 0.678, + "cctv_ref": "cctv_057b69c9", + "notes": "Perception session recorded during scheduled site visit" + }, + { + "event_id": "d28bb64f-1b5f-4004-bfe3-ee131ff470d7", + "event_type": "perception_session", + "person_id": "aee30534-fd97-45db-aacb-2b9024648593", + "project_ref": "Sugam Prakriti", + "session_at": "2026-03-04T11:07:55.974308", + "rooms_visited": "[\"lobby\"]", + "dwell_time_seconds": 950, + "engagement_score": 0.592, + "cctv_ref": "cctv_eb6bf65d", + "notes": "Perception session recorded during scheduled site visit" + }, + { + "event_id": "1295d26f-e185-40b5-b3ef-21e63a3c6fc7", + "event_type": "perception_session", + "person_id": "d6787ef8-ce32-413b-a12f-058f42ca8e56", + "project_ref": "Siddha Sky Waterfront", + "session_at": "2026-03-07T11:07:56.026865", + "rooms_visited": "[\"lobby\", \"model_flat_3bhk\", \"terrace\"]", + "dwell_time_seconds": 661, + "engagement_score": 0.842, + "cctv_ref": "cctv_3832bae7", + "notes": "Perception session recorded during scheduled site visit" + }, + { + "event_id": "14659cea-fcc2-41ea-a568-228618f727fa", + "event_type": "number_plate_detected", + "person_id": "4b234c6d-a0aa-497a-8480-07bed9a3450a", + "project_ref": "Godrej Elevate", + "detected_at": "2026-04-11T11:07:56.027858", + "vehicle_plate_hash": "WB15B5544", + "confidence": 0.776, + "media_ref": "cctv_clip_7959428d.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "feebf2a0-3e13-46c0-823a-fd20efb2059a", + "event_type": "number_plate_detected", + "person_id": "184d1a5f-a666-4429-9ae3-da3f162c2119", + "project_ref": "Ambuja Utpaala", + "detected_at": "2026-02-03T11:07:56.028634", + "vehicle_plate_hash": "WB45H5027", + "confidence": 0.859, + "media_ref": "cctv_clip_1d8135e7.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "12de2435-3625-4de6-b96c-524460484aaf", + "event_type": "perception_session", + "person_id": "184d1a5f-a666-4429-9ae3-da3f162c2119", + "project_ref": "Ambuja Utpaala", + "session_at": "2026-03-03T11:07:56.028656", + "rooms_visited": "[\"model_flat_2bhk\"]", + "dwell_time_seconds": 353, + "engagement_score": 0.533, + "cctv_ref": "cctv_ed13a55d", + "notes": "Perception session recorded during scheduled site visit" + }, + { + "event_id": "38e54d99-bfa4-47e8-a2b0-823958d48b81", + "event_type": "number_plate_detected", + "person_id": "e4e743e8-54af-457e-b1c1-049c9610c2ef", + "project_ref": "DTC Good Earth", + "detected_at": "2026-04-15T11:07:56.031299", + "vehicle_plate_hash": "WB22C5230", + "confidence": 0.791, + "media_ref": "cctv_clip_92df4049.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "af85bcfd-ee86-4423-853d-4532b03863f0", + "event_type": "number_plate_detected", + "person_id": "64c56004-8867-403b-bda5-51b536ad0fb8", + "project_ref": "Atri Aqua", + "detected_at": "2026-04-12T11:07:56.031865", + "vehicle_plate_hash": "WB49G2523", + "confidence": 0.908, + "media_ref": "cctv_clip_f884e4ed.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "c6cdb4e3-1611-4b7e-8b9c-a31955ce2398", + "event_type": "number_plate_detected", + "person_id": "af2d8579-f4d3-4ae6-a44e-287168b43c21", + "project_ref": "Godrej Elevate", + "detected_at": "2026-04-04T11:07:56.034171", + "vehicle_plate_hash": "WB21B8450", + "confidence": 0.876, + "media_ref": "cctv_clip_e0a710ee.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "38403726-8444-4857-bbe5-999bab787a0d", + "event_type": "perception_session", + "person_id": "af2d8579-f4d3-4ae6-a44e-287168b43c21", + "project_ref": "Godrej Elevate", + "session_at": "2026-02-26T11:07:56.034188", + "rooms_visited": "[\"amenity_deck\"]", + "dwell_time_seconds": 377, + "engagement_score": 0.797, + "cctv_ref": "cctv_0e53f0ad", + "notes": "Perception session recorded during scheduled site visit" + }, + { + "event_id": "41b82ae2-2485-4269-96f3-9010ad2dce8c", + "event_type": "number_plate_detected", + "person_id": "0e67b825-97ea-4193-8663-be2400a7e5f8", + "project_ref": "Ambuja Utpaala", + "detected_at": "2026-03-13T11:07:56.036640", + "vehicle_plate_hash": "WB58B2040", + "confidence": 0.923, + "media_ref": "cctv_clip_54e6fbbe.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "90905eb9-391a-4b33-a700-7fefdac9ff77", + "event_type": "perception_session", + "person_id": "bf3207b7-ca99-45db-81ac-89d3e3c1b017", + "project_ref": "Eden Devprayag", + "session_at": "2026-02-20T11:07:56.037650", + "rooms_visited": "[\"model_flat_3bhk\"]", + "dwell_time_seconds": 1479, + "engagement_score": 0.534, + "cctv_ref": "cctv_1b60b62c", + "notes": "Perception session recorded during scheduled site visit" + }, + { + "event_id": "9f316897-4a24-463f-941f-be3ecc3430fa", + "event_type": "number_plate_detected", + "person_id": "f9a072e4-bcec-47cc-afc8-068c33c52174", + "project_ref": "Atri Surya Toron", + "detected_at": "2026-02-17T11:07:56.038375", + "vehicle_plate_hash": "WB77H2843", + "confidence": 0.801, + "media_ref": "cctv_clip_3c607081.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "a65e279c-0c98-4118-bcc5-f5637f41af37", + "event_type": "perception_session", + "person_id": "f9a072e4-bcec-47cc-afc8-068c33c52174", + "project_ref": "Atri Surya Toron", + "session_at": "2026-02-24T11:07:56.038393", + "rooms_visited": "[\"model_flat_2bhk\", \"amenity_deck\"]", + "dwell_time_seconds": 715, + "engagement_score": 0.573, + "cctv_ref": "cctv_b8902657", + "notes": "Perception session recorded during scheduled site visit" + }, + { + "event_id": "befc7059-8779-46d9-9f6b-33e41f9b2d18", + "event_type": "number_plate_detected", + "person_id": "c61eaf7b-0c8c-4fc3-8e05-8462c6b84ea2", + "project_ref": "Ambuja Utpaala", + "detected_at": "2026-02-19T11:07:56.039341", + "vehicle_plate_hash": "WB57G6050", + "confidence": 0.899, + "media_ref": "cctv_clip_24198ea0.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "cd8fee86-369b-42ce-b063-42cbf4e61f5b", + "event_type": "number_plate_detected", + "person_id": "83dd835d-e666-4287-a543-d15b1cdb0465", + "project_ref": "Godrej Elevate", + "detected_at": "2026-02-07T11:07:56.040148", + "vehicle_plate_hash": "WB31B2458", + "confidence": 0.849, + "media_ref": "cctv_clip_7027a2e3.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "db527bd5-2769-4e3b-b5ab-a2f5566dd92f", + "event_type": "perception_session", + "person_id": "83dd835d-e666-4287-a543-d15b1cdb0465", + "project_ref": "Godrej Elevate", + "session_at": "2026-03-06T11:07:56.040165", + "rooms_visited": "[\"lobby\", \"model_flat_3bhk\", \"amenity_deck\"]", + "dwell_time_seconds": 522, + "engagement_score": 0.615, + "cctv_ref": "cctv_62d7a10a", + "notes": "Perception session recorded during scheduled site visit" + }, + { + "event_id": "51c0806b-1ebc-4abc-892b-25d458ea725a", + "event_type": "number_plate_detected", + "person_id": "102c44a0-4585-46b1-ab4e-6a1cdf5b75d4", + "project_ref": "Godrej Elevate", + "detected_at": "2026-01-30T11:07:56.041572", + "vehicle_plate_hash": "WB87F4750", + "confidence": 0.972, + "media_ref": "cctv_clip_f5ef2fcf.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "7bb3ff10-a27c-4b37-8a57-1f71bb822d32", + "event_type": "number_plate_detected", + "person_id": "8030451b-fd53-4111-8603-cc6b09edecc7", + "project_ref": "Atri Aqua", + "detected_at": "2026-01-22T11:07:56.042318", + "vehicle_plate_hash": "WB51D3020", + "confidence": 0.785, + "media_ref": "cctv_clip_ac80766e.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "d800c8eb-5d12-488b-beaa-26622d4f04b3", + "event_type": "number_plate_detected", + "person_id": "78fa2212-b529-489f-b024-4acf9a40e577", + "project_ref": "Atri Surya Toron", + "detected_at": "2026-01-23T11:07:56.043048", + "vehicle_plate_hash": "WB92H2190", + "confidence": 0.837, + "media_ref": "cctv_clip_abb46d80.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "3c0fea54-a614-4105-9b82-c3cfef65afc4", + "event_type": "perception_session", + "person_id": "a1a8a8bb-905b-4103-9235-c9fe678a0c8b", + "project_ref": "Siddha Sky Waterfront", + "session_at": "2026-03-22T11:07:56.043824", + "rooms_visited": "[\"model_flat_2bhk\", \"model_flat_3bhk\"]", + "dwell_time_seconds": 1322, + "engagement_score": 0.969, + "cctv_ref": "cctv_bdb7318d", + "notes": "Perception session recorded during scheduled site visit" + }, + { + "event_id": "a737acbd-e85f-4ffb-bce6-54c20c9a7424", + "event_type": "number_plate_detected", + "person_id": "5783af05-943d-4ab1-a4c1-98f592da237f", + "project_ref": "Godrej Elevate", + "detected_at": "2026-03-01T11:07:56.044683", + "vehicle_plate_hash": "WB38A1045", + "confidence": 0.844, + "media_ref": "cctv_clip_e514dcc3.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "b8c26cdf-a9a4-49c8-817e-9618cdeb2bee", + "event_type": "number_plate_detected", + "person_id": "01959891-b672-4cbf-a2b7-1a615267df6a", + "project_ref": "DTC Sojon", + "detected_at": "2026-02-24T11:07:56.045513", + "vehicle_plate_hash": "WB42G4228", + "confidence": 0.751, + "media_ref": "cctv_clip_842e7538.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "d0f2afee-8525-45dd-b004-32bb72994ff9", + "event_type": "perception_session", + "person_id": "01959891-b672-4cbf-a2b7-1a615267df6a", + "project_ref": "DTC Sojon", + "session_at": "2026-04-14T11:07:56.045533", + "rooms_visited": "[\"amenity_deck\", \"model_flat_2bhk\"]", + "dwell_time_seconds": 1982, + "engagement_score": 0.724, + "cctv_ref": "cctv_f0048ce1", + "notes": "Perception session recorded during scheduled site visit" + }, + { + "event_id": "23a70c19-dcbc-48ee-bf3c-886b8ce1f61b", + "event_type": "number_plate_detected", + "person_id": "b467fb6f-9051-4d9c-b205-e26d49498282", + "project_ref": "Godrej Blue", + "detected_at": "2026-04-02T11:07:56.047058", + "vehicle_plate_hash": "WB74C4275", + "confidence": 0.841, + "media_ref": "cctv_clip_5d17c5af.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "8cd68253-fb78-4819-b469-702729d99e93", + "event_type": "number_plate_detected", + "person_id": "2137043a-0863-47c9-9c64-d35580c2db56", + "project_ref": "Siddha Sky Waterfront", + "detected_at": "2026-03-30T11:07:56.049460", + "vehicle_plate_hash": "WB41H5081", + "confidence": 0.901, + "media_ref": "cctv_clip_d420ba35.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "025c1684-4587-4b12-91f1-a9762f7206d6", + "event_type": "number_plate_detected", + "person_id": "5c1cf7cb-cee5-4706-91e1-ff468af366a7", + "project_ref": "Siddha Suburbia Bungalow", + "detected_at": "2026-03-31T11:07:56.050296", + "vehicle_plate_hash": "WB96A1697", + "confidence": 0.941, + "media_ref": "cctv_clip_17f7f743.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "73e94893-3452-4bf6-9a67-8ed2d809c253", + "event_type": "perception_session", + "person_id": "f89fd7a1-0c21-4fba-b5f0-d66e341f7bce", + "project_ref": "DTC Good Earth", + "session_at": "2026-02-18T11:07:56.051646", + "rooms_visited": "[\"lobby\", \"amenity_deck\", \"model_flat_3bhk\"]", + "dwell_time_seconds": 2113, + "engagement_score": 0.579, + "cctv_ref": "cctv_3b51d860", + "notes": "Perception session recorded during scheduled site visit" + }, + { + "event_id": "0c968ced-7d43-4200-a403-c9a854cccf41", + "event_type": "number_plate_detected", + "person_id": "453d3b60-d792-4627-9673-775aae8b9ad1", + "project_ref": "DTC Sojon", + "detected_at": "2026-04-01T11:07:56.053074", + "vehicle_plate_hash": "WB83H6036", + "confidence": 0.782, + "media_ref": "cctv_clip_3028eb13.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "2d370a39-e7ed-45d2-97ee-8b1ebad9b3c2", + "event_type": "perception_session", + "person_id": "453d3b60-d792-4627-9673-775aae8b9ad1", + "project_ref": "DTC Sojon", + "session_at": "2026-03-26T11:07:56.053090", + "rooms_visited": "[\"model_flat_2bhk\"]", + "dwell_time_seconds": 1927, + "engagement_score": 0.521, + "cctv_ref": "cctv_c37ddb6b", + "notes": "Perception session recorded during scheduled site visit" + }, + { + "event_id": "8d75978c-adcb-4ab4-b0a8-6cc552b76255", + "event_type": "number_plate_detected", + "person_id": "13eada69-77d2-4747-99cd-3ea072032412", + "project_ref": "Godrej Elevate", + "detected_at": "2026-01-24T11:07:56.053879", + "vehicle_plate_hash": "WB55H8566", + "confidence": 0.782, + "media_ref": "cctv_clip_add8d614.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "dc9ee455-3de5-4fb9-a7b0-85c71f878bba", + "event_type": "number_plate_detected", + "person_id": "6a7247dc-c922-439e-91db-bab9f814cd83", + "project_ref": "Eden Devprayag", + "detected_at": "2026-04-12T11:07:56.056325", + "vehicle_plate_hash": "WB33B3637", + "confidence": 0.946, + "media_ref": "cctv_clip_0adeb19c.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "1637158f-536b-41e0-af18-e5e180266d85", + "event_type": "perception_session", + "person_id": "9b0dcad5-42da-4bdb-bede-65afadc1f0ef", + "project_ref": "Atri Surya Toron", + "session_at": "2026-03-24T11:07:56.057087", + "rooms_visited": "[\"model_flat_3bhk\", \"terrace\"]", + "dwell_time_seconds": 1371, + "engagement_score": 0.698, + "cctv_ref": "cctv_90c62e71", + "notes": "Perception session recorded during scheduled site visit" + }, + { + "event_id": "8b7282dd-ff90-42c0-a4c3-ab370a7009ea", + "event_type": "number_plate_detected", + "person_id": "b4608f6d-cdc1-441c-b1fb-2d3611fc40a3", + "project_ref": "Siddha Serena", + "detected_at": "2026-03-25T11:07:56.059621", + "vehicle_plate_hash": "WB96G5401", + "confidence": 0.869, + "media_ref": "cctv_clip_978ec6dc.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "8398e3b7-3135-4237-a283-93a1e7e531be", + "event_type": "perception_session", + "person_id": "629f23a9-4268-41cc-b9ef-eac6b8f0ae2a", + "project_ref": "DTC Good Earth", + "session_at": "2026-02-25T11:07:56.060351", + "rooms_visited": "[\"model_flat_3bhk\", \"model_flat_2bhk\", \"amenity_deck\"]", + "dwell_time_seconds": 973, + "engagement_score": 0.87, + "cctv_ref": "cctv_47b27f2b", + "notes": "Perception session recorded during scheduled site visit" + }, + { + "event_id": "d10ed85f-5e8f-4edf-88f8-afa31a30bc60", + "event_type": "perception_session", + "person_id": "d3c31aa6-7541-4df6-8c41-cb521b45d0c7", + "project_ref": "Godrej Elevate", + "session_at": "2026-03-14T11:07:56.061008", + "rooms_visited": "[\"model_flat_3bhk\"]", + "dwell_time_seconds": 1970, + "engagement_score": 0.848, + "cctv_ref": "cctv_a43b3118", + "notes": "Perception session recorded during scheduled site visit" + }, + { + "event_id": "3ce5a4fe-8f9a-40b1-9171-d29fc9936c5c", + "event_type": "perception_session", + "person_id": "5abbe811-55bd-409c-aa79-0a8c831e4797", + "project_ref": "Atri Aqua", + "session_at": "2026-02-24T11:07:56.061606", + "rooms_visited": "[\"terrace\", \"lobby\"]", + "dwell_time_seconds": 2118, + "engagement_score": 0.661, + "cctv_ref": "cctv_eca7f8f2", + "notes": "Perception session recorded during scheduled site visit" + }, + { + "event_id": "8498bff0-cc09-45ac-886a-2acf27663d76", + "event_type": "number_plate_detected", + "person_id": "ec8ba3a4-4c4a-4524-83d5-cb41faf4870a", + "project_ref": "Siddha Suburbia Bungalow", + "detected_at": "2026-01-21T11:07:56.062307", + "vehicle_plate_hash": "WB86A7344", + "confidence": 0.863, + "media_ref": "cctv_clip_16f3a47d.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "7c0a4045-d5d5-484f-9ea7-c0760b1cfd32", + "event_type": "number_plate_detected", + "person_id": "be2e8af3-407d-4a11-9286-d2905e508152", + "project_ref": "Shriram Grand City", + "detected_at": "2026-03-12T11:07:56.066516", + "vehicle_plate_hash": "WB98G4385", + "confidence": 0.958, + "media_ref": "cctv_clip_a491e2a9.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "2a5590c0-ee53-48bd-b295-810611566fe7", + "event_type": "perception_session", + "person_id": "be2e8af3-407d-4a11-9286-d2905e508152", + "project_ref": "Shriram Grand City", + "session_at": "2026-03-27T11:07:56.066533", + "rooms_visited": "[\"terrace\", \"model_flat_2bhk\", \"lobby\"]", + "dwell_time_seconds": 407, + "engagement_score": 0.957, + "cctv_ref": "cctv_5a9e5b83", + "notes": "Perception session recorded during scheduled site visit" + }, + { + "event_id": "020314c0-b8d2-4a43-a468-390c199f8a7f", + "event_type": "number_plate_detected", + "person_id": "846f3bec-5b2c-4788-af2c-fad362a30f1e", + "project_ref": "Siddha Suburbia Bungalow", + "detected_at": "2026-02-26T11:07:56.068039", + "vehicle_plate_hash": "WB68G4061", + "confidence": 0.812, + "media_ref": "cctv_clip_3209f998.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "116c84d6-ffb3-4143-9fcf-7898b1924a66", + "event_type": "number_plate_detected", + "person_id": "8643cfe9-068c-46fd-9f6f-f7ac40ff9588", + "project_ref": "Siddha Suburbia Bungalow", + "detected_at": "2026-02-11T11:07:56.069137", + "vehicle_plate_hash": "WB64L8271", + "confidence": 0.9, + "media_ref": "cctv_clip_6259c062.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "57d1cf9e-3f76-4013-9171-309e65d6ab23", + "event_type": "number_plate_detected", + "person_id": "dde77dfe-4636-4d14-83fc-39ee828ff6c6", + "project_ref": "Godrej Elevate", + "detected_at": "2026-03-14T11:07:56.072091", + "vehicle_plate_hash": "WB88K9916", + "confidence": 0.76, + "media_ref": "cctv_clip_802bf734.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "7011cebc-7fd0-4ebc-8d92-d97d4213c585", + "event_type": "perception_session", + "person_id": "dde77dfe-4636-4d14-83fc-39ee828ff6c6", + "project_ref": "Godrej Elevate", + "session_at": "2026-04-04T11:07:56.072115", + "rooms_visited": "[\"terrace\", \"amenity_deck\", \"model_flat_3bhk\"]", + "dwell_time_seconds": 1084, + "engagement_score": 0.937, + "cctv_ref": "cctv_b7b6f9cf", + "notes": "Perception session recorded during scheduled site visit" + }, + { + "event_id": "c02df7be-ece2-40cb-bc36-dc0c0d61f788", + "event_type": "number_plate_detected", + "person_id": "3598c3dd-4e73-4a02-9b26-34991e80e689", + "project_ref": "Merlin Avana", + "detected_at": "2026-02-27T11:07:56.073961", + "vehicle_plate_hash": "WB47K8539", + "confidence": 0.771, + "media_ref": "cctv_clip_c66ffcbb.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "17f7faf6-7192-41de-82c4-65353912dc64", + "event_type": "number_plate_detected", + "person_id": "f7e96d24-d591-4c17-b5e4-11cc4733b8df", + "project_ref": "Godrej Blue", + "detected_at": "2026-03-21T11:07:56.125937", + "vehicle_plate_hash": "WB57K4697", + "confidence": 0.867, + "media_ref": "cctv_clip_2edb4f20.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "e5b56e91-989c-48b3-b2e4-5a5c98d4a1cb", + "event_type": "number_plate_detected", + "person_id": "a6e7b6e4-28f8-4877-b9c0-7e186d529cb7", + "project_ref": "Siddha Serena", + "detected_at": "2026-03-22T11:07:56.128390", + "vehicle_plate_hash": "WB38F5735", + "confidence": 0.872, + "media_ref": "cctv_clip_10abede3.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "47a5fd4c-9d13-40f4-960e-2f4a46676bb9", + "event_type": "perception_session", + "person_id": "a6e7b6e4-28f8-4877-b9c0-7e186d529cb7", + "project_ref": "Siddha Serena", + "session_at": "2026-03-26T11:07:56.128406", + "rooms_visited": "[\"lobby\", \"model_flat_2bhk\"]", + "dwell_time_seconds": 621, + "engagement_score": 0.639, + "cctv_ref": "cctv_81378e3e", + "notes": "Perception session recorded during scheduled site visit" + }, + { + "event_id": "0dabadb2-fa78-49ab-91d1-23078d92f35f", + "event_type": "number_plate_detected", + "person_id": "d6519a25-0ae3-4201-a937-7ef5303d59d3", + "project_ref": "DTC Good Earth", + "detected_at": "2026-03-06T11:07:56.129291", + "vehicle_plate_hash": "WB71J4087", + "confidence": 0.887, + "media_ref": "cctv_clip_fdb06ab2.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "1a54fefd-a291-421b-9f60-7f625ee931c7", + "event_type": "perception_session", + "person_id": "d6519a25-0ae3-4201-a937-7ef5303d59d3", + "project_ref": "DTC Good Earth", + "session_at": "2026-04-09T11:07:56.129307", + "rooms_visited": "[\"model_flat_3bhk\", \"terrace\", \"model_flat_2bhk\"]", + "dwell_time_seconds": 560, + "engagement_score": 0.762, + "cctv_ref": "cctv_3750a043", + "notes": "Perception session recorded during scheduled site visit" + }, + { + "event_id": "00c05686-46c2-4997-8e1a-b11feaf9608d", + "event_type": "number_plate_detected", + "person_id": "f809e3d0-e2ac-4b00-8ecc-636fe3cb0076", + "project_ref": "Eden Devprayag", + "detected_at": "2026-01-22T11:07:56.129944", + "vehicle_plate_hash": "WB90L1078", + "confidence": 0.808, + "media_ref": "cctv_clip_09671a98.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "6b1811a6-5f3d-4352-b960-6f5ee5ef4363", + "event_type": "perception_session", + "person_id": "f809e3d0-e2ac-4b00-8ecc-636fe3cb0076", + "project_ref": "Eden Devprayag", + "session_at": "2026-04-13T11:07:56.129961", + "rooms_visited": "[\"model_flat_2bhk\", \"model_flat_3bhk\"]", + "dwell_time_seconds": 1618, + "engagement_score": 0.554, + "cctv_ref": "cctv_cb20e6f9", + "notes": "Perception session recorded during scheduled site visit" + }, + { + "event_id": "27137464-202d-48d0-b228-e303fc4dab57", + "event_type": "number_plate_detected", + "person_id": "33419d26-e422-4bcc-af49-34fed4d13ffd", + "project_ref": "Atri Surya Toron", + "detected_at": "2026-02-12T11:07:56.133841", + "vehicle_plate_hash": "WB57C9023", + "confidence": 0.86, + "media_ref": "cctv_clip_199b7b47.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "c9994402-e65f-4800-881f-69632e992512", + "event_type": "number_plate_detected", + "person_id": "64066e13-d76b-4931-9690-dfb8ad8301ad", + "project_ref": "DTC Good Earth", + "detected_at": "2026-03-05T11:07:56.134662", + "vehicle_plate_hash": "WB31E8458", + "confidence": 0.822, + "media_ref": "cctv_clip_63ea1a0b.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "87f9e970-7e3b-4b65-88fc-3e0c4d510389", + "event_type": "number_plate_detected", + "person_id": "0f924929-dab5-4765-a28e-1f3026e9b047", + "project_ref": "Ambuja Utpaala", + "detected_at": "2026-03-16T11:07:56.135643", + "vehicle_plate_hash": "WB34J8587", + "confidence": 0.975, + "media_ref": "cctv_clip_0bc02958.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "34c3cae3-8ef1-47bb-87aa-f0cc6c3b9398", + "event_type": "perception_session", + "person_id": "95f6fab0-02a2-48c6-8eb6-4027be63e400", + "project_ref": "Siddha Serena", + "session_at": "2026-02-24T11:07:56.136698", + "rooms_visited": "[\"lobby\"]", + "dwell_time_seconds": 631, + "engagement_score": 0.694, + "cctv_ref": "cctv_e42c6e0f", + "notes": "Perception session recorded during scheduled site visit" + }, + { + "event_id": "f90efef1-3a60-4487-8226-cab0a750df4c", + "event_type": "perception_session", + "person_id": "3bdf4c9c-bf45-4089-9368-49d320de4101", + "project_ref": "Siddha Serena", + "session_at": "2026-03-16T11:07:56.138358", + "rooms_visited": "[\"model_flat_3bhk\"]", + "dwell_time_seconds": 923, + "engagement_score": 0.965, + "cctv_ref": "cctv_b0f9f25a", + "notes": "Perception session recorded during scheduled site visit" + }, + { + "event_id": "ab0015b1-aa47-4433-90fd-a9a0e8b2fb09", + "event_type": "number_plate_detected", + "person_id": "34bcfac6-a197-4492-be3b-a784cb03b8ed", + "project_ref": "Atri Aqua", + "detected_at": "2026-02-14T11:07:56.139747", + "vehicle_plate_hash": "WB92A4759", + "confidence": 0.822, + "media_ref": "cctv_clip_9e83f439.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "1ffcd2e4-638c-450c-9c3e-9f583d73e2e2", + "event_type": "perception_session", + "person_id": "c1855849-51d8-4a60-bd63-6db402cf5f7c", + "project_ref": "Merlin Avana", + "session_at": "2026-03-18T11:07:56.141599", + "rooms_visited": "[\"amenity_deck\", \"terrace\", \"model_flat_2bhk\"]", + "dwell_time_seconds": 1410, + "engagement_score": 0.556, + "cctv_ref": "cctv_e5970247", + "notes": "Perception session recorded during scheduled site visit" + }, + { + "event_id": "ac9cd258-280b-4425-976b-d77b94f4eea8", + "event_type": "perception_session", + "person_id": "53ec419c-7155-43e3-900b-a6649272d54a", + "project_ref": "Atri Aqua", + "session_at": "2026-04-03T11:07:56.142392", + "rooms_visited": "[\"amenity_deck\", \"lobby\"]", + "dwell_time_seconds": 1395, + "engagement_score": 0.561, + "cctv_ref": "cctv_9a166842", + "notes": "Perception session recorded during scheduled site visit" + }, + { + "event_id": "2dc7daca-2872-4dc5-bc13-623731e3c47d", + "event_type": "number_plate_detected", + "person_id": "85959ddf-9f36-4351-bbde-10136906b951", + "project_ref": "Godrej Elevate", + "detected_at": "2026-04-15T11:07:56.145373", + "vehicle_plate_hash": "WB38C7989", + "confidence": 0.932, + "media_ref": "cctv_clip_113d1f7d.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "99e2433e-dc5b-411f-b7f8-21043298d77c", + "event_type": "number_plate_detected", + "person_id": "d918b0ea-e93c-4a7c-b8bf-07bd1d40c524", + "project_ref": "Siddha Suburbia Bungalow", + "detected_at": "2026-03-26T11:07:56.146716", + "vehicle_plate_hash": "WB58K4938", + "confidence": 0.861, + "media_ref": "cctv_clip_5412684f.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "a61bfc55-8276-4543-9d08-70313a86912d", + "event_type": "number_plate_detected", + "person_id": "d7a57fc2-7447-42ee-8d7c-b4706d422683", + "project_ref": "Atri Surya Toron", + "detected_at": "2026-04-13T11:07:56.147470", + "vehicle_plate_hash": "WB75B5973", + "confidence": 0.915, + "media_ref": "cctv_clip_0cc1ab74.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "e8b521ee-fe83-439b-a6c8-cf2fdb4be8b2", + "event_type": "perception_session", + "person_id": "d7a57fc2-7447-42ee-8d7c-b4706d422683", + "project_ref": "Atri Surya Toron", + "session_at": "2026-03-03T11:07:56.147487", + "rooms_visited": "[\"model_flat_2bhk\"]", + "dwell_time_seconds": 1938, + "engagement_score": 0.93, + "cctv_ref": "cctv_7586d50e", + "notes": "Perception session recorded during scheduled site visit" + }, + { + "event_id": "c6c2fece-a79b-47f8-8b89-825a96813880", + "event_type": "number_plate_detected", + "person_id": "d114f7c5-7218-4b12-b9c7-d1f77eebda60", + "project_ref": "Atri Surya Toron", + "detected_at": "2026-02-20T11:07:56.148233", + "vehicle_plate_hash": "WB42F2705", + "confidence": 0.771, + "media_ref": "cctv_clip_aa20b75a.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "10b14138-12da-49d3-9652-1638786dbf0a", + "event_type": "perception_session", + "person_id": "50e58ea3-b2e0-45be-9c63-dc853645bf3d", + "project_ref": "Atri Surya Toron", + "session_at": "2026-02-18T11:07:56.149141", + "rooms_visited": "[\"model_flat_2bhk\", \"lobby\", \"amenity_deck\"]", + "dwell_time_seconds": 1761, + "engagement_score": 0.645, + "cctv_ref": "cctv_c0830c10", + "notes": "Perception session recorded during scheduled site visit" + }, + { + "event_id": "95154f1a-d403-4bb2-8761-594234b0b293", + "event_type": "number_plate_detected", + "person_id": "f9256fba-d5a3-4136-9fa7-0ba14da331b8", + "project_ref": "Godrej Blue", + "detected_at": "2026-04-14T11:07:56.150241", + "vehicle_plate_hash": "WB32A7098", + "confidence": 0.762, + "media_ref": "cctv_clip_6ec11036.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "60d81aa2-1df1-4188-a664-78d615d1c67e", + "event_type": "number_plate_detected", + "person_id": "1cb51c49-2b1a-4dce-9bad-b868b864c450", + "project_ref": "DTC Sojon", + "detected_at": "2026-03-25T11:07:56.150951", + "vehicle_plate_hash": "WB20E8041", + "confidence": 0.769, + "media_ref": "cctv_clip_f00015f7.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "f503acce-8dd7-4f0f-9d66-753f2dfa8e15", + "event_type": "number_plate_detected", + "person_id": "2e951f4e-a9d1-4752-8688-6c9e8200c07b", + "project_ref": "Merlin Avana", + "detected_at": "2026-04-01T11:07:56.151796", + "vehicle_plate_hash": "WB67H1598", + "confidence": 0.763, + "media_ref": "cctv_clip_4bbe9899.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "91f628c6-e71f-4c73-a7b2-9a83a9516662", + "event_type": "number_plate_detected", + "person_id": "4a018508-ec6c-4efe-b41b-7ed706e6d60f", + "project_ref": "Merlin Avana", + "detected_at": "2026-03-22T11:07:56.153239", + "vehicle_plate_hash": "WB25G1427", + "confidence": 0.95, + "media_ref": "cctv_clip_a48437b9.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "ac759330-3e7c-4974-bd9f-44ef0b6be0c1", + "event_type": "number_plate_detected", + "person_id": "46f231db-e166-43ce-808b-9c457887084b", + "project_ref": "Godrej Blue", + "detected_at": "2026-04-15T11:07:56.154360", + "vehicle_plate_hash": "WB84D5237", + "confidence": 0.757, + "media_ref": "cctv_clip_df2e627c.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "5ce39dda-c71f-4f92-9628-8a923f25b465", + "event_type": "perception_session", + "person_id": "46f231db-e166-43ce-808b-9c457887084b", + "project_ref": "Godrej Blue", + "session_at": "2026-03-12T11:07:56.154377", + "rooms_visited": "[\"terrace\"]", + "dwell_time_seconds": 1657, + "engagement_score": 0.516, + "cctv_ref": "cctv_359e1a90", + "notes": "Perception session recorded during scheduled site visit" + }, + { + "event_id": "c22057a8-1138-4b1e-8646-5f43f4fc4a4a", + "event_type": "number_plate_detected", + "person_id": "96121797-ac62-41a5-9692-b50e13b6a88e", + "project_ref": "DTC Sojon", + "detected_at": "2026-01-24T11:07:56.156600", + "vehicle_plate_hash": "WB57D2220", + "confidence": 0.863, + "media_ref": "cctv_clip_37c0a915.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "3b98980c-51b9-4f10-8600-ec519d91133d", + "event_type": "number_plate_detected", + "person_id": "57b7df29-105f-4723-9e51-6815847771d1", + "project_ref": "Ambuja Utpaala", + "detected_at": "2026-03-21T11:07:56.157316", + "vehicle_plate_hash": "WB37F3146", + "confidence": 0.953, + "media_ref": "cctv_clip_b1265bb0.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "7d3a4f50-1141-4c22-a3df-a93ba8bb08c6", + "event_type": "number_plate_detected", + "person_id": "ffac9927-3234-4fc9-a6bc-a0fce72110bc", + "project_ref": "Eden Devprayag", + "detected_at": "2026-01-26T11:07:56.157899", + "vehicle_plate_hash": "WB23K7628", + "confidence": 0.956, + "media_ref": "cctv_clip_98fbac45.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "7fe2d241-6796-4825-8e95-d251a858d2d9", + "event_type": "perception_session", + "person_id": "f9ee83f6-a81d-4113-901f-366bd0aee026", + "project_ref": "Godrej Elevate", + "session_at": "2026-04-11T11:07:56.158647", + "rooms_visited": "[\"terrace\"]", + "dwell_time_seconds": 2354, + "engagement_score": 0.572, + "cctv_ref": "cctv_e02eb7e1", + "notes": "Perception session recorded during scheduled site visit" + }, + { + "event_id": "84a414ad-516c-4c40-a955-d13805abc747", + "event_type": "perception_session", + "person_id": "419e9ba8-1ef2-412b-979d-ba14ed8348cb", + "project_ref": "Merlin Avana", + "session_at": "2026-03-24T11:07:56.159434", + "rooms_visited": "[\"model_flat_2bhk\", \"amenity_deck\", \"model_flat_3bhk\"]", + "dwell_time_seconds": 813, + "engagement_score": 0.559, + "cctv_ref": "cctv_1b312405", + "notes": "Perception session recorded during scheduled site visit" + }, + { + "event_id": "52932089-6606-47a9-a4b6-333619f143d4", + "event_type": "number_plate_detected", + "person_id": "85361167-24a9-4c89-a83d-5038137f4fe5", + "project_ref": "DTC Sojon", + "detected_at": "2026-02-04T11:07:56.161418", + "vehicle_plate_hash": "WB24C4073", + "confidence": 0.868, + "media_ref": "cctv_clip_9655eb40.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "2fd69cb0-3c56-418c-aec2-1f2bc7191da7", + "event_type": "number_plate_detected", + "person_id": "8eb8c872-8c9a-491f-aa6a-a94cbbbf4ac7", + "project_ref": "Siddha Sky Waterfront", + "detected_at": "2026-03-18T11:07:56.163767", + "vehicle_plate_hash": "WB38F9967", + "confidence": 0.827, + "media_ref": "cctv_clip_ac82796a.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "88bab0c1-fe8d-4aa7-8103-1ecc4eab10be", + "event_type": "number_plate_detected", + "person_id": "430a3c09-705e-47be-96bb-5bf1c8466975", + "project_ref": "Siddha Suburbia Bungalow", + "detected_at": "2026-03-25T11:07:56.164939", + "vehicle_plate_hash": "WB67B3623", + "confidence": 0.849, + "media_ref": "cctv_clip_3253c43e.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "6705f3e5-ce8b-4cb7-bc17-fcc1ceb671be", + "event_type": "perception_session", + "person_id": "430a3c09-705e-47be-96bb-5bf1c8466975", + "project_ref": "Siddha Suburbia Bungalow", + "session_at": "2026-02-17T11:07:56.164955", + "rooms_visited": "[\"terrace\", \"lobby\", \"amenity_deck\"]", + "dwell_time_seconds": 1966, + "engagement_score": 0.751, + "cctv_ref": "cctv_6db35463", + "notes": "Perception session recorded during scheduled site visit" + }, + { + "event_id": "1cd279d1-6dd0-4553-9216-9a5b156a8e29", + "event_type": "perception_session", + "person_id": "ecd38915-a39a-4f4c-98ad-e9e988bd5da1", + "project_ref": "DTC Sojon", + "session_at": "2026-02-22T11:07:56.165632", + "rooms_visited": "[\"model_flat_3bhk\", \"lobby\"]", + "dwell_time_seconds": 1475, + "engagement_score": 0.66, + "cctv_ref": "cctv_39b2547e", + "notes": "Perception session recorded during scheduled site visit" + }, + { + "event_id": "2bf8ff10-be0f-46f7-ac19-8a70541091ff", + "event_type": "perception_session", + "person_id": "25719a50-0410-4d23-8cc3-6825221aa59d", + "project_ref": "DTC Good Earth", + "session_at": "2026-03-29T11:07:56.167295", + "rooms_visited": "[\"model_flat_3bhk\", \"terrace\", \"lobby\"]", + "dwell_time_seconds": 1599, + "engagement_score": 0.723, + "cctv_ref": "cctv_eff367a9", + "notes": "Perception session recorded during scheduled site visit" + }, + { + "event_id": "b02c9419-3699-4df0-8a18-d7d07aa534d2", + "event_type": "perception_session", + "person_id": "21eb3a96-3697-43d3-a701-d9cd3771e343", + "project_ref": "Merlin Avana", + "session_at": "2026-03-04T11:07:56.168860", + "rooms_visited": "[\"model_flat_2bhk\", \"lobby\"]", + "dwell_time_seconds": 2183, + "engagement_score": 0.685, + "cctv_ref": "cctv_74028748", + "notes": "Perception session recorded during scheduled site visit" + }, + { + "event_id": "3d88d83c-849e-4227-880e-86a4b5f57f84", + "event_type": "number_plate_detected", + "person_id": "7e3b4a03-dec1-441c-8967-282a1c15b26a", + "project_ref": "Godrej Blue", + "detected_at": "2026-02-04T11:07:56.170223", + "vehicle_plate_hash": "WB88H5200", + "confidence": 0.894, + "media_ref": "cctv_clip_caa64559.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "78009ea4-613c-477f-9edc-a6af5b85920b", + "event_type": "perception_session", + "person_id": "7e3b4a03-dec1-441c-8967-282a1c15b26a", + "project_ref": "Godrej Blue", + "session_at": "2026-04-14T11:07:56.170245", + "rooms_visited": "[\"lobby\"]", + "dwell_time_seconds": 1248, + "engagement_score": 0.891, + "cctv_ref": "cctv_5e63b864", + "notes": "Perception session recorded during scheduled site visit" + }, + { + "event_id": "6130e598-8db4-4df2-a849-38a227941190", + "event_type": "perception_session", + "person_id": "89b49a15-9872-4cc5-8bd7-bf09d266ab5d", + "project_ref": "Siddha Sky Waterfront", + "session_at": "2026-03-06T11:07:56.171044", + "rooms_visited": "[\"model_flat_3bhk\", \"amenity_deck\"]", + "dwell_time_seconds": 1031, + "engagement_score": 0.743, + "cctv_ref": "cctv_da5e84db", + "notes": "Perception session recorded during scheduled site visit" + }, + { + "event_id": "3a599686-b3ab-4461-a9c0-4049c0d94dee", + "event_type": "number_plate_detected", + "person_id": "0754c46e-2b4d-4486-b552-58626e33c8cd", + "project_ref": "Sugam Prakriti", + "detected_at": "2026-03-11T11:07:56.172535", + "vehicle_plate_hash": "WB21J8333", + "confidence": 0.9, + "media_ref": "cctv_clip_bb40a8b9.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "e077408a-473d-4923-bfac-a94182045657", + "event_type": "number_plate_detected", + "person_id": "2e255e4c-c3f3-4602-8826-23e7ead652d4", + "project_ref": "Siddha Suburbia Bungalow", + "detected_at": "2026-02-21T11:07:56.173633", + "vehicle_plate_hash": "WB59G5123", + "confidence": 0.865, + "media_ref": "cctv_clip_329cd757.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "c3201732-9dba-4f77-afdc-c2bd2586c392", + "event_type": "number_plate_detected", + "person_id": "dd4c25ba-bf91-48bc-97a0-9e99a71fe33c", + "project_ref": "Godrej Blue", + "detected_at": "2026-04-10T11:07:56.225426", + "vehicle_plate_hash": "WB28E9670", + "confidence": 0.821, + "media_ref": "cctv_clip_d3ea39d2.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "7a3ff532-223d-4bde-9777-66c9475e8b8d", + "event_type": "perception_session", + "person_id": "dd4c25ba-bf91-48bc-97a0-9e99a71fe33c", + "project_ref": "Godrej Blue", + "session_at": "2026-03-26T11:07:56.225450", + "rooms_visited": "[\"terrace\"]", + "dwell_time_seconds": 1326, + "engagement_score": 0.681, + "cctv_ref": "cctv_6e87e85f", + "notes": "Perception session recorded during scheduled site visit" + }, + { + "event_id": "726dac56-d0f0-42e6-9fba-7e5dddff10f7", + "event_type": "number_plate_detected", + "person_id": "baacf61e-da3e-48f2-8965-80e3a688d944", + "project_ref": "Atri Aqua", + "detected_at": "2026-04-10T11:07:56.229018", + "vehicle_plate_hash": "WB89F3991", + "confidence": 0.878, + "media_ref": "cctv_clip_5417cd97.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "ea27bdd3-2f53-4ee2-aa82-aa15484cf986", + "event_type": "number_plate_detected", + "person_id": "687efc96-5ca1-42b1-9fb2-1d531e7f838c", + "project_ref": "DTC Good Earth", + "detected_at": "2026-04-17T11:07:56.232782", + "vehicle_plate_hash": "WB19F2979", + "confidence": 0.816, + "media_ref": "cctv_clip_2166a046.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "35fd0517-9e18-4db4-bac1-c6d9e7842a26", + "event_type": "number_plate_detected", + "person_id": "fc356489-0075-4fd3-ae02-fb7e7548d0a1", + "project_ref": "DTC Sojon", + "detected_at": "2026-01-22T11:07:56.233608", + "vehicle_plate_hash": "WB17A8385", + "confidence": 0.8, + "media_ref": "cctv_clip_3d42924e.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "2618582f-b0ef-47c5-a1ad-d6baf77f5903", + "event_type": "number_plate_detected", + "person_id": "1816ab79-6b60-47c6-826e-9198c42eac46", + "project_ref": "Merlin Avana", + "detected_at": "2026-01-21T11:07:56.234662", + "vehicle_plate_hash": "WB28H2452", + "confidence": 0.841, + "media_ref": "cctv_clip_f63c4765.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "ed81c665-5c7e-43ce-bdf2-53ce93ecd7b7", + "event_type": "number_plate_detected", + "person_id": "9899b0a6-9925-4092-8d60-d6d48051f41d", + "project_ref": "Godrej Elevate", + "detected_at": "2026-02-23T11:07:56.235629", + "vehicle_plate_hash": "WB59L9054", + "confidence": 0.881, + "media_ref": "cctv_clip_bab31155.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "9d7a5e75-7860-46a7-be41-4fe2f7d8da36", + "event_type": "perception_session", + "person_id": "3465da0f-1213-4421-a238-d025aae69581", + "project_ref": "Atri Aqua", + "session_at": "2026-03-10T11:07:56.237392", + "rooms_visited": "[\"model_flat_2bhk\", \"terrace\"]", + "dwell_time_seconds": 2326, + "engagement_score": 0.863, + "cctv_ref": "cctv_4c5cf3fe", + "notes": "Perception session recorded during scheduled site visit" + }, + { + "event_id": "d55cc5ae-775f-4298-904f-d85a484d4733", + "event_type": "number_plate_detected", + "person_id": "cda114da-0dc5-406f-a077-4e7546e834f2", + "project_ref": "Merlin Avana", + "detected_at": "2026-03-04T11:07:56.238886", + "vehicle_plate_hash": "WB82J4115", + "confidence": 0.845, + "media_ref": "cctv_clip_d2150166.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "c65cd780-2a12-4f34-b694-1c0db10b04e2", + "event_type": "number_plate_detected", + "person_id": "61620b71-7b4d-469c-94f5-d5a29a32af9d", + "project_ref": "Siddha Suburbia Bungalow", + "detected_at": "2026-03-11T11:07:56.240459", + "vehicle_plate_hash": "WB98K7456", + "confidence": 0.852, + "media_ref": "cctv_clip_095eca4c.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "17417e9f-0358-48ee-a3b6-e937f93233a1", + "event_type": "perception_session", + "person_id": "61620b71-7b4d-469c-94f5-d5a29a32af9d", + "project_ref": "Siddha Suburbia Bungalow", + "session_at": "2026-04-09T11:07:56.240480", + "rooms_visited": "[\"model_flat_3bhk\", \"model_flat_2bhk\", \"lobby\"]", + "dwell_time_seconds": 1594, + "engagement_score": 0.556, + "cctv_ref": "cctv_fb594693", + "notes": "Perception session recorded during scheduled site visit" + }, + { + "event_id": "e35b2b6f-f9b4-4bad-8703-c5cce97aad1f", + "event_type": "number_plate_detected", + "person_id": "5c0493ae-afd0-457a-86a9-20440e0ea424", + "project_ref": "Godrej Elevate", + "detected_at": "2026-03-30T11:07:56.241449", + "vehicle_plate_hash": "WB80M3905", + "confidence": 0.896, + "media_ref": "cctv_clip_f2faa07a.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "ad5e089e-c1a5-46e4-909b-57d5cd9f447d", + "event_type": "perception_session", + "person_id": "2ba64e53-4945-4526-9799-f897d760079b", + "project_ref": "Atri Surya Toron", + "session_at": "2026-02-28T11:07:56.243114", + "rooms_visited": "[\"terrace\", \"amenity_deck\", \"model_flat_3bhk\"]", + "dwell_time_seconds": 715, + "engagement_score": 0.673, + "cctv_ref": "cctv_7ccb1221", + "notes": "Perception session recorded during scheduled site visit" + }, + { + "event_id": "e7e367e0-9c6c-4f30-8fd7-02a48fe9119a", + "event_type": "number_plate_detected", + "person_id": "daddf4be-b5fa-41be-be4e-f4a4f89e3251", + "project_ref": "DTC Sojon", + "detected_at": "2026-03-29T11:07:56.245541", + "vehicle_plate_hash": "WB34B1127", + "confidence": 0.765, + "media_ref": "cctv_clip_2ad1adb0.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "b6cadab5-9068-4e73-80b9-0de055df9fb1", + "event_type": "number_plate_detected", + "person_id": "97a8886c-c0b8-4e7c-b4ff-10230e1731b7", + "project_ref": "Atri Aqua", + "detected_at": "2026-03-22T11:07:56.247604", + "vehicle_plate_hash": "WB67B7101", + "confidence": 0.776, + "media_ref": "cctv_clip_d7bf805e.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "98ecb790-f5ea-4cc3-8afd-9d6fbd084664", + "event_type": "number_plate_detected", + "person_id": "fe9ff2fe-3587-48ed-8a6e-50b03df1220b", + "project_ref": "Atri Surya Toron", + "detected_at": "2026-01-19T11:07:56.249236", + "vehicle_plate_hash": "WB95F7878", + "confidence": 0.866, + "media_ref": "cctv_clip_2dad776c.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "7c56b316-28a9-4580-af79-2cba3855d98f", + "event_type": "perception_session", + "person_id": "fe9ff2fe-3587-48ed-8a6e-50b03df1220b", + "project_ref": "Atri Surya Toron", + "session_at": "2026-04-17T11:07:56.249259", + "rooms_visited": "[\"model_flat_2bhk\", \"lobby\", \"terrace\"]", + "dwell_time_seconds": 1792, + "engagement_score": 0.817, + "cctv_ref": "cctv_1c6fd401", + "notes": "Perception session recorded during scheduled site visit" + }, + { + "event_id": "73ab1398-3a11-4762-9f51-f19bde8bd84e", + "event_type": "perception_session", + "person_id": "35bd51d8-383e-47e9-b39b-4f6d19cccd32", + "project_ref": "Ambuja Utpaala", + "session_at": "2026-03-11T11:07:56.251365", + "rooms_visited": "[\"terrace\"]", + "dwell_time_seconds": 970, + "engagement_score": 0.963, + "cctv_ref": "cctv_e693a763", + "notes": "Perception session recorded during scheduled site visit" + }, + { + "event_id": "acd87edc-4a86-4779-a208-8e7c821e87c2", + "event_type": "number_plate_detected", + "person_id": "fa779639-4f0b-41ef-b2eb-eb0a9aa91f68", + "project_ref": "Siddha Serena", + "detected_at": "2026-04-17T11:07:56.252921", + "vehicle_plate_hash": "WB66G9830", + "confidence": 0.769, + "media_ref": "cctv_clip_f01b799b.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "f93c4ec7-5081-48bf-be2e-d705e5253f8a", + "event_type": "number_plate_detected", + "person_id": "a585160b-415b-4a19-ab50-ba5b8ff09d85", + "project_ref": "Ambuja Utpaala", + "detected_at": "2026-04-01T11:07:56.253571", + "vehicle_plate_hash": "WB56D7155", + "confidence": 0.873, + "media_ref": "cctv_clip_d5826224.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "fb3d7cdd-4ceb-47b1-b2bc-257c6674f316", + "event_type": "perception_session", + "person_id": "a71616e1-459f-4cd4-ab08-6a7e12df51f0", + "project_ref": "Sugam Prakriti", + "session_at": "2026-03-14T11:07:56.255302", + "rooms_visited": "[\"terrace\", \"model_flat_2bhk\"]", + "dwell_time_seconds": 1764, + "engagement_score": 0.529, + "cctv_ref": "cctv_21ae2525", + "notes": "Perception session recorded during scheduled site visit" + }, + { + "event_id": "8019bd38-0370-48c2-9815-c973f32317ed", + "event_type": "perception_session", + "person_id": "fb2c46b7-cf94-4801-9bb4-1b68b8a95e8c", + "project_ref": "Ambuja Utpaala", + "session_at": "2026-02-21T11:07:56.256210", + "rooms_visited": "[\"terrace\", \"model_flat_2bhk\"]", + "dwell_time_seconds": 2190, + "engagement_score": 0.856, + "cctv_ref": "cctv_bc0dfbf0", + "notes": "Perception session recorded during scheduled site visit" + }, + { + "event_id": "c38760c0-5b06-4095-9dba-187224cb073c", + "event_type": "perception_session", + "person_id": "5fa5cbac-cf94-4510-809e-269928d995ae", + "project_ref": "Siddha Sky Waterfront", + "session_at": "2026-03-16T11:07:56.257093", + "rooms_visited": "[\"model_flat_3bhk\"]", + "dwell_time_seconds": 1228, + "engagement_score": 0.629, + "cctv_ref": "cctv_22bbf1bf", + "notes": "Perception session recorded during scheduled site visit" + }, + { + "event_id": "0e7ef020-cf57-4719-bb99-66f93b285859", + "event_type": "perception_session", + "person_id": "3df786c7-16b5-4dee-acfb-505416f32b00", + "project_ref": "Atri Surya Toron", + "session_at": "2026-03-19T11:07:56.257711", + "rooms_visited": "[\"amenity_deck\", \"model_flat_2bhk\", \"model_flat_3bhk\"]", + "dwell_time_seconds": 2219, + "engagement_score": 0.641, + "cctv_ref": "cctv_4656b058", + "notes": "Perception session recorded during scheduled site visit" + }, + { + "event_id": "29672538-d73d-4802-ad76-e0315d8b7f7a", + "event_type": "number_plate_detected", + "person_id": "f84ceb99-3c0b-4608-bda9-32bb7941086f", + "project_ref": "Siddha Sky Waterfront", + "detected_at": "2026-02-21T11:07:56.258459", + "vehicle_plate_hash": "WB60B7509", + "confidence": 0.895, + "media_ref": "cctv_clip_13d658e4.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "3de0a0ea-7c76-48eb-b8a5-9726bdd25e36", + "event_type": "number_plate_detected", + "person_id": "244a9979-9a8a-4748-b086-1e884057a974", + "project_ref": "Siddha Sky Waterfront", + "detected_at": "2026-01-25T11:07:56.261856", + "vehicle_plate_hash": "WB30A2600", + "confidence": 0.87, + "media_ref": "cctv_clip_d2e9cb31.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "762a0936-f03e-456b-bc33-17f1b0ee9cf2", + "event_type": "perception_session", + "person_id": "244a9979-9a8a-4748-b086-1e884057a974", + "project_ref": "Siddha Sky Waterfront", + "session_at": "2026-02-18T11:07:56.261879", + "rooms_visited": "[\"lobby\", \"model_flat_2bhk\", \"amenity_deck\"]", + "dwell_time_seconds": 872, + "engagement_score": 0.501, + "cctv_ref": "cctv_d78ec647", + "notes": "Perception session recorded during scheduled site visit" + }, + { + "event_id": "303e1440-bd92-4ec0-9a57-9ab837ec1b2d", + "event_type": "perception_session", + "person_id": "c7a2c895-83d6-471e-b6e0-e6b6f451a8c1", + "project_ref": "Siddha Serena", + "session_at": "2026-02-20T11:07:56.262673", + "rooms_visited": "[\"model_flat_2bhk\", \"amenity_deck\"]", + "dwell_time_seconds": 1638, + "engagement_score": 0.73, + "cctv_ref": "cctv_aa89f349", + "notes": "Perception session recorded during scheduled site visit" + }, + { + "event_id": "c9e483fd-57cc-4545-bd82-5b0feef2172e", + "event_type": "number_plate_detected", + "person_id": "4a6fc481-171b-4abb-a6e6-e42f33fef4eb", + "project_ref": "Ambuja Utpaala", + "detected_at": "2026-02-16T11:07:56.263567", + "vehicle_plate_hash": "WB74M2704", + "confidence": 0.847, + "media_ref": "cctv_clip_1c2e0247.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "e9d4a346-e0f8-4b2d-a92c-6bb25eae10d7", + "event_type": "perception_session", + "person_id": "4a6fc481-171b-4abb-a6e6-e42f33fef4eb", + "project_ref": "Ambuja Utpaala", + "session_at": "2026-04-17T11:07:56.263585", + "rooms_visited": "[\"amenity_deck\", \"lobby\", \"model_flat_3bhk\"]", + "dwell_time_seconds": 1263, + "engagement_score": 0.94, + "cctv_ref": "cctv_ea7fbbac", + "notes": "Perception session recorded during scheduled site visit" + }, + { + "event_id": "5ce97b97-7071-481c-9e87-153c57ca5f99", + "event_type": "number_plate_detected", + "person_id": "39f6934c-4c4d-4797-bc27-98da25581bd0", + "project_ref": "Sugam Prakriti", + "detected_at": "2026-04-14T11:07:56.266061", + "vehicle_plate_hash": "WB39F7781", + "confidence": 0.876, + "media_ref": "cctv_clip_807fca28.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "16379fb7-3960-4291-80c2-1fa544c3a352", + "event_type": "perception_session", + "person_id": "c3025e16-80a8-4fc0-8a85-89588583360f", + "project_ref": "Siddha Serena", + "session_at": "2026-02-27T11:07:56.266973", + "rooms_visited": "[\"terrace\"]", + "dwell_time_seconds": 1299, + "engagement_score": 0.803, + "cctv_ref": "cctv_dace20cb", + "notes": "Perception session recorded during scheduled site visit" + }, + { + "event_id": "2adb8555-5e0b-4464-aab7-dbcd13269b43", + "event_type": "perception_session", + "person_id": "daef8550-8c49-4623-8e03-36150d67c873", + "project_ref": "Godrej Blue", + "session_at": "2026-02-24T11:07:56.267752", + "rooms_visited": "[\"lobby\", \"terrace\"]", + "dwell_time_seconds": 1144, + "engagement_score": 0.811, + "cctv_ref": "cctv_b5628826", + "notes": "Perception session recorded during scheduled site visit" + }, + { + "event_id": "b67aaeb4-29e7-4e0e-bc6b-e0019b4176c1", + "event_type": "number_plate_detected", + "person_id": "22966ec8-24b7-4629-9a19-95b3e8511322", + "project_ref": "DTC Sojon", + "detected_at": "2026-04-17T11:07:56.268502", + "vehicle_plate_hash": "WB13C7433", + "confidence": 0.979, + "media_ref": "cctv_clip_badf3887.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "16a2a8dc-3c82-4507-8b1a-5277d8854ebc", + "event_type": "number_plate_detected", + "person_id": "59cfe1e2-da23-44bc-bb2f-03554c1c1b6c", + "project_ref": "Siddha Suburbia Bungalow", + "detected_at": "2026-04-10T11:07:56.273933", + "vehicle_plate_hash": "WB57F7725", + "confidence": 0.793, + "media_ref": "cctv_clip_2c6018ec.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "b7bdc4eb-d509-4b9b-8487-cb450972bb27", + "event_type": "number_plate_detected", + "person_id": "35f02967-7fcd-4397-9871-1a29407fea31", + "project_ref": "Atri Surya Toron", + "detected_at": "2026-03-27T11:07:56.327488", + "vehicle_plate_hash": "WB67A5465", + "confidence": 0.956, + "media_ref": "cctv_clip_473d5541.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + } +] \ No newline at end of file diff --git a/db assets/synthetic_crm_v1/json/claude_supplement/sample_client_graphs_25.json b/db assets/synthetic_crm_v1/json/claude_supplement/sample_client_graphs_25.json new file mode 100644 index 00000000..cf24a49f --- /dev/null +++ b/db assets/synthetic_crm_v1/json/claude_supplement/sample_client_graphs_25.json @@ -0,0 +1,12184 @@ +[ + { + "person": { + "person_id": "54249057-4e0c-45af-9fe2-2002010cc696", + "full_name": "Ritika Dutta", + "primary_email": "ritika.dutta359@outlook.com", + "primary_phone": "+91 7977515194", + "secondary_phone": null, + "linkedin_url": "https://linkedin.com/in/ritika-dutta-508", + "occupation": "Entrepreneur", + "employer": "Accenture", + "account_id": "4a2caa8d-83f7-43da-a05a-966330cf9eab", + "location_city": "Salt Lake", + "location_country": "India", + "buyer_type": "high_intent", + "persona_labels": "[\"status_buyer\", \"cash_rich_investor\"]", + "is_nri": false, + "source_confidence": 0.82, + "created_at": "2025-10-03T11:07:55.874908", + "updated_at": "2026-02-05T11:07:55.874921" + }, + "lead": { + "lead_id": "3919eea9-398c-445f-a237-6e89a2bdd1a4", + "person_id": "54249057-4e0c-45af-9fe2-2002010cc696", + "account_id": "4a2caa8d-83f7-43da-a05a-966330cf9eab", + "source_system": "digital_ad", + "status": "active", + "stage": "inquiry", + "budget_band": "₹51L - ₹56L", + "urgency": "within_6_months", + "assigned_user_id": "user_4", + "primary_project": "DTC Good Earth", + "objection": null, + "motivation": "Upgrade from current home", + "financing_posture": "part_cash_part_loan", + "created_at": "2025-08-02T11:07:55.875004", + "updated_at": "2026-01-27T11:07:55.875006" + }, + "opportunities": [], + "property_interests": [ + { + "interest_id": "1d40eea0-a45e-454e-9c13-310b72e63a5c", + "person_id": "54249057-4e0c-45af-9fe2-2002010cc696", + "project_name": "DTC Good Earth", + "configuration": "2BHK", + "budget_min": 5486053, + "budget_max": 6705176, + "urgency": "within_3_months", + "facing_preference": "any", + "floor_preference": "high", + "notes": "Own home for the first time", + "created_at": "2026-01-21T11:07:55.874952" + }, + { + "interest_id": "cb3d987e-8aae-4ba3-bce4-5972e97d251d", + "person_id": "54249057-4e0c-45af-9fe2-2002010cc696", + "project_name": "DTC Sojon", + "configuration": "3BHK", + "budget_min": 4790422, + "budget_max": 5854961, + "urgency": "within_6_months", + "facing_preference": "north", + "floor_preference": "any", + "notes": "Healthcare access", + "created_at": "2025-10-10T11:07:55.874967" + }, + { + "interest_id": "47db8c96-7b34-49fb-906e-50c498dbb480", + "person_id": "54249057-4e0c-45af-9fe2-2002010cc696", + "project_name": "Siddha Sky Waterfront", + "configuration": "3BHK", + "budget_min": 14366255, + "budget_max": 17558756, + "urgency": "investment_only", + "facing_preference": "west", + "floor_preference": "high", + "notes": "Own home for the first time", + "created_at": "2025-08-20T11:07:55.874978" + } + ], + "interactions": [ + { + "interaction_id": "5dab08d4-823a-4d76-a1de-39cdbd531c7c", + "person_id": "54249057-4e0c-45af-9fe2-2002010cc696", + "lead_id": "3919eea9-398c-445f-a237-6e89a2bdd1a4", + "channel": "digital_ad", + "interaction_type": "digital_ad", + "happened_at": "2026-01-03T11:07:55.875034", + "summary": "Digital Ad interaction regarding DTC Good Earth", + "source_ref": "f35c4b7f-d7f0-4f4e-835a-a84b76b4982d", + "created_at": "2026-01-24T11:07:55.875045" + }, + { + "interaction_id": "8847d675-4cd9-4c29-a58a-ee10d1bc1c09", + "person_id": "54249057-4e0c-45af-9fe2-2002010cc696", + "lead_id": "3919eea9-398c-445f-a237-6e89a2bdd1a4", + "channel": "site_visit", + "interaction_type": "site_visit", + "happened_at": "2025-10-21T11:07:55.875055", + "summary": "Site Visit interaction regarding DTC Good Earth", + "source_ref": "d2932a56-499f-48aa-babd-3b5b95d55a09", + "created_at": "2026-02-01T11:07:55.875064" + }, + { + "interaction_id": "74a183b3-8726-49d7-b9d3-bd0cec2823ce", + "person_id": "54249057-4e0c-45af-9fe2-2002010cc696", + "lead_id": "3919eea9-398c-445f-a237-6e89a2bdd1a4", + "channel": "digital_ad", + "interaction_type": "digital_ad", + "happened_at": "2026-01-10T11:07:55.875086", + "summary": "Digital Ad interaction regarding DTC Good Earth", + "source_ref": "52096209-e32b-4cd7-b676-4130e90ea0c7", + "created_at": "2025-10-26T11:07:55.875094" + }, + { + "interaction_id": "5720ad0a-c260-42cb-9f62-8edfa1997603", + "person_id": "54249057-4e0c-45af-9fe2-2002010cc696", + "lead_id": "3919eea9-398c-445f-a237-6e89a2bdd1a4", + "channel": "digital_ad", + "interaction_type": "digital_ad", + "happened_at": "2026-03-04T11:07:55.875104", + "summary": "Digital Ad interaction regarding DTC Good Earth", + "source_ref": "4ad034d7-4ab1-4c4d-8457-7e5572e6d3ee", + "created_at": "2025-11-11T11:07:55.875111" + }, + { + "interaction_id": "13fb5201-8de3-47c6-bd6a-414b3b68de41", + "person_id": "54249057-4e0c-45af-9fe2-2002010cc696", + "lead_id": "3919eea9-398c-445f-a237-6e89a2bdd1a4", + "channel": "referral", + "interaction_type": "referral", + "happened_at": "2026-01-30T11:07:55.875119", + "summary": "Referral interaction regarding DTC Good Earth", + "source_ref": "2229b1ed-073d-4593-8fea-ee60a78a6362", + "created_at": "2026-01-04T11:07:55.875127" + } + ], + "calls": [], + "transcripts": [], + "messages": [], + "emails": [], + "visits": [ + { + "visit_id": "64f3c15a-45b1-437b-b1d2-9f410206bbb4", + "person_id": "54249057-4e0c-45af-9fe2-2002010cc696", + "lead_id": "3919eea9-398c-445f-a237-6e89a2bdd1a4", + "project_name": "DTC Good Earth", + "visited_at": "2025-11-27T11:07:55.875075", + "visit_notes": "Visited with spouse. Both interested. Requested payment plan.", + "host_user_id": "user_2", + "revisit_intent": "no", + "household_id": null + } + ], + "reminders": [ + { + "reminder_id": "b8b882ba-bdfb-446c-8d2e-e34c0889a396", + "person_id": "54249057-4e0c-45af-9fe2-2002010cc696", + "lead_id": "3919eea9-398c-445f-a237-6e89a2bdd1a4", + "reminder_text": "Check competitor comparison status", + "due_at": "2026-05-09T11:07:55.875130", + "completed": false, + "completed_at": null, + "assigned_user_id": "user_5", + "created_at": "2026-02-08T11:07:55.875140" + } + ], + "qd_scores": [ + { + "qd_id": "0436572e-d359-4999-b70c-2a48400edf28", + "person_id": "54249057-4e0c-45af-9fe2-2002010cc696", + "score_type": "intent_score", + "current_value": 0.804, + "computed_at": "2026-03-16T11:07:55.875156", + "evidence_refs_json": "[\"780716e5-5d46-4400-ad48-e7142edd33f4\", \"6448a902-41aa-4b27-a066-58d2e923312a\", \"08125bf3-0987-4147-84a1-c71d59137262\", \"6a0ae25d-abad-4ded-b26b-ae15da2b8686\"]" + }, + { + "qd_id": "2e9ee781-852f-44c0-9aab-fe53d8cb112a", + "person_id": "54249057-4e0c-45af-9fe2-2002010cc696", + "score_type": "urgency_score", + "current_value": 0.83, + "computed_at": "2026-03-07T11:07:55.875282", + "evidence_refs_json": "[\"a00c972b-67f5-4560-a8e0-901bbbab937d\", \"260b979b-32d0-4433-b93c-45431a73f3eb\"]" + }, + { + "qd_id": "e12ac96b-9551-42cb-a5e9-3c81b7e89013", + "person_id": "54249057-4e0c-45af-9fe2-2002010cc696", + "score_type": "engagement_score", + "current_value": 0.865, + "computed_at": "2026-03-15T11:07:55.875359", + "evidence_refs_json": "[\"72669541-0f50-431b-b3e4-ed81864ef9ff\", \"f1c73581-d44c-4b7f-82cf-ee2c2b83abd7\", \"ee58a8d3-73bb-4ad9-a4e3-b8078348c36e\", \"934c3864-584f-49bb-b0ed-f8dab67ca59b\"]" + } + ], + "qd_timeseries": [ + { + "timeseries_id": "dd7a5dab-2338-402b-b900-2f0b1de7eae2", + "person_id": "54249057-4e0c-45af-9fe2-2002010cc696", + "signal_source": "whatsapp", + "timestamp": "2025-12-28T11:07:55.875188", + "value": 0.878, + "score_type": "intent_score", + "evidence_ref": "cb0e7908-15fc-40e4-ac9c-26d960d1cc5d" + }, + { + "timeseries_id": "ddf4f66a-ccc5-44eb-830a-84bff77f93af", + "person_id": "54249057-4e0c-45af-9fe2-2002010cc696", + "signal_source": "call", + "timestamp": "2026-01-06T11:07:55.875188", + "value": 0.695, + "score_type": "intent_score", + "evidence_ref": "681b8c09-c318-4019-9435-8f639c6878f1" + }, + { + "timeseries_id": "5884b7d1-3db0-428f-b996-cd82d86bd877", + "person_id": "54249057-4e0c-45af-9fe2-2002010cc696", + "signal_source": "call", + "timestamp": "2026-01-26T11:07:55.875188", + "value": 0.793, + "score_type": "intent_score", + "evidence_ref": "0b8272ed-f790-45ef-bbcd-7fcc6e7e41ba" + }, + { + "timeseries_id": "67a43c46-697c-4700-9e49-8e4a2f6676b5", + "person_id": "54249057-4e0c-45af-9fe2-2002010cc696", + "signal_source": "email", + "timestamp": "2026-02-06T11:07:55.875188", + "value": 0.803, + "score_type": "intent_score", + "evidence_ref": "680a6ee1-1af9-4468-b833-b30321ee1a0d" + }, + { + "timeseries_id": "2d4c7000-8e06-470c-903d-af281ef8c2ec", + "person_id": "54249057-4e0c-45af-9fe2-2002010cc696", + "signal_source": "whatsapp", + "timestamp": "2025-11-10T11:07:55.875301", + "value": 0.752, + "score_type": "urgency_score", + "evidence_ref": "d9e037fc-83c2-410c-8c14-364660365f90" + }, + { + "timeseries_id": "2279e065-38dd-4ada-8959-9b755d02a9d5", + "person_id": "54249057-4e0c-45af-9fe2-2002010cc696", + "signal_source": "call", + "timestamp": "2025-11-29T11:07:55.875301", + "value": 0.844, + "score_type": "urgency_score", + "evidence_ref": "37129fab-834c-45ae-8c7f-c517d2ede784" + }, + { + "timeseries_id": "e85ab1ac-8c38-4028-9eb4-0fd52ce77d30", + "person_id": "54249057-4e0c-45af-9fe2-2002010cc696", + "signal_source": "email", + "timestamp": "2025-12-07T11:07:55.875301", + "value": 0.742, + "score_type": "urgency_score", + "evidence_ref": "39f22ef0-4ce8-4cfd-ad9e-dc8eabc2ad8b" + }, + { + "timeseries_id": "cf7e331d-1beb-4916-9124-365f5a331cab", + "person_id": "54249057-4e0c-45af-9fe2-2002010cc696", + "signal_source": "email", + "timestamp": "2025-11-07T11:07:55.875387", + "value": 0.96, + "score_type": "engagement_score", + "evidence_ref": "a4492063-e38e-4498-be10-14c1669235ae" + }, + { + "timeseries_id": "cbbd9940-1aac-4d9e-9584-c7e9852c78cc", + "person_id": "54249057-4e0c-45af-9fe2-2002010cc696", + "signal_source": "email", + "timestamp": "2025-11-27T11:07:55.875387", + "value": 0.807, + "score_type": "engagement_score", + "evidence_ref": "6f8f2ba0-e829-4d58-a88d-225dc9765c23" + }, + { + "timeseries_id": "c37250e3-f773-4836-997f-86e8d4150f64", + "person_id": "54249057-4e0c-45af-9fe2-2002010cc696", + "signal_source": "site_visit", + "timestamp": "2025-12-09T11:07:55.875387", + "value": 0.929, + "score_type": "engagement_score", + "evidence_ref": "3fb92dde-38f2-42a1-8f2d-5e4d84d96bd5" + }, + { + "timeseries_id": "60e66b02-f710-4a7d-82c3-2bc0b513bd60", + "person_id": "54249057-4e0c-45af-9fe2-2002010cc696", + "signal_source": "whatsapp", + "timestamp": "2025-12-29T11:07:55.875387", + "value": 0.811, + "score_type": "engagement_score", + "evidence_ref": "2b0e6fb9-c480-49a7-9298-878302cc7b40" + }, + { + "timeseries_id": "2f84d0a7-5ce2-45e4-8a03-82916eae80de", + "person_id": "54249057-4e0c-45af-9fe2-2002010cc696", + "signal_source": "site_visit", + "timestamp": "2026-01-05T11:07:55.875387", + "value": 0.801, + "score_type": "engagement_score", + "evidence_ref": "257100a5-5f75-4286-af98-009d1c11cac4" + }, + { + "timeseries_id": "c4860e14-0779-4c82-93e3-27aba08e707f", + "person_id": "54249057-4e0c-45af-9fe2-2002010cc696", + "signal_source": "site_visit", + "timestamp": "2026-01-20T11:07:55.875387", + "value": 0.959, + "score_type": "engagement_score", + "evidence_ref": "74f5654a-88e4-4293-8252-cbc2ddc4fc3b" + } + ], + "intel_events": [], + "client360": { + "client_ref": "54249057-4e0c-45af-9fe2-2002010cc696", + "snapshot_generated_at": "2026-04-18T11:07:55.875482", + "identity": { + "full_name": "Ritika Dutta", + "primary_email": "ritika.dutta359@outlook.com", + "primary_phone": "+91 7977515194", + "persona_labels": "[\"status_buyer\", \"cash_rich_investor\"]", + "buyer_type": "high_intent" + }, + "account_links": [ + "4a2caa8d-83f7-43da-a05a-966330cf9eab" + ], + "active_opportunities": [], + "recent_interactions": [ + { + "interaction_id": "5720ad0a-c260-42cb-9f62-8edfa1997603", + "channel": "digital_ad", + "happened_at": "2026-03-04T11:07:55.875104" + }, + { + "interaction_id": "13fb5201-8de3-47c6-bd6a-414b3b68de41", + "channel": "referral", + "happened_at": "2026-01-30T11:07:55.875119" + }, + { + "interaction_id": "74a183b3-8726-49d7-b9d3-bd0cec2823ce", + "channel": "digital_ad", + "happened_at": "2026-01-10T11:07:55.875086" + }, + { + "interaction_id": "5dab08d4-823a-4d76-a1de-39cdbd531c7c", + "channel": "digital_ad", + "happened_at": "2026-01-03T11:07:55.875034" + }, + { + "interaction_id": "8847d675-4cd9-4c29-a58a-ee10d1bc1c09", + "channel": "site_visit", + "happened_at": "2025-10-21T11:07:55.875055" + } + ], + "property_interests": [ + { + "project": "DTC Good Earth", + "config": "2BHK", + "budget_max": 6705176 + }, + { + "project": "DTC Sojon", + "config": "3BHK", + "budget_max": 5854961 + }, + { + "project": "Siddha Sky Waterfront", + "config": "3BHK", + "budget_max": 17558756 + } + ], + "tasks": [ + "Check competitor comparison status" + ], + "qd_overview": { + "intent_score": 0.804, + "urgency_score": 0.83, + "engagement_score": 0.865 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Send project brochure", + "Schedule site visit" + ], + "lead_stage": "inquiry", + "lead_status": "active" + } + }, + { + "person": { + "person_id": "d26bdc40-ff43-46ab-8ba7-e33c06ccbce9", + "full_name": "Arpita Joshi", + "primary_email": "arpita.joshi339@company.com", + "primary_phone": "+91 9001129658", + "secondary_phone": null, + "linkedin_url": null, + "occupation": "NRI Businessman", + "employer": "Pailan Group", + "account_id": "0d840fb4-dbe4-4fba-b4a7-01aff24a3e15", + "location_city": "Rajarhat", + "location_country": "India", + "buyer_type": "slow_burn_investor", + "persona_labels": "[\"nri_diaspora\"]", + "is_nri": false, + "source_confidence": 0.847, + "created_at": "2025-05-24T11:07:55.875516", + "updated_at": "2025-10-21T11:07:55.875519" + }, + "lead": { + "lead_id": "85be4c3b-6e78-45b9-a785-48b4f465be7c", + "person_id": "d26bdc40-ff43-46ab-8ba7-e33c06ccbce9", + "account_id": "0d840fb4-dbe4-4fba-b4a7-01aff24a3e15", + "source_system": "magicbricks", + "status": "active", + "stage": "inquiry", + "budget_band": "₹62L - ₹68L", + "urgency": "within_3_months", + "assigned_user_id": "user_4", + "primary_project": "DTC Good Earth", + "objection": null, + "motivation": "Investment portfolio", + "financing_posture": "home_loan", + "created_at": "2025-09-17T11:07:55.875587", + "updated_at": "2026-01-10T11:07:55.875589" + }, + "opportunities": [], + "property_interests": [ + { + "interest_id": "e92f9b66-69ae-4c1f-90ff-cffb1e9bea70", + "person_id": "d26bdc40-ff43-46ab-8ba7-e33c06ccbce9", + "project_name": "DTC Good Earth", + "configuration": "3BHK", + "budget_min": 6081751, + "budget_max": 7433252, + "urgency": "investment_only", + "facing_preference": "any", + "floor_preference": "mid", + "notes": "Good connectivity to workplace", + "created_at": "2025-12-23T11:07:55.875545" + }, + { + "interest_id": "c646ce19-3398-4ac1-963e-bc3dd937fe32", + "person_id": "d26bdc40-ff43-46ab-8ba7-e33c06ccbce9", + "project_name": "Siddha Serena", + "configuration": "3BHK", + "budget_min": 5965225, + "budget_max": 7290830, + "urgency": "flexible", + "facing_preference": "east", + "floor_preference": "any", + "notes": "Retirement planning", + "created_at": "2025-08-30T11:07:55.875557" + }, + { + "interest_id": "66b6e926-ac39-4d17-ba0c-9e98a4b97ccd", + "person_id": "d26bdc40-ff43-46ab-8ba7-e33c06ccbce9", + "project_name": "Eden Devprayag", + "configuration": "3BHK", + "budget_min": 7996045, + "budget_max": 9772944, + "urgency": "flexible", + "facing_preference": "west", + "floor_preference": "low", + "notes": "Status/prestige", + "created_at": "2025-09-19T11:07:55.875569" + } + ], + "interactions": [ + { + "interaction_id": "09a6f56a-c370-498e-ade7-5fec993db448", + "person_id": "d26bdc40-ff43-46ab-8ba7-e33c06ccbce9", + "lead_id": "85be4c3b-6e78-45b9-a785-48b4f465be7c", + "channel": "builder_event", + "interaction_type": "builder_event", + "happened_at": "2026-01-10T11:07:55.875616", + "summary": "Builder Event interaction regarding DTC Good Earth", + "source_ref": "bd24992f-4eb3-4e15-b75d-2502e681bdb2", + "created_at": "2026-02-05T11:07:55.875625" + }, + { + "interaction_id": "d008bbde-05d1-44d0-8d27-a5f97958ca7f", + "person_id": "d26bdc40-ff43-46ab-8ba7-e33c06ccbce9", + "lead_id": "85be4c3b-6e78-45b9-a785-48b4f465be7c", + "channel": "builder_event", + "interaction_type": "builder_event", + "happened_at": "2025-12-31T11:07:55.875640", + "summary": "Builder Event interaction regarding DTC Good Earth", + "source_ref": "000f9f19-5fb0-4859-acb3-d5b7eff6e1d4", + "created_at": "2026-02-12T11:07:55.875654" + }, + { + "interaction_id": "ae96072c-25f9-4e36-9f2d-89d3f6c145b9", + "person_id": "d26bdc40-ff43-46ab-8ba7-e33c06ccbce9", + "lead_id": "85be4c3b-6e78-45b9-a785-48b4f465be7c", + "channel": "builder_event", + "interaction_type": "builder_event", + "happened_at": "2026-03-28T11:07:55.875663", + "summary": "Builder Event interaction regarding DTC Good Earth", + "source_ref": "bd7c9198-d611-48ba-b64e-26c01d930c8c", + "created_at": "2025-12-18T11:07:55.875671" + }, + { + "interaction_id": "efb563c5-b3fe-445e-9c54-c392dab9a89e", + "person_id": "d26bdc40-ff43-46ab-8ba7-e33c06ccbce9", + "lead_id": "85be4c3b-6e78-45b9-a785-48b4f465be7c", + "channel": "whatsapp", + "interaction_type": "whatsapp", + "happened_at": "2025-10-08T11:07:55.875678", + "summary": "Whatsapp interaction regarding DTC Good Earth", + "source_ref": "047fe2be-003a-4203-9d5d-22bfe101cd4e", + "created_at": "2025-11-30T11:07:55.875686" + }, + { + "interaction_id": "2de220c5-8503-4530-b812-bbfa563ca312", + "person_id": "d26bdc40-ff43-46ab-8ba7-e33c06ccbce9", + "lead_id": "85be4c3b-6e78-45b9-a785-48b4f465be7c", + "channel": "site_visit", + "interaction_type": "site_visit", + "happened_at": "2025-10-20T11:07:55.875753", + "summary": "Site Visit interaction regarding DTC Good Earth", + "source_ref": "fc77be2e-0e4d-4a11-b0c0-b20232f772b4", + "created_at": "2026-02-11T11:07:55.875761" + } + ], + "calls": [], + "transcripts": [], + "messages": [ + { + "message_id": "60c87e32-3b4d-42ef-bc9c-06410840734c", + "interaction_id": "efb563c5-b3fe-445e-9c54-c392dab9a89e", + "person_id": "d26bdc40-ff43-46ab-8ba7-e33c06ccbce9", + "sender_role": "agent", + "message_text": "Hi Arpita, reminder about tomorrow's meeting at our DTC Good Earth sample flat at 11am.", + "delivered_at": "2026-04-12T02:07:55.875688", + "channel": "whatsapp", + "read_at": null + }, + { + "message_id": "6ebc92b9-d80f-4d36-a14b-8668245d48b4", + "interaction_id": "efb563c5-b3fe-445e-9c54-c392dab9a89e", + "person_id": "d26bdc40-ff43-46ab-8ba7-e33c06ccbce9", + "sender_role": "client", + "message_text": "Thanks. Will review and come back to you.", + "delivered_at": "2026-04-13T20:07:55.875688", + "channel": "whatsapp", + "read_at": "2026-04-13T20:39:55.875688" + }, + { + "message_id": "eb2baaf7-b203-4d7b-9c50-d2ea3d1c0db8", + "interaction_id": "efb563c5-b3fe-445e-9c54-c392dab9a89e", + "person_id": "d26bdc40-ff43-46ab-8ba7-e33c06ccbce9", + "sender_role": "agent", + "message_text": "Good evening Arpita! Sharing the updated price list for DTC Good Earth. Some great units still available.", + "delivered_at": "2026-04-14T09:07:55.875688", + "channel": "whatsapp", + "read_at": null + }, + { + "message_id": "d0cc1172-b6ed-4918-b812-ae8b70ab247e", + "interaction_id": "efb563c5-b3fe-445e-9c54-c392dab9a89e", + "person_id": "d26bdc40-ff43-46ab-8ba7-e33c06ccbce9", + "sender_role": "client", + "message_text": "My wife liked the project. We are deciding this week.", + "delivered_at": "2026-04-14T19:07:55.875688", + "channel": "whatsapp", + "read_at": null + }, + { + "message_id": "bb24fc2b-43bb-46d3-a484-215dd812818d", + "interaction_id": "efb563c5-b3fe-445e-9c54-c392dab9a89e", + "person_id": "d26bdc40-ff43-46ab-8ba7-e33c06ccbce9", + "sender_role": "agent", + "message_text": "Hi Arpita, just sending over the brochure for DTC Good Earth as promised. Let me know if you have any questions!", + "delivered_at": "2026-04-16T14:07:55.875688", + "channel": "whatsapp", + "read_at": "2026-04-16T14:35:55.875688" + } + ], + "emails": [], + "visits": [ + { + "visit_id": "85d20807-2fb5-4aee-b3e9-c923821c8a59", + "person_id": "d26bdc40-ff43-46ab-8ba7-e33c06ccbce9", + "lead_id": "85be4c3b-6e78-45b9-a785-48b4f465be7c", + "project_name": "DTC Good Earth", + "visited_at": "2025-10-03T11:07:55.875769", + "visit_notes": "Second visit. More focused on parking and amenities.", + "host_user_id": "user_2", + "revisit_intent": "maybe", + "household_id": null + } + ], + "reminders": [ + { + "reminder_id": "76617562-cfad-40fa-a818-f2689f45dd3a", + "person_id": "d26bdc40-ff43-46ab-8ba7-e33c06ccbce9", + "lead_id": "85be4c3b-6e78-45b9-a785-48b4f465be7c", + "reminder_text": "Send legal documents", + "due_at": "2026-04-24T11:07:55.875775", + "completed": true, + "completed_at": "2026-04-14T11:07:55.875783", + "assigned_user_id": "user_5", + "created_at": "2026-03-17T11:07:55.875785" + } + ], + "qd_scores": [ + { + "qd_id": "98d652a7-a1cf-45e2-90e3-1d9ed0052a3d", + "person_id": "d26bdc40-ff43-46ab-8ba7-e33c06ccbce9", + "score_type": "intent_score", + "current_value": 0.453, + "computed_at": "2026-03-04T11:07:55.875801", + "evidence_refs_json": "[\"f6deed62-274a-45c2-979c-f4950841ac7d\", \"7fcda217-648a-4943-8faf-045f7ee5535b\", \"e2cc91b5-354c-4cf6-bf23-5429dd3a23d4\", \"5c4ca38e-fd3d-49d8-8017-3b37923edaac\"]" + }, + { + "qd_id": "ab5b8796-bf84-4382-b413-93e50c8e1105", + "person_id": "d26bdc40-ff43-46ab-8ba7-e33c06ccbce9", + "score_type": "urgency_score", + "current_value": 0.546, + "computed_at": "2026-03-11T11:07:55.875957", + "evidence_refs_json": "[\"c9cc5550-8e89-42d5-82fd-b1a18104f5da\", \"468465c0-4234-4136-95b7-9c9a1633d15e\", \"7e880c62-c85a-48a4-bed8-dcfb07a4a241\", \"7c6f7c77-ea5a-4502-89d2-1025f81fbcf8\"]" + }, + { + "qd_id": "fb24b214-79f7-4ed0-86e6-6d70e0c0c5e7", + "person_id": "d26bdc40-ff43-46ab-8ba7-e33c06ccbce9", + "score_type": "engagement_score", + "current_value": 0.471, + "computed_at": "2026-04-01T11:07:55.876049", + "evidence_refs_json": "[\"a521b88e-860b-4e27-a724-c3c3ee728cda\", \"bec0ac4b-e12a-40be-b14b-332a2cf4ce38\", \"e482a88b-5117-4c40-bef1-b728986135f7\", \"dace3443-ef9c-467e-9a94-af3b96876de8\"]" + } + ], + "qd_timeseries": [ + { + "timeseries_id": "d1abb8c9-6123-49f4-a429-d72e94d992ad", + "person_id": "d26bdc40-ff43-46ab-8ba7-e33c06ccbce9", + "signal_source": "call", + "timestamp": "2025-11-03T11:07:55.875834", + "value": 0.416, + "score_type": "intent_score", + "evidence_ref": "47415b78-68bc-4308-bd39-d0b111921e7f" + }, + { + "timeseries_id": "4fa69041-a585-4a62-9176-419d266b5952", + "person_id": "d26bdc40-ff43-46ab-8ba7-e33c06ccbce9", + "signal_source": "site_visit", + "timestamp": "2025-11-21T11:07:55.875834", + "value": 0.35, + "score_type": "intent_score", + "evidence_ref": "710837da-dfe1-4ae7-94cc-d73b436ce76a" + }, + { + "timeseries_id": "daf5bbc3-5f93-4fa5-9350-816b19793797", + "person_id": "d26bdc40-ff43-46ab-8ba7-e33c06ccbce9", + "signal_source": "call", + "timestamp": "2025-12-06T11:07:55.875834", + "value": 0.537, + "score_type": "intent_score", + "evidence_ref": "518d4093-e52f-401a-8052-4464a133909f" + }, + { + "timeseries_id": "63c542c1-51cc-4359-8f9a-fbe709f771cd", + "person_id": "d26bdc40-ff43-46ab-8ba7-e33c06ccbce9", + "signal_source": "call", + "timestamp": "2025-12-26T11:07:55.875834", + "value": 0.437, + "score_type": "intent_score", + "evidence_ref": "7941a140-ff30-4626-aba7-a1c0abf5c31c" + }, + { + "timeseries_id": "525f2efb-ada7-462d-9749-10b31c8a3626", + "person_id": "d26bdc40-ff43-46ab-8ba7-e33c06ccbce9", + "signal_source": "email", + "timestamp": "2026-01-11T11:07:55.875834", + "value": 0.503, + "score_type": "intent_score", + "evidence_ref": "6805ed59-416a-4c81-bd57-3e591142cd4c" + }, + { + "timeseries_id": "20b68ff7-1e2d-4007-a750-215ea0bd318f", + "person_id": "d26bdc40-ff43-46ab-8ba7-e33c06ccbce9", + "signal_source": "whatsapp", + "timestamp": "2026-01-29T11:07:55.875834", + "value": 0.509, + "score_type": "intent_score", + "evidence_ref": "929439b2-cf18-4f01-a6da-84fa690326a2" + }, + { + "timeseries_id": "1aad4473-68e4-484b-ae71-25e57255d7a6", + "person_id": "d26bdc40-ff43-46ab-8ba7-e33c06ccbce9", + "signal_source": "email", + "timestamp": "2026-02-11T11:07:55.875834", + "value": 0.445, + "score_type": "intent_score", + "evidence_ref": "2fa20df8-60b4-4240-b8a5-8539505f68b9" + }, + { + "timeseries_id": "df9e9ece-7ea2-4dd0-85a2-9f526ae2e07e", + "person_id": "d26bdc40-ff43-46ab-8ba7-e33c06ccbce9", + "signal_source": "site_visit", + "timestamp": "2025-12-06T11:07:55.875986", + "value": 0.638, + "score_type": "urgency_score", + "evidence_ref": "35624045-6d82-4d17-83d9-6bfb5e03e029" + }, + { + "timeseries_id": "ff1c3108-ae34-42d5-b0d1-75d81b051cc2", + "person_id": "d26bdc40-ff43-46ab-8ba7-e33c06ccbce9", + "signal_source": "email", + "timestamp": "2025-12-18T11:07:55.875986", + "value": 0.563, + "score_type": "urgency_score", + "evidence_ref": "9de45679-b95d-4d00-9f31-bc3fe8d7a51f" + }, + { + "timeseries_id": "0869de6b-2878-42e1-bcc8-c3e372ceca7c", + "person_id": "d26bdc40-ff43-46ab-8ba7-e33c06ccbce9", + "signal_source": "site_visit", + "timestamp": "2026-01-04T11:07:55.875986", + "value": 0.433, + "score_type": "urgency_score", + "evidence_ref": "72545b05-7250-4541-8e2f-193f9fbb389f" + }, + { + "timeseries_id": "c574d968-339d-4e9d-96ef-fe4fc4d079fc", + "person_id": "d26bdc40-ff43-46ab-8ba7-e33c06ccbce9", + "signal_source": "whatsapp", + "timestamp": "2026-01-19T11:07:55.875986", + "value": 0.543, + "score_type": "urgency_score", + "evidence_ref": "6e1da8ad-084c-477b-ab3f-9f6063ba3831" + }, + { + "timeseries_id": "e65a5283-455d-469b-b654-1d9c31c06c28", + "person_id": "d26bdc40-ff43-46ab-8ba7-e33c06ccbce9", + "signal_source": "call", + "timestamp": "2025-12-15T11:07:55.876076", + "value": 0.475, + "score_type": "engagement_score", + "evidence_ref": "91e3194b-be2b-420f-a481-5042864575c6" + }, + { + "timeseries_id": "4b48c815-b1c3-4606-b93c-e425888cb567", + "person_id": "d26bdc40-ff43-46ab-8ba7-e33c06ccbce9", + "signal_source": "call", + "timestamp": "2025-12-26T11:07:55.876076", + "value": 0.409, + "score_type": "engagement_score", + "evidence_ref": "5db561b3-b1d9-40b5-bae8-6a31ad9df899" + }, + { + "timeseries_id": "e2387b56-ab75-4e91-b970-b8fc1de5438a", + "person_id": "d26bdc40-ff43-46ab-8ba7-e33c06ccbce9", + "signal_source": "email", + "timestamp": "2026-01-13T11:07:55.876076", + "value": 0.484, + "score_type": "engagement_score", + "evidence_ref": "c9bc7c70-4e22-43ce-82aa-266d0fb25fa1" + }, + { + "timeseries_id": "4ca00044-a41d-4073-abdf-fcf02be59280", + "person_id": "d26bdc40-ff43-46ab-8ba7-e33c06ccbce9", + "signal_source": "email", + "timestamp": "2026-01-25T11:07:55.876076", + "value": 0.506, + "score_type": "engagement_score", + "evidence_ref": "4d61c1e7-25ba-41ab-80a7-b2b55c7e0666" + }, + { + "timeseries_id": "751a7113-d5a4-4a06-a450-9780e1360488", + "person_id": "d26bdc40-ff43-46ab-8ba7-e33c06ccbce9", + "signal_source": "email", + "timestamp": "2026-02-14T11:07:55.876076", + "value": 0.541, + "score_type": "engagement_score", + "evidence_ref": "527b1dd3-b70d-4021-8dc2-f5d2b2573249" + }, + { + "timeseries_id": "4ac9e50d-0d08-4773-a353-55bcee6c4325", + "person_id": "d26bdc40-ff43-46ab-8ba7-e33c06ccbce9", + "signal_source": "site_visit", + "timestamp": "2026-02-21T11:07:55.876076", + "value": 0.404, + "score_type": "engagement_score", + "evidence_ref": "29b3f946-faa5-4aaf-b9f2-af47adf785af" + }, + { + "timeseries_id": "35128f2e-b350-4702-9f9a-f12831a987cc", + "person_id": "d26bdc40-ff43-46ab-8ba7-e33c06ccbce9", + "signal_source": "site_visit", + "timestamp": "2026-03-05T11:07:55.876076", + "value": 0.51, + "score_type": "engagement_score", + "evidence_ref": "f095bdd4-1044-4080-8d39-8adcd286a5ce" + } + ], + "intel_events": [], + "client360": { + "client_ref": "d26bdc40-ff43-46ab-8ba7-e33c06ccbce9", + "snapshot_generated_at": "2026-04-18T11:07:55.876178", + "identity": { + "full_name": "Arpita Joshi", + "primary_email": "arpita.joshi339@company.com", + "primary_phone": "+91 9001129658", + "persona_labels": "[\"nri_diaspora\"]", + "buyer_type": "slow_burn_investor" + }, + "account_links": [ + "0d840fb4-dbe4-4fba-b4a7-01aff24a3e15" + ], + "active_opportunities": [], + "recent_interactions": [ + { + "interaction_id": "ae96072c-25f9-4e36-9f2d-89d3f6c145b9", + "channel": "builder_event", + "happened_at": "2026-03-28T11:07:55.875663" + }, + { + "interaction_id": "09a6f56a-c370-498e-ade7-5fec993db448", + "channel": "builder_event", + "happened_at": "2026-01-10T11:07:55.875616" + }, + { + "interaction_id": "d008bbde-05d1-44d0-8d27-a5f97958ca7f", + "channel": "builder_event", + "happened_at": "2025-12-31T11:07:55.875640" + }, + { + "interaction_id": "2de220c5-8503-4530-b812-bbfa563ca312", + "channel": "site_visit", + "happened_at": "2025-10-20T11:07:55.875753" + }, + { + "interaction_id": "efb563c5-b3fe-445e-9c54-c392dab9a89e", + "channel": "whatsapp", + "happened_at": "2025-10-08T11:07:55.875678" + } + ], + "property_interests": [ + { + "project": "DTC Good Earth", + "config": "3BHK", + "budget_max": 7433252 + }, + { + "project": "Siddha Serena", + "config": "3BHK", + "budget_max": 7290830 + }, + { + "project": "Eden Devprayag", + "config": "3BHK", + "budget_max": 9772944 + } + ], + "tasks": [], + "qd_overview": { + "intent_score": 0.453, + "urgency_score": 0.546, + "engagement_score": 0.471 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Send project brochure", + "Schedule site visit" + ], + "lead_stage": "inquiry", + "lead_status": "active" + } + }, + { + "person": { + "person_id": "1be9f669-a9da-481f-b3b4-ad8830fad714", + "full_name": "Shalini Ganguly", + "primary_email": "shalini.ganguly258@yahoo.com", + "primary_phone": "+91 7518213060", + "secondary_phone": "+91 8355268102", + "linkedin_url": null, + "occupation": "Civil Engineer", + "employer": "Emami Group", + "account_id": "8aa4d488-571e-4cd4-aa27-8372a49aacbf", + "location_city": "New Town", + "location_country": "India", + "buyer_type": "price_sensitive", + "persona_labels": "[\"upgrade_seeker\", \"investment_focus\"]", + "is_nri": false, + "source_confidence": 0.988, + "created_at": "2025-04-27T11:07:55.876224", + "updated_at": "2026-03-01T11:07:55.876227" + }, + "lead": { + "lead_id": "84889b3f-46dc-43ea-a2a3-3e9d6161ee29", + "person_id": "1be9f669-a9da-481f-b3b4-ad8830fad714", + "account_id": "8aa4d488-571e-4cd4-aa27-8372a49aacbf", + "source_system": "website", + "status": "active", + "stage": "qualified", + "budget_band": "₹52L - ₹57L", + "urgency": "within_6_months", + "assigned_user_id": "user_4", + "primary_project": "Siddha Serena", + "objection": null, + "motivation": "Upgrade from current home", + "financing_posture": "home_loan", + "created_at": "2025-08-30T11:07:55.876303", + "updated_at": "2025-12-13T11:07:55.876305" + }, + "opportunities": [ + { + "opportunity_id": "25ef8c7a-d7db-4d0e-921e-ac49494cf270", + "lead_id": "84889b3f-46dc-43ea-a2a3-3e9d6161ee29", + "person_id": "1be9f669-a9da-481f-b3b4-ad8830fad714", + "project_name": "Siddha Serena", + "unit_config": "3BHK", + "stage": "qualified", + "value": 5221637, + "probability": 20, + "expected_close_date": "2026-06-08T11:07:55.876336", + "next_action": "Schedule site revisit", + "created_at": "2026-01-18T11:07:55.876338", + "updated_at": "2026-03-13T11:07:55.876340" + } + ], + "property_interests": [ + { + "interest_id": "ed31d8e8-fa2e-4bd4-972b-cea2cd09643a", + "person_id": "1be9f669-a9da-481f-b3b4-ad8830fad714", + "project_name": "Siddha Serena", + "configuration": "2BHK", + "budget_min": 5438292, + "budget_max": 6646801, + "urgency": "within_3_months", + "facing_preference": "north", + "floor_preference": "mid", + "notes": "NRI returning to India", + "created_at": "2026-02-14T11:07:55.876253" + }, + { + "interest_id": "fdfc61d3-dc9d-4ee9-a79d-cfdab8c5bd24", + "person_id": "1be9f669-a9da-481f-b3b4-ad8830fad714", + "project_name": "Siddha Suburbia Bungalow", + "configuration": "4BHK", + "budget_min": 14941962, + "budget_max": 18262398, + "urgency": "immediate", + "facing_preference": "east", + "floor_preference": "high", + "notes": "Investment portfolio", + "created_at": "2025-09-07T11:07:55.876265" + }, + { + "interest_id": "99d0923d-1a92-41bf-af48-55440b13ab5b", + "person_id": "1be9f669-a9da-481f-b3b4-ad8830fad714", + "project_name": "Shriram Grand City", + "configuration": "3BHK", + "budget_min": 5724510, + "budget_max": 6996623, + "urgency": "immediate", + "facing_preference": "any", + "floor_preference": "high", + "notes": "Good connectivity to workplace", + "created_at": "2025-10-18T11:07:55.876284" + } + ], + "interactions": [ + { + "interaction_id": "c20e091f-6b50-4c7d-8ff1-90af7affccc7", + "person_id": "1be9f669-a9da-481f-b3b4-ad8830fad714", + "lead_id": "84889b3f-46dc-43ea-a2a3-3e9d6161ee29", + "channel": "referral", + "interaction_type": "referral", + "happened_at": "2025-11-16T11:07:55.876349", + "summary": "Referral interaction regarding Siddha Serena", + "source_ref": "6ec47a1d-1515-4f50-b6db-71bb4f32da17", + "created_at": "2025-11-10T11:07:55.876357" + }, + { + "interaction_id": "ad70fdb7-73d4-4375-ae90-2cf0424f47bd", + "person_id": "1be9f669-a9da-481f-b3b4-ad8830fad714", + "lead_id": "84889b3f-46dc-43ea-a2a3-3e9d6161ee29", + "channel": "call", + "interaction_type": "call", + "happened_at": "2025-10-01T11:07:55.876366", + "summary": "Call interaction regarding Siddha Serena", + "source_ref": "f5f00892-6f76-4d3b-aa36-e031bf63d4bd", + "created_at": "2025-12-05T11:07:55.876376" + }, + { + "interaction_id": "5d491fdf-4067-41c4-a6c4-fe006383c478", + "person_id": "1be9f669-a9da-481f-b3b4-ad8830fad714", + "lead_id": "84889b3f-46dc-43ea-a2a3-3e9d6161ee29", + "channel": "call", + "interaction_type": "call", + "happened_at": "2026-02-03T11:07:55.876455", + "summary": "Call interaction regarding Siddha Serena", + "source_ref": "b71293b1-f433-4ac0-88de-a8f9d8f27dea", + "created_at": "2025-10-19T11:07:55.876464" + }, + { + "interaction_id": "d597c43c-b25f-41ae-b69b-501a583dd785", + "person_id": "1be9f669-a9da-481f-b3b4-ad8830fad714", + "lead_id": "84889b3f-46dc-43ea-a2a3-3e9d6161ee29", + "channel": "digital_ad", + "interaction_type": "digital_ad", + "happened_at": "2026-01-04T11:07:55.876537", + "summary": "Digital Ad interaction regarding Siddha Serena", + "source_ref": "4793cb08-f337-4b73-b9c7-770fec9a3c25", + "created_at": "2026-02-07T11:07:55.876545" + }, + { + "interaction_id": "7bd79c6c-a356-41a3-a08e-2e4821d41bdc", + "person_id": "1be9f669-a9da-481f-b3b4-ad8830fad714", + "lead_id": "84889b3f-46dc-43ea-a2a3-3e9d6161ee29", + "channel": "referral", + "interaction_type": "referral", + "happened_at": "2025-11-30T11:07:55.876556", + "summary": "Referral interaction regarding Siddha Serena", + "source_ref": "bb57a950-ca38-4417-b96f-dd43c70cbe24", + "created_at": "2025-12-12T11:07:55.876564" + }, + { + "interaction_id": "2c95c593-675b-4f28-b350-0fc1ca5c05f4", + "person_id": "1be9f669-a9da-481f-b3b4-ad8830fad714", + "lead_id": "84889b3f-46dc-43ea-a2a3-3e9d6161ee29", + "channel": "site_visit", + "interaction_type": "site_visit", + "happened_at": "2026-03-28T11:07:55.876572", + "summary": "Site Visit interaction regarding Siddha Serena", + "source_ref": "07aad4ed-bfb1-4dd5-8f49-e483f5bd76c5", + "created_at": "2025-11-15T11:07:55.876580" + } + ], + "calls": [ + { + "call_id": "4f139857-cd7d-42a6-999c-e2fef94f5a4e", + "interaction_id": "ad70fdb7-73d4-4375-ae90-2cf0424f47bd", + "person_id": "1be9f669-a9da-481f-b3b4-ad8830fad714", + "call_direction": "outbound", + "duration_seconds": 644, + "recording_ref": "recording_4f139857.mp3", + "transcript_ref": "90c93734-1706-44b2-84b9-62c4d55d99a9", + "call_ts": "2025-12-23T11:07:55.876393" + }, + { + "call_id": "63ed8200-b9d0-4328-80e2-d627ddac5090", + "interaction_id": "5d491fdf-4067-41c4-a6c4-fe006383c478", + "person_id": "1be9f669-a9da-481f-b3b4-ad8830fad714", + "call_direction": "outbound", + "duration_seconds": 635, + "recording_ref": "recording_63ed8200.mp3", + "transcript_ref": "1e9b3c17-41db-4da5-83af-10c8da000315", + "call_ts": "2025-10-20T11:07:55.876479" + } + ], + "transcripts": [ + { + "transcript_id": "90c93734-1706-44b2-84b9-62c4d55d99a9", + "call_id": "4f139857-cd7d-42a6-999c-e2fef94f5a4e", + "person_id": "1be9f669-a9da-481f-b3b4-ad8830fad714", + "interaction_ref": "ad70fdb7-73d4-4375-ae90-2cf0424f47bd", + "language": "en", + "full_text": "Good morning Shalini, just following up on your site visit last week. Yes I visited with my wife. We liked the view from the higher floors. That's wonderful. We also have east-facing units still available. What's the difference in price between east and west facing? East facing carries a premium of about 3 to 4 percent. But the morning light is excellent. Hmm. And what about car parking? We have two vehicles. We offer two covered parking slots for 3BHK and above. That's included. Okay let me check our loan eligibility and I'll call you back this week. Perfect. I'll also check if the early booking offer can be extended. Thank you Shalini.", + "speaker_segments_json": "[{\"speaker\": \"agent\", \"start_seconds\": 0, \"end_seconds\": 14, \"text\": \"Good morning Shalini, just following up on your site visit last week.\"}, {\"speaker\": \"client\", \"start_seconds\": 21, \"end_seconds\": 35, \"text\": \"Yes I visited with my wife. We liked the view from the higher floors.\"}, {\"speaker\": \"agent\", \"start_seconds\": 18, \"end_seconds\": 26, \"text\": \"That's wonderful. We also have east-facing units still available.\"}, {\"speaker\": \"client\", \"start_seconds\": 42, \"end_seconds\": 53, \"text\": \"What's the difference in price between east and west facing?\"}, {\"speaker\": \"agent\", \"start_seconds\": 64, \"end_seconds\": 71, \"text\": \"East facing carries a premium of about 3 to 4 percent. But the morning light is excellent.\"}, {\"speaker\": \"client\", \"start_seconds\": 65, \"end_seconds\": 77, \"text\": \"Hmm. And what about car parking? We have two vehicles.\"}, {\"speaker\": \"agent\", \"start_seconds\": 78, \"end_seconds\": 85, \"text\": \"We offer two covered parking slots for 3BHK and above. That's included.\"}, {\"speaker\": \"client\", \"start_seconds\": 91, \"end_seconds\": 96, \"text\": \"Okay let me check our loan eligibility and I'll call you back this week.\"}, {\"speaker\": \"agent\", \"start_seconds\": 168, \"end_seconds\": 187, \"text\": \"Perfect. I'll also check if the early booking offer can be extended. Thank you Shalini.\"}]", + "confidence": 0.87, + "created_at": "2025-12-23T11:07:55.876393" + }, + { + "transcript_id": "1e9b3c17-41db-4da5-83af-10c8da000315", + "call_id": "63ed8200-b9d0-4328-80e2-d627ddac5090", + "person_id": "1be9f669-a9da-481f-b3b4-ad8830fad714", + "interaction_ref": "5d491fdf-4067-41c4-a6c4-fe006383c478", + "language": "en", + "full_text": "Good morning Shalini, just following up on your site visit last week. Yes I visited with my wife. We liked the view from the higher floors. That's wonderful. We also have east-facing units still available. What's the difference in price between east and west facing? East facing carries a premium of about 3 to 4 percent. But the morning light is excellent. Hmm. And what about car parking? We have two vehicles. We offer two covered parking slots for 3BHK and above. That's included. Okay let me check our loan eligibility and I'll call you back this week. Perfect. I'll also check if the early booking offer can be extended. Thank you Shalini.", + "speaker_segments_json": "[{\"speaker\": \"agent\", \"start_seconds\": 0, \"end_seconds\": 7, \"text\": \"Good morning Shalini, just following up on your site visit last week.\"}, {\"speaker\": \"client\", \"start_seconds\": 15, \"end_seconds\": 28, \"text\": \"Yes I visited with my wife. We liked the view from the higher floors.\"}, {\"speaker\": \"agent\", \"start_seconds\": 28, \"end_seconds\": 46, \"text\": \"That's wonderful. We also have east-facing units still available.\"}, {\"speaker\": \"client\", \"start_seconds\": 33, \"end_seconds\": 45, \"text\": \"What's the difference in price between east and west facing?\"}, {\"speaker\": \"agent\", \"start_seconds\": 48, \"end_seconds\": 61, \"text\": \"East facing carries a premium of about 3 to 4 percent. But the morning light is excellent.\"}, {\"speaker\": \"client\", \"start_seconds\": 60, \"end_seconds\": 67, \"text\": \"Hmm. And what about car parking? We have two vehicles.\"}, {\"speaker\": \"agent\", \"start_seconds\": 54, \"end_seconds\": 64, \"text\": \"We offer two covered parking slots for 3BHK and above. That's included.\"}, {\"speaker\": \"client\", \"start_seconds\": 119, \"end_seconds\": 133, \"text\": \"Okay let me check our loan eligibility and I'll call you back this week.\"}, {\"speaker\": \"agent\", \"start_seconds\": 176, \"end_seconds\": 184, \"text\": \"Perfect. I'll also check if the early booking offer can be extended. Thank you Shalini.\"}]", + "confidence": 0.937, + "created_at": "2025-10-20T11:07:55.876479" + } + ], + "messages": [], + "emails": [], + "visits": [ + { + "visit_id": "0b368def-c03e-4627-924b-e3d9619f2a90", + "person_id": "1be9f669-a9da-481f-b3b4-ad8830fad714", + "lead_id": "84889b3f-46dc-43ea-a2a3-3e9d6161ee29", + "project_name": "Siddha Serena", + "visited_at": "2026-04-07T11:07:55.876587", + "visit_notes": "NRI client on short trip. Wants to finalize before return.", + "host_user_id": "user_3", + "revisit_intent": "maybe", + "household_id": null + } + ], + "reminders": [ + { + "reminder_id": "f9b23302-f3c3-41bf-b425-63384791d7fa", + "person_id": "1be9f669-a9da-481f-b3b4-ad8830fad714", + "lead_id": "84889b3f-46dc-43ea-a2a3-3e9d6161ee29", + "reminder_text": "Send festive offer", + "due_at": "2026-05-18T11:07:55.876592", + "completed": false, + "completed_at": null, + "assigned_user_id": "user_5", + "created_at": "2026-03-17T11:07:55.876601" + }, + { + "reminder_id": "beb96a0a-34b8-40c0-9111-5d9fa3079057", + "person_id": "1be9f669-a9da-481f-b3b4-ad8830fad714", + "lead_id": "84889b3f-46dc-43ea-a2a3-3e9d6161ee29", + "reminder_text": "Send legal documents", + "due_at": "2026-04-24T11:07:55.876603", + "completed": true, + "completed_at": "2026-03-30T11:07:55.876616", + "assigned_user_id": "user_1", + "created_at": "2026-01-29T11:07:55.876618" + }, + { + "reminder_id": "1b139952-615c-445c-9f49-929f6110c78a", + "person_id": "1be9f669-a9da-481f-b3b4-ad8830fad714", + "lead_id": "84889b3f-46dc-43ea-a2a3-3e9d6161ee29", + "reminder_text": "Re-engage after 2 weeks silence", + "due_at": "2026-04-24T11:07:55.876620", + "completed": false, + "completed_at": null, + "assigned_user_id": "user_4", + "created_at": "2026-01-19T11:07:55.876628" + } + ], + "qd_scores": [ + { + "qd_id": "6001c37e-9e6f-4635-bb5f-b580b1d1b5b6", + "person_id": "1be9f669-a9da-481f-b3b4-ad8830fad714", + "score_type": "intent_score", + "current_value": 0.479, + "computed_at": "2026-04-07T11:07:55.876647", + "evidence_refs_json": "[\"5365196e-b258-401f-a74a-0163486e87e7\", \"3921b534-330a-4fc3-a173-d2d3cb0a6c3e\", \"ec6461bf-337c-4369-b278-cbd8610df3a0\", \"5ce1a6b7-a357-451f-b154-ce1be23d450d\"]" + }, + { + "qd_id": "6d5209fe-4573-4484-9f85-1d25a5dcf05b", + "person_id": "1be9f669-a9da-481f-b3b4-ad8830fad714", + "score_type": "urgency_score", + "current_value": 0.584, + "computed_at": "2026-04-04T11:07:55.876772", + "evidence_refs_json": "[\"b50683d0-34ef-428c-acf6-81368e267fc7\", \"eeb538d5-47b5-44ea-a39c-0d58b895a803\", \"2aa3494a-6877-440f-9077-93effac139f8\", \"3f40807d-e99f-4c3d-960e-1a8ba267d9e2\"]" + }, + { + "qd_id": "3aed3890-cb16-4fb6-a44b-99ea237d1912", + "person_id": "1be9f669-a9da-481f-b3b4-ad8830fad714", + "score_type": "engagement_score", + "current_value": 0.621, + "computed_at": "2026-02-18T11:07:55.876864", + "evidence_refs_json": "[\"2bc4afd4-5dbf-4e14-ac4e-2cbf9dab47e7\", \"5c8b8747-9d89-48e6-bc98-4737e46b82c7\"]" + } + ], + "qd_timeseries": [ + { + "timeseries_id": "2f29c733-99e7-4ed4-871a-a115ffbc36d8", + "person_id": "1be9f669-a9da-481f-b3b4-ad8830fad714", + "signal_source": "email", + "timestamp": "2025-12-07T11:07:55.876676", + "value": 0.554, + "score_type": "intent_score", + "evidence_ref": "d5cfb9fa-9482-4e63-a655-30b069966955" + }, + { + "timeseries_id": "1039252f-7e00-4ab4-99a9-a16d0e6ca64a", + "person_id": "1be9f669-a9da-481f-b3b4-ad8830fad714", + "signal_source": "email", + "timestamp": "2025-12-13T11:07:55.876676", + "value": 0.38, + "score_type": "intent_score", + "evidence_ref": "80a2f265-0a9a-4bf3-b800-e59a26c7ecb7" + }, + { + "timeseries_id": "856600ac-6602-4d14-aeb9-5832b36a5cd7", + "person_id": "1be9f669-a9da-481f-b3b4-ad8830fad714", + "signal_source": "site_visit", + "timestamp": "2025-12-26T11:07:55.876676", + "value": 0.387, + "score_type": "intent_score", + "evidence_ref": "2d713376-ea84-4d99-a8f2-58734f4ba994" + }, + { + "timeseries_id": "0c3a6e3d-de71-402a-80c5-80d9e6f31652", + "person_id": "1be9f669-a9da-481f-b3b4-ad8830fad714", + "signal_source": "call", + "timestamp": "2026-01-12T11:07:55.876676", + "value": 0.517, + "score_type": "intent_score", + "evidence_ref": "d557b26d-7fe8-402f-aff8-128114afab16" + }, + { + "timeseries_id": "06d07e31-bbcb-49d9-8ef4-bbdc016b1846", + "person_id": "1be9f669-a9da-481f-b3b4-ad8830fad714", + "signal_source": "email", + "timestamp": "2026-01-31T11:07:55.876676", + "value": 0.372, + "score_type": "intent_score", + "evidence_ref": "1479b782-61fb-4320-af83-d7945a4e2af4" + }, + { + "timeseries_id": "d697c113-892d-415d-be0c-b57866bd450d", + "person_id": "1be9f669-a9da-481f-b3b4-ad8830fad714", + "signal_source": "email", + "timestamp": "2026-02-16T11:07:55.876676", + "value": 0.509, + "score_type": "intent_score", + "evidence_ref": "049cb8ed-2395-4b5e-887c-1882957f08b6" + }, + { + "timeseries_id": "b38ffe89-0260-43f8-885b-82717a2ee92f", + "person_id": "1be9f669-a9da-481f-b3b4-ad8830fad714", + "signal_source": "email", + "timestamp": "2025-11-28T11:07:55.876801", + "value": 0.675, + "score_type": "urgency_score", + "evidence_ref": "1ec635b5-dff3-40f5-91c6-c08df86d0257" + }, + { + "timeseries_id": "bbe99d5f-733a-4bfa-aa0f-3d1321879daf", + "person_id": "1be9f669-a9da-481f-b3b4-ad8830fad714", + "signal_source": "call", + "timestamp": "2025-12-18T11:07:55.876801", + "value": 0.471, + "score_type": "urgency_score", + "evidence_ref": "64e6bb9f-2b90-4f08-85f4-25cc4caf5831" + }, + { + "timeseries_id": "8a1591b1-8e96-4fff-86ea-03eb0dde2d9a", + "person_id": "1be9f669-a9da-481f-b3b4-ad8830fad714", + "signal_source": "whatsapp", + "timestamp": "2025-12-30T11:07:55.876801", + "value": 0.539, + "score_type": "urgency_score", + "evidence_ref": "a7c5d705-590a-4e04-ac5c-4f67e7756df3" + }, + { + "timeseries_id": "94cec594-b4b9-4143-a3fe-069552f5cc71", + "person_id": "1be9f669-a9da-481f-b3b4-ad8830fad714", + "signal_source": "email", + "timestamp": "2026-01-04T11:07:55.876801", + "value": 0.486, + "score_type": "urgency_score", + "evidence_ref": "c1fd6aba-16d1-454d-82d1-f78fa891ad9d" + }, + { + "timeseries_id": "468987d3-b197-41de-bf27-8604aaba3d6d", + "person_id": "1be9f669-a9da-481f-b3b4-ad8830fad714", + "signal_source": "email", + "timestamp": "2025-11-29T11:07:55.876880", + "value": 0.725, + "score_type": "engagement_score", + "evidence_ref": "486b3175-e1b9-4bf5-85af-26eebd83e10f" + }, + { + "timeseries_id": "dbac346a-c05e-4a97-8ead-498ba3466ee5", + "person_id": "1be9f669-a9da-481f-b3b4-ad8830fad714", + "signal_source": "site_visit", + "timestamp": "2025-12-13T11:07:55.876880", + "value": 0.601, + "score_type": "engagement_score", + "evidence_ref": "05855902-2ad3-4019-a220-cddca86b1663" + }, + { + "timeseries_id": "69bdfea1-2c58-42f3-babd-800758c0c9ae", + "person_id": "1be9f669-a9da-481f-b3b4-ad8830fad714", + "signal_source": "email", + "timestamp": "2026-01-02T11:07:55.876880", + "value": 0.559, + "score_type": "engagement_score", + "evidence_ref": "6c683913-a4c1-418e-9ac9-35a1a2a16a00" + } + ], + "intel_events": [], + "client360": { + "client_ref": "1be9f669-a9da-481f-b3b4-ad8830fad714", + "snapshot_generated_at": "2026-04-18T11:07:55.876927", + "identity": { + "full_name": "Shalini Ganguly", + "primary_email": "shalini.ganguly258@yahoo.com", + "primary_phone": "+91 7518213060", + "persona_labels": "[\"upgrade_seeker\", \"investment_focus\"]", + "buyer_type": "price_sensitive" + }, + "account_links": [ + "8aa4d488-571e-4cd4-aa27-8372a49aacbf" + ], + "active_opportunities": [ + { + "opportunity_id": "25ef8c7a-d7db-4d0e-921e-ac49494cf270", + "project": "Siddha Serena", + "stage": "qualified", + "value": 5221637 + } + ], + "recent_interactions": [ + { + "interaction_id": "2c95c593-675b-4f28-b350-0fc1ca5c05f4", + "channel": "site_visit", + "happened_at": "2026-03-28T11:07:55.876572" + }, + { + "interaction_id": "5d491fdf-4067-41c4-a6c4-fe006383c478", + "channel": "call", + "happened_at": "2026-02-03T11:07:55.876455" + }, + { + "interaction_id": "d597c43c-b25f-41ae-b69b-501a583dd785", + "channel": "digital_ad", + "happened_at": "2026-01-04T11:07:55.876537" + }, + { + "interaction_id": "7bd79c6c-a356-41a3-a08e-2e4821d41bdc", + "channel": "referral", + "happened_at": "2025-11-30T11:07:55.876556" + }, + { + "interaction_id": "c20e091f-6b50-4c7d-8ff1-90af7affccc7", + "channel": "referral", + "happened_at": "2025-11-16T11:07:55.876349" + } + ], + "property_interests": [ + { + "project": "Siddha Serena", + "config": "2BHK", + "budget_max": 6646801 + }, + { + "project": "Siddha Suburbia Bungalow", + "config": "4BHK", + "budget_max": 18262398 + }, + { + "project": "Shriram Grand City", + "config": "3BHK", + "budget_max": 6996623 + } + ], + "tasks": [ + "Send festive offer", + "Re-engage after 2 weeks silence" + ], + "qd_overview": { + "intent_score": 0.479, + "urgency_score": 0.584, + "engagement_score": 0.621 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Book site visit", + "Share payment plan" + ], + "lead_stage": "qualified", + "lead_status": "active" + } + }, + { + "person": { + "person_id": "ea45a472-d0e5-4aea-8323-e4b893bb8ac8", + "full_name": "Rupali Shah", + "primary_email": "rupali.shah349@company.com", + "primary_phone": "+91 8147497835", + "secondary_phone": "+91 8214784185", + "linkedin_url": "https://linkedin.com/in/rupali-shah-957", + "occupation": "NRI Businessman", + "employer": "West Bengal Government", + "account_id": "83abc8f7-37e5-473d-805e-2f5b39cde2af", + "location_city": "Dubai", + "location_country": "Singapore", + "buyer_type": "nri", + "persona_labels": "[\"investment_focus\"]", + "is_nri": true, + "source_confidence": 0.895, + "created_at": "2025-05-05T11:07:55.876960", + "updated_at": "2025-12-13T11:07:55.876963" + }, + "lead": { + "lead_id": "88074796-bad0-4413-b31d-1aaed9ce7120", + "person_id": "ea45a472-d0e5-4aea-8323-e4b893bb8ac8", + "account_id": "83abc8f7-37e5-473d-805e-2f5b39cde2af", + "source_system": "website", + "status": "active", + "stage": "site_visit_done", + "budget_band": "₹171L - ₹188L", + "urgency": "within_3_months", + "assigned_user_id": "user_5", + "primary_project": "Siddha Sky Waterfront", + "objection": null, + "motivation": "Healthcare access", + "financing_posture": "part_cash_part_loan", + "created_at": "2025-07-01T11:07:55.877040", + "updated_at": "2026-03-23T11:07:55.877041" + }, + "opportunities": [ + { + "opportunity_id": "d7ff7dcc-cd11-4132-91c9-4b4f93ffafde", + "lead_id": "88074796-bad0-4413-b31d-1aaed9ce7120", + "person_id": "ea45a472-d0e5-4aea-8323-e4b893bb8ac8", + "project_name": "Siddha Sky Waterfront", + "unit_config": "4BHK", + "stage": "site_visit_done", + "value": 17139414, + "probability": 40, + "expected_close_date": "2026-09-15T11:07:55.877084", + "next_action": "Connect with bank", + "created_at": "2025-11-23T11:07:55.877086", + "updated_at": "2026-03-09T11:07:55.877088" + } + ], + "property_interests": [ + { + "interest_id": "02a1f1db-2a2f-4bf9-ae6a-9bddf51258cd", + "person_id": "ea45a472-d0e5-4aea-8323-e4b893bb8ac8", + "project_name": "Siddha Sky Waterfront", + "configuration": "4BHK", + "budget_min": 11398554, + "budget_max": 13931567, + "urgency": "within_3_months", + "facing_preference": "any", + "floor_preference": "any", + "notes": "Children's future", + "created_at": "2025-07-13T11:07:55.877011" + }, + { + "interest_id": "d6fd8bc3-5f0d-4c13-8d66-8574b4e43c21", + "person_id": "ea45a472-d0e5-4aea-8323-e4b893bb8ac8", + "project_name": "Godrej Elevate", + "configuration": "4BHK", + "budget_min": 10559052, + "budget_max": 12905508, + "urgency": "within_6_months", + "facing_preference": "south", + "floor_preference": "any", + "notes": "Status/prestige", + "created_at": "2025-09-01T11:07:55.877025" + } + ], + "interactions": [ + { + "interaction_id": "a38a0f1c-87ca-4b1f-ab9f-8f587eaba530", + "person_id": "ea45a472-d0e5-4aea-8323-e4b893bb8ac8", + "lead_id": "88074796-bad0-4413-b31d-1aaed9ce7120", + "channel": "site_visit", + "interaction_type": "site_visit", + "happened_at": "2025-11-02T11:07:55.877097", + "summary": "Site Visit interaction regarding Siddha Sky Waterfront", + "source_ref": "ecaaf0e2-d0fa-45ea-a5c0-9f5eb3b21502", + "created_at": "2026-03-28T11:07:55.877105" + }, + { + "interaction_id": "b5aa6ca3-8d97-4d5a-9831-c92850fafbe1", + "person_id": "ea45a472-d0e5-4aea-8323-e4b893bb8ac8", + "lead_id": "88074796-bad0-4413-b31d-1aaed9ce7120", + "channel": "email", + "interaction_type": "email", + "happened_at": "2025-11-08T11:07:55.877125", + "summary": "Email interaction regarding Siddha Sky Waterfront", + "source_ref": "11e44436-db2e-42a6-9a78-b0327a2d2c63", + "created_at": "2025-10-16T11:07:55.877133" + }, + { + "interaction_id": "2e96a9d5-effb-4d18-8371-93a2236af723", + "person_id": "ea45a472-d0e5-4aea-8323-e4b893bb8ac8", + "lead_id": "88074796-bad0-4413-b31d-1aaed9ce7120", + "channel": "call", + "interaction_type": "call", + "happened_at": "2025-10-08T11:07:55.877156", + "summary": "Call interaction regarding Siddha Sky Waterfront", + "source_ref": "728e1d81-813b-4ebc-a830-8eaaedba7f2b", + "created_at": "2026-03-25T11:07:55.877163" + }, + { + "interaction_id": "d8de1be9-6f4b-481d-b6ab-63d1499d23d4", + "person_id": "ea45a472-d0e5-4aea-8323-e4b893bb8ac8", + "lead_id": "88074796-bad0-4413-b31d-1aaed9ce7120", + "channel": "builder_event", + "interaction_type": "builder_event", + "happened_at": "2026-01-10T11:07:55.877249", + "summary": "Builder Event interaction regarding Siddha Sky Waterfront", + "source_ref": "8df20253-3b6e-426d-b851-3ba99efb290c", + "created_at": "2025-11-10T11:07:55.877261" + }, + { + "interaction_id": "7e50e3b2-9fcb-4fca-99d2-3b4e0c5f3300", + "person_id": "ea45a472-d0e5-4aea-8323-e4b893bb8ac8", + "lead_id": "88074796-bad0-4413-b31d-1aaed9ce7120", + "channel": "digital_ad", + "interaction_type": "digital_ad", + "happened_at": "2026-02-15T11:07:55.877269", + "summary": "Digital Ad interaction regarding Siddha Sky Waterfront", + "source_ref": "0d668b0a-8fb9-4306-b633-831cf01230b1", + "created_at": "2025-12-11T11:07:55.877278" + }, + { + "interaction_id": "1953ba8a-eafd-40e4-8014-ca9b83309763", + "person_id": "ea45a472-d0e5-4aea-8323-e4b893bb8ac8", + "lead_id": "88074796-bad0-4413-b31d-1aaed9ce7120", + "channel": "referral", + "interaction_type": "referral", + "happened_at": "2026-03-12T11:07:55.877287", + "summary": "Referral interaction regarding Siddha Sky Waterfront", + "source_ref": "af9d47b5-5db0-4172-8691-14b0a00b9751", + "created_at": "2026-02-17T11:07:55.877294" + }, + { + "interaction_id": "a260b4b8-3bc0-4a67-ac85-632ef8d5c8d6", + "person_id": "ea45a472-d0e5-4aea-8323-e4b893bb8ac8", + "lead_id": "88074796-bad0-4413-b31d-1aaed9ce7120", + "channel": "site_visit", + "interaction_type": "site_visit", + "happened_at": "2025-11-05T11:07:55.877302", + "summary": "Site Visit interaction regarding Siddha Sky Waterfront", + "source_ref": "081062a9-f0fd-46d3-aec7-0870eeca944f", + "created_at": "2026-02-11T11:07:55.877310" + }, + { + "interaction_id": "3a4ff6e0-41f3-4a48-af55-ee5ce272bacb", + "person_id": "ea45a472-d0e5-4aea-8323-e4b893bb8ac8", + "lead_id": "88074796-bad0-4413-b31d-1aaed9ce7120", + "channel": "email", + "interaction_type": "email", + "happened_at": "2025-10-26T11:07:55.877328", + "summary": "Email interaction regarding Siddha Sky Waterfront", + "source_ref": "933a21b5-9c72-4f65-bcf3-96d43a50c339", + "created_at": "2025-11-29T11:07:55.877336" + } + ], + "calls": [ + { + "call_id": "8492c847-1218-4cc7-8f90-41dc552b1676", + "interaction_id": "2e96a9d5-effb-4d18-8371-93a2236af723", + "person_id": "ea45a472-d0e5-4aea-8323-e4b893bb8ac8", + "call_direction": "inbound", + "duration_seconds": 709, + "recording_ref": "recording_8492c847.mp3", + "transcript_ref": "71749615-bbbe-439e-9c8b-22acfd0f0d4b", + "call_ts": "2026-03-23T11:07:55.877177" + } + ], + "transcripts": [ + { + "transcript_id": "71749615-bbbe-439e-9c8b-22acfd0f0d4b", + "call_id": "8492c847-1218-4cc7-8f90-41dc552b1676", + "person_id": "ea45a472-d0e5-4aea-8323-e4b893bb8ac8", + "interaction_ref": "2e96a9d5-effb-4d18-8371-93a2236af723", + "language": "en", + "full_text": "Good morning Rupali, just following up on your site visit last week. Yes I visited with my wife. We liked the view from the higher floors. That's wonderful. We also have east-facing units still available. What's the difference in price between east and west facing? East facing carries a premium of about 3 to 4 percent. But the morning light is excellent. Hmm. And what about car parking? We have two vehicles. We offer two covered parking slots for 4BHK and above. That's included. Okay let me check our loan eligibility and I'll call you back this week. Perfect. I'll also check if the early booking offer can be extended. Thank you Rupali.", + "speaker_segments_json": "[{\"speaker\": \"agent\", \"start_seconds\": 0, \"end_seconds\": 19, \"text\": \"Good morning Rupali, just following up on your site visit last week.\"}, {\"speaker\": \"client\", \"start_seconds\": 13, \"end_seconds\": 27, \"text\": \"Yes I visited with my wife. We liked the view from the higher floors.\"}, {\"speaker\": \"agent\", \"start_seconds\": 16, \"end_seconds\": 22, \"text\": \"That's wonderful. We also have east-facing units still available.\"}, {\"speaker\": \"client\", \"start_seconds\": 54, \"end_seconds\": 60, \"text\": \"What's the difference in price between east and west facing?\"}, {\"speaker\": \"agent\", \"start_seconds\": 68, \"end_seconds\": 84, \"text\": \"East facing carries a premium of about 3 to 4 percent. But the morning light is excellent.\"}, {\"speaker\": \"client\", \"start_seconds\": 95, \"end_seconds\": 113, \"text\": \"Hmm. And what about car parking? We have two vehicles.\"}, {\"speaker\": \"agent\", \"start_seconds\": 72, \"end_seconds\": 84, \"text\": \"We offer two covered parking slots for 4BHK and above. That's included.\"}, {\"speaker\": \"client\", \"start_seconds\": 168, \"end_seconds\": 186, \"text\": \"Okay let me check our loan eligibility and I'll call you back this week.\"}, {\"speaker\": \"agent\", \"start_seconds\": 104, \"end_seconds\": 114, \"text\": \"Perfect. I'll also check if the early booking offer can be extended. Thank you Rupali.\"}]", + "confidence": 0.833, + "created_at": "2026-03-23T11:07:55.877177" + } + ], + "messages": [], + "emails": [ + { + "email_id": "43c63632-3177-4ed2-b120-6cf41404f362", + "interaction_id": "b5aa6ca3-8d97-4d5a-9831-c92850fafbe1", + "person_id": "ea45a472-d0e5-4aea-8323-e4b893bb8ac8", + "subject": "Payment Plan Details - Siddha Sky Waterfront", + "body": "Dear Rupali,\n\nFollowing up on your recent visit to Siddha Sky Waterfront. We hope you found it informative.\n\nWe have a 4BHK unit available that matches your requirements exactly. Shall we discuss further?\n\nBest,\nVelocity Real Estate Team", + "sender_role": "agent", + "sent_at": "2026-04-08T11:07:55.877144", + "opened_at": "2026-02-16T11:07:55.877146", + "replied_at": "2026-02-03T11:07:55.877148" + }, + { + "email_id": "25eed84a-5108-4cd6-8434-496bf460049d", + "interaction_id": "3a4ff6e0-41f3-4a48-af55-ee5ce272bacb", + "person_id": "ea45a472-d0e5-4aea-8323-e4b893bb8ac8", + "subject": "Exclusive Offer - Siddha Sky Waterfront Units", + "body": "Dear Rupali,\n\nThank you for your interest in Siddha Sky Waterfront. As discussed, please find the brochure and floor plans attached.\n\nWe would be happy to arrange a site visit at your convenience.\n\nBest regards,\nVelocity Real Estate Team", + "sender_role": "agent", + "sent_at": "2025-12-25T11:07:55.877348", + "opened_at": "2025-11-18T11:07:55.877349", + "replied_at": null + } + ], + "visits": [ + { + "visit_id": "26c33d1c-9bcf-45e0-b95b-c81759e004bd", + "person_id": "ea45a472-d0e5-4aea-8323-e4b893bb8ac8", + "lead_id": "88074796-bad0-4413-b31d-1aaed9ce7120", + "project_name": "Siddha Sky Waterfront", + "visited_at": "2026-01-23T11:07:55.877113", + "visit_notes": "First visit. Very impressed with the view.", + "host_user_id": "user_5", + "revisit_intent": "no", + "household_id": "51d12525-2867-4b4f-8f5f-5dd35614552f" + }, + { + "visit_id": "61a14ff5-47d1-461a-9229-b82d4ce6786d", + "person_id": "ea45a472-d0e5-4aea-8323-e4b893bb8ac8", + "lead_id": "88074796-bad0-4413-b31d-1aaed9ce7120", + "project_name": "Siddha Sky Waterfront", + "visited_at": "2025-12-21T11:07:55.877318", + "visit_notes": "Second visit. More focused on parking and amenities.", + "host_user_id": "user_1", + "revisit_intent": "no", + "household_id": "51d12525-2867-4b4f-8f5f-5dd35614552f" + } + ], + "reminders": [ + { + "reminder_id": "6a0461cc-03eb-4309-94b9-fe8b187e6789", + "person_id": "ea45a472-d0e5-4aea-8323-e4b893bb8ac8", + "lead_id": "88074796-bad0-4413-b31d-1aaed9ce7120", + "reminder_text": "Send legal documents", + "due_at": "2026-04-26T11:07:55.877353", + "completed": false, + "completed_at": null, + "assigned_user_id": "user_2", + "created_at": "2026-02-22T11:07:55.877362" + }, + { + "reminder_id": "7adc5a9b-ce2c-4b9c-81bf-27ae9107b7b5", + "person_id": "ea45a472-d0e5-4aea-8323-e4b893bb8ac8", + "lead_id": "88074796-bad0-4413-b31d-1aaed9ce7120", + "reminder_text": "Schedule meeting with senior advisor", + "due_at": "2026-04-21T11:07:55.877363", + "completed": true, + "completed_at": "2026-04-05T11:07:55.877371", + "assigned_user_id": "user_5", + "created_at": "2026-02-24T11:07:55.877373" + }, + { + "reminder_id": "18ca0200-a3e1-4d0e-8e6f-082ba5c9f9d7", + "person_id": "ea45a472-d0e5-4aea-8323-e4b893bb8ac8", + "lead_id": "88074796-bad0-4413-b31d-1aaed9ce7120", + "reminder_text": "Send legal documents", + "due_at": "2026-04-30T11:07:55.877375", + "completed": false, + "completed_at": null, + "assigned_user_id": "user_1", + "created_at": "2026-01-24T11:07:55.877383" + }, + { + "reminder_id": "bf7dc458-0477-4d65-b9c4-852a7d596ee7", + "person_id": "ea45a472-d0e5-4aea-8323-e4b893bb8ac8", + "lead_id": "88074796-bad0-4413-b31d-1aaed9ce7120", + "reminder_text": "Follow up after site visit", + "due_at": "2026-04-27T11:07:55.877385", + "completed": false, + "completed_at": null, + "assigned_user_id": "user_5", + "created_at": "2026-01-22T11:07:55.877393" + } + ], + "qd_scores": [ + { + "qd_id": "486862f7-6b2c-4f70-bb1c-073af661eb27", + "person_id": "ea45a472-d0e5-4aea-8323-e4b893bb8ac8", + "score_type": "intent_score", + "current_value": 0.579, + "computed_at": "2026-03-26T11:07:55.877405", + "evidence_refs_json": "[\"78fa991d-d705-416e-9be3-45bd9c0800d9\", \"6edea58c-6cb6-400d-9ec7-9b3ae4bfad30\", \"c16a47fd-49fe-47ff-bf85-54605f5dad64\"]" + }, + { + "qd_id": "7d3b6355-a204-4004-875d-d3efcd4f1023", + "person_id": "ea45a472-d0e5-4aea-8323-e4b893bb8ac8", + "score_type": "urgency_score", + "current_value": 0.549, + "computed_at": "2026-04-05T11:07:55.877493", + "evidence_refs_json": "[\"3f61129d-8167-4742-9ec3-18d4c8cc2270\", \"7dcfe55b-d5d6-46da-9eed-d43d24fa74e6\", \"47d1b585-7f0e-4fb3-b827-03ffacb1c2a9\"]" + }, + { + "qd_id": "1cc184d0-ee8a-49d7-b6c6-0f1ec6e6f902", + "person_id": "ea45a472-d0e5-4aea-8323-e4b893bb8ac8", + "score_type": "engagement_score", + "current_value": 0.555, + "computed_at": "2026-03-05T11:07:55.877622", + "evidence_refs_json": "[\"150b1b35-6aab-490a-84b1-b34e1722154f\", \"bbc2426b-88b6-42e7-b00a-099adcef7ada\", \"cc58b6ec-140c-4d59-a6bb-bcf6153eb595\", \"95728074-0318-420d-9d7f-4d84382a5490\"]" + } + ], + "qd_timeseries": [ + { + "timeseries_id": "843dceae-46fb-4b35-8329-b19a3d1f94a9", + "person_id": "ea45a472-d0e5-4aea-8323-e4b893bb8ac8", + "signal_source": "whatsapp", + "timestamp": "2025-11-22T11:07:55.877428", + "value": 0.61, + "score_type": "intent_score", + "evidence_ref": "24cdedbe-8876-4275-bd0d-7a17ae909336" + }, + { + "timeseries_id": "5f9bc664-246b-48b3-89a4-929e5591f0ba", + "person_id": "ea45a472-d0e5-4aea-8323-e4b893bb8ac8", + "signal_source": "site_visit", + "timestamp": "2025-11-28T11:07:55.877428", + "value": 0.648, + "score_type": "intent_score", + "evidence_ref": "ce4bea36-9b87-4b62-ab37-805f09cc6064" + }, + { + "timeseries_id": "d188ae88-1973-4c59-bc32-122281d57f2b", + "person_id": "ea45a472-d0e5-4aea-8323-e4b893bb8ac8", + "signal_source": "site_visit", + "timestamp": "2025-12-04T11:07:55.877428", + "value": 0.635, + "score_type": "intent_score", + "evidence_ref": "ecca30e3-ffeb-4ef3-b9a9-dfde1c521841" + }, + { + "timeseries_id": "17eeff26-237b-4737-969d-cef0988f63dc", + "person_id": "ea45a472-d0e5-4aea-8323-e4b893bb8ac8", + "signal_source": "site_visit", + "timestamp": "2025-12-11T11:07:55.877428", + "value": 0.537, + "score_type": "intent_score", + "evidence_ref": "a9844415-c362-46a5-bb3f-97f27588eae5" + }, + { + "timeseries_id": "4ce23259-4698-465d-be9e-62ee5df3f60b", + "person_id": "ea45a472-d0e5-4aea-8323-e4b893bb8ac8", + "signal_source": "site_visit", + "timestamp": "2025-11-15T11:07:55.877515", + "value": 0.628, + "score_type": "urgency_score", + "evidence_ref": "a49732f4-bc3f-4daa-9364-21a0ded083f2" + }, + { + "timeseries_id": "fedcd132-8308-45ca-bdf4-0c1ee16cd340", + "person_id": "ea45a472-d0e5-4aea-8323-e4b893bb8ac8", + "signal_source": "email", + "timestamp": "2025-11-28T11:07:55.877515", + "value": 0.661, + "score_type": "urgency_score", + "evidence_ref": "dc395b3d-b2db-4ee9-8f7a-e029cc8e9265" + }, + { + "timeseries_id": "53ecb235-5899-4462-8c0f-f9bc6a38c945", + "person_id": "ea45a472-d0e5-4aea-8323-e4b893bb8ac8", + "signal_source": "site_visit", + "timestamp": "2025-12-12T11:07:55.877515", + "value": 0.622, + "score_type": "urgency_score", + "evidence_ref": "dd8160ff-d382-4d7b-aa79-69d961b15c91" + }, + { + "timeseries_id": "2363bc52-b64f-4a62-b6a7-0a97a1ab51d0", + "person_id": "ea45a472-d0e5-4aea-8323-e4b893bb8ac8", + "signal_source": "call", + "timestamp": "2025-12-31T11:07:55.877515", + "value": 0.463, + "score_type": "urgency_score", + "evidence_ref": "aa84402d-ffdc-4050-95ff-4e95ddf2b574" + }, + { + "timeseries_id": "3d365ffe-1975-4dff-b3ad-723d1149fe60", + "person_id": "ea45a472-d0e5-4aea-8323-e4b893bb8ac8", + "signal_source": "email", + "timestamp": "2026-01-12T11:07:55.877515", + "value": 0.661, + "score_type": "urgency_score", + "evidence_ref": "89ccecbb-dedc-4c60-8498-617df612c4c0" + }, + { + "timeseries_id": "3303fb2b-3c67-4bff-8b24-3a231cdeef2f", + "person_id": "ea45a472-d0e5-4aea-8323-e4b893bb8ac8", + "signal_source": "call", + "timestamp": "2026-01-28T11:07:55.877515", + "value": 0.619, + "score_type": "urgency_score", + "evidence_ref": "384ea8a8-4099-4275-8608-eb47a5be5967" + }, + { + "timeseries_id": "189ba8d5-4e54-4425-be45-2f63ee05144f", + "person_id": "ea45a472-d0e5-4aea-8323-e4b893bb8ac8", + "signal_source": "site_visit", + "timestamp": "2026-02-02T11:07:55.877515", + "value": 0.558, + "score_type": "urgency_score", + "evidence_ref": "14d7259d-a631-47ca-ab4a-224c00248d92" + }, + { + "timeseries_id": "c7533e94-7b01-4133-b8e6-5f068d64e66b", + "person_id": "ea45a472-d0e5-4aea-8323-e4b893bb8ac8", + "signal_source": "call", + "timestamp": "2025-11-28T11:07:55.877653", + "value": 0.597, + "score_type": "engagement_score", + "evidence_ref": "9673ff1f-ef6c-4811-9260-742c36ab77e8" + }, + { + "timeseries_id": "b6415d34-0e75-4a2c-a673-9184d5891fd7", + "person_id": "ea45a472-d0e5-4aea-8323-e4b893bb8ac8", + "signal_source": "call", + "timestamp": "2025-12-18T11:07:55.877653", + "value": 0.584, + "score_type": "engagement_score", + "evidence_ref": "69cf8de9-b23d-47fe-95a0-d676fdb85aea" + }, + { + "timeseries_id": "c93cff4f-67e1-4e7b-813e-458a677bbbb4", + "person_id": "ea45a472-d0e5-4aea-8323-e4b893bb8ac8", + "signal_source": "whatsapp", + "timestamp": "2026-01-02T11:07:55.877653", + "value": 0.59, + "score_type": "engagement_score", + "evidence_ref": "61ead0ef-4065-4b83-a309-23d8a2170e78" + }, + { + "timeseries_id": "0cd53a23-1600-4ce3-82bd-be14ef375073", + "person_id": "ea45a472-d0e5-4aea-8323-e4b893bb8ac8", + "signal_source": "site_visit", + "timestamp": "2026-01-21T11:07:55.877653", + "value": 0.591, + "score_type": "engagement_score", + "evidence_ref": "e45155b7-c23b-41b0-b25e-01744c49d49a" + }, + { + "timeseries_id": "adf82bcb-e93f-4751-9606-dc148624e10c", + "person_id": "ea45a472-d0e5-4aea-8323-e4b893bb8ac8", + "signal_source": "whatsapp", + "timestamp": "2026-01-29T11:07:55.877653", + "value": 0.446, + "score_type": "engagement_score", + "evidence_ref": "e141c5f0-7d37-4316-8fc4-8641e8b46b15" + }, + { + "timeseries_id": "f8289b17-7681-4988-9fb0-4183df3c9713", + "person_id": "ea45a472-d0e5-4aea-8323-e4b893bb8ac8", + "signal_source": "site_visit", + "timestamp": "2026-02-04T11:07:55.877653", + "value": 0.674, + "score_type": "engagement_score", + "evidence_ref": "5c9d92be-f997-492f-a5d6-bed0d2342145" + } + ], + "intel_events": [], + "client360": { + "client_ref": "ea45a472-d0e5-4aea-8323-e4b893bb8ac8", + "snapshot_generated_at": "2026-04-18T11:07:55.877756", + "identity": { + "full_name": "Rupali Shah", + "primary_email": "rupali.shah349@company.com", + "primary_phone": "+91 8147497835", + "persona_labels": "[\"investment_focus\"]", + "buyer_type": "nri" + }, + "account_links": [ + "83abc8f7-37e5-473d-805e-2f5b39cde2af" + ], + "active_opportunities": [ + { + "opportunity_id": "d7ff7dcc-cd11-4132-91c9-4b4f93ffafde", + "project": "Siddha Sky Waterfront", + "stage": "site_visit_done", + "value": 17139414 + } + ], + "recent_interactions": [ + { + "interaction_id": "1953ba8a-eafd-40e4-8014-ca9b83309763", + "channel": "referral", + "happened_at": "2026-03-12T11:07:55.877287" + }, + { + "interaction_id": "7e50e3b2-9fcb-4fca-99d2-3b4e0c5f3300", + "channel": "digital_ad", + "happened_at": "2026-02-15T11:07:55.877269" + }, + { + "interaction_id": "d8de1be9-6f4b-481d-b6ab-63d1499d23d4", + "channel": "builder_event", + "happened_at": "2026-01-10T11:07:55.877249" + }, + { + "interaction_id": "b5aa6ca3-8d97-4d5a-9831-c92850fafbe1", + "channel": "email", + "happened_at": "2025-11-08T11:07:55.877125" + }, + { + "interaction_id": "a260b4b8-3bc0-4a67-ac85-632ef8d5c8d6", + "channel": "site_visit", + "happened_at": "2025-11-05T11:07:55.877302" + } + ], + "property_interests": [ + { + "project": "Siddha Sky Waterfront", + "config": "4BHK", + "budget_max": 13931567 + }, + { + "project": "Godrej Elevate", + "config": "4BHK", + "budget_max": 12905508 + } + ], + "tasks": [ + "Send legal documents", + "Send legal documents", + "Follow up after site visit" + ], + "qd_overview": { + "intent_score": 0.579, + "urgency_score": 0.549, + "engagement_score": 0.555 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Follow up on impressions", + "Send updated price list" + ], + "lead_stage": "site_visit_done", + "lead_status": "active" + } + }, + { + "person": { + "person_id": "a89609fc-f886-4b7e-92c4-28214ad4efd8", + "full_name": "Srija Halder", + "primary_email": "srija.halder671@gmail.com", + "primary_phone": "+91 9101729519", + "secondary_phone": "+91 8201474778", + "linkedin_url": null, + "occupation": "NRI Businessman", + "employer": "ITC Limited", + "account_id": "4b56a688-c54f-4460-a12c-8043ea8682ae", + "location_city": "Dubai", + "location_country": "USA", + "buyer_type": "nri", + "persona_labels": "[\"first_time_buyer\", \"nri_diaspora\", \"value_seeker\"]", + "is_nri": true, + "source_confidence": 0.804, + "created_at": "2025-06-29T11:07:55.877787", + "updated_at": "2026-02-16T11:07:55.877789" + }, + "lead": { + "lead_id": "0b2127a8-ebe7-445f-b4db-aea92fd73260", + "person_id": "a89609fc-f886-4b7e-92c4-28214ad4efd8", + "account_id": "4b56a688-c54f-4460-a12c-8043ea8682ae", + "source_system": "builder_event", + "status": "active", + "stage": "qualified", + "budget_band": "₹95L - ₹105L", + "urgency": "within_3_months", + "assigned_user_id": "user_5", + "primary_project": "Merlin Avana", + "objection": null, + "motivation": "NRI returning to India", + "financing_posture": "cash", + "created_at": "2025-10-06T11:07:55.877882", + "updated_at": "2025-10-30T11:07:55.877884" + }, + "opportunities": [ + { + "opportunity_id": "94c8366b-dfc7-46cb-b125-9aaa3ca0b7cc", + "lead_id": "0b2127a8-ebe7-445f-b4db-aea92fd73260", + "person_id": "a89609fc-f886-4b7e-92c4-28214ad4efd8", + "project_name": "Merlin Avana", + "unit_config": "3BHK", + "stage": "qualified", + "value": 9592229, + "probability": 20, + "expected_close_date": "2026-08-08T11:07:55.877915", + "next_action": "Send updated proposal", + "created_at": "2026-01-04T11:07:55.877917", + "updated_at": "2026-04-01T11:07:55.877918" + } + ], + "property_interests": [ + { + "interest_id": "71681e01-ff6f-42c4-99a8-0b63f66153a7", + "person_id": "a89609fc-f886-4b7e-92c4-28214ad4efd8", + "project_name": "Merlin Avana", + "configuration": "2BHK", + "budget_min": 14364791, + "budget_max": 17556966, + "urgency": "flexible", + "facing_preference": "east", + "floor_preference": "mid", + "notes": "Healthcare access", + "created_at": "2026-02-12T11:07:55.877845" + }, + { + "interest_id": "9a10fbb2-3acd-4348-bf75-98ddbc171cb9", + "person_id": "a89609fc-f886-4b7e-92c4-28214ad4efd8", + "project_name": "Eden Devprayag", + "configuration": "2BHK", + "budget_min": 9267909, + "budget_max": 11327444, + "urgency": "within_3_months", + "facing_preference": "west", + "floor_preference": "mid", + "notes": "Upgrade from current home", + "created_at": "2025-07-20T11:07:55.877856" + }, + { + "interest_id": "8ae6758f-cc19-45f5-9f12-ab41baf96d2e", + "person_id": "a89609fc-f886-4b7e-92c4-28214ad4efd8", + "project_name": "DTC Good Earth", + "configuration": "2BHK", + "budget_min": 6713521, + "budget_max": 8205414, + "urgency": "within_3_months", + "facing_preference": "west", + "floor_preference": "high", + "notes": "Investment portfolio", + "created_at": "2025-07-31T11:07:55.877865" + } + ], + "interactions": [ + { + "interaction_id": "6d7b501c-becc-478b-90ad-f31fb71f26ed", + "person_id": "a89609fc-f886-4b7e-92c4-28214ad4efd8", + "lead_id": "0b2127a8-ebe7-445f-b4db-aea92fd73260", + "channel": "call", + "interaction_type": "call", + "happened_at": "2025-10-10T11:07:55.877931", + "summary": "Call interaction regarding Merlin Avana", + "source_ref": "e2c85f2a-e15e-472e-b2ea-755044e5c6c6", + "created_at": "2025-12-31T11:07:55.877939" + }, + { + "interaction_id": "88ee3928-2f99-45b4-a357-cbf01aea331c", + "person_id": "a89609fc-f886-4b7e-92c4-28214ad4efd8", + "lead_id": "0b2127a8-ebe7-445f-b4db-aea92fd73260", + "channel": "site_visit", + "interaction_type": "site_visit", + "happened_at": "2026-03-30T11:07:55.878003", + "summary": "Site Visit interaction regarding Merlin Avana", + "source_ref": "6a968c32-5878-4a0e-9307-152f21b13a2e", + "created_at": "2026-03-28T11:07:55.878012" + }, + { + "interaction_id": "d11480cd-6dab-40ef-b058-f818b7af83e7", + "person_id": "a89609fc-f886-4b7e-92c4-28214ad4efd8", + "lead_id": "0b2127a8-ebe7-445f-b4db-aea92fd73260", + "channel": "call", + "interaction_type": "call", + "happened_at": "2026-02-06T11:07:55.878032", + "summary": "Call interaction regarding Merlin Avana", + "source_ref": "5361e235-2552-4bc4-8f36-0854db475ae4", + "created_at": "2025-11-09T11:07:55.878040" + } + ], + "calls": [ + { + "call_id": "b794e6b5-5276-4244-b9ca-d537eec38cb9", + "interaction_id": "6d7b501c-becc-478b-90ad-f31fb71f26ed", + "person_id": "a89609fc-f886-4b7e-92c4-28214ad4efd8", + "call_direction": "inbound", + "duration_seconds": 589, + "recording_ref": "recording_b794e6b5.mp3", + "transcript_ref": "1e06edd7-afc0-40df-967c-2e17817774da", + "call_ts": "2026-03-19T11:07:55.877953" + }, + { + "call_id": "3e6da0f7-b2e3-4eb2-b40f-b3ee9cbfe137", + "interaction_id": "d11480cd-6dab-40ef-b058-f818b7af83e7", + "person_id": "a89609fc-f886-4b7e-92c4-28214ad4efd8", + "call_direction": "outbound", + "duration_seconds": 640, + "recording_ref": "recording_3e6da0f7.mp3", + "transcript_ref": "c699f7fb-aedc-405c-b314-19376087b5bf", + "call_ts": "2025-11-19T11:07:55.878053" + } + ], + "transcripts": [ + { + "transcript_id": "1e06edd7-afc0-40df-967c-2e17817774da", + "call_id": "b794e6b5-5276-4244-b9ca-d537eec38cb9", + "person_id": "a89609fc-f886-4b7e-92c4-28214ad4efd8", + "interaction_ref": "6d7b501c-becc-478b-90ad-f31fb71f26ed", + "language": "en", + "full_text": "I wanted to ask, have there been any price revisions at Merlin Avana? Yes, there was a 2.5 percent revision last quarter. Current price is ₹9,592,229 onwards. That's getting expensive. Is there any flexibility? For early commitment we do have special launch pricing available. Can I set up a meeting with our senior advisor? Yes I think that would help. I want to understand the full cost breakdown. Of course. I'll schedule it for this Saturday at 11am if that works? That works for me. See you then. Perfect. I'll confirm the slot and send you the address. Thank you for your time Srija.", + "speaker_segments_json": "[{\"speaker\": \"client\", \"start_seconds\": 0, \"end_seconds\": 20, \"text\": \"I wanted to ask, have there been any price revisions at Merlin Avana?\"}, {\"speaker\": \"agent\", \"start_seconds\": 22, \"end_seconds\": 38, \"text\": \"Yes, there was a 2.5 percent revision last quarter. Current price is \\u20b99,592,229 onwards.\"}, {\"speaker\": \"client\", \"start_seconds\": 48, \"end_seconds\": 56, \"text\": \"That's getting expensive. Is there any flexibility?\"}, {\"speaker\": \"agent\", \"start_seconds\": 66, \"end_seconds\": 78, \"text\": \"For early commitment we do have special launch pricing available. Can I set up a meeting with our senior advisor?\"}, {\"speaker\": \"client\", \"start_seconds\": 36, \"end_seconds\": 50, \"text\": \"Yes I think that would help. I want to understand the full cost breakdown.\"}, {\"speaker\": \"agent\", \"start_seconds\": 110, \"end_seconds\": 115, \"text\": \"Of course. I'll schedule it for this Saturday at 11am if that works?\"}, {\"speaker\": \"client\", \"start_seconds\": 54, \"end_seconds\": 74, \"text\": \"That works for me. See you then.\"}, {\"speaker\": \"agent\", \"start_seconds\": 140, \"end_seconds\": 158, \"text\": \"Perfect. I'll confirm the slot and send you the address. Thank you for your time Srija.\"}]", + "confidence": 0.903, + "created_at": "2026-03-19T11:07:55.877953" + }, + { + "transcript_id": "c699f7fb-aedc-405c-b314-19376087b5bf", + "call_id": "3e6da0f7-b2e3-4eb2-b40f-b3ee9cbfe137", + "person_id": "a89609fc-f886-4b7e-92c4-28214ad4efd8", + "interaction_ref": "d11480cd-6dab-40ef-b058-f818b7af83e7", + "language": "en", + "full_text": "I wanted to ask, have there been any price revisions at Merlin Avana? Yes, there was a 2.5 percent revision last quarter. Current price is ₹9,592,229 onwards. That's getting expensive. Is there any flexibility? For early commitment we do have special launch pricing available. Can I set up a meeting with our senior advisor? Yes I think that would help. I want to understand the full cost breakdown. Of course. I'll schedule it for this Saturday at 11am if that works? That works for me. See you then. Perfect. I'll confirm the slot and send you the address. Thank you for your time Srija.", + "speaker_segments_json": "[{\"speaker\": \"client\", \"start_seconds\": 0, \"end_seconds\": 15, \"text\": \"I wanted to ask, have there been any price revisions at Merlin Avana?\"}, {\"speaker\": \"agent\", \"start_seconds\": 20, \"end_seconds\": 34, \"text\": \"Yes, there was a 2.5 percent revision last quarter. Current price is \\u20b99,592,229 onwards.\"}, {\"speaker\": \"client\", \"start_seconds\": 44, \"end_seconds\": 62, \"text\": \"That's getting expensive. Is there any flexibility?\"}, {\"speaker\": \"agent\", \"start_seconds\": 33, \"end_seconds\": 41, \"text\": \"For early commitment we do have special launch pricing available. Can I set up a meeting with our senior advisor?\"}, {\"speaker\": \"client\", \"start_seconds\": 100, \"end_seconds\": 111, \"text\": \"Yes I think that would help. I want to understand the full cost breakdown.\"}, {\"speaker\": \"agent\", \"start_seconds\": 105, \"end_seconds\": 124, \"text\": \"Of course. I'll schedule it for this Saturday at 11am if that works?\"}, {\"speaker\": \"client\", \"start_seconds\": 90, \"end_seconds\": 108, \"text\": \"That works for me. See you then.\"}, {\"speaker\": \"agent\", \"start_seconds\": 126, \"end_seconds\": 145, \"text\": \"Perfect. I'll confirm the slot and send you the address. Thank you for your time Srija.\"}]", + "confidence": 0.891, + "created_at": "2025-11-19T11:07:55.878053" + } + ], + "messages": [], + "emails": [], + "visits": [ + { + "visit_id": "d09ad758-fa51-4f71-aac2-ae123bf31436", + "person_id": "a89609fc-f886-4b7e-92c4-28214ad4efd8", + "lead_id": "0b2127a8-ebe7-445f-b4db-aea92fd73260", + "project_name": "Merlin Avana", + "visited_at": "2026-01-25T11:07:55.878020", + "visit_notes": "Revisit after 2 months. Re-evaluating options.", + "host_user_id": "user_2", + "revisit_intent": "yes", + "household_id": "f6a1d3ce-0400-4272-a964-e1cdec0ec6f7" + } + ], + "reminders": [ + { + "reminder_id": "cd495ee3-1162-47a3-ba79-fb46ba167fed", + "person_id": "a89609fc-f886-4b7e-92c4-28214ad4efd8", + "lead_id": "0b2127a8-ebe7-445f-b4db-aea92fd73260", + "reminder_text": "Send legal documents", + "due_at": "2026-05-08T11:07:55.878081", + "completed": true, + "completed_at": "2026-04-06T11:07:55.878098", + "assigned_user_id": "user_2", + "created_at": "2026-02-03T11:07:55.878101" + } + ], + "qd_scores": [ + { + "qd_id": "5da8f12b-d049-4186-89f6-971a6b81957e", + "person_id": "a89609fc-f886-4b7e-92c4-28214ad4efd8", + "score_type": "intent_score", + "current_value": 0.772, + "computed_at": "2026-03-13T11:07:55.878113", + "evidence_refs_json": "[\"8f0e6513-46f7-40b6-b360-900f361f3f3c\", \"052b6f04-bb13-4b6c-ac6d-11ce113494aa\", \"6e368760-3201-4500-b969-371aa3543a0d\", \"f78aac7f-fe6f-4b67-a730-a4fb3dfe6a14\"]" + }, + { + "qd_id": "7807b264-82b4-4eb6-9ae3-34467c43f7e7", + "person_id": "a89609fc-f886-4b7e-92c4-28214ad4efd8", + "score_type": "urgency_score", + "current_value": 0.759, + "computed_at": "2026-04-08T11:07:55.878207", + "evidence_refs_json": "[\"978ab8d9-2985-4cbb-b459-3aaad924639e\", \"ecb5801b-6310-48f1-a132-b1163bbc8b2e\", \"0df20598-120f-4971-ab6d-d232018fd1b6\", \"5ba1c38a-fc3b-45cd-9344-a30e2cb267bf\", \"dddb6519-a1a7-48b9-81bc-9a96d54d2e10\"]" + }, + { + "qd_id": "e4f20ec2-698a-492e-a460-ce1611cd550d", + "person_id": "a89609fc-f886-4b7e-92c4-28214ad4efd8", + "score_type": "engagement_score", + "current_value": 0.722, + "computed_at": "2026-02-28T11:07:55.878301", + "evidence_refs_json": "[\"04fa740d-eeb8-442f-8366-19db8a5cfd29\", \"09f44494-393f-407b-b8fb-ea3ca8977a69\", \"f2781ab8-4fa2-4405-921e-f16f4dc3ade9\", \"5d887d08-99ca-433c-b7dd-b533ab15d6c7\"]" + } + ], + "qd_timeseries": [ + { + "timeseries_id": "c1334551-416f-4ea8-9b44-da43877a3308", + "person_id": "a89609fc-f886-4b7e-92c4-28214ad4efd8", + "signal_source": "site_visit", + "timestamp": "2025-11-25T11:07:55.878143", + "value": 0.862, + "score_type": "intent_score", + "evidence_ref": "cb6f912f-607f-49e0-8848-90f26dc9f863" + }, + { + "timeseries_id": "1320de56-8aec-493b-b2fa-47f5324080f8", + "person_id": "a89609fc-f886-4b7e-92c4-28214ad4efd8", + "signal_source": "call", + "timestamp": "2025-12-13T11:07:55.878143", + "value": 0.884, + "score_type": "intent_score", + "evidence_ref": "ef2078c0-ae50-47b1-a822-9ea641f8a861" + }, + { + "timeseries_id": "d874441d-cd37-44a1-9f0c-6826a2375220", + "person_id": "a89609fc-f886-4b7e-92c4-28214ad4efd8", + "signal_source": "site_visit", + "timestamp": "2025-12-27T11:07:55.878143", + "value": 0.677, + "score_type": "intent_score", + "evidence_ref": "adf7695f-9c5c-49dc-9f87-1708b91764cc" + }, + { + "timeseries_id": "9d4d32fe-9832-46b8-9e0c-bff1962b397c", + "person_id": "a89609fc-f886-4b7e-92c4-28214ad4efd8", + "signal_source": "site_visit", + "timestamp": "2025-12-21T11:07:55.878249", + "value": 0.667, + "score_type": "urgency_score", + "evidence_ref": "9f028032-2afd-42c9-8168-8639a74b3151" + }, + { + "timeseries_id": "ef9d2a8e-0042-4fa8-89f0-c0e990fdd340", + "person_id": "a89609fc-f886-4b7e-92c4-28214ad4efd8", + "signal_source": "whatsapp", + "timestamp": "2026-01-03T11:07:55.878249", + "value": 0.833, + "score_type": "urgency_score", + "evidence_ref": "a64a5ee5-90eb-46da-881d-8aa90a15e506" + }, + { + "timeseries_id": "8179abd1-4d79-4734-ab4c-92c331b47804", + "person_id": "a89609fc-f886-4b7e-92c4-28214ad4efd8", + "signal_source": "site_visit", + "timestamp": "2026-01-08T11:07:55.878249", + "value": 0.646, + "score_type": "urgency_score", + "evidence_ref": "56f6f7f7-1a59-4b0a-ba5a-a08fd989809a" + }, + { + "timeseries_id": "8bf951c8-85b3-4811-833d-dbe27f5442bb", + "person_id": "a89609fc-f886-4b7e-92c4-28214ad4efd8", + "signal_source": "call", + "timestamp": "2025-11-07T11:07:55.878330", + "value": 0.646, + "score_type": "engagement_score", + "evidence_ref": "b71bdebe-bdbf-4a10-a86b-1ebb77125d1f" + }, + { + "timeseries_id": "81cca5cd-171d-4ddb-ab63-7c39b0b2a275", + "person_id": "a89609fc-f886-4b7e-92c4-28214ad4efd8", + "signal_source": "email", + "timestamp": "2025-11-16T11:07:55.878330", + "value": 0.619, + "score_type": "engagement_score", + "evidence_ref": "b6f021fd-c403-4d15-ad4f-967478f7b48d" + }, + { + "timeseries_id": "37c2d2bb-2dbf-4570-9fe2-cb42fe104c22", + "person_id": "a89609fc-f886-4b7e-92c4-28214ad4efd8", + "signal_source": "call", + "timestamp": "2025-11-21T11:07:55.878330", + "value": 0.781, + "score_type": "engagement_score", + "evidence_ref": "94ce4612-841a-48f1-8909-2a59b4f94c27" + }, + { + "timeseries_id": "7cbef494-1e13-44c3-897a-1cb8eabc82c6", + "person_id": "a89609fc-f886-4b7e-92c4-28214ad4efd8", + "signal_source": "email", + "timestamp": "2025-12-02T11:07:55.878330", + "value": 0.703, + "score_type": "engagement_score", + "evidence_ref": "611638c5-1675-4243-913f-16ccfb64dea1" + }, + { + "timeseries_id": "e93d698c-701d-49e4-a73e-ae3032453342", + "person_id": "a89609fc-f886-4b7e-92c4-28214ad4efd8", + "signal_source": "whatsapp", + "timestamp": "2025-12-17T11:07:55.878330", + "value": 0.691, + "score_type": "engagement_score", + "evidence_ref": "7db8599a-18af-4e5e-b50f-77cf6271f11e" + } + ], + "intel_events": [ + { + "event_id": "f3690900-9264-439e-9533-9b506998d4b7", + "event_type": "number_plate_detected", + "person_id": "a89609fc-f886-4b7e-92c4-28214ad4efd8", + "project_ref": "Merlin Avana", + "detected_at": "2026-02-04T11:07:55.878410", + "vehicle_plate_hash": "WB86B1861", + "confidence": 0.787, + "media_ref": "cctv_clip_94bd98e4.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "189f5877-ce0d-4cb6-805d-db73684cc175", + "event_type": "perception_session", + "person_id": "a89609fc-f886-4b7e-92c4-28214ad4efd8", + "project_ref": "Merlin Avana", + "session_at": "2026-04-14T11:07:55.878431", + "rooms_visited": "[\"lobby\", \"model_flat_3bhk\", \"model_flat_2bhk\"]", + "dwell_time_seconds": 1916, + "engagement_score": 0.738, + "cctv_ref": "cctv_219f250b", + "notes": "Perception session recorded during scheduled site visit" + } + ], + "client360": { + "client_ref": "a89609fc-f886-4b7e-92c4-28214ad4efd8", + "snapshot_generated_at": "2026-04-18T11:07:55.878450", + "identity": { + "full_name": "Srija Halder", + "primary_email": "srija.halder671@gmail.com", + "primary_phone": "+91 9101729519", + "persona_labels": "[\"first_time_buyer\", \"nri_diaspora\", \"value_seeker\"]", + "buyer_type": "nri" + }, + "account_links": [ + "4b56a688-c54f-4460-a12c-8043ea8682ae" + ], + "active_opportunities": [ + { + "opportunity_id": "94c8366b-dfc7-46cb-b125-9aaa3ca0b7cc", + "project": "Merlin Avana", + "stage": "qualified", + "value": 9592229 + } + ], + "recent_interactions": [ + { + "interaction_id": "88ee3928-2f99-45b4-a357-cbf01aea331c", + "channel": "site_visit", + "happened_at": "2026-03-30T11:07:55.878003" + }, + { + "interaction_id": "d11480cd-6dab-40ef-b058-f818b7af83e7", + "channel": "call", + "happened_at": "2026-02-06T11:07:55.878032" + }, + { + "interaction_id": "6d7b501c-becc-478b-90ad-f31fb71f26ed", + "channel": "call", + "happened_at": "2025-10-10T11:07:55.877931" + } + ], + "property_interests": [ + { + "project": "Merlin Avana", + "config": "2BHK", + "budget_max": 17556966 + }, + { + "project": "Eden Devprayag", + "config": "2BHK", + "budget_max": 11327444 + }, + { + "project": "DTC Good Earth", + "config": "2BHK", + "budget_max": 8205414 + } + ], + "tasks": [], + "qd_overview": { + "intent_score": 0.772, + "urgency_score": 0.759, + "engagement_score": 0.722 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Book site visit", + "Share payment plan" + ], + "lead_stage": "qualified", + "lead_status": "active" + } + }, + { + "person": { + "person_id": "2c58c356-9fd0-4895-ad39-29fd1ec72787", + "full_name": "Prabir Gupta", + "primary_email": "prabir.gupta114@outlook.com", + "primary_phone": "+91 9912923661", + "secondary_phone": "+91 9090071756", + "linkedin_url": "https://linkedin.com/in/prabir-gupta-415", + "occupation": "NRI Businessman", + "employer": "CESC Limited", + "account_id": "719009b0-4ad2-4ab0-ab36-7144c1c43981", + "location_city": "Kolkata", + "location_country": "India", + "buyer_type": "family_decision_unit", + "persona_labels": "[\"family_centric\"]", + "is_nri": false, + "source_confidence": 0.805, + "created_at": "2025-05-20T11:07:55.878479", + "updated_at": "2026-04-03T11:07:55.878480" + }, + "lead": { + "lead_id": "d141bfb1-1632-4e29-9ee1-d8815b4b6733", + "person_id": "2c58c356-9fd0-4895-ad39-29fd1ec72787", + "account_id": "719009b0-4ad2-4ab0-ab36-7144c1c43981", + "source_system": "digital_ad", + "status": "active", + "stage": "site_visit_done", + "budget_band": "₹158L - ₹174L", + "urgency": "within_6_months", + "assigned_user_id": "user_1", + "primary_project": "Godrej Elevate", + "objection": null, + "motivation": "Status/prestige", + "financing_posture": "home_loan", + "created_at": "2025-08-26T11:07:55.878548", + "updated_at": "2026-04-13T11:07:55.878549" + }, + "opportunities": [ + { + "opportunity_id": "4dc38e9b-ee48-4473-97d2-2808ed11b685", + "lead_id": "d141bfb1-1632-4e29-9ee1-d8815b4b6733", + "person_id": "2c58c356-9fd0-4895-ad39-29fd1ec72787", + "project_name": "Godrej Elevate", + "unit_config": "4BHK", + "stage": "site_visit_done", + "value": 15856117, + "probability": 40, + "expected_close_date": "2026-06-16T11:07:55.878593", + "next_action": "Confirm booking slot", + "created_at": "2026-02-12T11:07:55.878594", + "updated_at": "2026-03-28T11:07:55.878596" + } + ], + "property_interests": [ + { + "interest_id": "f7c81753-88d5-4297-a410-6f4a827b0763", + "person_id": "2c58c356-9fd0-4895-ad39-29fd1ec72787", + "project_name": "Godrej Elevate", + "configuration": "4BHK", + "budget_min": 11711702, + "budget_max": 14314303, + "urgency": "immediate", + "facing_preference": "south", + "floor_preference": "any", + "notes": "Investment portfolio", + "created_at": "2026-01-15T11:07:55.878532" + } + ], + "interactions": [ + { + "interaction_id": "ccd8753c-3bc4-45b5-91c7-48e291c52095", + "person_id": "2c58c356-9fd0-4895-ad39-29fd1ec72787", + "lead_id": "d141bfb1-1632-4e29-9ee1-d8815b4b6733", + "channel": "builder_event", + "interaction_type": "builder_event", + "happened_at": "2025-11-10T11:07:55.878605", + "summary": "Builder Event interaction regarding Godrej Elevate", + "source_ref": "416c4d25-def6-444f-995d-fcff56eae4ed", + "created_at": "2025-12-21T11:07:55.878613" + }, + { + "interaction_id": "2d7730a8-cdb0-48ca-adf8-0759b219b6ec", + "person_id": "2c58c356-9fd0-4895-ad39-29fd1ec72787", + "lead_id": "d141bfb1-1632-4e29-9ee1-d8815b4b6733", + "channel": "builder_event", + "interaction_type": "builder_event", + "happened_at": "2025-10-23T11:07:55.878622", + "summary": "Builder Event interaction regarding Godrej Elevate", + "source_ref": "fcf7d708-dc17-4d01-b776-da48f590faa1", + "created_at": "2026-01-15T11:07:55.878630" + }, + { + "interaction_id": "f9a5ca57-7e68-4c9a-aa93-23d57829d97a", + "person_id": "2c58c356-9fd0-4895-ad39-29fd1ec72787", + "lead_id": "d141bfb1-1632-4e29-9ee1-d8815b4b6733", + "channel": "whatsapp", + "interaction_type": "whatsapp", + "happened_at": "2025-12-27T11:07:55.878643", + "summary": "Whatsapp interaction regarding Godrej Elevate", + "source_ref": "f831c151-7b61-4dcf-9f40-823167a59596", + "created_at": "2026-03-21T11:07:55.878652" + }, + { + "interaction_id": "09f4224a-381e-4d62-91cc-8a80c2b8a659", + "person_id": "2c58c356-9fd0-4895-ad39-29fd1ec72787", + "lead_id": "d141bfb1-1632-4e29-9ee1-d8815b4b6733", + "channel": "email", + "interaction_type": "email", + "happened_at": "2026-02-26T11:07:55.878723", + "summary": "Email interaction regarding Godrej Elevate", + "source_ref": "76588704-637a-4a48-9851-555ee2e012f8", + "created_at": "2026-03-04T11:07:55.878732" + } + ], + "calls": [], + "transcripts": [], + "messages": [ + { + "message_id": "7d5f79ed-2b53-4bfb-802f-f8e6f2d8bfa0", + "interaction_id": "f9a5ca57-7e68-4c9a-aa93-23d57829d97a", + "person_id": "2c58c356-9fd0-4895-ad39-29fd1ec72787", + "sender_role": "agent", + "message_text": "Hello Prabir, the floor plan you requested for Godrej Elevate is attached here.", + "delivered_at": "2026-03-19T01:07:55.878654", + "channel": "whatsapp", + "read_at": "2026-03-19T01:58:55.878654" + }, + { + "message_id": "7809ad42-2090-46e6-98d4-23d9c7ed594c", + "interaction_id": "f9a5ca57-7e68-4c9a-aa93-23d57829d97a", + "person_id": "2c58c356-9fd0-4895-ad39-29fd1ec72787", + "sender_role": "client", + "message_text": "I saw another project in Rajarhat. How does Godrej Elevate compare?", + "delivered_at": "2026-03-19T21:07:55.878654", + "channel": "whatsapp", + "read_at": "2026-03-19T22:47:55.878654" + }, + { + "message_id": "64a11fe7-49e0-4b70-89e0-6475affc32f5", + "interaction_id": "f9a5ca57-7e68-4c9a-aa93-23d57829d97a", + "person_id": "2c58c356-9fd0-4895-ad39-29fd1ec72787", + "sender_role": "agent", + "message_text": "Hi Prabir, just sending over the brochure for Godrej Elevate as promised. Let me know if you have any questions!", + "delivered_at": "2026-03-20T08:07:55.878654", + "channel": "whatsapp", + "read_at": "2026-03-20T08:22:55.878654" + }, + { + "message_id": "6ddaea20-910d-4071-b7b3-67e75ee6ae93", + "interaction_id": "f9a5ca57-7e68-4c9a-aa93-23d57829d97a", + "person_id": "2c58c356-9fd0-4895-ad39-29fd1ec72787", + "sender_role": "client", + "message_text": "My wife liked the project. We are deciding this week.", + "delivered_at": "2026-03-21T18:07:55.878654", + "channel": "whatsapp", + "read_at": "2026-03-21T18:52:55.878654" + }, + { + "message_id": "ecfc8a9e-ece3-497c-8ed5-184da70d890d", + "interaction_id": "f9a5ca57-7e68-4c9a-aa93-23d57829d97a", + "person_id": "2c58c356-9fd0-4895-ad39-29fd1ec72787", + "sender_role": "agent", + "message_text": "Hi Prabir, reminder about tomorrow's meeting at our Godrej Elevate sample flat at 11am.", + "delivered_at": "2026-03-22T17:07:55.878654", + "channel": "whatsapp", + "read_at": "2026-03-22T18:30:55.878654" + }, + { + "message_id": "72245239-49c5-4752-91e8-08f5561fe24f", + "interaction_id": "f9a5ca57-7e68-4c9a-aa93-23d57829d97a", + "person_id": "2c58c356-9fd0-4895-ad39-29fd1ec72787", + "sender_role": "client", + "message_text": "My wife liked the project. We are deciding this week.", + "delivered_at": "2026-03-23T03:07:55.878654", + "channel": "whatsapp", + "read_at": null + } + ], + "emails": [ + { + "email_id": "f21f9e3d-5c6e-4f3d-b2bc-1d521370f013", + "interaction_id": "09f4224a-381e-4d62-91cc-8a80c2b8a659", + "person_id": "2c58c356-9fd0-4895-ad39-29fd1ec72787", + "subject": "Floor Plan & Price List - Godrej Elevate", + "body": "Dear Prabir,\n\nThank you for your interest in Godrej Elevate. As discussed, please find the brochure and floor plans attached.\n\nWe would be happy to arrange a site visit at your convenience.\n\nBest regards,\nVelocity Real Estate Team", + "sender_role": "agent", + "sent_at": "2025-11-01T11:07:55.878742", + "opened_at": null, + "replied_at": "2025-11-08T11:07:55.878744" + } + ], + "visits": [], + "reminders": [ + { + "reminder_id": "3d0f9b0a-caa2-47fc-8012-1a53b80008a3", + "person_id": "2c58c356-9fd0-4895-ad39-29fd1ec72787", + "lead_id": "d141bfb1-1632-4e29-9ee1-d8815b4b6733", + "reminder_text": "Send festive offer", + "due_at": "2026-05-04T11:07:55.878746", + "completed": true, + "completed_at": "2026-04-03T11:07:55.878758", + "assigned_user_id": "user_5", + "created_at": "2026-02-05T11:07:55.878760" + }, + { + "reminder_id": "5b19fd0e-01d2-4d92-8c0c-0751452b94c6", + "person_id": "2c58c356-9fd0-4895-ad39-29fd1ec72787", + "lead_id": "d141bfb1-1632-4e29-9ee1-d8815b4b6733", + "reminder_text": "Confirm booking appointment", + "due_at": "2026-04-28T11:07:55.878761", + "completed": true, + "completed_at": "2026-03-21T11:07:55.878770", + "assigned_user_id": "user_3", + "created_at": "2026-03-09T11:07:55.878773" + }, + { + "reminder_id": "b33d4ad0-5e67-4ccc-82d4-a2c15fb85c84", + "person_id": "2c58c356-9fd0-4895-ad39-29fd1ec72787", + "lead_id": "d141bfb1-1632-4e29-9ee1-d8815b4b6733", + "reminder_text": "Nudge for final decision", + "due_at": "2026-05-04T11:07:55.878775", + "completed": false, + "completed_at": null, + "assigned_user_id": "user_3", + "created_at": "2026-01-27T11:07:55.878786" + }, + { + "reminder_id": "7515241f-69bd-476e-ae41-d87126d3b285", + "person_id": "2c58c356-9fd0-4895-ad39-29fd1ec72787", + "lead_id": "d141bfb1-1632-4e29-9ee1-d8815b4b6733", + "reminder_text": "Confirm booking appointment", + "due_at": "2026-05-10T11:07:55.878788", + "completed": true, + "completed_at": "2026-04-01T11:07:55.878800", + "assigned_user_id": "user_1", + "created_at": "2026-02-27T11:07:55.878801" + } + ], + "qd_scores": [ + { + "qd_id": "090b4a6b-703f-44d0-8e78-bb00d893dadb", + "person_id": "2c58c356-9fd0-4895-ad39-29fd1ec72787", + "score_type": "intent_score", + "current_value": 0.518, + "computed_at": "2026-03-11T11:07:55.878818", + "evidence_refs_json": "[\"cb818468-a9c4-4e75-9cd2-7829f7feca75\", \"8468063f-3883-4235-bae0-be63fce970d4\"]" + }, + { + "qd_id": "8074acb0-1748-4432-b9e8-682fd4d47d21", + "person_id": "2c58c356-9fd0-4895-ad39-29fd1ec72787", + "score_type": "urgency_score", + "current_value": 0.51, + "computed_at": "2026-03-10T11:07:55.878954", + "evidence_refs_json": "[\"2bfffd37-c26b-43d6-960d-aeee5fb0dc84\", \"5c2a36a8-383d-4e82-ad14-78be538ad7cf\"]" + }, + { + "qd_id": "8b0d4ace-e9bd-4471-bbde-3f9a64e2fd22", + "person_id": "2c58c356-9fd0-4895-ad39-29fd1ec72787", + "score_type": "engagement_score", + "current_value": 0.606, + "computed_at": "2026-03-29T11:07:55.879050", + "evidence_refs_json": "[\"a8b93c86-c3ae-4cef-a3e5-a95acf2a1153\", \"0d113a5d-dc11-4c95-a7b6-a57464e3d9da\", \"e96bff4e-2f17-4602-a7c3-705c27f54df4\", \"b108bae5-ce23-46f4-a4bd-ac3eef17fbf3\", \"fa6673ca-e090-402a-9b40-ee1b90945f48\"]" + } + ], + "qd_timeseries": [ + { + "timeseries_id": "71afbda6-045d-479a-8ace-dbfab542539c", + "person_id": "2c58c356-9fd0-4895-ad39-29fd1ec72787", + "signal_source": "site_visit", + "timestamp": "2025-12-02T11:07:55.878837", + "value": 0.543, + "score_type": "intent_score", + "evidence_ref": "02b2c304-862f-45ca-9fe7-01da106846dd" + }, + { + "timeseries_id": "31f8da26-71cb-4adc-aa1e-7f40de06ecc1", + "person_id": "2c58c356-9fd0-4895-ad39-29fd1ec72787", + "signal_source": "call", + "timestamp": "2025-12-11T11:07:55.878837", + "value": 0.506, + "score_type": "intent_score", + "evidence_ref": "61b3082e-4f75-4053-be3a-c394ae313d3b" + }, + { + "timeseries_id": "5893542d-76bd-47e1-8f38-ca01a1ed5a54", + "person_id": "2c58c356-9fd0-4895-ad39-29fd1ec72787", + "signal_source": "call", + "timestamp": "2025-12-26T11:07:55.878837", + "value": 0.519, + "score_type": "intent_score", + "evidence_ref": "a492744c-4e6f-4309-8a15-f982299b91b4" + }, + { + "timeseries_id": "7687de04-4541-47bc-8c48-427f0e868aa2", + "person_id": "2c58c356-9fd0-4895-ad39-29fd1ec72787", + "signal_source": "call", + "timestamp": "2026-01-05T11:07:55.878837", + "value": 0.457, + "score_type": "intent_score", + "evidence_ref": "666b876c-3ee1-444a-8a80-57b9a702b066" + }, + { + "timeseries_id": "d9b61fee-6ab2-4028-8f09-49a3bd5a1404", + "person_id": "2c58c356-9fd0-4895-ad39-29fd1ec72787", + "signal_source": "email", + "timestamp": "2026-01-24T11:07:55.878837", + "value": 0.524, + "score_type": "intent_score", + "evidence_ref": "6864ad81-2dcd-4b22-8f0e-becb1fd18f59" + }, + { + "timeseries_id": "d7801b9e-2c0d-4ce4-878f-ddc83a0499b9", + "person_id": "2c58c356-9fd0-4895-ad39-29fd1ec72787", + "signal_source": "site_visit", + "timestamp": "2026-02-03T11:07:55.878837", + "value": 0.487, + "score_type": "intent_score", + "evidence_ref": "9d1b137f-d583-4b2d-8377-84474e2ff21f" + }, + { + "timeseries_id": "b3919e95-8695-4526-b2eb-42d258353917", + "person_id": "2c58c356-9fd0-4895-ad39-29fd1ec72787", + "signal_source": "email", + "timestamp": "2026-02-17T11:07:55.878837", + "value": 0.496, + "score_type": "intent_score", + "evidence_ref": "d519f8b4-1c18-4d64-9e9f-dd0bafcb893d" + }, + { + "timeseries_id": "ddf91dfd-5893-4a87-bb11-3222b1feed55", + "person_id": "2c58c356-9fd0-4895-ad39-29fd1ec72787", + "signal_source": "site_visit", + "timestamp": "2025-11-06T11:07:55.878969", + "value": 0.413, + "score_type": "urgency_score", + "evidence_ref": "8e60aadb-6c8f-4c13-84b8-d3f46ca91680" + }, + { + "timeseries_id": "77c5136d-916f-4482-aa50-7989ec2e7a06", + "person_id": "2c58c356-9fd0-4895-ad39-29fd1ec72787", + "signal_source": "site_visit", + "timestamp": "2025-11-23T11:07:55.878969", + "value": 0.45, + "score_type": "urgency_score", + "evidence_ref": "9db299a2-6632-4da0-8013-4bf9f6cff896" + }, + { + "timeseries_id": "87e228e4-c6cb-4010-8465-2e74acb57b83", + "person_id": "2c58c356-9fd0-4895-ad39-29fd1ec72787", + "signal_source": "site_visit", + "timestamp": "2025-12-02T11:07:55.878969", + "value": 0.41, + "score_type": "urgency_score", + "evidence_ref": "80d59118-8823-4a76-a3fb-ab256f5e3692" + }, + { + "timeseries_id": "0d9f515d-7b78-4984-bd85-4df8f58114a7", + "person_id": "2c58c356-9fd0-4895-ad39-29fd1ec72787", + "signal_source": "site_visit", + "timestamp": "2025-12-11T11:07:55.878969", + "value": 0.464, + "score_type": "urgency_score", + "evidence_ref": "9352f64f-f297-4dbc-8103-49e688ee765c" + }, + { + "timeseries_id": "6a2c5aa6-2e36-4a46-81a9-9bb524daa950", + "person_id": "2c58c356-9fd0-4895-ad39-29fd1ec72787", + "signal_source": "whatsapp", + "timestamp": "2025-12-28T11:07:55.878969", + "value": 0.533, + "score_type": "urgency_score", + "evidence_ref": "9ba6a198-b0b3-4d86-95cf-2467f965f2bd" + }, + { + "timeseries_id": "650cd109-83ef-4adc-9a51-dd84b364ef2a", + "person_id": "2c58c356-9fd0-4895-ad39-29fd1ec72787", + "signal_source": "call", + "timestamp": "2025-11-17T11:07:55.879084", + "value": 0.641, + "score_type": "engagement_score", + "evidence_ref": "31e0e729-5e06-440b-be35-53909b11b6cb" + }, + { + "timeseries_id": "e13cebc0-dc82-4e16-9ded-8135c22bf49f", + "person_id": "2c58c356-9fd0-4895-ad39-29fd1ec72787", + "signal_source": "site_visit", + "timestamp": "2025-12-05T11:07:55.879084", + "value": 0.49, + "score_type": "engagement_score", + "evidence_ref": "0f1a4c94-27b7-4945-9070-3a992fe86d1d" + }, + { + "timeseries_id": "3bba194c-c2d9-4b5f-ac9d-5740097483a9", + "person_id": "2c58c356-9fd0-4895-ad39-29fd1ec72787", + "signal_source": "whatsapp", + "timestamp": "2025-12-19T11:07:55.879084", + "value": 0.714, + "score_type": "engagement_score", + "evidence_ref": "19a4d6da-1c9c-4b03-ae81-56beee2cea32" + }, + { + "timeseries_id": "15c02284-c4b2-45ca-a0e1-4e8fc525a294", + "person_id": "2c58c356-9fd0-4895-ad39-29fd1ec72787", + "signal_source": "email", + "timestamp": "2026-01-03T11:07:55.879084", + "value": 0.532, + "score_type": "engagement_score", + "evidence_ref": "0d3910e2-0881-4f03-a484-f58d64637353" + }, + { + "timeseries_id": "b3453d92-88ce-46b3-a7c5-49aef500d04b", + "person_id": "2c58c356-9fd0-4895-ad39-29fd1ec72787", + "signal_source": "whatsapp", + "timestamp": "2026-01-12T11:07:55.879084", + "value": 0.505, + "score_type": "engagement_score", + "evidence_ref": "f6819186-b470-46dd-8bcb-fef1a0df1843" + } + ], + "intel_events": [ + { + "event_id": "c5f6aa8e-3b79-41da-9e77-51ad19448dfa", + "event_type": "number_plate_detected", + "person_id": "2c58c356-9fd0-4895-ad39-29fd1ec72787", + "project_ref": "Godrej Elevate", + "detected_at": "2026-04-05T11:07:55.879166", + "vehicle_plate_hash": "WB74J9626", + "confidence": 0.759, + "media_ref": "cctv_clip_b8595f35.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + } + ], + "client360": { + "client_ref": "2c58c356-9fd0-4895-ad39-29fd1ec72787", + "snapshot_generated_at": "2026-04-18T11:07:55.879183", + "identity": { + "full_name": "Prabir Gupta", + "primary_email": "prabir.gupta114@outlook.com", + "primary_phone": "+91 9912923661", + "persona_labels": "[\"family_centric\"]", + "buyer_type": "family_decision_unit" + }, + "account_links": [ + "719009b0-4ad2-4ab0-ab36-7144c1c43981" + ], + "active_opportunities": [ + { + "opportunity_id": "4dc38e9b-ee48-4473-97d2-2808ed11b685", + "project": "Godrej Elevate", + "stage": "site_visit_done", + "value": 15856117 + } + ], + "recent_interactions": [ + { + "interaction_id": "09f4224a-381e-4d62-91cc-8a80c2b8a659", + "channel": "email", + "happened_at": "2026-02-26T11:07:55.878723" + }, + { + "interaction_id": "f9a5ca57-7e68-4c9a-aa93-23d57829d97a", + "channel": "whatsapp", + "happened_at": "2025-12-27T11:07:55.878643" + }, + { + "interaction_id": "ccd8753c-3bc4-45b5-91c7-48e291c52095", + "channel": "builder_event", + "happened_at": "2025-11-10T11:07:55.878605" + }, + { + "interaction_id": "2d7730a8-cdb0-48ca-adf8-0759b219b6ec", + "channel": "builder_event", + "happened_at": "2025-10-23T11:07:55.878622" + } + ], + "property_interests": [ + { + "project": "Godrej Elevate", + "config": "4BHK", + "budget_max": 14314303 + } + ], + "tasks": [ + "Nudge for final decision" + ], + "qd_overview": { + "intent_score": 0.518, + "urgency_score": 0.51, + "engagement_score": 0.606 + }, + "risk_flags": [ + "price_objection_raised", + "financing_uncertainty" + ], + "recommended_next_actions": [ + "Follow up on impressions", + "Send updated price list" + ], + "lead_stage": "site_visit_done", + "lead_status": "active" + } + }, + { + "person": { + "person_id": "66232df4-c729-4792-ab0e-8c61f1b74766", + "full_name": "Kaushik Sarkar", + "primary_email": "kaushik.sarkar421@outlook.com", + "primary_phone": "+91 9904956613", + "secondary_phone": "+91 8907818922", + "linkedin_url": "https://linkedin.com/in/kaushik-sarkar-870", + "occupation": "Senior Manager", + "employer": "Jadavpur University", + "account_id": "680245f4-619c-40a1-90ff-c098cccf2f41", + "location_city": "Garia", + "location_country": "India", + "buyer_type": "high_intent", + "persona_labels": "[\"upgrade_seeker\"]", + "is_nri": false, + "source_confidence": 0.946, + "created_at": "2025-08-22T11:07:55.879233", + "updated_at": "2025-12-02T11:07:55.879235" + }, + "lead": { + "lead_id": "a730e518-d312-4f5c-a936-3c2148674320", + "person_id": "66232df4-c729-4792-ab0e-8c61f1b74766", + "account_id": "680245f4-619c-40a1-90ff-c098cccf2f41", + "source_system": "referral", + "status": "active", + "stage": "site_visit_done", + "budget_band": "₹158L - ₹174L", + "urgency": "immediate", + "assigned_user_id": "user_3", + "primary_project": "Ambuja Utpaala", + "objection": null, + "motivation": "Upgrade from current home", + "financing_posture": "cash", + "created_at": "2025-09-16T11:07:55.879286", + "updated_at": "2025-12-23T11:07:55.879288" + }, + "opportunities": [ + { + "opportunity_id": "5ad4465c-1b21-4f78-a71c-0a637104252a", + "lead_id": "a730e518-d312-4f5c-a936-3c2148674320", + "person_id": "66232df4-c729-4792-ab0e-8c61f1b74766", + "project_name": "Ambuja Utpaala", + "unit_config": "3BHK", + "stage": "site_visit_done", + "value": 15891997, + "probability": 40, + "expected_close_date": "2026-05-31T11:07:55.879332", + "next_action": "Confirm booking slot", + "created_at": "2025-10-12T11:07:55.879333", + "updated_at": "2026-03-25T11:07:55.879335" + } + ], + "property_interests": [ + { + "interest_id": "e8e84dca-95c1-4b81-996c-c424164d87f9", + "person_id": "66232df4-c729-4792-ab0e-8c61f1b74766", + "project_name": "Ambuja Utpaala", + "configuration": "3BHK", + "budget_min": 11904610, + "budget_max": 14550079, + "urgency": "flexible", + "facing_preference": "any", + "floor_preference": "any", + "notes": "Investment portfolio", + "created_at": "2025-07-23T11:07:55.879260" + }, + { + "interest_id": "c8d5feca-2198-4603-a941-caba0a90d32c", + "person_id": "66232df4-c729-4792-ab0e-8c61f1b74766", + "project_name": "Atri Surya Toron", + "configuration": "2BHK", + "budget_min": 6332527, + "budget_max": 7739756, + "urgency": "within_3_months", + "facing_preference": "north", + "floor_preference": "low", + "notes": "Good connectivity to workplace", + "created_at": "2025-07-09T11:07:55.879271" + } + ], + "interactions": [ + { + "interaction_id": "9fcab646-2b9c-45c3-a2be-abab778ee1e0", + "person_id": "66232df4-c729-4792-ab0e-8c61f1b74766", + "lead_id": "a730e518-d312-4f5c-a936-3c2148674320", + "channel": "site_visit", + "interaction_type": "site_visit", + "happened_at": "2026-03-28T11:07:55.879345", + "summary": "Site Visit interaction regarding Ambuja Utpaala", + "source_ref": "ce8f41ad-ef1c-40ff-86db-4fd12bdf9742", + "created_at": "2026-01-12T11:07:55.879353" + }, + { + "interaction_id": "5e424a88-f909-4e0e-8c95-a1d4ddf6bf86", + "person_id": "66232df4-c729-4792-ab0e-8c61f1b74766", + "lead_id": "a730e518-d312-4f5c-a936-3c2148674320", + "channel": "builder_event", + "interaction_type": "builder_event", + "happened_at": "2025-10-17T11:07:55.879372", + "summary": "Builder Event interaction regarding Ambuja Utpaala", + "source_ref": "0b15bc9f-7b63-472f-abac-24331e183363", + "created_at": "2025-11-02T11:07:55.879379" + }, + { + "interaction_id": "71613508-7aa3-4a06-91f2-15a0fcf56f2f", + "person_id": "66232df4-c729-4792-ab0e-8c61f1b74766", + "lead_id": "a730e518-d312-4f5c-a936-3c2148674320", + "channel": "email", + "interaction_type": "email", + "happened_at": "2026-03-11T11:07:55.879388", + "summary": "Email interaction regarding Ambuja Utpaala", + "source_ref": "1f6ace7a-052a-4124-8718-d357386b214c", + "created_at": "2026-03-13T11:07:55.879395" + }, + { + "interaction_id": "c3354d6a-89c0-4bcd-8d0f-42aba21b7696", + "person_id": "66232df4-c729-4792-ab0e-8c61f1b74766", + "lead_id": "a730e518-d312-4f5c-a936-3c2148674320", + "channel": "site_visit", + "interaction_type": "site_visit", + "happened_at": "2025-11-11T11:07:55.879417", + "summary": "Site Visit interaction regarding Ambuja Utpaala", + "source_ref": "f436239f-c2bc-499d-9f6c-016eef61b270", + "created_at": "2026-04-16T11:07:55.879424" + } + ], + "calls": [], + "transcripts": [], + "messages": [], + "emails": [ + { + "email_id": "418d056e-bf92-448d-a710-0772f7de3869", + "interaction_id": "71613508-7aa3-4a06-91f2-15a0fcf56f2f", + "person_id": "66232df4-c729-4792-ab0e-8c61f1b74766", + "subject": "Site Visit Confirmation - Ambuja Utpaala", + "body": "Dear Kaushik,\n\nWe are pleased to share the exclusive early-bird pricing for Ambuja Utpaala. This offer is valid until the end of the month.\n\nPlease let us know if you would like to schedule a meeting.\n\nWarm regards,\nVelocity Real Estate", + "sender_role": "agent", + "sent_at": "2025-12-18T11:07:55.879406", + "opened_at": "2026-03-13T11:07:55.879407", + "replied_at": "2025-12-18T11:07:55.879409" + } + ], + "visits": [ + { + "visit_id": "272938bb-b2e9-418c-8535-c9be9aeb9a23", + "person_id": "66232df4-c729-4792-ab0e-8c61f1b74766", + "lead_id": "a730e518-d312-4f5c-a936-3c2148674320", + "project_name": "Ambuja Utpaala", + "visited_at": "2026-02-19T11:07:55.879362", + "visit_notes": "Liked the 3BHK show flat. Concerned about traffic.", + "host_user_id": "user_3", + "revisit_intent": "yes", + "household_id": null + }, + { + "visit_id": "44608f7c-6b39-47d3-ad44-f5b55b76803d", + "person_id": "66232df4-c729-4792-ab0e-8c61f1b74766", + "lead_id": "a730e518-d312-4f5c-a936-3c2148674320", + "project_name": "Ambuja Utpaala", + "visited_at": "2026-03-28T11:07:55.879432", + "visit_notes": "Liked the 3BHK show flat. Concerned about traffic.", + "host_user_id": "user_3", + "revisit_intent": "yes", + "household_id": null + } + ], + "reminders": [ + { + "reminder_id": "408f87bb-d1f8-4775-a4cd-7c22bb3b84c1", + "person_id": "66232df4-c729-4792-ab0e-8c61f1b74766", + "lead_id": "a730e518-d312-4f5c-a936-3c2148674320", + "reminder_text": "Send festive offer", + "due_at": "2026-05-01T11:07:55.879436", + "completed": true, + "completed_at": "2026-04-01T11:07:55.879443", + "assigned_user_id": "user_4", + "created_at": "2026-03-11T11:07:55.879445" + }, + { + "reminder_id": "0aec0cb9-63f7-489b-9a7d-20963c8d1981", + "person_id": "66232df4-c729-4792-ab0e-8c61f1b74766", + "lead_id": "a730e518-d312-4f5c-a936-3c2148674320", + "reminder_text": "Send legal documents", + "due_at": "2026-04-24T11:07:55.879447", + "completed": false, + "completed_at": null, + "assigned_user_id": "user_1", + "created_at": "2026-03-15T11:07:55.879455" + } + ], + "qd_scores": [ + { + "qd_id": "3c0a1266-90c9-466a-b0cd-49a2a6716435", + "person_id": "66232df4-c729-4792-ab0e-8c61f1b74766", + "score_type": "intent_score", + "current_value": 0.787, + "computed_at": "2026-03-03T11:07:55.879467", + "evidence_refs_json": "[\"a3f0b7fb-a744-4324-8afd-4588c3403e6f\", \"41caec74-b1d9-401c-afd5-9ce01825f436\", \"522fa26a-ddb5-401c-90f3-7a8a669df7df\"]" + }, + { + "qd_id": "62463d76-c5e1-4996-8e9d-218c70942f8c", + "person_id": "66232df4-c729-4792-ab0e-8c61f1b74766", + "score_type": "urgency_score", + "current_value": 0.706, + "computed_at": "2026-04-02T11:07:55.880052", + "evidence_refs_json": "[\"cc05aaf9-4687-4e59-ac34-4e11569024d3\", \"1e23056a-c540-4b88-95e2-7a8071b5800a\"]" + }, + { + "qd_id": "d223ddc1-60d6-4444-adfc-8e042fe41bff", + "person_id": "66232df4-c729-4792-ab0e-8c61f1b74766", + "score_type": "engagement_score", + "current_value": 0.853, + "computed_at": "2026-03-14T11:07:55.880188", + "evidence_refs_json": "[\"4d55ef62-5c7e-40e0-8c4f-e05a37c2007b\", \"2d6e153c-92a1-4a46-9fb8-d356a060bc5a\", \"5a651b00-0a65-4fa2-8132-0da53de2e63e\", \"bddea4f4-5007-4f03-aad3-433d560e78b5\", \"bd89ecdd-8bc9-4b03-8458-df4359838d3b\"]" + } + ], + "qd_timeseries": [ + { + "timeseries_id": "6333441c-ef61-46e7-be51-67e15e9d06e5", + "person_id": "66232df4-c729-4792-ab0e-8c61f1b74766", + "signal_source": "site_visit", + "timestamp": "2025-12-06T11:07:55.879858", + "value": 0.725, + "score_type": "intent_score", + "evidence_ref": "15b67f15-44fb-45c9-915e-4f9c6a10862e" + }, + { + "timeseries_id": "f728f242-83bc-41da-972b-6fdae71a3af6", + "person_id": "66232df4-c729-4792-ab0e-8c61f1b74766", + "signal_source": "whatsapp", + "timestamp": "2025-12-24T11:07:55.879858", + "value": 0.826, + "score_type": "intent_score", + "evidence_ref": "884d7005-f70a-477a-aa50-5eb7180b2f1b" + }, + { + "timeseries_id": "c4afd14c-a396-4271-9919-145c353328d1", + "person_id": "66232df4-c729-4792-ab0e-8c61f1b74766", + "signal_source": "site_visit", + "timestamp": "2025-12-31T11:07:55.879858", + "value": 0.683, + "score_type": "intent_score", + "evidence_ref": "ff727d1c-2451-4eba-9ae2-26d98bb7c1ee" + }, + { + "timeseries_id": "09a06a6c-24f7-4f70-a860-8ecb311a8a15", + "person_id": "66232df4-c729-4792-ab0e-8c61f1b74766", + "signal_source": "email", + "timestamp": "2026-01-05T11:07:55.879858", + "value": 0.877, + "score_type": "intent_score", + "evidence_ref": "6884ee4b-b0a5-477b-af26-5082392c46f6" + }, + { + "timeseries_id": "fac75b69-96c2-478c-a207-bfaffb263401", + "person_id": "66232df4-c729-4792-ab0e-8c61f1b74766", + "signal_source": "email", + "timestamp": "2026-01-11T11:07:55.879858", + "value": 0.902, + "score_type": "intent_score", + "evidence_ref": "db22b915-898f-4871-91a4-6876b954b28f" + }, + { + "timeseries_id": "c51344ad-c1e8-4481-8864-e001746e9c92", + "person_id": "66232df4-c729-4792-ab0e-8c61f1b74766", + "signal_source": "call", + "timestamp": "2026-01-24T11:07:55.879858", + "value": 0.753, + "score_type": "intent_score", + "evidence_ref": "17f21851-4390-4b51-9159-f7ef7dc47044" + }, + { + "timeseries_id": "21f1f8c6-ea38-4f19-b0e4-f6dccbc1730b", + "person_id": "66232df4-c729-4792-ab0e-8c61f1b74766", + "signal_source": "whatsapp", + "timestamp": "2025-11-15T11:07:55.880081", + "value": 0.597, + "score_type": "urgency_score", + "evidence_ref": "f13b3e10-82ff-40e4-a428-b64eb5779ecf" + }, + { + "timeseries_id": "653ae35d-3b05-4a7b-8e93-400ca2a6bdc4", + "person_id": "66232df4-c729-4792-ab0e-8c61f1b74766", + "signal_source": "whatsapp", + "timestamp": "2025-11-30T11:07:55.880081", + "value": 0.785, + "score_type": "urgency_score", + "evidence_ref": "5feb58fc-915f-4b2b-9a50-7e7e4f1293df" + }, + { + "timeseries_id": "32282367-b81b-4090-af8d-dffc671b49d2", + "person_id": "66232df4-c729-4792-ab0e-8c61f1b74766", + "signal_source": "email", + "timestamp": "2025-12-19T11:07:55.880081", + "value": 0.738, + "score_type": "urgency_score", + "evidence_ref": "0b0b7805-ed03-4f2d-b335-10cee0ec9c4e" + }, + { + "timeseries_id": "44b42620-59d1-4f12-8a70-9e97032425d0", + "person_id": "66232df4-c729-4792-ab0e-8c61f1b74766", + "signal_source": "call", + "timestamp": "2025-12-28T11:07:55.880081", + "value": 0.758, + "score_type": "urgency_score", + "evidence_ref": "97af5fdf-6fce-49ec-8090-5ecebb884590" + }, + { + "timeseries_id": "8fccd0f7-779f-43d2-b545-9e3c730252e9", + "person_id": "66232df4-c729-4792-ab0e-8c61f1b74766", + "signal_source": "call", + "timestamp": "2026-01-16T11:07:55.880081", + "value": 0.656, + "score_type": "urgency_score", + "evidence_ref": "04a570cd-d8af-46df-a08a-622a67128a29" + }, + { + "timeseries_id": "66ff6718-5fa5-4399-88e7-c45831d14a96", + "person_id": "66232df4-c729-4792-ab0e-8c61f1b74766", + "signal_source": "whatsapp", + "timestamp": "2026-01-22T11:07:55.880081", + "value": 0.799, + "score_type": "urgency_score", + "evidence_ref": "d46b9c11-d0e2-4058-a687-5d5d15993565" + }, + { + "timeseries_id": "ef8bf6dc-4f17-4187-a573-5f27b46322bd", + "person_id": "66232df4-c729-4792-ab0e-8c61f1b74766", + "signal_source": "site_visit", + "timestamp": "2026-02-06T11:07:55.880081", + "value": 0.71, + "score_type": "urgency_score", + "evidence_ref": "33578b8b-6f85-4f34-8494-0a52f50efffd" + }, + { + "timeseries_id": "f91407e8-0a16-4762-a88d-a42abf3d4869", + "person_id": "66232df4-c729-4792-ab0e-8c61f1b74766", + "signal_source": "site_visit", + "timestamp": "2025-12-14T11:07:55.880263", + "value": 0.819, + "score_type": "engagement_score", + "evidence_ref": "385ef4a2-cd8a-44ac-bc4b-aa67153721cc" + }, + { + "timeseries_id": "bfdfd275-f8ba-4412-832b-3027dd9b1c01", + "person_id": "66232df4-c729-4792-ab0e-8c61f1b74766", + "signal_source": "site_visit", + "timestamp": "2025-12-20T11:07:55.880263", + "value": 0.799, + "score_type": "engagement_score", + "evidence_ref": "44a646e6-6d3f-4fcb-b83e-5962ae6afb8e" + }, + { + "timeseries_id": "14f21a06-f4bf-43d1-a2e0-d1f2a8e86233", + "person_id": "66232df4-c729-4792-ab0e-8c61f1b74766", + "signal_source": "email", + "timestamp": "2026-01-05T11:07:55.880263", + "value": 0.946, + "score_type": "engagement_score", + "evidence_ref": "31ca89e6-c045-44ab-b030-3ef92169ca3b" + } + ], + "intel_events": [ + { + "event_id": "9d5a4c34-98ec-41a8-98b4-fed27d5157f3", + "event_type": "number_plate_detected", + "person_id": "66232df4-c729-4792-ab0e-8c61f1b74766", + "project_ref": "Ambuja Utpaala", + "detected_at": "2026-02-27T11:07:55.880326", + "vehicle_plate_hash": "WB53C9129", + "confidence": 0.916, + "media_ref": "cctv_clip_bc43a231.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + } + ], + "client360": { + "client_ref": "66232df4-c729-4792-ab0e-8c61f1b74766", + "snapshot_generated_at": "2026-04-18T11:07:55.880351", + "identity": { + "full_name": "Kaushik Sarkar", + "primary_email": "kaushik.sarkar421@outlook.com", + "primary_phone": "+91 9904956613", + "persona_labels": "[\"upgrade_seeker\"]", + "buyer_type": "high_intent" + }, + "account_links": [ + "680245f4-619c-40a1-90ff-c098cccf2f41" + ], + "active_opportunities": [ + { + "opportunity_id": "5ad4465c-1b21-4f78-a71c-0a637104252a", + "project": "Ambuja Utpaala", + "stage": "site_visit_done", + "value": 15891997 + } + ], + "recent_interactions": [ + { + "interaction_id": "9fcab646-2b9c-45c3-a2be-abab778ee1e0", + "channel": "site_visit", + "happened_at": "2026-03-28T11:07:55.879345" + }, + { + "interaction_id": "71613508-7aa3-4a06-91f2-15a0fcf56f2f", + "channel": "email", + "happened_at": "2026-03-11T11:07:55.879388" + }, + { + "interaction_id": "c3354d6a-89c0-4bcd-8d0f-42aba21b7696", + "channel": "site_visit", + "happened_at": "2025-11-11T11:07:55.879417" + }, + { + "interaction_id": "5e424a88-f909-4e0e-8c95-a1d4ddf6bf86", + "channel": "builder_event", + "happened_at": "2025-10-17T11:07:55.879372" + } + ], + "property_interests": [ + { + "project": "Ambuja Utpaala", + "config": "3BHK", + "budget_max": 14550079 + }, + { + "project": "Atri Surya Toron", + "config": "2BHK", + "budget_max": 7739756 + } + ], + "tasks": [ + "Send legal documents" + ], + "qd_overview": { + "intent_score": 0.787, + "urgency_score": 0.706, + "engagement_score": 0.853 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Follow up on impressions", + "Send updated price list" + ], + "lead_stage": "site_visit_done", + "lead_status": "active" + } + }, + { + "person": { + "person_id": "d77568b9-80ee-4dbf-8d3f-a6ed3d468509", + "full_name": "Prabir Bose", + "primary_email": "prabir.bose843@yahoo.com", + "primary_phone": "+91 9342794700", + "secondary_phone": null, + "linkedin_url": null, + "occupation": "Consultant", + "employer": "IIM Calcutta", + "account_id": "d9525127-ff0d-45a0-b6d2-57b735be5c66", + "location_city": "Salt Lake", + "location_country": "India", + "buyer_type": "price_sensitive", + "persona_labels": "[\"nri_diaspora\"]", + "is_nri": false, + "source_confidence": 0.915, + "created_at": "2025-08-03T11:07:55.880404", + "updated_at": "2025-12-24T11:07:55.880406" + }, + "lead": { + "lead_id": "9ebc603e-7c34-4b07-bddf-f0205ae66ab4", + "person_id": "d77568b9-80ee-4dbf-8d3f-a6ed3d468509", + "account_id": "d9525127-ff0d-45a0-b6d2-57b735be5c66", + "source_system": "99acres", + "status": "active", + "stage": "qualified", + "budget_band": "₹111L - ₹122L", + "urgency": "within_6_months", + "assigned_user_id": "user_4", + "primary_project": "Eden Devprayag", + "objection": null, + "motivation": "Healthcare access", + "financing_posture": "home_loan", + "created_at": "2025-08-04T11:07:55.880487", + "updated_at": "2026-03-09T11:07:55.880489" + }, + "opportunities": [ + { + "opportunity_id": "f51a0305-5616-4652-86a6-226889a068cf", + "lead_id": "9ebc603e-7c34-4b07-bddf-f0205ae66ab4", + "person_id": "d77568b9-80ee-4dbf-8d3f-a6ed3d468509", + "project_name": "Eden Devprayag", + "unit_config": "3BHK", + "stage": "qualified", + "value": 11148545, + "probability": 20, + "expected_close_date": "2026-06-22T11:07:55.880524", + "next_action": "Share legal docs", + "created_at": "2025-11-16T11:07:55.880526", + "updated_at": "2026-03-23T11:07:55.880528" + } + ], + "property_interests": [ + { + "interest_id": "3ea5a5b9-b962-441b-add3-fc88eafd7ac3", + "person_id": "d77568b9-80ee-4dbf-8d3f-a6ed3d468509", + "project_name": "Eden Devprayag", + "configuration": "3BHK", + "budget_min": 7183038, + "budget_max": 8779269, + "urgency": "immediate", + "facing_preference": "south", + "floor_preference": "high", + "notes": "School proximity", + "created_at": "2025-07-27T11:07:55.880459" + }, + { + "interest_id": "ca935773-b491-4413-96d3-4a4ed98d846a", + "person_id": "d77568b9-80ee-4dbf-8d3f-a6ed3d468509", + "project_name": "Shriram Grand City", + "configuration": "4BHK", + "budget_min": 6157858, + "budget_max": 7526271, + "urgency": "immediate", + "facing_preference": "west", + "floor_preference": "any", + "notes": "Own home for the first time", + "created_at": "2026-01-16T11:07:55.880470" + } + ], + "interactions": [ + { + "interaction_id": "6782cf92-6142-48c9-bc6a-6e105ce9bc7c", + "person_id": "d77568b9-80ee-4dbf-8d3f-a6ed3d468509", + "lead_id": "9ebc603e-7c34-4b07-bddf-f0205ae66ab4", + "channel": "digital_ad", + "interaction_type": "digital_ad", + "happened_at": "2026-02-05T11:07:55.880537", + "summary": "Digital Ad interaction regarding Eden Devprayag", + "source_ref": "451b6e28-a2fa-42e1-a0bb-2561ee09f6d7", + "created_at": "2026-02-13T11:07:55.880546" + }, + { + "interaction_id": "e4770793-f681-4948-ad99-25d45bf21950", + "person_id": "d77568b9-80ee-4dbf-8d3f-a6ed3d468509", + "lead_id": "9ebc603e-7c34-4b07-bddf-f0205ae66ab4", + "channel": "whatsapp", + "interaction_type": "whatsapp", + "happened_at": "2026-04-11T11:07:55.880555", + "summary": "Whatsapp interaction regarding Eden Devprayag", + "source_ref": "484c3972-873f-4787-8348-2e7c479153bb", + "created_at": "2025-10-11T11:07:55.880562" + }, + { + "interaction_id": "bdd340c8-25f6-4a4a-8971-19e6250b42e0", + "person_id": "d77568b9-80ee-4dbf-8d3f-a6ed3d468509", + "lead_id": "9ebc603e-7c34-4b07-bddf-f0205ae66ab4", + "channel": "digital_ad", + "interaction_type": "digital_ad", + "happened_at": "2026-01-26T11:07:55.880652", + "summary": "Digital Ad interaction regarding Eden Devprayag", + "source_ref": "1933d764-7510-4066-9a9b-716f6d4bf00d", + "created_at": "2025-10-29T11:07:55.880660" + }, + { + "interaction_id": "7e67689c-438f-4b65-b9be-dd40576614a6", + "person_id": "d77568b9-80ee-4dbf-8d3f-a6ed3d468509", + "lead_id": "9ebc603e-7c34-4b07-bddf-f0205ae66ab4", + "channel": "email", + "interaction_type": "email", + "happened_at": "2025-10-18T11:07:55.880668", + "summary": "Email interaction regarding Eden Devprayag", + "source_ref": "e07e24d1-112b-44b7-b7a9-49ce177df1c8", + "created_at": "2026-04-01T11:07:55.880676" + }, + { + "interaction_id": "ef245601-b81e-4e8e-9506-55b796321eb4", + "person_id": "d77568b9-80ee-4dbf-8d3f-a6ed3d468509", + "lead_id": "9ebc603e-7c34-4b07-bddf-f0205ae66ab4", + "channel": "digital_ad", + "interaction_type": "digital_ad", + "happened_at": "2026-03-04T11:07:55.880698", + "summary": "Digital Ad interaction regarding Eden Devprayag", + "source_ref": "fd9b2970-a158-4525-baf0-4b52da734d23", + "created_at": "2026-01-15T11:07:55.880706" + } + ], + "calls": [], + "transcripts": [], + "messages": [ + { + "message_id": "2ef4e0e3-0f82-4831-a5ad-fdef5c68e654", + "interaction_id": "e4770793-f681-4948-ad99-25d45bf21950", + "person_id": "d77568b9-80ee-4dbf-8d3f-a6ed3d468509", + "sender_role": "agent", + "message_text": "Hello Prabir, the floor plan you requested for Eden Devprayag is attached here.", + "delivered_at": "2026-03-26T21:07:55.880568", + "channel": "whatsapp", + "read_at": "2026-03-26T21:23:55.880568" + }, + { + "message_id": "811e89af-92de-4660-9d72-b8b6630cbb80", + "interaction_id": "e4770793-f681-4948-ad99-25d45bf21950", + "person_id": "d77568b9-80ee-4dbf-8d3f-a6ed3d468509", + "sender_role": "client", + "message_text": "Can we reschedule the visit to Sunday?", + "delivered_at": "2026-03-27T14:07:55.880568", + "channel": "whatsapp", + "read_at": "2026-03-27T14:35:55.880568" + }, + { + "message_id": "1d4c97d7-eb29-43ce-8669-5838dba83853", + "interaction_id": "e4770793-f681-4948-ad99-25d45bf21950", + "person_id": "d77568b9-80ee-4dbf-8d3f-a6ed3d468509", + "sender_role": "agent", + "message_text": "Hi Prabir, we have a limited early booking offer expiring this Friday. Would love to share the details.", + "delivered_at": "2026-03-29T06:07:55.880568", + "channel": "whatsapp", + "read_at": "2026-03-29T07:10:55.880568" + }, + { + "message_id": "49b7a12b-3a7a-479b-b185-fffb8d1c85d8", + "interaction_id": "e4770793-f681-4948-ad99-25d45bf21950", + "person_id": "d77568b9-80ee-4dbf-8d3f-a6ed3d468509", + "sender_role": "client", + "message_text": "Can you share more details on the payment plan?", + "delivered_at": "2026-03-29T19:07:55.880568", + "channel": "whatsapp", + "read_at": null + }, + { + "message_id": "4afb3848-e668-4f9c-a0ed-4a47a6e911ac", + "interaction_id": "e4770793-f681-4948-ad99-25d45bf21950", + "person_id": "d77568b9-80ee-4dbf-8d3f-a6ed3d468509", + "sender_role": "agent", + "message_text": "Hello Prabir, the floor plan you requested for Eden Devprayag is attached here.", + "delivered_at": "2026-03-30T00:07:55.880568", + "channel": "whatsapp", + "read_at": null + }, + { + "message_id": "91573ea6-1d7c-43bb-88c3-c77d97ce8924", + "interaction_id": "e4770793-f681-4948-ad99-25d45bf21950", + "person_id": "d77568b9-80ee-4dbf-8d3f-a6ed3d468509", + "sender_role": "client", + "message_text": "We are ready to proceed. What is the booking amount?", + "delivered_at": "2026-03-31T22:07:55.880568", + "channel": "whatsapp", + "read_at": "2026-03-31T23:51:55.880568" + } + ], + "emails": [ + { + "email_id": "de9f4a27-9c0b-46a0-bef3-b1a316f7c29a", + "interaction_id": "7e67689c-438f-4b65-b9be-dd40576614a6", + "person_id": "d77568b9-80ee-4dbf-8d3f-a6ed3d468509", + "subject": "Floor Plan & Price List - Eden Devprayag", + "body": "Dear Prabir,\n\nFollowing up on your recent visit to Eden Devprayag. We hope you found it informative.\n\nWe have a 3BHK unit available that matches your requirements exactly. Shall we discuss further?\n\nBest,\nVelocity Real Estate Team", + "sender_role": "agent", + "sent_at": "2026-02-02T11:07:55.880687", + "opened_at": "2026-03-08T11:07:55.880688", + "replied_at": "2025-10-20T11:07:55.880690" + } + ], + "visits": [], + "reminders": [ + { + "reminder_id": "6ae358fa-61bb-47c3-b485-9692e8d828fe", + "person_id": "d77568b9-80ee-4dbf-8d3f-a6ed3d468509", + "lead_id": "9ebc603e-7c34-4b07-bddf-f0205ae66ab4", + "reminder_text": "Check loan approval status", + "due_at": "2026-05-15T11:07:55.880709", + "completed": true, + "completed_at": "2026-04-10T11:07:55.880717", + "assigned_user_id": "user_4", + "created_at": "2026-03-17T11:07:55.880719" + }, + { + "reminder_id": "57c63434-d633-40d7-b715-1f92de374b6a", + "person_id": "d77568b9-80ee-4dbf-8d3f-a6ed3d468509", + "lead_id": "9ebc603e-7c34-4b07-bddf-f0205ae66ab4", + "reminder_text": "Confirm booking appointment", + "due_at": "2026-05-07T11:07:55.880723", + "completed": true, + "completed_at": "2026-04-03T11:07:55.880731", + "assigned_user_id": "user_5", + "created_at": "2026-03-10T11:07:55.880733" + } + ], + "qd_scores": [ + { + "qd_id": "45df0915-6dc4-4a9b-bd6e-5c64c8e35656", + "person_id": "d77568b9-80ee-4dbf-8d3f-a6ed3d468509", + "score_type": "intent_score", + "current_value": 0.412, + "computed_at": "2026-03-28T11:07:55.880745", + "evidence_refs_json": "[\"c92efea5-a88b-4c03-aad3-09530f3b245b\", \"4f824ca6-5c90-4c7c-b2c0-f14fa7a60744\"]" + }, + { + "qd_id": "80ce6450-e36b-4742-945d-b447179b37cc", + "person_id": "d77568b9-80ee-4dbf-8d3f-a6ed3d468509", + "score_type": "urgency_score", + "current_value": 0.501, + "computed_at": "2026-03-13T11:07:55.880860", + "evidence_refs_json": "[\"abd654ff-ab88-49ff-8aca-6d5c3914ccc8\", \"c11c4b10-ab76-45b1-ae5f-4dbb36ff73dd\", \"2eb8aad9-12e4-4c9c-a18f-0e8a5f6c80ca\", \"fa770d37-8ad1-42b3-9821-32d2d22cc949\"]" + }, + { + "qd_id": "1faf23cb-cead-428c-ac7d-5b4c483b2bb2", + "person_id": "d77568b9-80ee-4dbf-8d3f-a6ed3d468509", + "score_type": "engagement_score", + "current_value": 0.466, + "computed_at": "2026-03-08T11:07:55.880975", + "evidence_refs_json": "[\"42dccf69-e87c-4de4-bea6-7cc3e934c71f\", \"1580ad57-a8ff-41c6-9dcc-092ed4309b48\"]" + } + ], + "qd_timeseries": [ + { + "timeseries_id": "a03dd84c-3049-4fdb-8c81-af4b4e307d68", + "person_id": "d77568b9-80ee-4dbf-8d3f-a6ed3d468509", + "signal_source": "whatsapp", + "timestamp": "2025-12-07T11:07:55.880763", + "value": 0.503, + "score_type": "intent_score", + "evidence_ref": "7fca1289-b16c-427e-8b4a-60ce7e674d03" + }, + { + "timeseries_id": "8f72a910-ab09-4795-a0a3-6e1a4c1dba3e", + "person_id": "d77568b9-80ee-4dbf-8d3f-a6ed3d468509", + "signal_source": "whatsapp", + "timestamp": "2025-12-17T11:07:55.880763", + "value": 0.396, + "score_type": "intent_score", + "evidence_ref": "87047761-3f61-4735-abb8-237f5bdffaae" + }, + { + "timeseries_id": "72d77fba-461c-47d0-9fb1-77a7c7773ed4", + "person_id": "d77568b9-80ee-4dbf-8d3f-a6ed3d468509", + "signal_source": "call", + "timestamp": "2025-12-23T11:07:55.880763", + "value": 0.416, + "score_type": "intent_score", + "evidence_ref": "915430fc-1b7b-48e2-a7a3-dcd2b22ab8c9" + }, + { + "timeseries_id": "c8098887-5f34-4e24-abb0-ee93bd4a8ba1", + "person_id": "d77568b9-80ee-4dbf-8d3f-a6ed3d468509", + "signal_source": "whatsapp", + "timestamp": "2026-01-06T11:07:55.880763", + "value": 0.331, + "score_type": "intent_score", + "evidence_ref": "9fecdd38-9c89-4d46-92a9-1649fec7c8b1" + }, + { + "timeseries_id": "19821e50-253f-4e0a-9535-cbafc4756aa1", + "person_id": "d77568b9-80ee-4dbf-8d3f-a6ed3d468509", + "signal_source": "site_visit", + "timestamp": "2026-01-18T11:07:55.880763", + "value": 0.519, + "score_type": "intent_score", + "evidence_ref": "55800b4c-79b8-492e-847c-7bc476c7cd18" + }, + { + "timeseries_id": "71e734fd-1179-47e1-8e74-92bf0714bf3e", + "person_id": "d77568b9-80ee-4dbf-8d3f-a6ed3d468509", + "signal_source": "call", + "timestamp": "2026-02-01T11:07:55.880763", + "value": 0.352, + "score_type": "intent_score", + "evidence_ref": "db1a6384-a58e-4f4b-b2d9-f551c46d6919" + }, + { + "timeseries_id": "fca2c185-9698-4825-b621-1eb1bdfeeabb", + "person_id": "d77568b9-80ee-4dbf-8d3f-a6ed3d468509", + "signal_source": "whatsapp", + "timestamp": "2025-12-18T11:07:55.880891", + "value": 0.523, + "score_type": "urgency_score", + "evidence_ref": "810f05b2-8c4e-40c0-9af5-e23b6a3098a3" + }, + { + "timeseries_id": "4385a32a-9486-4307-bfe4-2005fdf43139", + "person_id": "d77568b9-80ee-4dbf-8d3f-a6ed3d468509", + "signal_source": "whatsapp", + "timestamp": "2025-12-27T11:07:55.880891", + "value": 0.539, + "score_type": "urgency_score", + "evidence_ref": "363b52ce-d813-4252-91dc-6cbd4d645405" + }, + { + "timeseries_id": "6f12b9e3-b4dc-444d-bd2f-3dee00b2f96e", + "person_id": "d77568b9-80ee-4dbf-8d3f-a6ed3d468509", + "signal_source": "call", + "timestamp": "2026-01-11T11:07:55.880891", + "value": 0.579, + "score_type": "urgency_score", + "evidence_ref": "fbf7620e-27a8-428d-9331-9a63bf55d0aa" + }, + { + "timeseries_id": "7582f1a1-287e-4b3c-8623-efb058e461a3", + "person_id": "d77568b9-80ee-4dbf-8d3f-a6ed3d468509", + "signal_source": "call", + "timestamp": "2026-01-16T11:07:55.880891", + "value": 0.392, + "score_type": "urgency_score", + "evidence_ref": "5b4dbcf4-71a1-43c9-a8f3-cdc5fadaafe6" + }, + { + "timeseries_id": "c5fb32a7-deaf-4680-8cb9-a13ca17afdd5", + "person_id": "d77568b9-80ee-4dbf-8d3f-a6ed3d468509", + "signal_source": "whatsapp", + "timestamp": "2026-01-29T11:07:55.880891", + "value": 0.565, + "score_type": "urgency_score", + "evidence_ref": "45c45def-db2c-4547-b20d-0f633587cb1a" + }, + { + "timeseries_id": "7e2ff2d2-c10a-4a64-954d-34c0f0eb3543", + "person_id": "d77568b9-80ee-4dbf-8d3f-a6ed3d468509", + "signal_source": "site_visit", + "timestamp": "2025-12-02T11:07:55.880995", + "value": 0.462, + "score_type": "engagement_score", + "evidence_ref": "a11df30b-08c3-449f-ae98-3ec33ca901b2" + }, + { + "timeseries_id": "46538138-caa6-4dad-af43-5457cf015df0", + "person_id": "d77568b9-80ee-4dbf-8d3f-a6ed3d468509", + "signal_source": "site_visit", + "timestamp": "2025-12-19T11:07:55.880995", + "value": 0.455, + "score_type": "engagement_score", + "evidence_ref": "14200117-0178-4591-a6ab-c42a64fbec9b" + }, + { + "timeseries_id": "3dacf2cd-3a5b-4884-ae8e-a4b57230eae0", + "person_id": "d77568b9-80ee-4dbf-8d3f-a6ed3d468509", + "signal_source": "whatsapp", + "timestamp": "2025-12-25T11:07:55.880995", + "value": 0.452, + "score_type": "engagement_score", + "evidence_ref": "b5da3bc8-715a-47d6-91da-9a11bb03ea94" + }, + { + "timeseries_id": "1e81ef10-8c92-42ac-ad24-d09a32b853e1", + "person_id": "d77568b9-80ee-4dbf-8d3f-a6ed3d468509", + "signal_source": "email", + "timestamp": "2026-01-14T11:07:55.880995", + "value": 0.395, + "score_type": "engagement_score", + "evidence_ref": "e74f5987-2d1f-4716-a11a-b24ee7062061" + }, + { + "timeseries_id": "a95345e4-61ec-4010-8e4e-329837d6e879", + "person_id": "d77568b9-80ee-4dbf-8d3f-a6ed3d468509", + "signal_source": "site_visit", + "timestamp": "2026-01-23T11:07:55.880995", + "value": 0.553, + "score_type": "engagement_score", + "evidence_ref": "22031cd5-4724-444f-8185-315ac7270e26" + }, + { + "timeseries_id": "591436e5-1890-4e13-bd02-3e0b74bff02e", + "person_id": "d77568b9-80ee-4dbf-8d3f-a6ed3d468509", + "signal_source": "site_visit", + "timestamp": "2026-02-07T11:07:55.880995", + "value": 0.58, + "score_type": "engagement_score", + "evidence_ref": "b84d2cea-5207-44df-b52b-449858b723df" + }, + { + "timeseries_id": "027dbc85-2592-4253-b245-92ed96eda707", + "person_id": "d77568b9-80ee-4dbf-8d3f-a6ed3d468509", + "signal_source": "site_visit", + "timestamp": "2026-02-16T11:07:55.880995", + "value": 0.47, + "score_type": "engagement_score", + "evidence_ref": "ea5cce90-ed5c-413e-a278-aab0619ac3e7" + } + ], + "intel_events": [], + "client360": { + "client_ref": "d77568b9-80ee-4dbf-8d3f-a6ed3d468509", + "snapshot_generated_at": "2026-04-18T11:07:55.881104", + "identity": { + "full_name": "Prabir Bose", + "primary_email": "prabir.bose843@yahoo.com", + "primary_phone": "+91 9342794700", + "persona_labels": "[\"nri_diaspora\"]", + "buyer_type": "price_sensitive" + }, + "account_links": [ + "d9525127-ff0d-45a0-b6d2-57b735be5c66" + ], + "active_opportunities": [ + { + "opportunity_id": "f51a0305-5616-4652-86a6-226889a068cf", + "project": "Eden Devprayag", + "stage": "qualified", + "value": 11148545 + } + ], + "recent_interactions": [ + { + "interaction_id": "e4770793-f681-4948-ad99-25d45bf21950", + "channel": "whatsapp", + "happened_at": "2026-04-11T11:07:55.880555" + }, + { + "interaction_id": "ef245601-b81e-4e8e-9506-55b796321eb4", + "channel": "digital_ad", + "happened_at": "2026-03-04T11:07:55.880698" + }, + { + "interaction_id": "6782cf92-6142-48c9-bc6a-6e105ce9bc7c", + "channel": "digital_ad", + "happened_at": "2026-02-05T11:07:55.880537" + }, + { + "interaction_id": "bdd340c8-25f6-4a4a-8971-19e6250b42e0", + "channel": "digital_ad", + "happened_at": "2026-01-26T11:07:55.880652" + }, + { + "interaction_id": "7e67689c-438f-4b65-b9be-dd40576614a6", + "channel": "email", + "happened_at": "2025-10-18T11:07:55.880668" + } + ], + "property_interests": [ + { + "project": "Eden Devprayag", + "config": "3BHK", + "budget_max": 8779269 + }, + { + "project": "Shriram Grand City", + "config": "4BHK", + "budget_max": 7526271 + } + ], + "tasks": [], + "qd_overview": { + "intent_score": 0.412, + "urgency_score": 0.501, + "engagement_score": 0.466 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Book site visit", + "Share payment plan" + ], + "lead_stage": "qualified", + "lead_status": "active" + } + }, + { + "person": { + "person_id": "c92d380b-c092-4338-a62b-7e43abed7c3c", + "full_name": "Ipsita Patel", + "primary_email": "ipsita.patel969@hotmail.com", + "primary_phone": "+91 9643025991", + "secondary_phone": null, + "linkedin_url": "https://linkedin.com/in/ipsita-patel-263", + "occupation": "Civil Engineer", + "employer": "HCL Technologies", + "account_id": "0c28253b-3c45-4128-ab2d-de054685657b", + "location_city": "Tollygunge", + "location_country": "India", + "buyer_type": "price_sensitive", + "persona_labels": "[\"analytical_buyer\"]", + "is_nri": false, + "source_confidence": 0.832, + "created_at": "2025-05-26T11:07:55.881203", + "updated_at": "2026-01-27T11:07:55.881206" + }, + "lead": { + "lead_id": "0547e68e-6415-40b3-8fb6-6c1b73a6deed", + "person_id": "c92d380b-c092-4338-a62b-7e43abed7c3c", + "account_id": "0c28253b-3c45-4128-ab2d-de054685657b", + "source_system": "99acres", + "status": "active", + "stage": "qualified", + "budget_band": "₹68L - ₹75L", + "urgency": "immediate", + "assigned_user_id": "user_1", + "primary_project": "Siddha Serena", + "objection": null, + "motivation": "NRI returning to India", + "financing_posture": "nri_remittance", + "created_at": "2025-08-05T11:07:55.881253", + "updated_at": "2025-11-01T11:07:55.881255" + }, + "opportunities": [ + { + "opportunity_id": "b9849fad-e7ea-4a9f-9d3d-a720ed39d33d", + "lead_id": "0547e68e-6415-40b3-8fb6-6c1b73a6deed", + "person_id": "c92d380b-c092-4338-a62b-7e43abed7c3c", + "project_name": "Siddha Serena", + "unit_config": "3BHK", + "stage": "qualified", + "value": 6891949, + "probability": 20, + "expected_close_date": "2026-06-21T11:07:55.881285", + "next_action": "Connect with bank", + "created_at": "2025-11-16T11:07:55.881287", + "updated_at": "2026-02-28T11:07:55.881289" + } + ], + "property_interests": [ + { + "interest_id": "42302164-21e7-4c8b-8310-c0fd50ed39c6", + "person_id": "c92d380b-c092-4338-a62b-7e43abed7c3c", + "project_name": "Siddha Serena", + "configuration": "3BHK", + "budget_min": 6197509, + "budget_max": 7574734, + "urgency": "immediate", + "facing_preference": "east", + "floor_preference": "any", + "notes": "School proximity", + "created_at": "2025-10-23T11:07:55.881233" + } + ], + "interactions": [ + { + "interaction_id": "ef572624-c34f-40eb-ba40-faddd935ae36", + "person_id": "c92d380b-c092-4338-a62b-7e43abed7c3c", + "lead_id": "0547e68e-6415-40b3-8fb6-6c1b73a6deed", + "channel": "email", + "interaction_type": "email", + "happened_at": "2026-04-06T11:07:55.881299", + "summary": "Email interaction regarding Siddha Serena", + "source_ref": "6f3dc23b-db01-44f3-99fc-e91554e4d217", + "created_at": "2026-01-05T11:07:55.881307" + }, + { + "interaction_id": "dd4a712c-c339-4733-9497-d0ee871adcb3", + "person_id": "c92d380b-c092-4338-a62b-7e43abed7c3c", + "lead_id": "0547e68e-6415-40b3-8fb6-6c1b73a6deed", + "channel": "whatsapp", + "interaction_type": "whatsapp", + "happened_at": "2026-01-09T11:07:55.881328", + "summary": "Whatsapp interaction regarding Siddha Serena", + "source_ref": "1f4c8799-4968-4f93-8e69-7d0279b39973", + "created_at": "2025-12-09T11:07:55.881335" + }, + { + "interaction_id": "ad4a78a9-e436-4875-bdf1-ff345f79d3c0", + "person_id": "c92d380b-c092-4338-a62b-7e43abed7c3c", + "lead_id": "0547e68e-6415-40b3-8fb6-6c1b73a6deed", + "channel": "call", + "interaction_type": "call", + "happened_at": "2025-11-13T11:07:55.881421", + "summary": "Call interaction regarding Siddha Serena", + "source_ref": "eeb3d011-ec06-42cf-a7ad-9b01181a839e", + "created_at": "2025-12-07T11:07:55.881429" + }, + { + "interaction_id": "7cf93aed-f181-40a7-85a9-a72fde06f381", + "person_id": "c92d380b-c092-4338-a62b-7e43abed7c3c", + "lead_id": "0547e68e-6415-40b3-8fb6-6c1b73a6deed", + "channel": "call", + "interaction_type": "call", + "happened_at": "2025-12-04T11:07:55.881518", + "summary": "Call interaction regarding Siddha Serena", + "source_ref": "63dc26ef-3185-4762-8a4f-3d1dcf012cfb", + "created_at": "2025-11-07T11:07:55.881527" + }, + { + "interaction_id": "89db75fa-d8f9-4716-94f9-6cd494015e30", + "person_id": "c92d380b-c092-4338-a62b-7e43abed7c3c", + "lead_id": "0547e68e-6415-40b3-8fb6-6c1b73a6deed", + "channel": "referral", + "interaction_type": "referral", + "happened_at": "2026-02-23T11:07:55.881586", + "summary": "Referral interaction regarding Siddha Serena", + "source_ref": "8deaa1ce-dbe5-4313-a54a-5a37e94ca0b8", + "created_at": "2025-11-25T11:07:55.881595" + }, + { + "interaction_id": "e07863ff-70cb-43a1-991c-85038525b79c", + "person_id": "c92d380b-c092-4338-a62b-7e43abed7c3c", + "lead_id": "0547e68e-6415-40b3-8fb6-6c1b73a6deed", + "channel": "email", + "interaction_type": "email", + "happened_at": "2025-10-30T11:07:55.881603", + "summary": "Email interaction regarding Siddha Serena", + "source_ref": "83fe05c2-704e-4b77-8d19-85273d849180", + "created_at": "2025-12-16T11:07:55.881611" + } + ], + "calls": [ + { + "call_id": "a9a0f48a-a7b2-447f-bbca-61289c78d912", + "interaction_id": "ad4a78a9-e436-4875-bdf1-ff345f79d3c0", + "person_id": "c92d380b-c092-4338-a62b-7e43abed7c3c", + "call_direction": "inbound", + "duration_seconds": 673, + "recording_ref": "recording_a9a0f48a.mp3", + "transcript_ref": "60e8492b-9e36-49b3-8b50-c96d1cf04038", + "call_ts": "2026-01-24T11:07:55.881444" + }, + { + "call_id": "56d51023-0e44-4e05-adb0-2b15cb71eca9", + "interaction_id": "7cf93aed-f181-40a7-85a9-a72fde06f381", + "person_id": "c92d380b-c092-4338-a62b-7e43abed7c3c", + "call_direction": "inbound", + "duration_seconds": 564, + "recording_ref": "recording_56d51023.mp3", + "transcript_ref": "9e784b53-0b19-4635-a195-50972808f2d6", + "call_ts": "2025-11-10T11:07:55.881542" + } + ], + "transcripts": [ + { + "transcript_id": "60e8492b-9e36-49b3-8b50-c96d1cf04038", + "call_id": "a9a0f48a-a7b2-447f-bbca-61289c78d912", + "person_id": "c92d380b-c092-4338-a62b-7e43abed7c3c", + "interaction_ref": "ad4a78a9-e436-4875-bdf1-ff345f79d3c0", + "language": "en", + "full_text": "Hello, am I speaking with Ipsita? This is Velocity Real Estate. Yes speaking. How can I help you? We noticed your inquiry about Siddha Serena. Are you still looking? Yes I am. Can you tell me more about the configurations and pricing? Of course. We have 3BHK units available starting from ₹6,891,949. Would you be interested in a site visit? Yes, that sounds good. What about the possession timeline? The project is expected to be ready by Q3 2027. We have early-bird pricing available this month. I'll discuss with my family and get back to you. Can you send me the brochure? Absolutely. I'll WhatsApp you the details right away. Thank you Ipsita.", + "speaker_segments_json": "[{\"speaker\": \"agent\", \"start_seconds\": 0, \"end_seconds\": 10, \"text\": \"Hello, am I speaking with Ipsita? This is Velocity Real Estate.\"}, {\"speaker\": \"client\", \"start_seconds\": 20, \"end_seconds\": 34, \"text\": \"Yes speaking. How can I help you?\"}, {\"speaker\": \"agent\", \"start_seconds\": 36, \"end_seconds\": 56, \"text\": \"We noticed your inquiry about Siddha Serena. Are you still looking?\"}, {\"speaker\": \"client\", \"start_seconds\": 51, \"end_seconds\": 71, \"text\": \"Yes I am. Can you tell me more about the configurations and pricing?\"}, {\"speaker\": \"agent\", \"start_seconds\": 32, \"end_seconds\": 48, \"text\": \"Of course. We have 3BHK units available starting from \\u20b96,891,949. Would you be interested in a site visit?\"}, {\"speaker\": \"client\", \"start_seconds\": 90, \"end_seconds\": 98, \"text\": \"Yes, that sounds good. What about the possession timeline?\"}, {\"speaker\": \"agent\", \"start_seconds\": 126, \"end_seconds\": 140, \"text\": \"The project is expected to be ready by Q3 2027. We have early-bird pricing available this month.\"}, {\"speaker\": \"client\", \"start_seconds\": 56, \"end_seconds\": 76, \"text\": \"I'll discuss with my family and get back to you. Can you send me the brochure?\"}, {\"speaker\": \"agent\", \"start_seconds\": 128, \"end_seconds\": 140, \"text\": \"Absolutely. I'll WhatsApp you the details right away. Thank you Ipsita.\"}]", + "confidence": 0.919, + "created_at": "2026-01-24T11:07:55.881444" + }, + { + "transcript_id": "9e784b53-0b19-4635-a195-50972808f2d6", + "call_id": "56d51023-0e44-4e05-adb0-2b15cb71eca9", + "person_id": "c92d380b-c092-4338-a62b-7e43abed7c3c", + "interaction_ref": "7cf93aed-f181-40a7-85a9-a72fde06f381", + "language": "en", + "full_text": "I wanted to ask, have there been any price revisions at Siddha Serena? Yes, there was a 2.5 percent revision last quarter. Current price is ₹6,891,949 onwards. That's getting expensive. Is there any flexibility? For early commitment we do have special launch pricing available. Can I set up a meeting with our senior advisor? Yes I think that would help. I want to understand the full cost breakdown. Of course. I'll schedule it for this Saturday at 11am if that works? That works for me. See you then. Perfect. I'll confirm the slot and send you the address. Thank you for your time Ipsita.", + "speaker_segments_json": "[{\"speaker\": \"client\", \"start_seconds\": 0, \"end_seconds\": 9, \"text\": \"I wanted to ask, have there been any price revisions at Siddha Serena?\"}, {\"speaker\": \"agent\", \"start_seconds\": 15, \"end_seconds\": 21, \"text\": \"Yes, there was a 2.5 percent revision last quarter. Current price is \\u20b96,891,949 onwards.\"}, {\"speaker\": \"client\", \"start_seconds\": 22, \"end_seconds\": 33, \"text\": \"That's getting expensive. Is there any flexibility?\"}, {\"speaker\": \"agent\", \"start_seconds\": 24, \"end_seconds\": 43, \"text\": \"For early commitment we do have special launch pricing available. Can I set up a meeting with our senior advisor?\"}, {\"speaker\": \"client\", \"start_seconds\": 72, \"end_seconds\": 90, \"text\": \"Yes I think that would help. I want to understand the full cost breakdown.\"}, {\"speaker\": \"agent\", \"start_seconds\": 60, \"end_seconds\": 78, \"text\": \"Of course. I'll schedule it for this Saturday at 11am if that works?\"}, {\"speaker\": \"client\", \"start_seconds\": 84, \"end_seconds\": 102, \"text\": \"That works for me. See you then.\"}, {\"speaker\": \"agent\", \"start_seconds\": 168, \"end_seconds\": 188, \"text\": \"Perfect. I'll confirm the slot and send you the address. Thank you for your time Ipsita.\"}]", + "confidence": 0.94, + "created_at": "2025-11-10T11:07:55.881542" + } + ], + "messages": [ + { + "message_id": "4965244a-d387-4f66-91cc-00ba6205a7fa", + "interaction_id": "dd4a712c-c339-4733-9497-d0ee871adcb3", + "person_id": "c92d380b-c092-4338-a62b-7e43abed7c3c", + "sender_role": "agent", + "message_text": "Good evening Ipsita! Sharing the updated price list for Siddha Serena. Some great units still available.", + "delivered_at": "2026-02-20T05:07:55.881337", + "channel": "whatsapp", + "read_at": "2026-02-20T06:35:55.881337" + }, + { + "message_id": "c97304ff-aba7-42a1-a1d9-dd5a0f05cc06", + "interaction_id": "dd4a712c-c339-4733-9497-d0ee871adcb3", + "person_id": "c92d380b-c092-4338-a62b-7e43abed7c3c", + "sender_role": "client", + "message_text": "Can you share more details on the payment plan?", + "delivered_at": "2026-02-21T21:07:55.881337", + "channel": "whatsapp", + "read_at": null + }, + { + "message_id": "fae302ba-74a5-47a8-b0bd-e1f357312ef9", + "interaction_id": "dd4a712c-c339-4733-9497-d0ee871adcb3", + "person_id": "c92d380b-c092-4338-a62b-7e43abed7c3c", + "sender_role": "agent", + "message_text": "Hello Ipsita, the floor plan you requested for Siddha Serena is attached here.", + "delivered_at": "2026-02-22T04:07:55.881337", + "channel": "whatsapp", + "read_at": "2026-02-22T04:51:55.881337" + }, + { + "message_id": "2ab35a45-8ba1-46c8-b7cc-d292f3634259", + "interaction_id": "dd4a712c-c339-4733-9497-d0ee871adcb3", + "person_id": "c92d380b-c092-4338-a62b-7e43abed7c3c", + "sender_role": "client", + "message_text": "I saw another project in Rajarhat. How does Siddha Serena compare?", + "delivered_at": "2026-02-23T16:07:55.881337", + "channel": "whatsapp", + "read_at": "2026-02-23T16:33:55.881337" + }, + { + "message_id": "32c6956b-aa9b-4766-857e-3736fb5fef0c", + "interaction_id": "dd4a712c-c339-4733-9497-d0ee871adcb3", + "person_id": "c92d380b-c092-4338-a62b-7e43abed7c3c", + "sender_role": "agent", + "message_text": "Hi Ipsita, just checking in. Has the loan pre-approval come through? Happy to connect you with our banking partner.", + "delivered_at": "2026-02-25T07:07:55.881337", + "channel": "whatsapp", + "read_at": "2026-02-25T07:13:55.881337" + }, + { + "message_id": "64ff3579-599d-4a14-af2a-4b81c15e6bee", + "interaction_id": "dd4a712c-c339-4733-9497-d0ee871adcb3", + "person_id": "c92d380b-c092-4338-a62b-7e43abed7c3c", + "sender_role": "client", + "message_text": "Thanks. Will review and come back to you.", + "delivered_at": "2026-02-25T10:07:55.881337", + "channel": "whatsapp", + "read_at": null + }, + { + "message_id": "1ba261ce-20b2-41ee-94b9-c8c639421f48", + "interaction_id": "dd4a712c-c339-4733-9497-d0ee871adcb3", + "person_id": "c92d380b-c092-4338-a62b-7e43abed7c3c", + "sender_role": "agent", + "message_text": "Good evening Ipsita! Sharing the updated price list for Siddha Serena. Some great units still available.", + "delivered_at": "2026-02-26T08:07:55.881337", + "channel": "whatsapp", + "read_at": "2026-02-26T09:06:55.881337" + } + ], + "emails": [ + { + "email_id": "328a0326-0e74-46c7-a023-42dcf080ec81", + "interaction_id": "ef572624-c34f-40eb-ba40-faddd935ae36", + "person_id": "c92d380b-c092-4338-a62b-7e43abed7c3c", + "subject": "Site Visit Confirmation - Siddha Serena", + "body": "Dear Ipsita,\n\nFollowing up on your recent visit to Siddha Serena. We hope you found it informative.\n\nWe have a 3BHK unit available that matches your requirements exactly. Shall we discuss further?\n\nBest,\nVelocity Real Estate Team", + "sender_role": "agent", + "sent_at": "2025-11-25T11:07:55.881319", + "opened_at": null, + "replied_at": null + }, + { + "email_id": "75a64326-7c5a-4ef4-88e1-4652cbf42ad0", + "interaction_id": "e07863ff-70cb-43a1-991c-85038525b79c", + "person_id": "c92d380b-c092-4338-a62b-7e43abed7c3c", + "subject": "Floor Plan & Price List - Siddha Serena", + "body": "Dear Ipsita,\n\nWe are pleased to share the exclusive early-bird pricing for Siddha Serena. This offer is valid until the end of the month.\n\nPlease let us know if you would like to schedule a meeting.\n\nWarm regards,\nVelocity Real Estate", + "sender_role": "agent", + "sent_at": "2026-01-27T11:07:55.881620", + "opened_at": "2025-12-21T11:07:55.881622", + "replied_at": "2026-01-20T11:07:55.881623" + } + ], + "visits": [], + "reminders": [ + { + "reminder_id": "8099d889-57f3-4e9d-a9dc-e99fd9983b3b", + "person_id": "c92d380b-c092-4338-a62b-7e43abed7c3c", + "lead_id": "0547e68e-6415-40b3-8fb6-6c1b73a6deed", + "reminder_text": "Send legal documents", + "due_at": "2026-04-27T11:07:55.881626", + "completed": true, + "completed_at": "2026-03-29T11:07:55.881641", + "assigned_user_id": "user_4", + "created_at": "2026-03-06T11:07:55.881643" + }, + { + "reminder_id": "1a00db92-40c2-4da6-9bad-e71633553202", + "person_id": "c92d380b-c092-4338-a62b-7e43abed7c3c", + "lead_id": "0547e68e-6415-40b3-8fb6-6c1b73a6deed", + "reminder_text": "Re-engage after 2 weeks silence", + "due_at": "2026-04-18T11:07:55.881645", + "completed": false, + "completed_at": null, + "assigned_user_id": "user_3", + "created_at": "2026-03-04T11:07:55.881654" + }, + { + "reminder_id": "4a7df7b7-57dd-4895-9461-5da0e58b4b06", + "person_id": "c92d380b-c092-4338-a62b-7e43abed7c3c", + "lead_id": "0547e68e-6415-40b3-8fb6-6c1b73a6deed", + "reminder_text": "Send legal documents", + "due_at": "2026-04-18T11:07:55.881655", + "completed": true, + "completed_at": "2026-03-24T11:07:55.881663", + "assigned_user_id": "user_3", + "created_at": "2026-02-01T11:07:55.881665" + } + ], + "qd_scores": [ + { + "qd_id": "921ad936-7bd1-4180-86e0-17c6b061cfd3", + "person_id": "c92d380b-c092-4338-a62b-7e43abed7c3c", + "score_type": "intent_score", + "current_value": 0.562, + "computed_at": "2026-03-24T11:07:55.881680", + "evidence_refs_json": "[\"5c721c9b-f399-4486-babf-424b7967958b\", \"e39db7a6-e45e-4d41-b825-67b90b572ddc\", \"2d6e6891-8a58-456b-ace9-96ac50da3028\", \"4cd11e04-9c9b-40da-a24a-7a2549e61e0b\", \"87f2619c-9315-4371-8ecd-f0e94d4d9c21\"]" + }, + { + "qd_id": "b7a331de-0932-484a-9a08-dc1061b0b4cd", + "person_id": "c92d380b-c092-4338-a62b-7e43abed7c3c", + "score_type": "urgency_score", + "current_value": 0.598, + "computed_at": "2026-04-03T11:07:55.881793", + "evidence_refs_json": "[\"81e8058d-2eb4-4ceb-87e0-ff6d1430726a\", \"b7495bb6-51f7-4da1-b568-702b98fff648\", \"8e7c1e50-9455-4d75-8d33-fbb421c1ac6d\"]" + }, + { + "qd_id": "8953e141-adab-4090-b7d4-12b16f7f69da", + "person_id": "c92d380b-c092-4338-a62b-7e43abed7c3c", + "score_type": "engagement_score", + "current_value": 0.594, + "computed_at": "2026-03-18T11:07:55.881865", + "evidence_refs_json": "[\"47bc7239-5ff0-4c0e-ac26-e2f2e6300945\", \"e04ae3af-a0a7-4583-bd54-ca12552e3036\", \"c196d8fd-95c0-4e46-9a18-6b8b81678387\", \"5805389a-0462-4f7e-b77c-2a8450f619e3\", \"5a4ee82d-b818-4164-85f1-d577039ddf8e\"]" + } + ], + "qd_timeseries": [ + { + "timeseries_id": "3119eb99-b386-4dbe-9439-f021ebfc7421", + "person_id": "c92d380b-c092-4338-a62b-7e43abed7c3c", + "signal_source": "site_visit", + "timestamp": "2025-11-06T11:07:55.881714", + "value": 0.452, + "score_type": "intent_score", + "evidence_ref": "8288d68a-3be6-485e-ac47-2146a4838040" + }, + { + "timeseries_id": "976f7b7d-2d84-401a-9cf7-edb55ad7ba15", + "person_id": "c92d380b-c092-4338-a62b-7e43abed7c3c", + "signal_source": "site_visit", + "timestamp": "2025-11-13T11:07:55.881714", + "value": 0.664, + "score_type": "intent_score", + "evidence_ref": "af30cf0c-c402-45c5-b20d-92cf384db750" + }, + { + "timeseries_id": "69fecd1e-10f6-4073-8553-045c56f874ee", + "person_id": "c92d380b-c092-4338-a62b-7e43abed7c3c", + "signal_source": "email", + "timestamp": "2025-11-26T11:07:55.881714", + "value": 0.493, + "score_type": "intent_score", + "evidence_ref": "c77b0253-3c3b-4a31-b1fb-f2aa587fb10c" + }, + { + "timeseries_id": "f0b78921-de1b-43ec-9b92-ad6574927924", + "person_id": "c92d380b-c092-4338-a62b-7e43abed7c3c", + "signal_source": "site_visit", + "timestamp": "2025-12-09T11:07:55.881714", + "value": 0.475, + "score_type": "intent_score", + "evidence_ref": "fc292a7d-66d7-4701-ab02-fe585650c80c" + }, + { + "timeseries_id": "654eab78-19ac-4449-b90f-9b686ab8d51e", + "person_id": "c92d380b-c092-4338-a62b-7e43abed7c3c", + "signal_source": "whatsapp", + "timestamp": "2025-12-21T11:07:55.881714", + "value": 0.454, + "score_type": "intent_score", + "evidence_ref": "874b3d0d-a9df-49e2-9e40-8099cd5ae1dc" + }, + { + "timeseries_id": "c95be378-7a12-4068-be64-76015a087e61", + "person_id": "c92d380b-c092-4338-a62b-7e43abed7c3c", + "signal_source": "site_visit", + "timestamp": "2026-01-03T11:07:55.881816", + "value": 0.65, + "score_type": "urgency_score", + "evidence_ref": "2d87e5b8-806b-4ce5-b5f6-104c79cdf37f" + }, + { + "timeseries_id": "01f5b32e-7801-4c3f-9d73-6a8bb9386a02", + "person_id": "c92d380b-c092-4338-a62b-7e43abed7c3c", + "signal_source": "whatsapp", + "timestamp": "2026-01-11T11:07:55.881816", + "value": 0.479, + "score_type": "urgency_score", + "evidence_ref": "7fb763ef-5b35-4dc2-b36d-65da797d4473" + }, + { + "timeseries_id": "38915e35-e55c-4c92-8817-063526e676a7", + "person_id": "c92d380b-c092-4338-a62b-7e43abed7c3c", + "signal_source": "email", + "timestamp": "2026-01-21T11:07:55.881816", + "value": 0.635, + "score_type": "urgency_score", + "evidence_ref": "73914c67-20d9-4ed4-82f3-07cf1c2baa65" + }, + { + "timeseries_id": "deeb92a2-17cf-452f-8497-237d309b2965", + "person_id": "c92d380b-c092-4338-a62b-7e43abed7c3c", + "signal_source": "site_visit", + "timestamp": "2025-11-22T11:07:55.881897", + "value": 0.542, + "score_type": "engagement_score", + "evidence_ref": "38b83d3f-8d91-4146-ba85-1b0a2b5b28c9" + }, + { + "timeseries_id": "27911205-7b4a-4493-8995-abe1875defa6", + "person_id": "c92d380b-c092-4338-a62b-7e43abed7c3c", + "signal_source": "call", + "timestamp": "2025-11-28T11:07:55.881897", + "value": 0.631, + "score_type": "engagement_score", + "evidence_ref": "a1f54542-a29d-42f8-99a1-cbd343dd6919" + }, + { + "timeseries_id": "97c3ece5-6db2-488e-aaee-9c403eaa7584", + "person_id": "c92d380b-c092-4338-a62b-7e43abed7c3c", + "signal_source": "call", + "timestamp": "2025-12-10T11:07:55.881897", + "value": 0.693, + "score_type": "engagement_score", + "evidence_ref": "5862bc95-ac6f-41fb-9f6b-1a2a9f289f8b" + }, + { + "timeseries_id": "f92a977d-64a0-492f-bb2e-bb4bc77c7519", + "person_id": "c92d380b-c092-4338-a62b-7e43abed7c3c", + "signal_source": "email", + "timestamp": "2025-12-20T11:07:55.881897", + "value": 0.686, + "score_type": "engagement_score", + "evidence_ref": "8834c506-d3c1-4aca-9390-577bc69146b7" + } + ], + "intel_events": [ + { + "event_id": "558b8d5b-327c-49d5-b088-6beff1cd4fb5", + "event_type": "perception_session", + "person_id": "c92d380b-c092-4338-a62b-7e43abed7c3c", + "project_ref": "Siddha Serena", + "session_at": "2026-02-23T11:07:55.881967", + "rooms_visited": "[\"terrace\", \"model_flat_2bhk\"]", + "dwell_time_seconds": 1365, + "engagement_score": 0.93, + "cctv_ref": "cctv_e37fdff7", + "notes": "Perception session recorded during scheduled site visit" + } + ], + "client360": { + "client_ref": "c92d380b-c092-4338-a62b-7e43abed7c3c", + "snapshot_generated_at": "2026-04-18T11:07:55.881987", + "identity": { + "full_name": "Ipsita Patel", + "primary_email": "ipsita.patel969@hotmail.com", + "primary_phone": "+91 9643025991", + "persona_labels": "[\"analytical_buyer\"]", + "buyer_type": "price_sensitive" + }, + "account_links": [ + "0c28253b-3c45-4128-ab2d-de054685657b" + ], + "active_opportunities": [ + { + "opportunity_id": "b9849fad-e7ea-4a9f-9d3d-a720ed39d33d", + "project": "Siddha Serena", + "stage": "qualified", + "value": 6891949 + } + ], + "recent_interactions": [ + { + "interaction_id": "ef572624-c34f-40eb-ba40-faddd935ae36", + "channel": "email", + "happened_at": "2026-04-06T11:07:55.881299" + }, + { + "interaction_id": "89db75fa-d8f9-4716-94f9-6cd494015e30", + "channel": "referral", + "happened_at": "2026-02-23T11:07:55.881586" + }, + { + "interaction_id": "dd4a712c-c339-4733-9497-d0ee871adcb3", + "channel": "whatsapp", + "happened_at": "2026-01-09T11:07:55.881328" + }, + { + "interaction_id": "7cf93aed-f181-40a7-85a9-a72fde06f381", + "channel": "call", + "happened_at": "2025-12-04T11:07:55.881518" + }, + { + "interaction_id": "ad4a78a9-e436-4875-bdf1-ff345f79d3c0", + "channel": "call", + "happened_at": "2025-11-13T11:07:55.881421" + } + ], + "property_interests": [ + { + "project": "Siddha Serena", + "config": "3BHK", + "budget_max": 7574734 + } + ], + "tasks": [ + "Re-engage after 2 weeks silence" + ], + "qd_overview": { + "intent_score": 0.562, + "urgency_score": 0.598, + "engagement_score": 0.594 + }, + "risk_flags": [], + "recommended_next_actions": [ + "Book site visit", + "Share payment plan" + ], + "lead_stage": "qualified", + "lead_status": "active" + } + }, + { + "person": { + "person_id": "8460df77-6d5a-4cf5-9861-eb3ce0ccd387", + "full_name": "Sumita Roy", + "primary_email": "sumita.roy506@yahoo.com", + "primary_phone": "+91 9165576952", + "secondary_phone": null, + "linkedin_url": null, + "occupation": "Real Estate Broker", + "employer": "Emami Group", + "account_id": "8aa4d488-571e-4cd4-aa27-8372a49aacbf", + "location_city": "Dubai", + "location_country": "UAE", + "buyer_type": "nri", + "persona_labels": "[\"upgrade_seeker\", \"first_time_buyer\"]", + "is_nri": true, + "source_confidence": 0.833, + "created_at": "2025-06-25T11:07:55.882014", + "updated_at": "2025-11-03T11:07:55.882016" + }, + "lead": { + "lead_id": "32b7d822-418a-4f98-84d5-64e379f78e5b", + "person_id": "8460df77-6d5a-4cf5-9861-eb3ce0ccd387", + "account_id": "8aa4d488-571e-4cd4-aa27-8372a49aacbf", + "source_system": "referral", + "status": "active", + "stage": "site_visit_done", + "budget_band": "₹99L - ₹109L", + "urgency": "within_3_months", + "assigned_user_id": "user_2", + "primary_project": "Eden Devprayag", + "objection": null, + "motivation": "Good connectivity to workplace", + "financing_posture": "part_cash_part_loan", + "created_at": "2025-06-23T11:07:55.882085", + "updated_at": "2026-02-13T11:07:55.882087" + }, + "opportunities": [ + { + "opportunity_id": "96b21370-375e-47f6-9e77-a8e1a3f265bb", + "lead_id": "32b7d822-418a-4f98-84d5-64e379f78e5b", + "person_id": "8460df77-6d5a-4cf5-9861-eb3ce0ccd387", + "project_name": "Eden Devprayag", + "unit_config": "3BHK", + "stage": "site_visit_done", + "value": 9974842, + "probability": 40, + "expected_close_date": "2026-05-20T11:07:55.882127", + "next_action": "Connect with bank", + "created_at": "2025-11-17T11:07:55.882129", + "updated_at": "2026-03-04T11:07:55.882130" + } + ], + "property_interests": [ + { + "interest_id": "fd6043ea-d719-420e-be1c-b7c549046955", + "person_id": "8460df77-6d5a-4cf5-9861-eb3ce0ccd387", + "project_name": "Eden Devprayag", + "configuration": "2BHK", + "budget_min": 8074942, + "budget_max": 9869373, + "urgency": "investment_only", + "facing_preference": "south", + "floor_preference": "any", + "notes": "School proximity", + "created_at": "2025-11-26T11:07:55.882043" + } + ], + "interactions": [ + { + "interaction_id": "a72bfd44-99c7-4246-8d8c-8faa4cf4e6bb", + "person_id": "8460df77-6d5a-4cf5-9861-eb3ce0ccd387", + "lead_id": "32b7d822-418a-4f98-84d5-64e379f78e5b", + "channel": "whatsapp", + "interaction_type": "whatsapp", + "happened_at": "2025-10-29T11:07:55.882140", + "summary": "Whatsapp interaction regarding Eden Devprayag", + "source_ref": "6eb23f95-2269-4672-9fc9-beec0e45fdc3", + "created_at": "2026-03-18T11:07:55.882148" + }, + { + "interaction_id": "848a4648-77b2-46a4-985c-b4e5786f4d34", + "person_id": "8460df77-6d5a-4cf5-9861-eb3ce0ccd387", + "lead_id": "32b7d822-418a-4f98-84d5-64e379f78e5b", + "channel": "referral", + "interaction_type": "referral", + "happened_at": "2025-12-18T11:07:55.882227", + "summary": "Referral interaction regarding Eden Devprayag", + "source_ref": "fd75f710-1187-43b7-983a-bac6683a1e33", + "created_at": "2025-10-06T11:07:55.882235" + }, + { + "interaction_id": "56c4ab14-bd66-4325-94bd-c9f0b3829256", + "person_id": "8460df77-6d5a-4cf5-9861-eb3ce0ccd387", + "lead_id": "32b7d822-418a-4f98-84d5-64e379f78e5b", + "channel": "referral", + "interaction_type": "referral", + "happened_at": "2025-10-29T11:07:55.882243", + "summary": "Referral interaction regarding Eden Devprayag", + "source_ref": "cd14299e-9efb-4742-b8be-ece82a01ebdb", + "created_at": "2026-02-21T11:07:55.882251" + }, + { + "interaction_id": "566fc574-8db0-4e7f-91a0-6189c75d4793", + "person_id": "8460df77-6d5a-4cf5-9861-eb3ce0ccd387", + "lead_id": "32b7d822-418a-4f98-84d5-64e379f78e5b", + "channel": "builder_event", + "interaction_type": "builder_event", + "happened_at": "2026-02-13T11:07:55.882259", + "summary": "Builder Event interaction regarding Eden Devprayag", + "source_ref": "01768fe3-8d28-4895-8969-184e6e6c97e3", + "created_at": "2025-10-25T11:07:55.882267" + } + ], + "calls": [], + "transcripts": [], + "messages": [ + { + "message_id": "79365b96-0b8c-4688-8eeb-11043032ec2f", + "interaction_id": "a72bfd44-99c7-4246-8d8c-8faa4cf4e6bb", + "person_id": "8460df77-6d5a-4cf5-9861-eb3ce0ccd387", + "sender_role": "agent", + "message_text": "Hello Sumita, the floor plan you requested for Eden Devprayag is attached here.", + "delivered_at": "2026-02-17T22:07:55.882150", + "channel": "whatsapp", + "read_at": "2026-02-18T00:06:55.882150" + }, + { + "message_id": "583d012f-b213-4d9d-ae63-7c29675adccd", + "interaction_id": "a72bfd44-99c7-4246-8d8c-8faa4cf4e6bb", + "person_id": "8460df77-6d5a-4cf5-9861-eb3ce0ccd387", + "sender_role": "client", + "message_text": "Can we reschedule the visit to Sunday?", + "delivered_at": "2026-02-19T20:07:55.882150", + "channel": "whatsapp", + "read_at": "2026-02-19T21:29:55.882150" + }, + { + "message_id": "fb3f1a5c-c103-4bba-a369-23645be61f37", + "interaction_id": "a72bfd44-99c7-4246-8d8c-8faa4cf4e6bb", + "person_id": "8460df77-6d5a-4cf5-9861-eb3ce0ccd387", + "sender_role": "agent", + "message_text": "Hi Sumita, we have a limited early booking offer expiring this Friday. Would love to share the details.", + "delivered_at": "2026-02-20T15:07:55.882150", + "channel": "whatsapp", + "read_at": "2026-02-20T15:36:55.882150" + }, + { + "message_id": "03bffe06-f5ee-45d5-b32f-079678e088a5", + "interaction_id": "a72bfd44-99c7-4246-8d8c-8faa4cf4e6bb", + "person_id": "8460df77-6d5a-4cf5-9861-eb3ce0ccd387", + "sender_role": "client", + "message_text": "We are ready to proceed. What is the booking amount?", + "delivered_at": "2026-02-21T00:07:55.882150", + "channel": "whatsapp", + "read_at": null + }, + { + "message_id": "7c509efe-ea86-4212-9c74-e33c819ef205", + "interaction_id": "a72bfd44-99c7-4246-8d8c-8faa4cf4e6bb", + "person_id": "8460df77-6d5a-4cf5-9861-eb3ce0ccd387", + "sender_role": "agent", + "message_text": "Hi Sumita, just checking in. Has the loan pre-approval come through? Happy to connect you with our banking partner.", + "delivered_at": "2026-02-23T00:07:55.882150", + "channel": "whatsapp", + "read_at": "2026-02-23T01:37:55.882150" + } + ], + "emails": [], + "visits": [], + "reminders": [ + { + "reminder_id": "b8e95aaf-84a6-4e0a-844d-b8b8dcfcf245", + "person_id": "8460df77-6d5a-4cf5-9861-eb3ce0ccd387", + "lead_id": "32b7d822-418a-4f98-84d5-64e379f78e5b", + "reminder_text": "Confirm booking appointment", + "due_at": "2026-05-02T11:07:55.882270", + "completed": true, + "completed_at": "2026-04-15T11:07:55.882278", + "assigned_user_id": "user_5", + "created_at": "2026-03-11T11:07:55.882280" + } + ], + "qd_scores": [ + { + "qd_id": "56e19e6c-dd42-46b7-90eb-dc07efc1fcd8", + "person_id": "8460df77-6d5a-4cf5-9861-eb3ce0ccd387", + "score_type": "intent_score", + "current_value": 0.629, + "computed_at": "2026-03-11T11:07:55.882296", + "evidence_refs_json": "[\"b77b9f69-d50d-4d97-8db9-13a283ebd408\", \"d62e9295-fe89-455c-ba8c-7d7faea1de1e\", \"f56d64da-36d7-4919-866f-63c11a98ff4c\", \"585fbfe2-efec-4e97-99de-571390dd27e5\", \"5fd2f15d-8a86-4a10-a4ff-00e102256f85\"]" + }, + { + "qd_id": "48887318-c080-4c78-bf1f-aca6fed4d1c8", + "person_id": "8460df77-6d5a-4cf5-9861-eb3ce0ccd387", + "score_type": "urgency_score", + "current_value": 0.672, + "computed_at": "2026-03-30T11:07:55.882436", + "evidence_refs_json": "[\"5aea40ee-4e2c-467c-a71b-f6b323132366\", \"10831aff-558b-4bb8-98e0-3c0308f87b06\", \"cefeaef9-3ccb-431c-84c6-4b916c6f86e0\", \"2697b6e3-eed5-433f-b29b-d0d36818745d\", \"cdcf8dc3-c1ba-4070-a421-eaf5eb5001da\"]" + }, + { + "qd_id": "09b7b932-fa72-4af8-862d-1fce699c785c", + "person_id": "8460df77-6d5a-4cf5-9861-eb3ce0ccd387", + "score_type": "engagement_score", + "current_value": 0.755, + "computed_at": "2026-03-23T11:07:55.882543", + "evidence_refs_json": "[\"2a5f436d-d3ac-4ad4-adfa-b5889319ca92\", \"cf85659e-0053-4d6a-8229-395416f09b69\", \"65ad6bb2-164e-409d-aa78-22ee2c792a45\"]" + } + ], + "qd_timeseries": [ + { + "timeseries_id": "c4afdc7b-a917-4e72-8b7d-53c5d81e1b97", + "person_id": "8460df77-6d5a-4cf5-9861-eb3ce0ccd387", + "signal_source": "call", + "timestamp": "2026-01-02T11:07:55.882333", + "value": 0.618, + "score_type": "intent_score", + "evidence_ref": "9292347f-64b1-4eb0-a848-729917a2ecfd" + }, + { + "timeseries_id": "0d351e77-69f9-4a7d-8ecf-7133b7aca955", + "person_id": "8460df77-6d5a-4cf5-9861-eb3ce0ccd387", + "signal_source": "email", + "timestamp": "2026-01-20T11:07:55.882333", + "value": 0.644, + "score_type": "intent_score", + "evidence_ref": "4ff9c8b0-43e5-4d94-9508-d64d716a821b" + }, + { + "timeseries_id": "3ffae39e-cded-485c-9030-cfc294a1ff41", + "person_id": "8460df77-6d5a-4cf5-9861-eb3ce0ccd387", + "signal_source": "site_visit", + "timestamp": "2026-02-08T11:07:55.882333", + "value": 0.683, + "score_type": "intent_score", + "evidence_ref": "bee0020f-e117-4f30-8de2-58e5a99babca" + }, + { + "timeseries_id": "1706147e-b4ac-4bd7-a7ac-c53fc0e37fdf", + "person_id": "8460df77-6d5a-4cf5-9861-eb3ce0ccd387", + "signal_source": "site_visit", + "timestamp": "2026-02-25T11:07:55.882333", + "value": 0.705, + "score_type": "intent_score", + "evidence_ref": "b196ea69-7d1d-4ba1-aa2a-9ebc0bcb847a" + }, + { + "timeseries_id": "04e94172-ee85-4a74-b5d2-f768a13802c6", + "person_id": "8460df77-6d5a-4cf5-9861-eb3ce0ccd387", + "signal_source": "call", + "timestamp": "2026-03-08T11:07:55.882333", + "value": 0.52, + "score_type": "intent_score", + "evidence_ref": "82fb24c1-3f61-4384-b83c-d11ffadbb5d3" + }, + { + "timeseries_id": "b2a8e814-a0c3-4a08-8be4-ac3d3460f7c3", + "person_id": "8460df77-6d5a-4cf5-9861-eb3ce0ccd387", + "signal_source": "call", + "timestamp": "2026-03-24T11:07:55.882333", + "value": 0.639, + "score_type": "intent_score", + "evidence_ref": "532fc25d-c4d7-484a-988c-4a31118f2cde" + }, + { + "timeseries_id": "6066035b-3d0c-41f9-962d-8e30dfd0ec1d", + "person_id": "8460df77-6d5a-4cf5-9861-eb3ce0ccd387", + "signal_source": "call", + "timestamp": "2026-03-30T11:07:55.882333", + "value": 0.746, + "score_type": "intent_score", + "evidence_ref": "292d2047-b75a-4100-92af-93fe55a4badd" + }, + { + "timeseries_id": "719a97ae-aa47-42ba-95ca-42469613bc60", + "person_id": "8460df77-6d5a-4cf5-9861-eb3ce0ccd387", + "signal_source": "site_visit", + "timestamp": "2025-12-26T11:07:55.882471", + "value": 0.79, + "score_type": "urgency_score", + "evidence_ref": "c12e296c-3b49-4e42-8ef5-252953bf36c3" + }, + { + "timeseries_id": "99685822-b23d-4ab2-a398-734f3a4f00fb", + "person_id": "8460df77-6d5a-4cf5-9861-eb3ce0ccd387", + "signal_source": "email", + "timestamp": "2026-01-12T11:07:55.882471", + "value": 0.761, + "score_type": "urgency_score", + "evidence_ref": "2ec66946-8d4e-40d7-bf28-8f13a25d075a" + }, + { + "timeseries_id": "7ab32ae8-5305-4d8a-ad48-65c3f74c1e2b", + "person_id": "8460df77-6d5a-4cf5-9861-eb3ce0ccd387", + "signal_source": "email", + "timestamp": "2026-01-29T11:07:55.882471", + "value": 0.571, + "score_type": "urgency_score", + "evidence_ref": "b940d9fd-e911-4287-8d4d-f6bca7c68bf7" + }, + { + "timeseries_id": "d7894d3c-f61e-42d8-ad0b-c93549dfd469", + "person_id": "8460df77-6d5a-4cf5-9861-eb3ce0ccd387", + "signal_source": "site_visit", + "timestamp": "2026-02-07T11:07:55.882471", + "value": 0.58, + "score_type": "urgency_score", + "evidence_ref": "55a13cd5-d87a-405a-8e28-d239ba5e0bcc" + }, + { + "timeseries_id": "245dedd9-9258-4255-9733-a46f64a18dbb", + "person_id": "8460df77-6d5a-4cf5-9861-eb3ce0ccd387", + "signal_source": "call", + "timestamp": "2025-11-08T11:07:55.882714", + "value": 0.87, + "score_type": "engagement_score", + "evidence_ref": "3c48bf52-e3ec-49df-8089-ba73cae7c7aa" + }, + { + "timeseries_id": "de8c89d7-f832-4637-954d-1e60f4a02cfa", + "person_id": "8460df77-6d5a-4cf5-9861-eb3ce0ccd387", + "signal_source": "email", + "timestamp": "2025-11-27T11:07:55.882714", + "value": 0.763, + "score_type": "engagement_score", + "evidence_ref": "a683e3d9-3492-4281-8fbe-f36fa43abada" + }, + { + "timeseries_id": "681b4cf9-486c-46cf-8b1b-eb583743990a", + "person_id": "8460df77-6d5a-4cf5-9861-eb3ce0ccd387", + "signal_source": "whatsapp", + "timestamp": "2025-12-09T11:07:55.882714", + "value": 0.746, + "score_type": "engagement_score", + "evidence_ref": "fccf8322-9d09-4588-b27c-705fbeba4696" + }, + { + "timeseries_id": "a416d0f9-3649-4348-a15c-77fc61202d86", + "person_id": "8460df77-6d5a-4cf5-9861-eb3ce0ccd387", + "signal_source": "site_visit", + "timestamp": "2025-12-18T11:07:55.882714", + "value": 0.68, + "score_type": "engagement_score", + "evidence_ref": "2e948cf1-f606-4390-bf88-c58b668116d4" + } + ], + "intel_events": [ + { + "event_id": "4e5d6e76-3834-42f0-a864-80689359abe0", + "event_type": "number_plate_detected", + "person_id": "8460df77-6d5a-4cf5-9861-eb3ce0ccd387", + "project_ref": "Eden Devprayag", + "detected_at": "2026-04-03T11:07:55.882873", + "vehicle_plate_hash": "WB14L7868", + "confidence": 0.898, + "media_ref": "cctv_clip_27b0d22b.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "7bd0c870-479a-4c65-9b0d-9c7b3a8ced4f", + "event_type": "perception_session", + "person_id": "8460df77-6d5a-4cf5-9861-eb3ce0ccd387", + "project_ref": "Eden Devprayag", + "session_at": "2026-02-20T11:07:55.882918", + "rooms_visited": "[\"model_flat_2bhk\"]", + "dwell_time_seconds": 1024, + "engagement_score": 0.533, + "cctv_ref": "cctv_59e115b0", + "notes": "Perception session recorded during scheduled site visit" + } + ], + "client360": { + "client_ref": "8460df77-6d5a-4cf5-9861-eb3ce0ccd387", + "snapshot_generated_at": "2026-04-18T11:07:55.882989", + "identity": { + "full_name": "Sumita Roy", + "primary_email": "sumita.roy506@yahoo.com", + "primary_phone": "+91 9165576952", + "persona_labels": "[\"upgrade_seeker\", \"first_time_buyer\"]", + "buyer_type": "nri" + }, + "account_links": [ + "8aa4d488-571e-4cd4-aa27-8372a49aacbf" + ], + "active_opportunities": [ + { + "opportunity_id": "96b21370-375e-47f6-9e77-a8e1a3f265bb", + "project": "Eden Devprayag", + "stage": "site_visit_done", + "value": 9974842 + } + ], + "recent_interactions": [ + { + "interaction_id": "566fc574-8db0-4e7f-91a0-6189c75d4793", + "channel": "builder_event", + "happened_at": "2026-02-13T11:07:55.882259" + }, + { + "interaction_id": "848a4648-77b2-46a4-985c-b4e5786f4d34", + "channel": "referral", + "happened_at": "2025-12-18T11:07:55.882227" + }, + { + "interaction_id": "56c4ab14-bd66-4325-94bd-c9f0b3829256", + "channel": "referral", + "happened_at": "2025-10-29T11:07:55.882243" + }, + { + "interaction_id": "a72bfd44-99c7-4246-8d8c-8faa4cf4e6bb", + "channel": "whatsapp", + "happened_at": "2025-10-29T11:07:55.882140" + } + ], + "property_interests": [ + { + "project": "Eden Devprayag", + "config": "2BHK", + "budget_max": 9869373 + } + ], + "tasks": [], + "qd_overview": { + "intent_score": 0.629, + "urgency_score": 0.672, + "engagement_score": 0.755 + }, + "risk_flags": [ + "no_follow_up_in_30_days", + "decision_stalled_at_family" + ], + "recommended_next_actions": [ + "Follow up on impressions", + "Send updated price list" + ], + "lead_stage": "site_visit_done", + "lead_status": "active" + } + }, + { + "person": { + "person_id": "ac74f467-ebd5-4ed2-888e-4e66e89e4899", + "full_name": "Arnav Bhattacharya", + "primary_email": "arnav.bhattacharya553@yahoo.com", + "primary_phone": "+91 7242425303", + "secondary_phone": null, + "linkedin_url": "https://linkedin.com/in/arnav-bhattacharya-339", + "occupation": "Professor", + "employer": "JK Lakshmi Cement", + "account_id": "167e5af1-66b1-41c0-9a9d-42aa9b77a3a7", + "location_city": "Tollygunge", + "location_country": "India", + "buyer_type": "high_intent", + "persona_labels": "[\"analytical_buyer\", \"nri_diaspora\", \"upgrade_seeker\"]", + "is_nri": false, + "source_confidence": 0.979, + "created_at": "2025-05-26T11:07:55.883064", + "updated_at": "2026-01-26T11:07:55.883067" + }, + "lead": { + "lead_id": "dab9b654-9362-42f6-9d40-5e46864408b2", + "person_id": "ac74f467-ebd5-4ed2-888e-4e66e89e4899", + "account_id": "167e5af1-66b1-41c0-9a9d-42aa9b77a3a7", + "source_system": "housing_com", + "status": "active", + "stage": "qualified", + "budget_band": "₹109L - ₹119L", + "urgency": "within_3_months", + "assigned_user_id": "user_2", + "primary_project": "Ambuja Utpaala", + "objection": null, + "motivation": "NRI returning to India", + "financing_posture": "cash", + "created_at": "2025-07-09T11:07:55.883150", + "updated_at": "2025-12-20T11:07:55.883152" + }, + "opportunities": [ + { + "opportunity_id": "fd79f9b7-794d-4a49-9534-015b4c7eb9ba", + "lead_id": "dab9b654-9362-42f6-9d40-5e46864408b2", + "person_id": "ac74f467-ebd5-4ed2-888e-4e66e89e4899", + "project_name": "Ambuja Utpaala", + "unit_config": "3BHK", + "stage": "qualified", + "value": 10903511, + "probability": 20, + "expected_close_date": "2026-06-21T11:07:55.883186", + "next_action": "Confirm booking slot", + "created_at": "2025-12-17T11:07:55.883188", + "updated_at": "2026-04-01T11:07:55.883190" + } + ], + "property_interests": [ + { + "interest_id": "99b2466c-cb2f-43c1-9e6b-30bd5ea33dfa", + "person_id": "ac74f467-ebd5-4ed2-888e-4e66e89e4899", + "project_name": "Ambuja Utpaala", + "configuration": "4BHK", + "budget_min": 10987632, + "budget_max": 13429329, + "urgency": "flexible", + "facing_preference": "north", + "floor_preference": "high", + "notes": "Own home for the first time", + "created_at": "2025-09-28T11:07:55.883098" + }, + { + "interest_id": "fbc835a9-bc82-4313-b5b5-06add0d0cd28", + "person_id": "ac74f467-ebd5-4ed2-888e-4e66e89e4899", + "project_name": "Merlin Avana", + "configuration": "4BHK", + "budget_min": 13841616, + "budget_max": 16917531, + "urgency": "within_3_months", + "facing_preference": "south", + "floor_preference": "any", + "notes": "Own home for the first time", + "created_at": "2025-11-21T11:07:55.883115" + }, + { + "interest_id": "26961fa9-af70-4d1c-ad72-d24b87fa0ae0", + "person_id": "ac74f467-ebd5-4ed2-888e-4e66e89e4899", + "project_name": "Atri Surya Toron", + "configuration": "3BHK", + "budget_min": 6029781, + "budget_max": 7369732, + "urgency": "within_6_months", + "facing_preference": "south", + "floor_preference": "any", + "notes": "Investment portfolio", + "created_at": "2025-12-03T11:07:55.883127" + } + ], + "interactions": [ + { + "interaction_id": "874b367f-5fe0-4580-8669-1316aadf2a7a", + "person_id": "ac74f467-ebd5-4ed2-888e-4e66e89e4899", + "lead_id": "dab9b654-9362-42f6-9d40-5e46864408b2", + "channel": "email", + "interaction_type": "email", + "happened_at": "2025-11-03T11:07:55.883232", + "summary": "Email interaction regarding Ambuja Utpaala", + "source_ref": "096429e6-1613-4d81-8a99-dd84af312397", + "created_at": "2026-03-28T11:07:55.883244" + }, + { + "interaction_id": "19c7263b-f3e3-488c-927a-dc6127edf2fa", + "person_id": "ac74f467-ebd5-4ed2-888e-4e66e89e4899", + "lead_id": "dab9b654-9362-42f6-9d40-5e46864408b2", + "channel": "site_visit", + "interaction_type": "site_visit", + "happened_at": "2025-10-27T11:07:55.883271", + "summary": "Site Visit interaction regarding Ambuja Utpaala", + "source_ref": "79314623-d712-44da-a709-959f5f05e3a4", + "created_at": "2025-11-14T11:07:55.883280" + }, + { + "interaction_id": "ee41e0c8-ff93-41be-b647-1a5bb6256271", + "person_id": "ac74f467-ebd5-4ed2-888e-4e66e89e4899", + "lead_id": "dab9b654-9362-42f6-9d40-5e46864408b2", + "channel": "builder_event", + "interaction_type": "builder_event", + "happened_at": "2025-10-05T11:07:55.883300", + "summary": "Builder Event interaction regarding Ambuja Utpaala", + "source_ref": "0d331d19-e343-4d36-9eb0-111d8ee7ec31", + "created_at": "2025-11-18T11:07:55.883308" + }, + { + "interaction_id": "4844c494-3d80-4e60-901b-07676488c2b2", + "person_id": "ac74f467-ebd5-4ed2-888e-4e66e89e4899", + "lead_id": "dab9b654-9362-42f6-9d40-5e46864408b2", + "channel": "digital_ad", + "interaction_type": "digital_ad", + "happened_at": "2025-10-28T11:07:55.883318", + "summary": "Digital Ad interaction regarding Ambuja Utpaala", + "source_ref": "6875bda1-d811-43fb-9696-9b6e75ee1161", + "created_at": "2025-11-25T11:07:55.883325" + } + ], + "calls": [], + "transcripts": [], + "messages": [], + "emails": [ + { + "email_id": "ccaa9cbf-d870-420e-ad11-10ea74530db6", + "interaction_id": "874b367f-5fe0-4580-8669-1316aadf2a7a", + "person_id": "ac74f467-ebd5-4ed2-888e-4e66e89e4899", + "subject": "Payment Plan Details - Ambuja Utpaala", + "body": "Dear Arnav,\n\nWe are pleased to share the exclusive early-bird pricing for Ambuja Utpaala. This offer is valid until the end of the month.\n\nPlease let us know if you would like to schedule a meeting.\n\nWarm regards,\nVelocity Real Estate", + "sender_role": "agent", + "sent_at": "2026-03-25T11:07:55.883260", + "opened_at": "2026-02-28T11:07:55.883262", + "replied_at": null + } + ], + "visits": [ + { + "visit_id": "920fec2a-6cd8-4d7d-b873-c4f336fe3b46", + "person_id": "ac74f467-ebd5-4ed2-888e-4e66e89e4899", + "lead_id": "dab9b654-9362-42f6-9d40-5e46864408b2", + "project_name": "Ambuja Utpaala", + "visited_at": "2025-11-14T11:07:55.883288", + "visit_notes": "Liked the 3BHK show flat. Concerned about traffic.", + "host_user_id": "user_1", + "revisit_intent": "yes", + "household_id": null + } + ], + "reminders": [ + { + "reminder_id": "6e741e09-529c-44c3-8dd6-00d1c6fac889", + "person_id": "ac74f467-ebd5-4ed2-888e-4e66e89e4899", + "lead_id": "dab9b654-9362-42f6-9d40-5e46864408b2", + "reminder_text": "Confirm booking appointment", + "due_at": "2026-05-03T11:07:55.883329", + "completed": false, + "completed_at": null, + "assigned_user_id": "user_3", + "created_at": "2026-01-19T11:07:55.883342" + }, + { + "reminder_id": "ab879553-7e34-4ee2-a696-56709d63d28b", + "person_id": "ac74f467-ebd5-4ed2-888e-4e66e89e4899", + "lead_id": "dab9b654-9362-42f6-9d40-5e46864408b2", + "reminder_text": "Schedule meeting with senior advisor", + "due_at": "2026-05-18T11:07:55.883344", + "completed": false, + "completed_at": null, + "assigned_user_id": "user_1", + "created_at": "2026-01-30T11:07:55.883353" + } + ], + "qd_scores": [ + { + "qd_id": "0b200743-67fe-4da8-a0af-7b861586cc65", + "person_id": "ac74f467-ebd5-4ed2-888e-4e66e89e4899", + "score_type": "intent_score", + "current_value": 0.931, + "computed_at": "2026-03-14T11:07:55.883369", + "evidence_refs_json": "[\"31e058bd-b3ef-42d1-a2b0-24fbb868ea8d\", \"74882498-6e6c-4b78-908f-a3b99811316b\", \"f4975379-4707-41fc-a8ac-233113cc402c\", \"e7dd0f63-bf68-44fa-8d5b-9778da13b455\"]" + }, + { + "qd_id": "f8aab68f-5074-4685-849a-d5595db5422d", + "person_id": "ac74f467-ebd5-4ed2-888e-4e66e89e4899", + "score_type": "urgency_score", + "current_value": 0.923, + "computed_at": "2026-03-24T11:07:55.883479", + "evidence_refs_json": "[\"15731429-9fa5-4b48-b05c-9ebe18cb7714\", \"af6a2a96-4a14-4d3f-8b6c-d8522bec8daa\", \"2a2faa4c-d5b9-420d-9dcd-8a97a3d7bb27\"]" + }, + { + "qd_id": "d8b1bd22-d0b9-470e-899d-267886424bca", + "person_id": "ac74f467-ebd5-4ed2-888e-4e66e89e4899", + "score_type": "engagement_score", + "current_value": 0.907, + "computed_at": "2026-03-03T11:07:55.883606", + "evidence_refs_json": "[\"72b7d5d6-5050-4111-a522-9904dd79859c\", \"b05237a0-2ebd-42de-a631-d6be9d0cef82\", \"1495e04d-7a6f-43ac-88d1-737ea97e3ac2\"]" + } + ], + "qd_timeseries": [ + { + "timeseries_id": "89702e52-2aaa-4d82-bac8-d85fc0765d9e", + "person_id": "ac74f467-ebd5-4ed2-888e-4e66e89e4899", + "signal_source": "email", + "timestamp": "2025-12-16T11:07:55.883400", + "value": 0.923, + "score_type": "intent_score", + "evidence_ref": "a340516c-dd70-4eb9-b941-1c2e64b851f3" + }, + { + "timeseries_id": "308ac12f-e2cf-4ae9-aed4-a6e6d43f75c1", + "person_id": "ac74f467-ebd5-4ed2-888e-4e66e89e4899", + "signal_source": "site_visit", + "timestamp": "2026-01-05T11:07:55.883400", + "value": 1.0, + "score_type": "intent_score", + "evidence_ref": "494a91cc-cce2-4181-a5ae-581517ee0967" + }, + { + "timeseries_id": "5fec7b04-4ff5-451c-bc52-d5e15f2690af", + "person_id": "ac74f467-ebd5-4ed2-888e-4e66e89e4899", + "signal_source": "site_visit", + "timestamp": "2026-01-21T11:07:55.883400", + "value": 0.91, + "score_type": "intent_score", + "evidence_ref": "ddb7ee12-6055-41c5-8deb-fd07b8685052" + }, + { + "timeseries_id": "acf1fa9c-33cf-4491-8a1a-f2e1490a1338", + "person_id": "ac74f467-ebd5-4ed2-888e-4e66e89e4899", + "signal_source": "whatsapp", + "timestamp": "2026-02-02T11:07:55.883400", + "value": 0.815, + "score_type": "intent_score", + "evidence_ref": "649f2df2-17d4-4288-be74-7ff7fb55e87c" + }, + { + "timeseries_id": "74428400-ff0c-4951-b7d8-b32eafea7ec1", + "person_id": "ac74f467-ebd5-4ed2-888e-4e66e89e4899", + "signal_source": "site_visit", + "timestamp": "2026-02-20T11:07:55.883400", + "value": 0.848, + "score_type": "intent_score", + "evidence_ref": "e3783c98-a4a9-4d62-94b2-3b112b527340" + }, + { + "timeseries_id": "9fc762a8-d598-4f36-aec8-314b470e23fb", + "person_id": "ac74f467-ebd5-4ed2-888e-4e66e89e4899", + "signal_source": "site_visit", + "timestamp": "2025-12-03T11:07:55.883501", + "value": 0.986, + "score_type": "urgency_score", + "evidence_ref": "cb15ddf9-78fc-4e72-86d2-dee16e15fece" + }, + { + "timeseries_id": "630d73b8-556e-4354-9082-8e46e0f3d6cc", + "person_id": "ac74f467-ebd5-4ed2-888e-4e66e89e4899", + "signal_source": "email", + "timestamp": "2025-12-23T11:07:55.883501", + "value": 0.914, + "score_type": "urgency_score", + "evidence_ref": "f20afe3d-2adc-4361-ab0f-ac71d845cb00" + }, + { + "timeseries_id": "405c62c9-66da-4ff5-a640-ca7c332b7ebc", + "person_id": "ac74f467-ebd5-4ed2-888e-4e66e89e4899", + "signal_source": "whatsapp", + "timestamp": "2026-01-08T11:07:55.883501", + "value": 0.837, + "score_type": "urgency_score", + "evidence_ref": "746df9f1-4e56-45c0-805d-2623eddd0651" + }, + { + "timeseries_id": "af8fd5e2-5e2c-4290-9026-f2595a44a392", + "person_id": "ac74f467-ebd5-4ed2-888e-4e66e89e4899", + "signal_source": "whatsapp", + "timestamp": "2026-01-28T11:07:55.883501", + "value": 1.0, + "score_type": "urgency_score", + "evidence_ref": "227aa4fe-ca37-4159-bc4c-e0dbd9fcef80" + }, + { + "timeseries_id": "eb7574fe-488e-4b29-a55b-1506966fa93e", + "person_id": "ac74f467-ebd5-4ed2-888e-4e66e89e4899", + "signal_source": "call", + "timestamp": "2026-02-03T11:07:55.883501", + "value": 1.0, + "score_type": "urgency_score", + "evidence_ref": "a190d09f-8f84-4ee2-95cb-6ca8ecb984e2" + }, + { + "timeseries_id": "e9de3a67-b3de-4818-9bbd-82b6ed1a09ac", + "person_id": "ac74f467-ebd5-4ed2-888e-4e66e89e4899", + "signal_source": "call", + "timestamp": "2026-02-10T11:07:55.883501", + "value": 0.986, + "score_type": "urgency_score", + "evidence_ref": "20da8c40-98e8-47a9-86b0-7da65648a383" + }, + { + "timeseries_id": "2db35d35-a2d1-44bc-938a-a4815333420e", + "person_id": "ac74f467-ebd5-4ed2-888e-4e66e89e4899", + "signal_source": "whatsapp", + "timestamp": "2026-02-28T11:07:55.883501", + "value": 1.0, + "score_type": "urgency_score", + "evidence_ref": "3952264e-d5ef-4cc7-a17d-38fceaa21b04" + }, + { + "timeseries_id": "b6f8bf78-d81e-4cfb-bc2b-9300cfc60f3b", + "person_id": "ac74f467-ebd5-4ed2-888e-4e66e89e4899", + "signal_source": "site_visit", + "timestamp": "2026-01-07T11:07:55.883628", + "value": 0.802, + "score_type": "engagement_score", + "evidence_ref": "c88932cb-0de3-4a56-ba71-590c6c76fc82" + }, + { + "timeseries_id": "041cd917-4f26-449e-bcd9-2e2679009a04", + "person_id": "ac74f467-ebd5-4ed2-888e-4e66e89e4899", + "signal_source": "email", + "timestamp": "2026-01-27T11:07:55.883628", + "value": 0.791, + "score_type": "engagement_score", + "evidence_ref": "2ccd2aba-2627-464b-83ba-968772c355f9" + }, + { + "timeseries_id": "af059de5-f8eb-4e1f-b311-16b32eb72555", + "person_id": "ac74f467-ebd5-4ed2-888e-4e66e89e4899", + "signal_source": "call", + "timestamp": "2026-02-14T11:07:55.883628", + "value": 0.791, + "score_type": "engagement_score", + "evidence_ref": "dfb44b54-3ada-447a-bfd4-5ef74e8555cd" + }, + { + "timeseries_id": "3ce1c1da-8113-4907-b38c-7cdfcf769368", + "person_id": "ac74f467-ebd5-4ed2-888e-4e66e89e4899", + "signal_source": "site_visit", + "timestamp": "2026-02-27T11:07:55.883628", + "value": 0.791, + "score_type": "engagement_score", + "evidence_ref": "da600577-67c9-42ec-83b1-a5806090d696" + } + ], + "intel_events": [ + { + "event_id": "ba5a2ab5-28e3-4108-84b8-6014bd5a530c", + "event_type": "number_plate_detected", + "person_id": "ac74f467-ebd5-4ed2-888e-4e66e89e4899", + "project_ref": "Ambuja Utpaala", + "detected_at": "2026-01-21T11:07:55.883699", + "vehicle_plate_hash": "WB65C2753", + "confidence": 0.97, + "media_ref": "cctv_clip_b9b08e69.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + } + ], + "client360": { + "client_ref": "ac74f467-ebd5-4ed2-888e-4e66e89e4899", + "snapshot_generated_at": "2026-04-18T11:07:55.883715", + "identity": { + "full_name": "Arnav Bhattacharya", + "primary_email": "arnav.bhattacharya553@yahoo.com", + "primary_phone": "+91 7242425303", + "persona_labels": "[\"analytical_buyer\", \"nri_diaspora\", \"upgrade_seeker\"]", + "buyer_type": "high_intent" + }, + "account_links": [ + "167e5af1-66b1-41c0-9a9d-42aa9b77a3a7" + ], + "active_opportunities": [ + { + "opportunity_id": "fd79f9b7-794d-4a49-9534-015b4c7eb9ba", + "project": "Ambuja Utpaala", + "stage": "qualified", + "value": 10903511 + } + ], + "recent_interactions": [ + { + "interaction_id": "874b367f-5fe0-4580-8669-1316aadf2a7a", + "channel": "email", + "happened_at": "2025-11-03T11:07:55.883232" + }, + { + "interaction_id": "4844c494-3d80-4e60-901b-07676488c2b2", + "channel": "digital_ad", + "happened_at": "2025-10-28T11:07:55.883318" + }, + { + "interaction_id": "19c7263b-f3e3-488c-927a-dc6127edf2fa", + "channel": "site_visit", + "happened_at": "2025-10-27T11:07:55.883271" + }, + { + "interaction_id": "ee41e0c8-ff93-41be-b647-1a5bb6256271", + "channel": "builder_event", + "happened_at": "2025-10-05T11:07:55.883300" + } + ], + "property_interests": [ + { + "project": "Ambuja Utpaala", + "config": "4BHK", + "budget_max": 13429329 + }, + { + "project": "Merlin Avana", + "config": "4BHK", + "budget_max": 16917531 + }, + { + "project": "Atri Surya Toron", + "config": "3BHK", + "budget_max": 7369732 + } + ], + "tasks": [ + "Confirm booking appointment", + "Schedule meeting with senior advisor" + ], + "qd_overview": { + "intent_score": 0.931, + "urgency_score": 0.923, + "engagement_score": 0.907 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Book site visit", + "Share payment plan" + ], + "lead_stage": "qualified", + "lead_status": "active" + } + }, + { + "person": { + "person_id": "bbcac2d6-131a-4a5c-be34-d3ecb31e8df0", + "full_name": "Keya Bagchi", + "primary_email": "keya.bagchi383@hotmail.com", + "primary_phone": "+91 8971380304", + "secondary_phone": "+91 9994607170", + "linkedin_url": null, + "occupation": "Business Owner", + "employer": "Fortis Healthcare", + "account_id": "e890a796-925a-4c14-af19-67fc6360449a", + "location_city": "Garia", + "location_country": "India", + "buyer_type": "high_intent", + "persona_labels": "[\"investment_focus\", \"nri_diaspora\"]", + "is_nri": false, + "source_confidence": 0.957, + "created_at": "2025-09-30T11:07:55.883753", + "updated_at": "2025-11-01T11:07:55.883754" + }, + "lead": { + "lead_id": "65a39905-e548-4765-9618-a6cf4f482a0c", + "person_id": "bbcac2d6-131a-4a5c-be34-d3ecb31e8df0", + "account_id": "e890a796-925a-4c14-af19-67fc6360449a", + "source_system": "referral", + "status": "active", + "stage": "qualified", + "budget_band": "₹52L - ₹57L", + "urgency": "within_6_months", + "assigned_user_id": "user_5", + "primary_project": "DTC Good Earth", + "objection": null, + "motivation": "Healthcare access", + "financing_posture": "home_loan", + "created_at": "2025-09-28T11:07:55.883833", + "updated_at": "2026-01-27T11:07:55.883835" + }, + "opportunities": [ + { + "opportunity_id": "4af9bf27-6dd4-4535-a1bf-f54139b031e9", + "lead_id": "65a39905-e548-4765-9618-a6cf4f482a0c", + "person_id": "bbcac2d6-131a-4a5c-be34-d3ecb31e8df0", + "project_name": "DTC Good Earth", + "unit_config": "3BHK", + "stage": "qualified", + "value": 5235363, + "probability": 20, + "expected_close_date": "2026-08-02T11:07:55.883865", + "next_action": "Schedule site revisit", + "created_at": "2025-12-18T11:07:55.883867", + "updated_at": "2026-03-12T11:07:55.883868" + } + ], + "property_interests": [ + { + "interest_id": "879f1305-40a8-4684-9a3e-693ca9562e1a", + "person_id": "bbcac2d6-131a-4a5c-be34-d3ecb31e8df0", + "project_name": "DTC Good Earth", + "configuration": "2BHK", + "budget_min": 7153151, + "budget_max": 8742740, + "urgency": "within_3_months", + "facing_preference": "east", + "floor_preference": "any", + "notes": "Status/prestige", + "created_at": "2025-09-05T11:07:55.883806" + }, + { + "interest_id": "c30b0c45-7301-42d8-b496-676876513341", + "person_id": "bbcac2d6-131a-4a5c-be34-d3ecb31e8df0", + "project_name": "Ambuja Utpaala", + "configuration": "3BHK", + "budget_min": 9089915, + "budget_max": 11109896, + "urgency": "investment_only", + "facing_preference": "east", + "floor_preference": "mid", + "notes": "Children's future", + "created_at": "2025-07-02T11:07:55.883817" + } + ], + "interactions": [ + { + "interaction_id": "ebd433ad-e031-42d2-9678-63dc34c6148b", + "person_id": "bbcac2d6-131a-4a5c-be34-d3ecb31e8df0", + "lead_id": "65a39905-e548-4765-9618-a6cf4f482a0c", + "channel": "digital_ad", + "interaction_type": "digital_ad", + "happened_at": "2025-11-30T11:07:55.883887", + "summary": "Digital Ad interaction regarding DTC Good Earth", + "source_ref": "42bd40db-c8fb-4715-b76d-171ee0548cac", + "created_at": "2026-01-23T11:07:55.883900" + }, + { + "interaction_id": "19ec3982-f43e-4986-b9e2-a8a4d232744b", + "person_id": "bbcac2d6-131a-4a5c-be34-d3ecb31e8df0", + "lead_id": "65a39905-e548-4765-9618-a6cf4f482a0c", + "channel": "site_visit", + "interaction_type": "site_visit", + "happened_at": "2025-10-06T11:07:55.883908", + "summary": "Site Visit interaction regarding DTC Good Earth", + "source_ref": "137b17ea-9915-4dcc-8d33-c3dd15c8b07d", + "created_at": "2025-10-10T11:07:55.883915" + }, + { + "interaction_id": "23affc47-3286-4c28-83a3-139c9307ba67", + "person_id": "bbcac2d6-131a-4a5c-be34-d3ecb31e8df0", + "lead_id": "65a39905-e548-4765-9618-a6cf4f482a0c", + "channel": "digital_ad", + "interaction_type": "digital_ad", + "happened_at": "2026-01-19T11:07:55.883933", + "summary": "Digital Ad interaction regarding DTC Good Earth", + "source_ref": "a420aa36-5387-4e50-9b5c-8feccca61c8f", + "created_at": "2026-04-04T11:07:55.883941" + }, + { + "interaction_id": "121c1a55-cb7e-48e5-9212-e8cfaef60378", + "person_id": "bbcac2d6-131a-4a5c-be34-d3ecb31e8df0", + "lead_id": "65a39905-e548-4765-9618-a6cf4f482a0c", + "channel": "whatsapp", + "interaction_type": "whatsapp", + "happened_at": "2025-12-27T11:07:55.883951", + "summary": "Whatsapp interaction regarding DTC Good Earth", + "source_ref": "9557c6fd-9434-4043-8bb1-9248c904236e", + "created_at": "2026-02-17T11:07:55.883958" + }, + { + "interaction_id": "3a071039-b9ae-4d97-8ecc-ffe3b7fcea44", + "person_id": "bbcac2d6-131a-4a5c-be34-d3ecb31e8df0", + "lead_id": "65a39905-e548-4765-9618-a6cf4f482a0c", + "channel": "call", + "interaction_type": "call", + "happened_at": "2026-01-16T11:07:55.884006", + "summary": "Call interaction regarding DTC Good Earth", + "source_ref": "236bb4dc-76ec-428c-bd9f-9b53b9c976a6", + "created_at": "2025-11-27T11:07:55.884014" + }, + { + "interaction_id": "bd1efcd9-55fe-47ad-93a5-07b9eacb51e2", + "person_id": "bbcac2d6-131a-4a5c-be34-d3ecb31e8df0", + "lead_id": "65a39905-e548-4765-9618-a6cf4f482a0c", + "channel": "email", + "interaction_type": "email", + "happened_at": "2026-03-22T11:07:55.884101", + "summary": "Email interaction regarding DTC Good Earth", + "source_ref": "03b05645-6bb7-4a28-848a-f37c13580299", + "created_at": "2026-03-15T11:07:55.884110" + } + ], + "calls": [ + { + "call_id": "babf1984-1fe3-4326-921c-11c6ea234930", + "interaction_id": "3a071039-b9ae-4d97-8ecc-ffe3b7fcea44", + "person_id": "bbcac2d6-131a-4a5c-be34-d3ecb31e8df0", + "call_direction": "outbound", + "duration_seconds": 549, + "recording_ref": "recording_babf1984.mp3", + "transcript_ref": "ed63f495-ce36-47ab-8664-ef38fc259b1d", + "call_ts": "2025-12-28T11:07:55.884032" + } + ], + "transcripts": [ + { + "transcript_id": "ed63f495-ce36-47ab-8664-ef38fc259b1d", + "call_id": "babf1984-1fe3-4326-921c-11c6ea234930", + "person_id": "bbcac2d6-131a-4a5c-be34-d3ecb31e8df0", + "interaction_ref": "3a071039-b9ae-4d97-8ecc-ffe3b7fcea44", + "language": "en", + "full_text": "Good morning Keya, just following up on your site visit last week. Yes I visited with my wife. We liked the view from the higher floors. That's wonderful. We also have east-facing units still available. What's the difference in price between east and west facing? East facing carries a premium of about 3 to 4 percent. But the morning light is excellent. Hmm. And what about car parking? We have two vehicles. We offer two covered parking slots for 3BHK and above. That's included. Okay let me check our loan eligibility and I'll call you back this week. Perfect. I'll also check if the early booking offer can be extended. Thank you Keya.", + "speaker_segments_json": "[{\"speaker\": \"agent\", \"start_seconds\": 0, \"end_seconds\": 17, \"text\": \"Good morning Keya, just following up on your site visit last week.\"}, {\"speaker\": \"client\", \"start_seconds\": 10, \"end_seconds\": 24, \"text\": \"Yes I visited with my wife. We liked the view from the higher floors.\"}, {\"speaker\": \"agent\", \"start_seconds\": 30, \"end_seconds\": 37, \"text\": \"That's wonderful. We also have east-facing units still available.\"}, {\"speaker\": \"client\", \"start_seconds\": 30, \"end_seconds\": 43, \"text\": \"What's the difference in price between east and west facing?\"}, {\"speaker\": \"agent\", \"start_seconds\": 48, \"end_seconds\": 65, \"text\": \"East facing carries a premium of about 3 to 4 percent. But the morning light is excellent.\"}, {\"speaker\": \"client\", \"start_seconds\": 60, \"end_seconds\": 77, \"text\": \"Hmm. And what about car parking? We have two vehicles.\"}, {\"speaker\": \"agent\", \"start_seconds\": 108, \"end_seconds\": 124, \"text\": \"We offer two covered parking slots for 3BHK and above. That's included.\"}, {\"speaker\": \"client\", \"start_seconds\": 77, \"end_seconds\": 84, \"text\": \"Okay let me check our loan eligibility and I'll call you back this week.\"}, {\"speaker\": \"agent\", \"start_seconds\": 64, \"end_seconds\": 78, \"text\": \"Perfect. I'll also check if the early booking offer can be extended. Thank you Keya.\"}]", + "confidence": 0.881, + "created_at": "2025-12-28T11:07:55.884032" + } + ], + "messages": [ + { + "message_id": "79a924f8-e876-4401-bf5d-63d85e8a0ddb", + "interaction_id": "121c1a55-cb7e-48e5-9212-e8cfaef60378", + "person_id": "bbcac2d6-131a-4a5c-be34-d3ecb31e8df0", + "sender_role": "agent", + "message_text": "Hi Keya, just checking in. Has the loan pre-approval come through? Happy to connect you with our banking partner.", + "delivered_at": "2026-01-01T09:07:55.883961", + "channel": "whatsapp", + "read_at": "2026-01-01T10:24:55.883961" + }, + { + "message_id": "cea9305f-53cb-4716-8021-cf00a3ac058e", + "interaction_id": "121c1a55-cb7e-48e5-9212-e8cfaef60378", + "person_id": "bbcac2d6-131a-4a5c-be34-d3ecb31e8df0", + "sender_role": "client", + "message_text": "I saw another project in Rajarhat. How does DTC Good Earth compare?", + "delivered_at": "2026-01-02T11:07:55.883961", + "channel": "whatsapp", + "read_at": null + }, + { + "message_id": "9ebb2734-5f64-44b3-b640-20f6f6a80d75", + "interaction_id": "121c1a55-cb7e-48e5-9212-e8cfaef60378", + "person_id": "bbcac2d6-131a-4a5c-be34-d3ecb31e8df0", + "sender_role": "agent", + "message_text": "Good evening Keya! Sharing the updated price list for DTC Good Earth. Some great units still available.", + "delivered_at": "2026-01-03T05:07:55.883961", + "channel": "whatsapp", + "read_at": "2026-01-03T06:10:55.883961" + } + ], + "emails": [ + { + "email_id": "87ac78bb-d012-41a5-8957-64ef3ec25631", + "interaction_id": "bd1efcd9-55fe-47ad-93a5-07b9eacb51e2", + "person_id": "bbcac2d6-131a-4a5c-be34-d3ecb31e8df0", + "subject": "Site Visit Confirmation - DTC Good Earth", + "body": "Dear Keya,\n\nThank you for your interest in DTC Good Earth. As discussed, please find the brochure and floor plans attached.\n\nWe would be happy to arrange a site visit at your convenience.\n\nBest regards,\nVelocity Real Estate Team", + "sender_role": "agent", + "sent_at": "2025-12-28T11:07:55.884121", + "opened_at": "2025-11-26T11:07:55.884122", + "replied_at": null + } + ], + "visits": [ + { + "visit_id": "ef0bc73f-5d2e-4ccc-b487-99c325c3a5df", + "person_id": "bbcac2d6-131a-4a5c-be34-d3ecb31e8df0", + "lead_id": "65a39905-e548-4765-9618-a6cf4f482a0c", + "project_name": "DTC Good Earth", + "visited_at": "2026-03-13T11:07:55.883923", + "visit_notes": "First visit. Very impressed with the view.", + "host_user_id": "user_1", + "revisit_intent": "maybe", + "household_id": "a21b502a-ba2b-46cd-8c8c-ec380a483f0f" + } + ], + "reminders": [ + { + "reminder_id": "15ea098d-1749-4421-96b2-0a2e23aabc60", + "person_id": "bbcac2d6-131a-4a5c-be34-d3ecb31e8df0", + "lead_id": "65a39905-e548-4765-9618-a6cf4f482a0c", + "reminder_text": "Re-engage after 2 weeks silence", + "due_at": "2026-05-18T11:07:55.884125", + "completed": false, + "completed_at": null, + "assigned_user_id": "user_1", + "created_at": "2026-02-08T11:07:55.884135" + } + ], + "qd_scores": [ + { + "qd_id": "43605b44-0c8d-4b25-b5c2-17b90de9845d", + "person_id": "bbcac2d6-131a-4a5c-be34-d3ecb31e8df0", + "score_type": "intent_score", + "current_value": 0.934, + "computed_at": "2026-03-12T11:07:55.884147", + "evidence_refs_json": "[\"964b0b6a-9ca6-4ec8-af60-3d1e6c66d443\", \"9658d83e-2116-4bc2-9d80-7f7f9b1c68cf\", \"6b90b689-d384-469f-a509-ffa3443a683f\"]" + }, + { + "qd_id": "a0ecfd2a-56d9-4f3f-b60d-28115285d7c2", + "person_id": "bbcac2d6-131a-4a5c-be34-d3ecb31e8df0", + "score_type": "urgency_score", + "current_value": 0.799, + "computed_at": "2026-04-17T11:07:55.884310", + "evidence_refs_json": "[\"0b329da5-8eb7-43eb-a636-9f4516f4b484\", \"6bd4fdbe-2da6-4e2a-be96-b5b64928c697\", \"911c9646-e590-4c45-a072-bbd75b20b77f\", \"dd317784-f588-47f3-af6c-012988dd1481\", \"2b377d5e-156f-4997-a9f8-09c155ea219d\"]" + }, + { + "qd_id": "a0cb0dd5-dd26-49f9-809f-ae5c5fa8a7b9", + "person_id": "bbcac2d6-131a-4a5c-be34-d3ecb31e8df0", + "score_type": "engagement_score", + "current_value": 0.866, + "computed_at": "2026-03-02T11:07:55.884453", + "evidence_refs_json": "[\"55ca8b71-1737-490f-9b6c-060c52bf8eee\", \"5ddb1238-a5c5-44c0-a9cf-6651d00f523c\", \"e001773f-31ab-4fbb-962e-94deb6ddaec9\", \"8b377cf9-b5bf-4027-8d88-ba4278dc582f\", \"145c6ae4-cd84-4277-833c-4623a0f99165\"]" + } + ], + "qd_timeseries": [ + { + "timeseries_id": "20633a46-a782-4fee-adc5-e8b9bf6e5d4f", + "person_id": "bbcac2d6-131a-4a5c-be34-d3ecb31e8df0", + "signal_source": "whatsapp", + "timestamp": "2025-11-16T11:07:55.884171", + "value": 0.879, + "score_type": "intent_score", + "evidence_ref": "0c35334d-77cd-4684-87c1-4460f7d5988d" + }, + { + "timeseries_id": "6b541ff3-7657-4f97-909f-0fbe1a6540cb", + "person_id": "bbcac2d6-131a-4a5c-be34-d3ecb31e8df0", + "signal_source": "email", + "timestamp": "2025-11-29T11:07:55.884171", + "value": 0.849, + "score_type": "intent_score", + "evidence_ref": "ae6206dc-0ce8-4203-afab-790b89edb57f" + }, + { + "timeseries_id": "57808240-808b-4566-84c5-70627e5d52a6", + "person_id": "bbcac2d6-131a-4a5c-be34-d3ecb31e8df0", + "signal_source": "email", + "timestamp": "2025-12-09T11:07:55.884171", + "value": 0.88, + "score_type": "intent_score", + "evidence_ref": "0c7c07d0-9b20-4418-b28e-6e974fd1bae2" + }, + { + "timeseries_id": "9962991b-b00c-4342-a2f7-617075d6afdd", + "person_id": "bbcac2d6-131a-4a5c-be34-d3ecb31e8df0", + "signal_source": "email", + "timestamp": "2025-12-23T11:07:55.884171", + "value": 1.0, + "score_type": "intent_score", + "evidence_ref": "42c502a8-d04f-4d50-a71f-42062ed4cb8a" + }, + { + "timeseries_id": "e91a74fe-d1fa-46c9-b626-d8a7feca972a", + "person_id": "bbcac2d6-131a-4a5c-be34-d3ecb31e8df0", + "signal_source": "site_visit", + "timestamp": "2026-01-08T11:07:55.884171", + "value": 1.0, + "score_type": "intent_score", + "evidence_ref": "63569d06-1f84-41c1-a89e-fafe400e8942" + }, + { + "timeseries_id": "15fd03ff-0813-408e-861a-e036eef1dafc", + "person_id": "bbcac2d6-131a-4a5c-be34-d3ecb31e8df0", + "signal_source": "whatsapp", + "timestamp": "2026-01-28T11:07:55.884171", + "value": 0.924, + "score_type": "intent_score", + "evidence_ref": "28ed88e9-e799-4f06-b1a2-1a315b2e5b18" + }, + { + "timeseries_id": "d5ce8940-4fdd-4990-a773-a1039abe1c14", + "person_id": "bbcac2d6-131a-4a5c-be34-d3ecb31e8df0", + "signal_source": "site_visit", + "timestamp": "2025-12-15T11:07:55.884349", + "value": 0.785, + "score_type": "urgency_score", + "evidence_ref": "bb4011b1-084f-4d9d-a466-ddb044897061" + }, + { + "timeseries_id": "8baee7cb-beec-490d-95ab-686451384e7b", + "person_id": "bbcac2d6-131a-4a5c-be34-d3ecb31e8df0", + "signal_source": "whatsapp", + "timestamp": "2026-01-02T11:07:55.884349", + "value": 0.751, + "score_type": "urgency_score", + "evidence_ref": "f7c52ddc-d4e3-4646-9944-c93dc4350cb1" + }, + { + "timeseries_id": "eb03196e-5597-4cb5-9c60-e1c3a39fb26b", + "person_id": "bbcac2d6-131a-4a5c-be34-d3ecb31e8df0", + "signal_source": "email", + "timestamp": "2026-01-13T11:07:55.884349", + "value": 0.754, + "score_type": "urgency_score", + "evidence_ref": "e6ac611f-e34e-4809-a09b-68e8d4fdb5d2" + }, + { + "timeseries_id": "41137596-046a-4dca-b2b2-4cc47e9d874e", + "person_id": "bbcac2d6-131a-4a5c-be34-d3ecb31e8df0", + "signal_source": "site_visit", + "timestamp": "2026-01-30T11:07:55.884349", + "value": 0.749, + "score_type": "urgency_score", + "evidence_ref": "434ca4da-27a8-4975-9222-1065ed01f4ba" + }, + { + "timeseries_id": "ff87b13a-8137-4b51-8b7a-f8d3417a4981", + "person_id": "bbcac2d6-131a-4a5c-be34-d3ecb31e8df0", + "signal_source": "whatsapp", + "timestamp": "2026-02-19T11:07:55.884349", + "value": 0.757, + "score_type": "urgency_score", + "evidence_ref": "0b85b065-846f-43a1-8ac8-6fd6a0bea80a" + }, + { + "timeseries_id": "5daae5a6-e405-4f78-a95d-8e13bff676c7", + "person_id": "bbcac2d6-131a-4a5c-be34-d3ecb31e8df0", + "signal_source": "email", + "timestamp": "2026-03-04T11:07:55.884349", + "value": 0.767, + "score_type": "urgency_score", + "evidence_ref": "adc8f154-3987-4922-bebb-39899ff886e7" + }, + { + "timeseries_id": "05dd621d-4924-4675-b307-d462201771dd", + "person_id": "bbcac2d6-131a-4a5c-be34-d3ecb31e8df0", + "signal_source": "whatsapp", + "timestamp": "2026-03-15T11:07:55.884349", + "value": 0.843, + "score_type": "urgency_score", + "evidence_ref": "7e174fbd-4876-458e-af4f-99f0e891686d" + }, + { + "timeseries_id": "eff6c198-752c-4112-874c-54cbf3ae939e", + "person_id": "bbcac2d6-131a-4a5c-be34-d3ecb31e8df0", + "signal_source": "site_visit", + "timestamp": "2025-11-08T11:07:55.884485", + "value": 0.946, + "score_type": "engagement_score", + "evidence_ref": "9debdc4a-f98f-4269-9414-6b26e912ee89" + }, + { + "timeseries_id": "d77e24c3-4981-411d-9b80-2600a4eb91b6", + "person_id": "bbcac2d6-131a-4a5c-be34-d3ecb31e8df0", + "signal_source": "email", + "timestamp": "2025-11-15T11:07:55.884485", + "value": 0.908, + "score_type": "engagement_score", + "evidence_ref": "bbd1371f-aeca-4729-9525-d5240503817e" + }, + { + "timeseries_id": "0d8f4df3-29d7-44a7-b52b-4883a5303289", + "person_id": "bbcac2d6-131a-4a5c-be34-d3ecb31e8df0", + "signal_source": "site_visit", + "timestamp": "2025-11-24T11:07:55.884485", + "value": 0.804, + "score_type": "engagement_score", + "evidence_ref": "11764638-a660-4aa8-a371-cd5b3d374ef8" + }, + { + "timeseries_id": "f8cc8bf1-2070-4f5f-941d-e2ea85e73cae", + "person_id": "bbcac2d6-131a-4a5c-be34-d3ecb31e8df0", + "signal_source": "email", + "timestamp": "2025-12-03T11:07:55.884485", + "value": 0.935, + "score_type": "engagement_score", + "evidence_ref": "ff98cd2f-1d99-4ab7-b154-29dde7e666c8" + } + ], + "intel_events": [ + { + "event_id": "4199760e-339d-485f-a684-50329ac71205", + "event_type": "perception_session", + "person_id": "bbcac2d6-131a-4a5c-be34-d3ecb31e8df0", + "project_ref": "DTC Good Earth", + "session_at": "2026-03-18T11:07:55.884552", + "rooms_visited": "[\"terrace\", \"amenity_deck\", \"model_flat_3bhk\"]", + "dwell_time_seconds": 330, + "engagement_score": 0.887, + "cctv_ref": "cctv_4454e049", + "notes": "Perception session recorded during scheduled site visit" + } + ], + "client360": { + "client_ref": "bbcac2d6-131a-4a5c-be34-d3ecb31e8df0", + "snapshot_generated_at": "2026-04-18T11:07:55.884574", + "identity": { + "full_name": "Keya Bagchi", + "primary_email": "keya.bagchi383@hotmail.com", + "primary_phone": "+91 8971380304", + "persona_labels": "[\"investment_focus\", \"nri_diaspora\"]", + "buyer_type": "high_intent" + }, + "account_links": [ + "e890a796-925a-4c14-af19-67fc6360449a" + ], + "active_opportunities": [ + { + "opportunity_id": "4af9bf27-6dd4-4535-a1bf-f54139b031e9", + "project": "DTC Good Earth", + "stage": "qualified", + "value": 5235363 + } + ], + "recent_interactions": [ + { + "interaction_id": "bd1efcd9-55fe-47ad-93a5-07b9eacb51e2", + "channel": "email", + "happened_at": "2026-03-22T11:07:55.884101" + }, + { + "interaction_id": "23affc47-3286-4c28-83a3-139c9307ba67", + "channel": "digital_ad", + "happened_at": "2026-01-19T11:07:55.883933" + }, + { + "interaction_id": "3a071039-b9ae-4d97-8ecc-ffe3b7fcea44", + "channel": "call", + "happened_at": "2026-01-16T11:07:55.884006" + }, + { + "interaction_id": "121c1a55-cb7e-48e5-9212-e8cfaef60378", + "channel": "whatsapp", + "happened_at": "2025-12-27T11:07:55.883951" + }, + { + "interaction_id": "ebd433ad-e031-42d2-9678-63dc34c6148b", + "channel": "digital_ad", + "happened_at": "2025-11-30T11:07:55.883887" + } + ], + "property_interests": [ + { + "project": "DTC Good Earth", + "config": "2BHK", + "budget_max": 8742740 + }, + { + "project": "Ambuja Utpaala", + "config": "3BHK", + "budget_max": 11109896 + } + ], + "tasks": [ + "Re-engage after 2 weeks silence" + ], + "qd_overview": { + "intent_score": 0.934, + "urgency_score": 0.799, + "engagement_score": 0.866 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Book site visit", + "Share payment plan" + ], + "lead_stage": "qualified", + "lead_status": "active" + } + }, + { + "person": { + "person_id": "fd0b72d4-c589-4874-a16d-d85f81c51ef7", + "full_name": "Mahesh Lahiri", + "primary_email": "mahesh.lahiri171@rediffmail.com", + "primary_phone": "+91 9631431563", + "secondary_phone": null, + "linkedin_url": "https://linkedin.com/in/mahesh-lahiri-793", + "occupation": "Retired IPS", + "employer": "Britannia Industries", + "account_id": "c64b5253-b5fb-4f37-b1aa-bd549cb7175f", + "location_city": "Garia", + "location_country": "India", + "buyer_type": "high_intent", + "persona_labels": "[\"emotional_buyer\", \"cash_rich_investor\", \"status_buyer\"]", + "is_nri": false, + "source_confidence": 0.85, + "created_at": "2025-07-28T11:07:55.884603", + "updated_at": "2025-12-28T11:07:55.884605" + }, + "lead": { + "lead_id": "e2e3004d-cac6-4d59-bafd-71dbbdb2d3e4", + "person_id": "fd0b72d4-c589-4874-a16d-d85f81c51ef7", + "account_id": "c64b5253-b5fb-4f37-b1aa-bd549cb7175f", + "source_system": "website", + "status": "active", + "stage": "qualified", + "budget_band": "₹205L - ₹226L", + "urgency": "flexible", + "assigned_user_id": "user_1", + "primary_project": "Siddha Suburbia Bungalow", + "objection": null, + "motivation": "NRI returning to India", + "financing_posture": "nri_remittance", + "created_at": "2025-06-25T11:07:55.884646", + "updated_at": "2026-03-27T11:07:55.884648" + }, + "opportunities": [ + { + "opportunity_id": "5e39b9a9-62b1-4477-9f67-7615179ccad0", + "lead_id": "e2e3004d-cac6-4d59-bafd-71dbbdb2d3e4", + "person_id": "fd0b72d4-c589-4874-a16d-d85f81c51ef7", + "project_name": "Siddha Suburbia Bungalow", + "unit_config": "4BHK", + "stage": "qualified", + "value": 20567725, + "probability": 20, + "expected_close_date": "2026-09-28T11:07:55.884685", + "next_action": "Confirm booking slot", + "created_at": "2025-11-20T11:07:55.884687", + "updated_at": "2026-03-18T11:07:55.884688" + } + ], + "property_interests": [ + { + "interest_id": "b7d76785-31c5-4a15-95c9-e29b2f375daa", + "person_id": "fd0b72d4-c589-4874-a16d-d85f81c51ef7", + "project_name": "Siddha Suburbia Bungalow", + "configuration": "4BHK", + "budget_min": 17531030, + "budget_max": 21426815, + "urgency": "within_6_months", + "facing_preference": "south", + "floor_preference": "any", + "notes": "Healthcare access", + "created_at": "2025-08-25T11:07:55.884629" + } + ], + "interactions": [ + { + "interaction_id": "329acbb7-a3fe-4e6b-a243-29e2fb8c2f31", + "person_id": "fd0b72d4-c589-4874-a16d-d85f81c51ef7", + "lead_id": "e2e3004d-cac6-4d59-bafd-71dbbdb2d3e4", + "channel": "site_visit", + "interaction_type": "site_visit", + "happened_at": "2025-10-15T11:07:55.884698", + "summary": "Site Visit interaction regarding Siddha Suburbia Bungalow", + "source_ref": "5f3f4a5a-78ed-4efd-9812-c4dab222d801", + "created_at": "2025-10-21T11:07:55.884706" + }, + { + "interaction_id": "37b0040f-d562-47f7-8970-f5e603522e11", + "person_id": "fd0b72d4-c589-4874-a16d-d85f81c51ef7", + "lead_id": "e2e3004d-cac6-4d59-bafd-71dbbdb2d3e4", + "channel": "whatsapp", + "interaction_type": "whatsapp", + "happened_at": "2025-10-18T11:07:55.884723", + "summary": "Whatsapp interaction regarding Siddha Suburbia Bungalow", + "source_ref": "ece5a0d2-7a9b-43c1-80e7-2e77d99f91ef", + "created_at": "2026-03-19T11:07:55.884731" + }, + { + "interaction_id": "63060379-5107-4e99-ba49-4dce7f07245c", + "person_id": "fd0b72d4-c589-4874-a16d-d85f81c51ef7", + "lead_id": "e2e3004d-cac6-4d59-bafd-71dbbdb2d3e4", + "channel": "digital_ad", + "interaction_type": "digital_ad", + "happened_at": "2025-11-11T11:07:55.884792", + "summary": "Digital Ad interaction regarding Siddha Suburbia Bungalow", + "source_ref": "d65fc286-0fac-42cb-a881-3a0ad09579ee", + "created_at": "2026-02-26T11:07:55.884803" + } + ], + "calls": [], + "transcripts": [], + "messages": [ + { + "message_id": "6b6c992d-76a5-48ce-8826-5a84170cb6d7", + "interaction_id": "37b0040f-d562-47f7-8970-f5e603522e11", + "person_id": "fd0b72d4-c589-4874-a16d-d85f81c51ef7", + "sender_role": "agent", + "message_text": "Hi Mahesh, just sending over the brochure for Siddha Suburbia Bungalow as promised. Let me know if you have any questions!", + "delivered_at": "2026-04-17T05:07:55.884733", + "channel": "whatsapp", + "read_at": "2026-04-17T05:29:55.884733" + }, + { + "message_id": "fab12bb7-ba00-4603-90f4-460e85f4c4df", + "interaction_id": "37b0040f-d562-47f7-8970-f5e603522e11", + "person_id": "fd0b72d4-c589-4874-a16d-d85f81c51ef7", + "sender_role": "client", + "message_text": "My wife liked the project. We are deciding this week.", + "delivered_at": "2026-04-19T05:07:55.884733", + "channel": "whatsapp", + "read_at": "2026-04-19T06:18:55.884733" + }, + { + "message_id": "1db9be6c-01bf-4790-87a6-3f2a8c94eec1", + "interaction_id": "37b0040f-d562-47f7-8970-f5e603522e11", + "person_id": "fd0b72d4-c589-4874-a16d-d85f81c51ef7", + "sender_role": "agent", + "message_text": "Hi Mahesh, we have a limited early booking offer expiring this Friday. Would love to share the details.", + "delivered_at": "2026-04-19T16:07:55.884733", + "channel": "whatsapp", + "read_at": "2026-04-19T17:07:55.884733" + }, + { + "message_id": "32cedb47-e72e-4e65-b240-7b935df16980", + "interaction_id": "37b0040f-d562-47f7-8970-f5e603522e11", + "person_id": "fd0b72d4-c589-4874-a16d-d85f81c51ef7", + "sender_role": "client", + "message_text": "Please share the legal documents for review.", + "delivered_at": "2026-04-20T07:07:55.884733", + "channel": "whatsapp", + "read_at": "2026-04-20T07:31:55.884733" + }, + { + "message_id": "8983caf4-67f7-4c75-a533-e8d53c2a5b5a", + "interaction_id": "37b0040f-d562-47f7-8970-f5e603522e11", + "person_id": "fd0b72d4-c589-4874-a16d-d85f81c51ef7", + "sender_role": "agent", + "message_text": "Hi Mahesh, reminder about tomorrow's meeting at our Siddha Suburbia Bungalow sample flat at 11am.", + "delivered_at": "2026-04-22T00:07:55.884733", + "channel": "whatsapp", + "read_at": "2026-04-22T00:11:55.884733" + } + ], + "emails": [], + "visits": [ + { + "visit_id": "d215549b-c735-4190-b642-efddf960024a", + "person_id": "fd0b72d4-c589-4874-a16d-d85f81c51ef7", + "lead_id": "e2e3004d-cac6-4d59-bafd-71dbbdb2d3e4", + "project_name": "Siddha Suburbia Bungalow", + "visited_at": "2025-12-23T11:07:55.884714", + "visit_notes": "Second visit. More focused on parking and amenities.", + "host_user_id": "user_1", + "revisit_intent": "no", + "household_id": null + } + ], + "reminders": [ + { + "reminder_id": "157f512a-4760-458f-8718-2efec43bd006", + "person_id": "fd0b72d4-c589-4874-a16d-d85f81c51ef7", + "lead_id": "e2e3004d-cac6-4d59-bafd-71dbbdb2d3e4", + "reminder_text": "Follow up after site visit", + "due_at": "2026-04-30T11:07:55.884806", + "completed": true, + "completed_at": "2026-03-26T11:07:55.884814", + "assigned_user_id": "user_2", + "created_at": "2026-03-05T11:07:55.884816" + }, + { + "reminder_id": "5b4ac2a3-2221-4b43-9b12-09fa5c728c76", + "person_id": "fd0b72d4-c589-4874-a16d-d85f81c51ef7", + "lead_id": "e2e3004d-cac6-4d59-bafd-71dbbdb2d3e4", + "reminder_text": "Share updated price list", + "due_at": "2026-05-10T11:07:55.884817", + "completed": true, + "completed_at": "2026-03-30T11:07:55.884825", + "assigned_user_id": "user_1", + "created_at": "2026-01-26T11:07:55.884827" + }, + { + "reminder_id": "863af7ac-9c08-43fb-bee4-a87c90f72499", + "person_id": "fd0b72d4-c589-4874-a16d-d85f81c51ef7", + "lead_id": "e2e3004d-cac6-4d59-bafd-71dbbdb2d3e4", + "reminder_text": "Confirm booking appointment", + "due_at": "2026-04-21T11:07:55.884828", + "completed": true, + "completed_at": "2026-04-07T11:07:55.884836", + "assigned_user_id": "user_2", + "created_at": "2026-02-17T11:07:55.884837" + }, + { + "reminder_id": "85514249-5366-485d-a838-917565b1fc42", + "person_id": "fd0b72d4-c589-4874-a16d-d85f81c51ef7", + "lead_id": "e2e3004d-cac6-4d59-bafd-71dbbdb2d3e4", + "reminder_text": "Nudge for final decision", + "due_at": "2026-05-15T11:07:55.884839", + "completed": false, + "completed_at": null, + "assigned_user_id": "user_5", + "created_at": "2026-02-06T11:07:55.884847" + } + ], + "qd_scores": [ + { + "qd_id": "fdc0cfda-5a7f-4299-8775-9f4d783aafa1", + "person_id": "fd0b72d4-c589-4874-a16d-d85f81c51ef7", + "score_type": "intent_score", + "current_value": 0.84, + "computed_at": "2026-02-18T11:07:55.884859", + "evidence_refs_json": "[\"10a27e57-41a0-490d-a7a5-8e308949c9ef\", \"7d292744-5197-489b-8711-7bacf5426993\"]" + }, + { + "qd_id": "3c4feb3f-a42f-4fc0-9b4b-b1c42b75c724", + "person_id": "fd0b72d4-c589-4874-a16d-d85f81c51ef7", + "score_type": "urgency_score", + "current_value": 0.79, + "computed_at": "2026-03-14T11:07:55.884953", + "evidence_refs_json": "[\"c26e09ac-9729-426f-ba51-7f0440ebb3a8\", \"bdd5d5e1-9458-4f6c-b886-263a4cfa68f8\", \"3a93bd3a-9a2f-48ff-a2b7-9dc51735b77b\"]" + }, + { + "qd_id": "35245d30-d5e5-48ff-9163-d81657595518", + "person_id": "fd0b72d4-c589-4874-a16d-d85f81c51ef7", + "score_type": "engagement_score", + "current_value": 0.793, + "computed_at": "2026-03-17T11:07:55.885047", + "evidence_refs_json": "[\"92729cfc-3432-408d-8651-b9d50761f5d3\", \"40874ee0-99c5-4d0a-b485-22d29ffd4654\", \"d094bf88-0e54-43e4-95b4-fd3256ed82ff\", \"56d51a4e-4101-4204-b667-4a33bbb001cc\", \"8e0708d4-8575-4f32-98f1-3be51b9f0f04\"]" + } + ], + "qd_timeseries": [ + { + "timeseries_id": "36017568-02b9-405e-a7c5-7e3148cd02b7", + "person_id": "fd0b72d4-c589-4874-a16d-d85f81c51ef7", + "signal_source": "call", + "timestamp": "2025-11-21T11:07:55.884887", + "value": 0.777, + "score_type": "intent_score", + "evidence_ref": "3130588f-e155-47a7-8658-0855d264c942" + }, + { + "timeseries_id": "06fe93bd-f81c-48c7-8801-403466ec39ea", + "person_id": "fd0b72d4-c589-4874-a16d-d85f81c51ef7", + "signal_source": "whatsapp", + "timestamp": "2025-11-29T11:07:55.884887", + "value": 0.81, + "score_type": "intent_score", + "evidence_ref": "b3445334-d913-4b97-affd-c477b93f347d" + }, + { + "timeseries_id": "7c8db806-c61c-4f42-a32b-c0df3e438343", + "person_id": "fd0b72d4-c589-4874-a16d-d85f81c51ef7", + "signal_source": "email", + "timestamp": "2025-12-08T11:07:55.884887", + "value": 0.82, + "score_type": "intent_score", + "evidence_ref": "409c541e-fe9c-4fe5-ad52-bcda6a6c2152" + }, + { + "timeseries_id": "856488c4-4d08-407b-9e51-ee05305116e9", + "person_id": "fd0b72d4-c589-4874-a16d-d85f81c51ef7", + "signal_source": "email", + "timestamp": "2025-12-17T11:07:55.884887", + "value": 0.822, + "score_type": "intent_score", + "evidence_ref": "bace664c-d562-4a26-942a-4e820093d591" + }, + { + "timeseries_id": "d754081b-701a-4537-b40a-eb2a6baf18aa", + "person_id": "fd0b72d4-c589-4874-a16d-d85f81c51ef7", + "signal_source": "site_visit", + "timestamp": "2025-12-04T11:07:55.884977", + "value": 0.704, + "score_type": "urgency_score", + "evidence_ref": "52d5d351-69b7-4739-82c0-923671850b9e" + }, + { + "timeseries_id": "7adf459e-6da1-4f14-b024-406a4016526e", + "person_id": "fd0b72d4-c589-4874-a16d-d85f81c51ef7", + "signal_source": "email", + "timestamp": "2025-12-19T11:07:55.884977", + "value": 0.819, + "score_type": "urgency_score", + "evidence_ref": "929e5cb9-921d-4cbc-871e-099281d92245" + }, + { + "timeseries_id": "993a9c6c-a5a3-45bb-a73b-2fa4d7c94463", + "person_id": "fd0b72d4-c589-4874-a16d-d85f81c51ef7", + "signal_source": "call", + "timestamp": "2026-01-04T11:07:55.884977", + "value": 0.786, + "score_type": "urgency_score", + "evidence_ref": "bc2156c0-d386-4a98-ab51-1412eae0bc15" + }, + { + "timeseries_id": "5754234f-a13a-4d47-8513-97a9cae77e99", + "person_id": "fd0b72d4-c589-4874-a16d-d85f81c51ef7", + "signal_source": "email", + "timestamp": "2026-01-15T11:07:55.884977", + "value": 0.901, + "score_type": "urgency_score", + "evidence_ref": "faa74980-ed36-4b55-bc88-e2b074b2600d" + }, + { + "timeseries_id": "199c53c7-18dd-41ed-aca6-2fc3335c4fba", + "person_id": "fd0b72d4-c589-4874-a16d-d85f81c51ef7", + "signal_source": "email", + "timestamp": "2025-11-24T11:07:55.885079", + "value": 0.79, + "score_type": "engagement_score", + "evidence_ref": "a8ea50a8-2581-45dc-aa8f-0ae734ab5bfc" + }, + { + "timeseries_id": "56f138cc-1c6b-41a9-a73c-bd637e7fca6f", + "person_id": "fd0b72d4-c589-4874-a16d-d85f81c51ef7", + "signal_source": "call", + "timestamp": "2025-12-01T11:07:55.885079", + "value": 0.864, + "score_type": "engagement_score", + "evidence_ref": "a446e951-0d6a-4ed5-a110-c72cdf20cc31" + }, + { + "timeseries_id": "9882dd7c-d7c0-4cfd-8ab0-7e6e0f095bbf", + "person_id": "fd0b72d4-c589-4874-a16d-d85f81c51ef7", + "signal_source": "site_visit", + "timestamp": "2025-12-13T11:07:55.885079", + "value": 0.681, + "score_type": "engagement_score", + "evidence_ref": "16118aef-aa94-44f6-9ae9-8c0d8837061e" + }, + { + "timeseries_id": "2c08fd97-d7c0-4f59-ba54-d36646b3d2f5", + "person_id": "fd0b72d4-c589-4874-a16d-d85f81c51ef7", + "signal_source": "site_visit", + "timestamp": "2025-12-25T11:07:55.885079", + "value": 0.713, + "score_type": "engagement_score", + "evidence_ref": "4cb84a1b-d9a5-461f-ace3-6a7cb16958e7" + }, + { + "timeseries_id": "166c4f2d-c461-492b-9b5d-006a9095fde5", + "person_id": "fd0b72d4-c589-4874-a16d-d85f81c51ef7", + "signal_source": "email", + "timestamp": "2026-01-13T11:07:55.885079", + "value": 0.805, + "score_type": "engagement_score", + "evidence_ref": "ed3999eb-ebcb-4e55-825d-5e1077b5dabd" + }, + { + "timeseries_id": "d9e766b5-8479-4872-94f2-082e89967df6", + "person_id": "fd0b72d4-c589-4874-a16d-d85f81c51ef7", + "signal_source": "call", + "timestamp": "2026-01-21T11:07:55.885079", + "value": 0.737, + "score_type": "engagement_score", + "evidence_ref": "cac9e65d-2104-420e-9e56-d65bb019f742" + } + ], + "intel_events": [ + { + "event_id": "65af8ca0-3d28-4d5d-b1b5-e2fa5c3f037f", + "event_type": "perception_session", + "person_id": "fd0b72d4-c589-4874-a16d-d85f81c51ef7", + "project_ref": "Siddha Suburbia Bungalow", + "session_at": "2026-03-14T11:07:55.885178", + "rooms_visited": "[\"terrace\"]", + "dwell_time_seconds": 1075, + "engagement_score": 0.985, + "cctv_ref": "cctv_8a4c884f", + "notes": "Perception session recorded during scheduled site visit" + } + ], + "client360": { + "client_ref": "fd0b72d4-c589-4874-a16d-d85f81c51ef7", + "snapshot_generated_at": "2026-04-18T11:07:55.885213", + "identity": { + "full_name": "Mahesh Lahiri", + "primary_email": "mahesh.lahiri171@rediffmail.com", + "primary_phone": "+91 9631431563", + "persona_labels": "[\"emotional_buyer\", \"cash_rich_investor\", \"status_buyer\"]", + "buyer_type": "high_intent" + }, + "account_links": [ + "c64b5253-b5fb-4f37-b1aa-bd549cb7175f" + ], + "active_opportunities": [ + { + "opportunity_id": "5e39b9a9-62b1-4477-9f67-7615179ccad0", + "project": "Siddha Suburbia Bungalow", + "stage": "qualified", + "value": 20567725 + } + ], + "recent_interactions": [ + { + "interaction_id": "63060379-5107-4e99-ba49-4dce7f07245c", + "channel": "digital_ad", + "happened_at": "2025-11-11T11:07:55.884792" + }, + { + "interaction_id": "37b0040f-d562-47f7-8970-f5e603522e11", + "channel": "whatsapp", + "happened_at": "2025-10-18T11:07:55.884723" + }, + { + "interaction_id": "329acbb7-a3fe-4e6b-a243-29e2fb8c2f31", + "channel": "site_visit", + "happened_at": "2025-10-15T11:07:55.884698" + } + ], + "property_interests": [ + { + "project": "Siddha Suburbia Bungalow", + "config": "4BHK", + "budget_max": 21426815 + } + ], + "tasks": [ + "Nudge for final decision" + ], + "qd_overview": { + "intent_score": 0.84, + "urgency_score": 0.79, + "engagement_score": 0.793 + }, + "risk_flags": [], + "recommended_next_actions": [ + "Book site visit", + "Share payment plan" + ], + "lead_stage": "qualified", + "lead_status": "active" + } + }, + { + "person": { + "person_id": "405d9dbb-49c2-4379-8b55-4c8a59597cbc", + "full_name": "Namrata Modi", + "primary_email": "namrata.modi357@gmail.com", + "primary_phone": "+91 8885790857", + "secondary_phone": "+91 7504169141", + "linkedin_url": "https://linkedin.com/in/namrata-modi-342", + "occupation": "Architect", + "employer": "JK Lakshmi Cement", + "account_id": "167e5af1-66b1-41c0-9a9d-42aa9b77a3a7", + "location_city": "Howrah", + "location_country": "India", + "buyer_type": "slow_burn_investor", + "persona_labels": "[\"analytical_buyer\", \"upgrade_seeker\"]", + "is_nri": false, + "source_confidence": 0.953, + "created_at": "2025-05-23T11:07:55.885251", + "updated_at": "2025-10-23T11:07:55.885254" + }, + "lead": { + "lead_id": "255433cb-663a-47ee-a382-fca36b66fd83", + "person_id": "405d9dbb-49c2-4379-8b55-4c8a59597cbc", + "account_id": "167e5af1-66b1-41c0-9a9d-42aa9b77a3a7", + "source_system": "walk_in", + "status": "active", + "stage": "booked", + "budget_band": "₹121L - ₹133L", + "urgency": "within_3_months", + "assigned_user_id": "user_2", + "primary_project": "Godrej Blue", + "objection": null, + "motivation": "Children's future", + "financing_posture": "cash", + "created_at": "2025-07-21T11:07:55.885318", + "updated_at": "2026-01-25T11:07:55.885320" + }, + "opportunities": [ + { + "opportunity_id": "7234e231-b282-4d9a-8869-9952efa8a060", + "lead_id": "255433cb-663a-47ee-a382-fca36b66fd83", + "person_id": "405d9dbb-49c2-4379-8b55-4c8a59597cbc", + "project_name": "Godrej Blue", + "unit_config": "2BHK", + "stage": "booked", + "value": 12168650, + "probability": 95, + "expected_close_date": "2026-04-02T11:07:55.885392", + "next_action": "Connect with bank", + "created_at": "2026-02-17T11:07:55.885395", + "updated_at": "2026-02-21T11:07:55.885396" + } + ], + "property_interests": [ + { + "interest_id": "c67e121f-dcf4-48ee-8a7e-237ea6bf1e1c", + "person_id": "405d9dbb-49c2-4379-8b55-4c8a59597cbc", + "project_name": "Godrej Blue", + "configuration": "2BHK", + "budget_min": 12225413, + "budget_max": 14942172, + "urgency": "within_3_months", + "facing_preference": "west", + "floor_preference": "low", + "notes": "Healthcare access", + "created_at": "2025-11-20T11:07:55.885278" + }, + { + "interest_id": "9b4948f0-df85-43c9-9eb6-aaabcd152055", + "person_id": "405d9dbb-49c2-4379-8b55-4c8a59597cbc", + "project_name": "DTC Sojon", + "configuration": "3BHK", + "budget_min": 4211060, + "budget_max": 5146851, + "urgency": "investment_only", + "facing_preference": "any", + "floor_preference": "mid", + "notes": "Retirement planning", + "created_at": "2025-08-21T11:07:55.885289" + }, + { + "interest_id": "d8dadc2d-7596-409a-9e03-3bf279d8f884", + "person_id": "405d9dbb-49c2-4379-8b55-4c8a59597cbc", + "project_name": "DTC Good Earth", + "configuration": "3BHK", + "budget_min": 5592195, + "budget_max": 6834906, + "urgency": "investment_only", + "facing_preference": "north", + "floor_preference": "low", + "notes": "Investment portfolio", + "created_at": "2025-08-09T11:07:55.885300" + } + ], + "interactions": [ + { + "interaction_id": "d6ea09ca-1d6b-42e5-a2c4-3c472edca7d4", + "person_id": "405d9dbb-49c2-4379-8b55-4c8a59597cbc", + "lead_id": "255433cb-663a-47ee-a382-fca36b66fd83", + "channel": "whatsapp", + "interaction_type": "whatsapp", + "happened_at": "2025-10-12T11:07:55.885407", + "summary": "Whatsapp interaction regarding Godrej Blue", + "source_ref": "66e33502-9e6f-4b38-9fbc-f306a677493d", + "created_at": "2025-12-21T11:07:55.885415" + }, + { + "interaction_id": "008239e9-1779-43d0-b22d-2ab59b40d82f", + "person_id": "405d9dbb-49c2-4379-8b55-4c8a59597cbc", + "lead_id": "255433cb-663a-47ee-a382-fca36b66fd83", + "channel": "site_visit", + "interaction_type": "site_visit", + "happened_at": "2026-02-25T11:07:55.885512", + "summary": "Site Visit interaction regarding Godrej Blue", + "source_ref": "8dc046ad-04ce-4837-96da-4edd713fb074", + "created_at": "2025-10-23T11:07:55.885520" + }, + { + "interaction_id": "a1914394-b783-4cac-9250-ff9eb5331e4b", + "person_id": "405d9dbb-49c2-4379-8b55-4c8a59597cbc", + "lead_id": "255433cb-663a-47ee-a382-fca36b66fd83", + "channel": "builder_event", + "interaction_type": "builder_event", + "happened_at": "2026-02-06T11:07:55.885537", + "summary": "Builder Event interaction regarding Godrej Blue", + "source_ref": "09059fd4-9f6d-412e-93e5-b6d8ac6e2389", + "created_at": "2026-03-25T11:07:55.885544" + }, + { + "interaction_id": "534c4ba7-4a39-4bf4-b3dc-3b73c8ee7759", + "person_id": "405d9dbb-49c2-4379-8b55-4c8a59597cbc", + "lead_id": "255433cb-663a-47ee-a382-fca36b66fd83", + "channel": "digital_ad", + "interaction_type": "digital_ad", + "happened_at": "2026-01-15T11:07:55.885553", + "summary": "Digital Ad interaction regarding Godrej Blue", + "source_ref": "aa257530-d83a-40ae-84d7-371adc05fc45", + "created_at": "2026-02-12T11:07:55.885560" + }, + { + "interaction_id": "d1b459a7-ccfa-48e8-8310-a4e63f6c84bb", + "person_id": "405d9dbb-49c2-4379-8b55-4c8a59597cbc", + "lead_id": "255433cb-663a-47ee-a382-fca36b66fd83", + "channel": "whatsapp", + "interaction_type": "whatsapp", + "happened_at": "2026-01-12T11:07:55.885568", + "summary": "Whatsapp interaction regarding Godrej Blue", + "source_ref": "d4a72d93-f3f8-4e66-8b57-b93cf2119e04", + "created_at": "2025-10-29T11:07:55.885575" + }, + { + "interaction_id": "472e5eea-fa26-48e5-b7a0-3cf685ef1525", + "person_id": "405d9dbb-49c2-4379-8b55-4c8a59597cbc", + "lead_id": "255433cb-663a-47ee-a382-fca36b66fd83", + "channel": "builder_event", + "interaction_type": "builder_event", + "happened_at": "2026-03-22T11:07:55.885662", + "summary": "Builder Event interaction regarding Godrej Blue", + "source_ref": "0497a545-6776-40e8-9f34-2fa3a3fa0e3b", + "created_at": "2026-03-22T11:07:55.885674" + }, + { + "interaction_id": "5325d4a5-2c85-4a37-ab6c-bba9b4618574", + "person_id": "405d9dbb-49c2-4379-8b55-4c8a59597cbc", + "lead_id": "255433cb-663a-47ee-a382-fca36b66fd83", + "channel": "email", + "interaction_type": "email", + "happened_at": "2026-01-13T11:07:55.885684", + "summary": "Email interaction regarding Godrej Blue", + "source_ref": "03b1a99c-9ebd-4d5b-b227-25e1b832bf19", + "created_at": "2026-01-31T11:07:55.885693" + }, + { + "interaction_id": "f9886124-181a-4048-9d20-e2c6553d41cb", + "person_id": "405d9dbb-49c2-4379-8b55-4c8a59597cbc", + "lead_id": "255433cb-663a-47ee-a382-fca36b66fd83", + "channel": "referral", + "interaction_type": "referral", + "happened_at": "2025-11-24T11:07:55.885717", + "summary": "Referral interaction regarding Godrej Blue", + "source_ref": "45e1ebc1-fd9a-4d34-8f29-351756d76521", + "created_at": "2026-04-15T11:07:55.885725" + } + ], + "calls": [], + "transcripts": [], + "messages": [ + { + "message_id": "a255fc12-83f0-47ec-b381-0540fd96c327", + "interaction_id": "d6ea09ca-1d6b-42e5-a2c4-3c472edca7d4", + "person_id": "405d9dbb-49c2-4379-8b55-4c8a59597cbc", + "sender_role": "agent", + "message_text": "Hi Namrata, we have a limited early booking offer expiring this Friday. Would love to share the details.", + "delivered_at": "2026-01-28T08:07:55.885418", + "channel": "whatsapp", + "read_at": "2026-01-28T09:49:55.885418" + }, + { + "message_id": "786d3fb4-4370-442b-858e-d1d0304ed8cd", + "interaction_id": "d6ea09ca-1d6b-42e5-a2c4-3c472edca7d4", + "person_id": "405d9dbb-49c2-4379-8b55-4c8a59597cbc", + "sender_role": "client", + "message_text": "Please share the legal documents for review.", + "delivered_at": "2026-01-29T19:07:55.885418", + "channel": "whatsapp", + "read_at": "2026-01-29T20:02:55.885418" + }, + { + "message_id": "abfa0b1a-0f0d-4226-9f77-2f76dd42df52", + "interaction_id": "d6ea09ca-1d6b-42e5-a2c4-3c472edca7d4", + "person_id": "405d9dbb-49c2-4379-8b55-4c8a59597cbc", + "sender_role": "agent", + "message_text": "Hello Namrata, the floor plan you requested for Godrej Blue is attached here.", + "delivered_at": "2026-01-30T09:07:55.885418", + "channel": "whatsapp", + "read_at": "2026-01-30T10:54:55.885418" + }, + { + "message_id": "5c4c168a-5f49-4761-b4ef-e9652237ec6e", + "interaction_id": "d6ea09ca-1d6b-42e5-a2c4-3c472edca7d4", + "person_id": "405d9dbb-49c2-4379-8b55-4c8a59597cbc", + "sender_role": "client", + "message_text": "I saw another project in Rajarhat. How does Godrej Blue compare?", + "delivered_at": "2026-01-31T04:07:55.885418", + "channel": "whatsapp", + "read_at": "2026-01-31T04:24:55.885418" + }, + { + "message_id": "0c6264c1-ed29-4f89-97ad-b0ff263d97c9", + "interaction_id": "d6ea09ca-1d6b-42e5-a2c4-3c472edca7d4", + "person_id": "405d9dbb-49c2-4379-8b55-4c8a59597cbc", + "sender_role": "agent", + "message_text": "Good evening Namrata! Sharing the updated price list for Godrej Blue. Some great units still available.", + "delivered_at": "2026-02-01T17:07:55.885418", + "channel": "whatsapp", + "read_at": "2026-02-01T17:51:55.885418" + }, + { + "message_id": "5dccdcca-35ef-4555-997f-24cd71e80a5d", + "interaction_id": "d6ea09ca-1d6b-42e5-a2c4-3c472edca7d4", + "person_id": "405d9dbb-49c2-4379-8b55-4c8a59597cbc", + "sender_role": "client", + "message_text": "Thanks. Will review and come back to you.", + "delivered_at": "2026-02-03T13:07:55.885418", + "channel": "whatsapp", + "read_at": null + }, + { + "message_id": "9b4c8233-31a2-493d-86ee-0230794d3b3b", + "interaction_id": "d6ea09ca-1d6b-42e5-a2c4-3c472edca7d4", + "person_id": "405d9dbb-49c2-4379-8b55-4c8a59597cbc", + "sender_role": "agent", + "message_text": "Good evening Namrata! Sharing the updated price list for Godrej Blue. Some great units still available.", + "delivered_at": "2026-02-05T06:07:55.885418", + "channel": "whatsapp", + "read_at": "2026-02-05T06:10:55.885418" + }, + { + "message_id": "c1d26272-24b0-4377-b532-54a28486a0a8", + "interaction_id": "d6ea09ca-1d6b-42e5-a2c4-3c472edca7d4", + "person_id": "405d9dbb-49c2-4379-8b55-4c8a59597cbc", + "sender_role": "client", + "message_text": "What is the maintenance charge per month?", + "delivered_at": "2026-02-05T14:07:55.885418", + "channel": "whatsapp", + "read_at": "2026-02-05T14:08:55.885418" + }, + { + "message_id": "5f7037ee-d3da-4717-ab16-261b1a08790c", + "interaction_id": "d1b459a7-ccfa-48e8-8310-a4e63f6c84bb", + "person_id": "405d9dbb-49c2-4379-8b55-4c8a59597cbc", + "sender_role": "agent", + "message_text": "Hi Namrata, just sending over the brochure for Godrej Blue as promised. Let me know if you have any questions!", + "delivered_at": "2025-12-23T22:07:55.885577", + "channel": "whatsapp", + "read_at": "2025-12-23T22:47:55.885577" + }, + { + "message_id": "1d4a3ee7-7e6d-4ce9-8601-200c15969dab", + "interaction_id": "d1b459a7-ccfa-48e8-8310-a4e63f6c84bb", + "person_id": "405d9dbb-49c2-4379-8b55-4c8a59597cbc", + "sender_role": "client", + "message_text": "My wife liked the project. We are deciding this week.", + "delivered_at": "2025-12-25T21:07:55.885577", + "channel": "whatsapp", + "read_at": "2025-12-25T21:19:55.885577" + }, + { + "message_id": "8e37a6e4-4bae-4fd4-9be4-2436e4342fa1", + "interaction_id": "d1b459a7-ccfa-48e8-8310-a4e63f6c84bb", + "person_id": "405d9dbb-49c2-4379-8b55-4c8a59597cbc", + "sender_role": "agent", + "message_text": "Hi Namrata, just sending over the brochure for Godrej Blue as promised. Let me know if you have any questions!", + "delivered_at": "2025-12-27T19:07:55.885577", + "channel": "whatsapp", + "read_at": null + }, + { + "message_id": "ce1a4d56-80fa-4c1c-846a-d5ee620125f6", + "interaction_id": "d1b459a7-ccfa-48e8-8310-a4e63f6c84bb", + "person_id": "405d9dbb-49c2-4379-8b55-4c8a59597cbc", + "sender_role": "client", + "message_text": "Can you share more details on the payment plan?", + "delivered_at": "2025-12-29T02:07:55.885577", + "channel": "whatsapp", + "read_at": null + }, + { + "message_id": "49c5b1af-69e0-464e-b0ae-8a6cab11ed56", + "interaction_id": "d1b459a7-ccfa-48e8-8310-a4e63f6c84bb", + "person_id": "405d9dbb-49c2-4379-8b55-4c8a59597cbc", + "sender_role": "agent", + "message_text": "Hi Namrata, just checking in. Has the loan pre-approval come through? Happy to connect you with our banking partner.", + "delivered_at": "2025-12-29T17:07:55.885577", + "channel": "whatsapp", + "read_at": "2025-12-29T17:09:55.885577" + }, + { + "message_id": "3b905131-9fa0-498a-96f7-eace82cd050d", + "interaction_id": "d1b459a7-ccfa-48e8-8310-a4e63f6c84bb", + "person_id": "405d9dbb-49c2-4379-8b55-4c8a59597cbc", + "sender_role": "client", + "message_text": "I saw another project in Rajarhat. How does Godrej Blue compare?", + "delivered_at": "2025-12-29T18:07:55.885577", + "channel": "whatsapp", + "read_at": "2025-12-29T19:58:55.885577" + }, + { + "message_id": "67c9bc16-ef45-4bd1-94cc-f890f4ac7f7c", + "interaction_id": "d1b459a7-ccfa-48e8-8310-a4e63f6c84bb", + "person_id": "405d9dbb-49c2-4379-8b55-4c8a59597cbc", + "sender_role": "agent", + "message_text": "Hi Namrata, reminder about tomorrow's meeting at our Godrej Blue sample flat at 11am.", + "delivered_at": "2025-12-30T22:07:55.885577", + "channel": "whatsapp", + "read_at": null + }, + { + "message_id": "9fc73b54-2084-4e1e-b6ac-162c54c3bf97", + "interaction_id": "d1b459a7-ccfa-48e8-8310-a4e63f6c84bb", + "person_id": "405d9dbb-49c2-4379-8b55-4c8a59597cbc", + "sender_role": "client", + "message_text": "My wife liked the project. We are deciding this week.", + "delivered_at": "2025-12-31T03:07:55.885577", + "channel": "whatsapp", + "read_at": "2025-12-31T04:41:55.885577" + } + ], + "emails": [ + { + "email_id": "0c6176c9-78c5-408a-ae52-a0c93e46830e", + "interaction_id": "5325d4a5-2c85-4a37-ab6c-bba9b4618574", + "person_id": "405d9dbb-49c2-4379-8b55-4c8a59597cbc", + "subject": "Exclusive Offer - Godrej Blue Units", + "body": "Dear Namrata,\n\nWe are pleased to share the exclusive early-bird pricing for Godrej Blue. This offer is valid until the end of the month.\n\nPlease let us know if you would like to schedule a meeting.\n\nWarm regards,\nVelocity Real Estate", + "sender_role": "agent", + "sent_at": "2026-03-14T11:07:55.885707", + "opened_at": "2025-10-26T11:07:55.885709", + "replied_at": null + } + ], + "visits": [ + { + "visit_id": "5ee2dd33-f86d-4568-bf6d-8e3f208ef522", + "person_id": "405d9dbb-49c2-4379-8b55-4c8a59597cbc", + "lead_id": "255433cb-663a-47ee-a382-fca36b66fd83", + "project_name": "Godrej Blue", + "visited_at": "2026-03-15T11:07:55.885528", + "visit_notes": "First visit. Very impressed with the view.", + "host_user_id": "user_3", + "revisit_intent": "yes", + "household_id": null + } + ], + "reminders": [ + { + "reminder_id": "83e76662-7a1b-403d-bfec-738764436ac5", + "person_id": "405d9dbb-49c2-4379-8b55-4c8a59597cbc", + "lead_id": "255433cb-663a-47ee-a382-fca36b66fd83", + "reminder_text": "Schedule meeting with senior advisor", + "due_at": "2026-05-04T11:07:55.885728", + "completed": false, + "completed_at": null, + "assigned_user_id": "user_2", + "created_at": "2026-01-19T11:07:55.885737" + }, + { + "reminder_id": "f271f4d2-72db-4f53-be01-df17db371b64", + "person_id": "405d9dbb-49c2-4379-8b55-4c8a59597cbc", + "lead_id": "255433cb-663a-47ee-a382-fca36b66fd83", + "reminder_text": "Nudge for final decision", + "due_at": "2026-05-05T11:07:55.885739", + "completed": true, + "completed_at": "2026-03-21T11:07:55.885749", + "assigned_user_id": "user_2", + "created_at": "2026-03-13T11:07:55.885751" + } + ], + "qd_scores": [ + { + "qd_id": "6e76ae21-a81f-4cb6-b952-068896ad1795", + "person_id": "405d9dbb-49c2-4379-8b55-4c8a59597cbc", + "score_type": "intent_score", + "current_value": 0.558, + "computed_at": "2026-04-02T11:07:55.885763", + "evidence_refs_json": "[\"20501855-5a4d-4ed3-b8b5-09d4dcd0006e\", \"1344e6bb-a286-42e4-9bc7-fbed679f0f0a\", \"7a200a6e-dc74-44de-8ca2-6b3e9a880927\", \"f8f9fd27-1944-4036-a519-bc10274b184e\"]" + }, + { + "qd_id": "f6a6669c-a1c3-45fc-8be7-8bab4a614f25", + "person_id": "405d9dbb-49c2-4379-8b55-4c8a59597cbc", + "score_type": "urgency_score", + "current_value": 0.473, + "computed_at": "2026-03-17T11:07:55.885844", + "evidence_refs_json": "[\"ba1c35d9-8e73-4570-babc-79017323ec00\", \"c291c9c9-17ba-4dad-87d5-bbc44bb4d259\"]" + }, + { + "qd_id": "3525fe65-b8ec-4ccf-9605-63560aa392a0", + "person_id": "405d9dbb-49c2-4379-8b55-4c8a59597cbc", + "score_type": "engagement_score", + "current_value": 0.578, + "computed_at": "2026-04-16T11:07:55.885914", + "evidence_refs_json": "[\"7f27c913-23c8-4be8-85f9-c53979d1456e\", \"0e3ac4cd-ff9e-4f93-b49f-30c4d9e5cd4a\"]" + } + ], + "qd_timeseries": [ + { + "timeseries_id": "cbd3581f-13d2-4c48-ada8-6e2919dec98f", + "person_id": "405d9dbb-49c2-4379-8b55-4c8a59597cbc", + "signal_source": "whatsapp", + "timestamp": "2025-11-14T11:07:55.885793", + "value": 0.562, + "score_type": "intent_score", + "evidence_ref": "18e659a8-ff4c-497a-a267-e0a3075176e5" + }, + { + "timeseries_id": "6e19fd41-aa13-4c2d-8ae7-5281cce9c02f", + "person_id": "405d9dbb-49c2-4379-8b55-4c8a59597cbc", + "signal_source": "email", + "timestamp": "2025-11-25T11:07:55.885793", + "value": 0.509, + "score_type": "intent_score", + "evidence_ref": "f6060db4-19c9-48a2-9eac-cd0c7576901a" + }, + { + "timeseries_id": "2f81676c-c0c3-44e9-84b9-0abac30f2346", + "person_id": "405d9dbb-49c2-4379-8b55-4c8a59597cbc", + "signal_source": "whatsapp", + "timestamp": "2025-12-01T11:07:55.885793", + "value": 0.557, + "score_type": "intent_score", + "evidence_ref": "006e22a5-f734-4ff6-a197-edb2f760012c" + }, + { + "timeseries_id": "78192876-508d-49e8-9ebf-780b2e48fc44", + "person_id": "405d9dbb-49c2-4379-8b55-4c8a59597cbc", + "signal_source": "site_visit", + "timestamp": "2025-12-02T11:07:55.885859", + "value": 0.385, + "score_type": "urgency_score", + "evidence_ref": "3595cacc-9eab-4c94-a703-34befc0ba5bf" + }, + { + "timeseries_id": "7297dcf8-0dab-4e3d-a483-3a1f9ab82524", + "person_id": "405d9dbb-49c2-4379-8b55-4c8a59597cbc", + "signal_source": "site_visit", + "timestamp": "2025-12-20T11:07:55.885859", + "value": 0.484, + "score_type": "urgency_score", + "evidence_ref": "fca602e0-cf08-423e-8823-224ddaba6ce9" + }, + { + "timeseries_id": "20c945a6-894a-43c1-bc0e-8927e5963648", + "person_id": "405d9dbb-49c2-4379-8b55-4c8a59597cbc", + "signal_source": "email", + "timestamp": "2025-12-30T11:07:55.885859", + "value": 0.582, + "score_type": "urgency_score", + "evidence_ref": "d33df2bf-07ca-4940-af3f-9acfa26bdf2a" + }, + { + "timeseries_id": "db09fe48-f6a6-472e-8776-57d7a281591e", + "person_id": "405d9dbb-49c2-4379-8b55-4c8a59597cbc", + "signal_source": "call", + "timestamp": "2025-12-30T11:07:55.885930", + "value": 0.679, + "score_type": "engagement_score", + "evidence_ref": "b79287b7-b737-4918-8189-91da4d25bd3e" + }, + { + "timeseries_id": "1d98e162-f750-42af-887e-26863c61787c", + "person_id": "405d9dbb-49c2-4379-8b55-4c8a59597cbc", + "signal_source": "site_visit", + "timestamp": "2026-01-16T11:07:55.885930", + "value": 0.609, + "score_type": "engagement_score", + "evidence_ref": "eed80be3-da49-4ed8-8df2-55773fddf7d0" + }, + { + "timeseries_id": "665d9e06-289f-4a75-a5fd-46dbe5febc91", + "person_id": "405d9dbb-49c2-4379-8b55-4c8a59597cbc", + "signal_source": "email", + "timestamp": "2026-02-03T11:07:55.885930", + "value": 0.626, + "score_type": "engagement_score", + "evidence_ref": "2cbf27b3-c960-4b2d-9c3c-2dacb07f681c" + }, + { + "timeseries_id": "6e737146-3d27-41fe-891a-874e8a166677", + "person_id": "405d9dbb-49c2-4379-8b55-4c8a59597cbc", + "signal_source": "whatsapp", + "timestamp": "2026-02-10T11:07:55.885930", + "value": 0.525, + "score_type": "engagement_score", + "evidence_ref": "508c6bbf-d8d5-4bf7-a0e3-31f899d78eb0" + }, + { + "timeseries_id": "486a3603-c7ec-483b-868e-ba3672077688", + "person_id": "405d9dbb-49c2-4379-8b55-4c8a59597cbc", + "signal_source": "call", + "timestamp": "2026-02-24T11:07:55.885930", + "value": 0.581, + "score_type": "engagement_score", + "evidence_ref": "716e59a2-d51a-4d03-af33-59268d9b7135" + } + ], + "intel_events": [ + { + "event_id": "10a2f45a-0797-4474-8f4f-4bb47b560d6e", + "event_type": "perception_session", + "person_id": "405d9dbb-49c2-4379-8b55-4c8a59597cbc", + "project_ref": "Godrej Blue", + "session_at": "2026-03-14T11:07:55.886011", + "rooms_visited": "[\"terrace\", \"lobby\"]", + "dwell_time_seconds": 1450, + "engagement_score": 0.842, + "cctv_ref": "cctv_4f3df3d1", + "notes": "Perception session recorded during scheduled site visit" + } + ], + "client360": { + "client_ref": "405d9dbb-49c2-4379-8b55-4c8a59597cbc", + "snapshot_generated_at": "2026-04-18T11:07:55.886031", + "identity": { + "full_name": "Namrata Modi", + "primary_email": "namrata.modi357@gmail.com", + "primary_phone": "+91 8885790857", + "persona_labels": "[\"analytical_buyer\", \"upgrade_seeker\"]", + "buyer_type": "slow_burn_investor" + }, + "account_links": [ + "167e5af1-66b1-41c0-9a9d-42aa9b77a3a7" + ], + "active_opportunities": [ + { + "opportunity_id": "7234e231-b282-4d9a-8869-9952efa8a060", + "project": "Godrej Blue", + "stage": "booked", + "value": 12168650 + } + ], + "recent_interactions": [ + { + "interaction_id": "472e5eea-fa26-48e5-b7a0-3cf685ef1525", + "channel": "builder_event", + "happened_at": "2026-03-22T11:07:55.885662" + }, + { + "interaction_id": "008239e9-1779-43d0-b22d-2ab59b40d82f", + "channel": "site_visit", + "happened_at": "2026-02-25T11:07:55.885512" + }, + { + "interaction_id": "a1914394-b783-4cac-9250-ff9eb5331e4b", + "channel": "builder_event", + "happened_at": "2026-02-06T11:07:55.885537" + }, + { + "interaction_id": "534c4ba7-4a39-4bf4-b3dc-3b73c8ee7759", + "channel": "digital_ad", + "happened_at": "2026-01-15T11:07:55.885553" + }, + { + "interaction_id": "5325d4a5-2c85-4a37-ab6c-bba9b4618574", + "channel": "email", + "happened_at": "2026-01-13T11:07:55.885684" + } + ], + "property_interests": [ + { + "project": "Godrej Blue", + "config": "2BHK", + "budget_max": 14942172 + }, + { + "project": "DTC Sojon", + "config": "3BHK", + "budget_max": 5146851 + }, + { + "project": "DTC Good Earth", + "config": "3BHK", + "budget_max": 6834906 + } + ], + "tasks": [ + "Schedule meeting with senior advisor" + ], + "qd_overview": { + "intent_score": 0.558, + "urgency_score": 0.473, + "engagement_score": 0.578 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Share loan documents", + "Introduce relationship manager" + ], + "lead_stage": "booked", + "lead_status": "active" + } + }, + { + "person": { + "person_id": "0754e69f-3bc2-4aee-8a69-fba61fef89d8", + "full_name": "Ganesh Mandal", + "primary_email": "ganesh.mandal683@rediffmail.com", + "primary_phone": "+91 9826313349", + "secondary_phone": "+91 7513003815", + "linkedin_url": null, + "occupation": "Civil Engineer", + "employer": "Private Practice", + "account_id": "926a8c60-ae39-4028-a2cb-68f783fd2fe3", + "location_city": "Howrah", + "location_country": "India", + "buyer_type": "broker_referral", + "persona_labels": "[\"cash_rich_investor\", \"analytical_buyer\"]", + "is_nri": false, + "source_confidence": 0.925, + "created_at": "2025-09-09T11:07:55.886096", + "updated_at": "2025-12-11T11:07:55.886098" + }, + "lead": { + "lead_id": "128240ab-6cfa-40cb-a469-54b3f8578a0b", + "person_id": "0754e69f-3bc2-4aee-8a69-fba61fef89d8", + "account_id": "926a8c60-ae39-4028-a2cb-68f783fd2fe3", + "source_system": "builder_event", + "status": "active", + "stage": "inquiry", + "budget_band": "₹85L - ₹94L", + "urgency": "within_6_months", + "assigned_user_id": "user_2", + "primary_project": "Atri Aqua", + "objection": null, + "motivation": "NRI returning to India", + "financing_posture": "home_loan", + "created_at": "2025-06-28T11:07:55.886175", + "updated_at": "2025-11-22T11:07:55.886177" + }, + "opportunities": [], + "property_interests": [ + { + "interest_id": "0e018bac-72e2-4acd-b76b-eb640d9c45b4", + "person_id": "0754e69f-3bc2-4aee-8a69-fba61fef89d8", + "project_name": "Atri Aqua", + "configuration": "2BHK", + "budget_min": 7862051, + "budget_max": 9609174, + "urgency": "immediate", + "facing_preference": "north", + "floor_preference": "any", + "notes": "NRI returning to India", + "created_at": "2025-10-06T11:07:55.886146" + }, + { + "interest_id": "b8e5f3c7-f8a8-4336-93d6-511451b0b284", + "person_id": "0754e69f-3bc2-4aee-8a69-fba61fef89d8", + "project_name": "Shriram Grand City", + "configuration": "2BHK", + "budget_min": 6935202, + "budget_max": 8476359, + "urgency": "investment_only", + "facing_preference": "east", + "floor_preference": "any", + "notes": "Good connectivity to workplace", + "created_at": "2025-10-10T11:07:55.886157" + } + ], + "interactions": [ + { + "interaction_id": "7fefa469-8088-4130-9445-68127051c12a", + "person_id": "0754e69f-3bc2-4aee-8a69-fba61fef89d8", + "lead_id": "128240ab-6cfa-40cb-a469-54b3f8578a0b", + "channel": "whatsapp", + "interaction_type": "whatsapp", + "happened_at": "2026-04-14T11:07:55.886227", + "summary": "Whatsapp interaction regarding Atri Aqua", + "source_ref": "d7bef609-6524-45de-af61-67c5c2481b77", + "created_at": "2026-02-14T11:07:55.886238" + }, + { + "interaction_id": "ece0817e-f21a-4360-8bd8-8e089938c23a", + "person_id": "0754e69f-3bc2-4aee-8a69-fba61fef89d8", + "lead_id": "128240ab-6cfa-40cb-a469-54b3f8578a0b", + "channel": "site_visit", + "interaction_type": "site_visit", + "happened_at": "2026-02-04T11:07:55.886314", + "summary": "Site Visit interaction regarding Atri Aqua", + "source_ref": "eb305e64-326f-4ca0-a937-21d4d94d06d9", + "created_at": "2025-10-01T11:07:55.886322" + }, + { + "interaction_id": "19171161-9654-4e2a-936a-cfdfada8480c", + "person_id": "0754e69f-3bc2-4aee-8a69-fba61fef89d8", + "lead_id": "128240ab-6cfa-40cb-a469-54b3f8578a0b", + "channel": "site_visit", + "interaction_type": "site_visit", + "happened_at": "2026-04-15T11:07:55.886339", + "summary": "Site Visit interaction regarding Atri Aqua", + "source_ref": "1a759cd3-01e5-42cd-b5a7-f9ce2bbeb281", + "created_at": "2026-01-13T11:07:55.886347" + } + ], + "calls": [], + "transcripts": [], + "messages": [ + { + "message_id": "51e57707-7e90-4e03-a015-01d3201940cc", + "interaction_id": "7fefa469-8088-4130-9445-68127051c12a", + "person_id": "0754e69f-3bc2-4aee-8a69-fba61fef89d8", + "sender_role": "agent", + "message_text": "Hello Ganesh, the floor plan you requested for Atri Aqua is attached here.", + "delivered_at": "2026-04-13T11:07:55.886240", + "channel": "whatsapp", + "read_at": "2026-04-13T11:30:55.886240" + }, + { + "message_id": "cc3cb0e8-653f-4567-8999-e75b7306a3f5", + "interaction_id": "7fefa469-8088-4130-9445-68127051c12a", + "person_id": "0754e69f-3bc2-4aee-8a69-fba61fef89d8", + "sender_role": "client", + "message_text": "Please share the legal documents for review.", + "delivered_at": "2026-04-13T14:07:55.886240", + "channel": "whatsapp", + "read_at": "2026-04-13T14:39:55.886240" + }, + { + "message_id": "dc4f7573-f3ed-43bc-b1a3-e5ddbead45d7", + "interaction_id": "7fefa469-8088-4130-9445-68127051c12a", + "person_id": "0754e69f-3bc2-4aee-8a69-fba61fef89d8", + "sender_role": "agent", + "message_text": "Hi Ganesh, reminder about tomorrow's meeting at our Atri Aqua sample flat at 11am.", + "delivered_at": "2026-04-14T17:07:55.886240", + "channel": "whatsapp", + "read_at": "2026-04-14T18:53:55.886240" + }, + { + "message_id": "870f577d-8290-491d-9a27-4db2aa357343", + "interaction_id": "7fefa469-8088-4130-9445-68127051c12a", + "person_id": "0754e69f-3bc2-4aee-8a69-fba61fef89d8", + "sender_role": "client", + "message_text": "I saw another project in Rajarhat. How does Atri Aqua compare?", + "delivered_at": "2026-04-14T22:07:55.886240", + "channel": "whatsapp", + "read_at": null + }, + { + "message_id": "242c883a-9566-409a-ad86-ea383c58146e", + "interaction_id": "7fefa469-8088-4130-9445-68127051c12a", + "person_id": "0754e69f-3bc2-4aee-8a69-fba61fef89d8", + "sender_role": "agent", + "message_text": "Hi Ganesh, just sending over the brochure for Atri Aqua as promised. Let me know if you have any questions!", + "delivered_at": "2026-04-16T18:07:55.886240", + "channel": "whatsapp", + "read_at": null + }, + { + "message_id": "62c652f9-cbe6-4703-a95d-48e4ab95ac33", + "interaction_id": "7fefa469-8088-4130-9445-68127051c12a", + "person_id": "0754e69f-3bc2-4aee-8a69-fba61fef89d8", + "sender_role": "client", + "message_text": "Thanks. Will review and come back to you.", + "delivered_at": "2026-04-18T04:07:55.886240", + "channel": "whatsapp", + "read_at": "2026-04-18T04:16:55.886240" + } + ], + "emails": [], + "visits": [ + { + "visit_id": "3ffbbba1-26e6-4938-9e50-fd0de23c9f6d", + "person_id": "0754e69f-3bc2-4aee-8a69-fba61fef89d8", + "lead_id": "128240ab-6cfa-40cb-a469-54b3f8578a0b", + "project_name": "Atri Aqua", + "visited_at": "2026-01-28T11:07:55.886330", + "visit_notes": "Second visit. More focused on parking and amenities.", + "host_user_id": "user_1", + "revisit_intent": "maybe", + "household_id": "7b784437-dda8-4a67-9d61-dfb5a80ce981" + }, + { + "visit_id": "3be091d3-73da-43b7-8efb-ddc2de170419", + "person_id": "0754e69f-3bc2-4aee-8a69-fba61fef89d8", + "lead_id": "128240ab-6cfa-40cb-a469-54b3f8578a0b", + "project_name": "Atri Aqua", + "visited_at": "2026-02-25T11:07:55.886354", + "visit_notes": "Second visit. More focused on parking and amenities.", + "host_user_id": "user_5", + "revisit_intent": "no", + "household_id": "7b784437-dda8-4a67-9d61-dfb5a80ce981" + } + ], + "reminders": [ + { + "reminder_id": "5ffd8183-b83a-4d19-b534-953ed266dfd2", + "person_id": "0754e69f-3bc2-4aee-8a69-fba61fef89d8", + "lead_id": "128240ab-6cfa-40cb-a469-54b3f8578a0b", + "reminder_text": "Nudge for final decision", + "due_at": "2026-05-04T11:07:55.886358", + "completed": false, + "completed_at": null, + "assigned_user_id": "user_2", + "created_at": "2026-01-31T11:07:55.886367" + }, + { + "reminder_id": "aee7d5e0-e362-4970-9e7b-1903e50eef9c", + "person_id": "0754e69f-3bc2-4aee-8a69-fba61fef89d8", + "lead_id": "128240ab-6cfa-40cb-a469-54b3f8578a0b", + "reminder_text": "Schedule meeting with senior advisor", + "due_at": "2026-04-20T11:07:55.886368", + "completed": true, + "completed_at": "2026-04-13T11:07:55.886376", + "assigned_user_id": "user_1", + "created_at": "2026-01-18T11:07:55.886378" + } + ], + "qd_scores": [ + { + "qd_id": "b13e3cae-cc8f-4c4e-90bd-8d1160475e49", + "person_id": "0754e69f-3bc2-4aee-8a69-fba61fef89d8", + "score_type": "intent_score", + "current_value": 0.794, + "computed_at": "2026-03-02T11:07:55.886392", + "evidence_refs_json": "[\"681cb57f-ab90-4859-a6aa-01093c9757ba\", \"bafebd2d-dc26-4b5b-a7e8-42bb26ae234e\", \"f1e8f65a-090c-4d36-96dd-52bda8644a97\", \"a5ca96df-83ff-4333-af43-3b37ea491901\"]" + }, + { + "qd_id": "38788033-7fd8-4fa7-a7ec-6b22d289e4eb", + "person_id": "0754e69f-3bc2-4aee-8a69-fba61fef89d8", + "score_type": "urgency_score", + "current_value": 0.777, + "computed_at": "2026-03-11T11:07:55.886492", + "evidence_refs_json": "[\"070e847c-3240-490f-9fe3-cac0284e0eb1\", \"3a5dc7a5-0744-413c-8fe5-4e9295924453\"]" + }, + { + "qd_id": "1b6c4b74-d441-4979-8d3d-f3d4035eecd5", + "person_id": "0754e69f-3bc2-4aee-8a69-fba61fef89d8", + "score_type": "engagement_score", + "current_value": 0.775, + "computed_at": "2026-03-28T11:07:55.886572", + "evidence_refs_json": "[\"55caceb6-9496-4329-8e66-9ba96fe1d5ae\", \"c4481f56-3bb9-434b-b954-39f670a27326\", \"0ed0b6fb-7e7a-4120-8379-d415bf1974c7\", \"6948d5a0-3d22-431b-b6b8-cf58c222b6fa\", \"f9bc013e-251f-480a-85c7-0ae34dfd4c05\"]" + } + ], + "qd_timeseries": [ + { + "timeseries_id": "377ea836-2725-4249-a864-bbf48809f1ee", + "person_id": "0754e69f-3bc2-4aee-8a69-fba61fef89d8", + "signal_source": "email", + "timestamp": "2025-12-25T11:07:55.886423", + "value": 0.792, + "score_type": "intent_score", + "evidence_ref": "0f8667db-fdda-4865-9368-c6ca1bdb4329" + }, + { + "timeseries_id": "95a3633d-1a90-4410-a193-443d769dae8e", + "person_id": "0754e69f-3bc2-4aee-8a69-fba61fef89d8", + "signal_source": "whatsapp", + "timestamp": "2025-12-31T11:07:55.886423", + "value": 0.845, + "score_type": "intent_score", + "evidence_ref": "d77fa1ea-06d0-4a5f-8374-e4845a5065ef" + }, + { + "timeseries_id": "032f9d2b-2c98-4e8d-a494-813b7fc75c49", + "person_id": "0754e69f-3bc2-4aee-8a69-fba61fef89d8", + "signal_source": "call", + "timestamp": "2026-01-07T11:07:55.886423", + "value": 0.895, + "score_type": "intent_score", + "evidence_ref": "c90d7ba6-1756-4831-8899-e32ff15d03a8" + }, + { + "timeseries_id": "4c5b926d-a04a-4772-8c00-965f6d32a35d", + "person_id": "0754e69f-3bc2-4aee-8a69-fba61fef89d8", + "signal_source": "site_visit", + "timestamp": "2026-01-25T11:07:55.886423", + "value": 0.784, + "score_type": "intent_score", + "evidence_ref": "a870f844-6ac6-4ca2-abf7-31d44d7b75d8" + }, + { + "timeseries_id": "c9ba8424-9f21-4d10-abd0-708084572f6d", + "person_id": "0754e69f-3bc2-4aee-8a69-fba61fef89d8", + "signal_source": "call", + "timestamp": "2025-12-04T11:07:55.886507", + "value": 0.799, + "score_type": "urgency_score", + "evidence_ref": "b33976ea-e536-4862-ab94-da662512dff2" + }, + { + "timeseries_id": "9f612c17-8b63-4c51-84fe-65a3773b03d8", + "person_id": "0754e69f-3bc2-4aee-8a69-fba61fef89d8", + "signal_source": "email", + "timestamp": "2025-12-10T11:07:55.886507", + "value": 0.816, + "score_type": "urgency_score", + "evidence_ref": "a4980c62-2ed8-45e9-9dba-1a7495f9642b" + }, + { + "timeseries_id": "8dfa4f02-77d4-44f2-a195-8515de10f521", + "person_id": "0754e69f-3bc2-4aee-8a69-fba61fef89d8", + "signal_source": "whatsapp", + "timestamp": "2025-12-19T11:07:55.886507", + "value": 0.727, + "score_type": "urgency_score", + "evidence_ref": "d684fe33-7891-4b7d-99e2-f82b716bafc4" + }, + { + "timeseries_id": "87920f06-5f9d-47f0-94ec-c4542590aa55", + "person_id": "0754e69f-3bc2-4aee-8a69-fba61fef89d8", + "signal_source": "email", + "timestamp": "2026-01-03T11:07:55.886507", + "value": 0.825, + "score_type": "urgency_score", + "evidence_ref": "9e07dc67-6f4c-4523-a7a4-a77c6fe191a9" + }, + { + "timeseries_id": "ac4e47d4-096d-484b-a717-1901be2dc31c", + "person_id": "0754e69f-3bc2-4aee-8a69-fba61fef89d8", + "signal_source": "whatsapp", + "timestamp": "2025-12-09T11:07:55.886604", + "value": 0.688, + "score_type": "engagement_score", + "evidence_ref": "37ab527b-1933-42a1-8533-74afc9ca9190" + }, + { + "timeseries_id": "96580cb0-e1fc-4bb6-8ade-59df0bacc590", + "person_id": "0754e69f-3bc2-4aee-8a69-fba61fef89d8", + "signal_source": "whatsapp", + "timestamp": "2025-12-17T11:07:55.886604", + "value": 0.68, + "score_type": "engagement_score", + "evidence_ref": "bd49abe6-3dd1-4bc4-8b88-a931638762a2" + }, + { + "timeseries_id": "13b292d4-8cc2-403f-a205-2f87593b42c2", + "person_id": "0754e69f-3bc2-4aee-8a69-fba61fef89d8", + "signal_source": "email", + "timestamp": "2026-01-05T11:07:55.886604", + "value": 0.73, + "score_type": "engagement_score", + "evidence_ref": "c36d6d05-9ac8-4a0f-8ac2-307d5b297290" + }, + { + "timeseries_id": "041aec26-3762-4ae5-833f-3702e874857c", + "person_id": "0754e69f-3bc2-4aee-8a69-fba61fef89d8", + "signal_source": "site_visit", + "timestamp": "2026-01-13T11:07:55.886604", + "value": 0.887, + "score_type": "engagement_score", + "evidence_ref": "a2846d24-02fd-400e-bf75-4ecafd3a5c5e" + } + ], + "intel_events": [], + "client360": { + "client_ref": "0754e69f-3bc2-4aee-8a69-fba61fef89d8", + "snapshot_generated_at": "2026-04-18T11:07:55.886666", + "identity": { + "full_name": "Ganesh Mandal", + "primary_email": "ganesh.mandal683@rediffmail.com", + "primary_phone": "+91 9826313349", + "persona_labels": "[\"cash_rich_investor\", \"analytical_buyer\"]", + "buyer_type": "broker_referral" + }, + "account_links": [ + "926a8c60-ae39-4028-a2cb-68f783fd2fe3" + ], + "active_opportunities": [], + "recent_interactions": [ + { + "interaction_id": "19171161-9654-4e2a-936a-cfdfada8480c", + "channel": "site_visit", + "happened_at": "2026-04-15T11:07:55.886339" + }, + { + "interaction_id": "7fefa469-8088-4130-9445-68127051c12a", + "channel": "whatsapp", + "happened_at": "2026-04-14T11:07:55.886227" + }, + { + "interaction_id": "ece0817e-f21a-4360-8bd8-8e089938c23a", + "channel": "site_visit", + "happened_at": "2026-02-04T11:07:55.886314" + } + ], + "property_interests": [ + { + "project": "Atri Aqua", + "config": "2BHK", + "budget_max": 9609174 + }, + { + "project": "Shriram Grand City", + "config": "2BHK", + "budget_max": 8476359 + } + ], + "tasks": [ + "Nudge for final decision" + ], + "qd_overview": { + "intent_score": 0.794, + "urgency_score": 0.777, + "engagement_score": 0.775 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Send project brochure", + "Schedule site visit" + ], + "lead_stage": "inquiry", + "lead_status": "active" + } + }, + { + "person": { + "person_id": "9c65cf85-bcf0-406b-ade5-72e6e4b6927e", + "full_name": "Moumita Bose", + "primary_email": "moumita.bose152@gmail.com", + "primary_phone": "+91 8066091571", + "secondary_phone": "+91 8701857002", + "linkedin_url": "https://linkedin.com/in/moumita-bose-793", + "occupation": "IAS Officer", + "employer": "Self-employed", + "account_id": "ccc19201-7df7-4fb9-b3ad-d1eb1edf302c", + "location_city": "Salt Lake", + "location_country": "India", + "buyer_type": "slow_burn_investor", + "persona_labels": "[\"investment_focus\", \"analytical_buyer\", \"status_buyer\"]", + "is_nri": false, + "source_confidence": 0.815, + "created_at": "2025-09-06T11:07:55.886701", + "updated_at": "2026-04-10T11:07:55.886703" + }, + "lead": { + "lead_id": "a0c327ea-18ad-43fe-bb68-71e3d124ba66", + "person_id": "9c65cf85-bcf0-406b-ade5-72e6e4b6927e", + "account_id": "ccc19201-7df7-4fb9-b3ad-d1eb1edf302c", + "source_system": "referral", + "status": "active", + "stage": "negotiation", + "budget_band": "₹70L - ₹77L", + "urgency": "within_6_months", + "assigned_user_id": "user_1", + "primary_project": "Sugam Prakriti", + "objection": "Price too high", + "motivation": "Good connectivity to workplace", + "financing_posture": "home_loan", + "created_at": "2025-09-29T11:07:55.886776", + "updated_at": "2025-11-22T11:07:55.886778" + }, + "opportunities": [ + { + "opportunity_id": "2b921d09-44b9-4a4b-9b30-b912520c9627", + "lead_id": "a0c327ea-18ad-43fe-bb68-71e3d124ba66", + "person_id": "9c65cf85-bcf0-406b-ade5-72e6e4b6927e", + "project_name": "Sugam Prakriti", + "unit_config": "2BHK", + "stage": "negotiation", + "value": 7018823, + "probability": 70, + "expected_close_date": "2026-07-19T11:07:55.886839", + "next_action": "Connect with bank", + "created_at": "2025-10-13T11:07:55.886841", + "updated_at": "2026-03-22T11:07:55.886843" + } + ], + "property_interests": [ + { + "interest_id": "156b9816-eba0-4caf-a13b-30db04495b28", + "person_id": "9c65cf85-bcf0-406b-ade5-72e6e4b6927e", + "project_name": "Sugam Prakriti", + "configuration": "2BHK", + "budget_min": 5865586, + "budget_max": 7169049, + "urgency": "within_3_months", + "facing_preference": "west", + "floor_preference": "mid", + "notes": "Status/prestige", + "created_at": "2025-11-14T11:07:55.886750" + }, + { + "interest_id": "981ea874-8a66-4d8e-8dca-f7fccd40282f", + "person_id": "9c65cf85-bcf0-406b-ade5-72e6e4b6927e", + "project_name": "Godrej Elevate", + "configuration": "3BHK", + "budget_min": 13808060, + "budget_max": 16876517, + "urgency": "immediate", + "facing_preference": "east", + "floor_preference": "low", + "notes": "Children's future", + "created_at": "2025-07-01T11:07:55.886761" + } + ], + "interactions": [ + { + "interaction_id": "316f18f4-5939-4c4f-b954-fb70ebafcca2", + "person_id": "9c65cf85-bcf0-406b-ade5-72e6e4b6927e", + "lead_id": "a0c327ea-18ad-43fe-bb68-71e3d124ba66", + "channel": "site_visit", + "interaction_type": "site_visit", + "happened_at": "2026-04-02T11:07:55.886855", + "summary": "Site Visit interaction regarding Sugam Prakriti", + "source_ref": "d7be0661-34bc-44d3-bc77-8ca5703ca9a5", + "created_at": "2026-03-26T11:07:55.886864" + }, + { + "interaction_id": "b8ad3d80-84fb-4521-8742-e03671e41ef9", + "person_id": "9c65cf85-bcf0-406b-ade5-72e6e4b6927e", + "lead_id": "a0c327ea-18ad-43fe-bb68-71e3d124ba66", + "channel": "call", + "interaction_type": "call", + "happened_at": "2025-11-04T11:07:55.886891", + "summary": "Call interaction regarding Sugam Prakriti", + "source_ref": "6e61350b-f9f7-4d56-891b-2d6904404d7e", + "created_at": "2025-12-04T11:07:55.886899" + }, + { + "interaction_id": "1aea9aa8-a694-4331-afec-8fd2b610352d", + "person_id": "9c65cf85-bcf0-406b-ade5-72e6e4b6927e", + "lead_id": "a0c327ea-18ad-43fe-bb68-71e3d124ba66", + "channel": "call", + "interaction_type": "call", + "happened_at": "2026-03-08T11:07:55.886975", + "summary": "Call interaction regarding Sugam Prakriti", + "source_ref": "5c3ec729-b3e7-4e53-b1dc-56e9bbef4137", + "created_at": "2026-03-23T11:07:55.886983" + }, + { + "interaction_id": "2ed3a4e9-44c0-4b6e-9b9e-2f155f3f1ca8", + "person_id": "9c65cf85-bcf0-406b-ade5-72e6e4b6927e", + "lead_id": "a0c327ea-18ad-43fe-bb68-71e3d124ba66", + "channel": "whatsapp", + "interaction_type": "whatsapp", + "happened_at": "2026-04-03T11:07:55.887051", + "summary": "Whatsapp interaction regarding Sugam Prakriti", + "source_ref": "8cd98276-6449-4c7d-aa1a-f2ba67ec41d3", + "created_at": "2026-02-17T11:07:55.887059" + }, + { + "interaction_id": "c21ea983-5f81-4970-b299-924d1d65f8ec", + "person_id": "9c65cf85-bcf0-406b-ade5-72e6e4b6927e", + "lead_id": "a0c327ea-18ad-43fe-bb68-71e3d124ba66", + "channel": "referral", + "interaction_type": "referral", + "happened_at": "2025-10-19T11:07:55.887110", + "summary": "Referral interaction regarding Sugam Prakriti", + "source_ref": "2e8da173-6d24-48ba-8864-091e8c124d14", + "created_at": "2026-03-12T11:07:55.887118" + }, + { + "interaction_id": "235f8271-3bd3-4205-bf13-c724540ef4d6", + "person_id": "9c65cf85-bcf0-406b-ade5-72e6e4b6927e", + "lead_id": "a0c327ea-18ad-43fe-bb68-71e3d124ba66", + "channel": "builder_event", + "interaction_type": "builder_event", + "happened_at": "2026-03-20T11:07:55.887126", + "summary": "Builder Event interaction regarding Sugam Prakriti", + "source_ref": "4ea73707-692f-4f06-8aac-8a3cf57e0537", + "created_at": "2025-12-04T11:07:55.887136" + }, + { + "interaction_id": "d0681aa6-c4ad-4fb8-9792-666742facab9", + "person_id": "9c65cf85-bcf0-406b-ade5-72e6e4b6927e", + "lead_id": "a0c327ea-18ad-43fe-bb68-71e3d124ba66", + "channel": "builder_event", + "interaction_type": "builder_event", + "happened_at": "2026-01-14T11:07:55.887144", + "summary": "Builder Event interaction regarding Sugam Prakriti", + "source_ref": "af4fb774-0eca-401b-bffb-a27c8c6be0cc", + "created_at": "2026-03-30T11:07:55.887152" + } + ], + "calls": [ + { + "call_id": "d175151e-40c1-451b-a898-afeedb31a1b4", + "interaction_id": "b8ad3d80-84fb-4521-8742-e03671e41ef9", + "person_id": "9c65cf85-bcf0-406b-ade5-72e6e4b6927e", + "call_direction": "outbound", + "duration_seconds": 623, + "recording_ref": "recording_d175151e.mp3", + "transcript_ref": "4cf84d15-8b85-4d44-a1a2-9cc78cf4872e", + "call_ts": "2025-11-07T11:07:55.886913" + }, + { + "call_id": "11b29e0d-e641-434e-8bad-ecd92397dab7", + "interaction_id": "1aea9aa8-a694-4331-afec-8fd2b610352d", + "person_id": "9c65cf85-bcf0-406b-ade5-72e6e4b6927e", + "call_direction": "inbound", + "duration_seconds": 685, + "recording_ref": "recording_11b29e0d.mp3", + "transcript_ref": "3db03d38-e35d-4753-b310-4c2bf7518d1c", + "call_ts": "2025-10-31T11:07:55.886998" + } + ], + "transcripts": [ + { + "transcript_id": "4cf84d15-8b85-4d44-a1a2-9cc78cf4872e", + "call_id": "d175151e-40c1-451b-a898-afeedb31a1b4", + "person_id": "9c65cf85-bcf0-406b-ade5-72e6e4b6927e", + "interaction_ref": "b8ad3d80-84fb-4521-8742-e03671e41ef9", + "language": "en", + "full_text": "Hello, am I speaking with Moumita? This is Velocity Real Estate. Yes speaking. How can I help you? We noticed your inquiry about Sugam Prakriti. Are you still looking? Yes I am. Can you tell me more about the configurations and pricing? Of course. We have 2BHK units available starting from ₹7,018,823. Would you be interested in a site visit? Yes, that sounds good. What about the possession timeline? The project is expected to be ready by Q3 2027. We have early-bird pricing available this month. I'll discuss with my family and get back to you. Can you send me the brochure? Absolutely. I'll WhatsApp you the details right away. Thank you Moumita.", + "speaker_segments_json": "[{\"speaker\": \"agent\", \"start_seconds\": 0, \"end_seconds\": 5, \"text\": \"Hello, am I speaking with Moumita? This is Velocity Real Estate.\"}, {\"speaker\": \"client\", \"start_seconds\": 20, \"end_seconds\": 36, \"text\": \"Yes speaking. How can I help you?\"}, {\"speaker\": \"agent\", \"start_seconds\": 46, \"end_seconds\": 66, \"text\": \"We noticed your inquiry about Sugam Prakriti. Are you still looking?\"}, {\"speaker\": \"client\", \"start_seconds\": 57, \"end_seconds\": 72, \"text\": \"Yes I am. Can you tell me more about the configurations and pricing?\"}, {\"speaker\": \"agent\", \"start_seconds\": 80, \"end_seconds\": 93, \"text\": \"Of course. We have 2BHK units available starting from \\u20b97,018,823. Would you be interested in a site visit?\"}, {\"speaker\": \"client\", \"start_seconds\": 65, \"end_seconds\": 70, \"text\": \"Yes, that sounds good. What about the possession timeline?\"}, {\"speaker\": \"agent\", \"start_seconds\": 108, \"end_seconds\": 120, \"text\": \"The project is expected to be ready by Q3 2027. We have early-bird pricing available this month.\"}, {\"speaker\": \"client\", \"start_seconds\": 56, \"end_seconds\": 69, \"text\": \"I'll discuss with my family and get back to you. Can you send me the brochure?\"}, {\"speaker\": \"agent\", \"start_seconds\": 72, \"end_seconds\": 92, \"text\": \"Absolutely. I'll WhatsApp you the details right away. Thank you Moumita.\"}]", + "confidence": 0.95, + "created_at": "2025-11-07T11:07:55.886913" + }, + { + "transcript_id": "3db03d38-e35d-4753-b310-4c2bf7518d1c", + "call_id": "11b29e0d-e641-434e-8bad-ecd92397dab7", + "person_id": "9c65cf85-bcf0-406b-ade5-72e6e4b6927e", + "interaction_ref": "1aea9aa8-a694-4331-afec-8fd2b610352d", + "language": "en", + "full_text": "Hello, am I speaking with Moumita? This is Velocity Real Estate. Yes speaking. How can I help you? We noticed your inquiry about Sugam Prakriti. Are you still looking? Yes I am. Can you tell me more about the configurations and pricing? Of course. We have 2BHK units available starting from ₹7,018,823. Would you be interested in a site visit? Yes, that sounds good. What about the possession timeline? The project is expected to be ready by Q3 2027. We have early-bird pricing available this month. I'll discuss with my family and get back to you. Can you send me the brochure? Absolutely. I'll WhatsApp you the details right away. Thank you Moumita.", + "speaker_segments_json": "[{\"speaker\": \"agent\", \"start_seconds\": 0, \"end_seconds\": 13, \"text\": \"Hello, am I speaking with Moumita? This is Velocity Real Estate.\"}, {\"speaker\": \"client\", \"start_seconds\": 25, \"end_seconds\": 31, \"text\": \"Yes speaking. How can I help you?\"}, {\"speaker\": \"agent\", \"start_seconds\": 30, \"end_seconds\": 47, \"text\": \"We noticed your inquiry about Sugam Prakriti. Are you still looking?\"}, {\"speaker\": \"client\", \"start_seconds\": 57, \"end_seconds\": 67, \"text\": \"Yes I am. Can you tell me more about the configurations and pricing?\"}, {\"speaker\": \"agent\", \"start_seconds\": 52, \"end_seconds\": 64, \"text\": \"Of course. We have 2BHK units available starting from \\u20b97,018,823. Would you be interested in a site visit?\"}, {\"speaker\": \"client\", \"start_seconds\": 90, \"end_seconds\": 106, \"text\": \"Yes, that sounds good. What about the possession timeline?\"}, {\"speaker\": \"agent\", \"start_seconds\": 48, \"end_seconds\": 64, \"text\": \"The project is expected to be ready by Q3 2027. We have early-bird pricing available this month.\"}, {\"speaker\": \"client\", \"start_seconds\": 84, \"end_seconds\": 95, \"text\": \"I'll discuss with my family and get back to you. Can you send me the brochure?\"}, {\"speaker\": \"agent\", \"start_seconds\": 184, \"end_seconds\": 198, \"text\": \"Absolutely. I'll WhatsApp you the details right away. Thank you Moumita.\"}]", + "confidence": 0.903, + "created_at": "2025-10-31T11:07:55.886998" + } + ], + "messages": [ + { + "message_id": "ece1b509-b7d1-4e4d-90fe-c042a6ee8b8f", + "interaction_id": "2ed3a4e9-44c0-4b6e-9b9e-2f155f3f1ca8", + "person_id": "9c65cf85-bcf0-406b-ade5-72e6e4b6927e", + "sender_role": "agent", + "message_text": "Hi Moumita, just checking in. Has the loan pre-approval come through? Happy to connect you with our banking partner.", + "delivered_at": "2026-01-30T13:07:55.887062", + "channel": "whatsapp", + "read_at": "2026-01-30T13:50:55.887062" + }, + { + "message_id": "67e58535-4edb-4914-997f-e38d5d970a44", + "interaction_id": "2ed3a4e9-44c0-4b6e-9b9e-2f155f3f1ca8", + "person_id": "9c65cf85-bcf0-406b-ade5-72e6e4b6927e", + "sender_role": "client", + "message_text": "My wife liked the project. We are deciding this week.", + "delivered_at": "2026-02-01T05:07:55.887062", + "channel": "whatsapp", + "read_at": "2026-02-01T05:51:55.887062" + }, + { + "message_id": "3f62b847-56cf-4c0d-8a47-c238d1efcfae", + "interaction_id": "2ed3a4e9-44c0-4b6e-9b9e-2f155f3f1ca8", + "person_id": "9c65cf85-bcf0-406b-ade5-72e6e4b6927e", + "sender_role": "agent", + "message_text": "Good morning Moumita! Wanted to follow up on your visit to Sugam Prakriti. Any thoughts so far?", + "delivered_at": "2026-02-03T03:07:55.887062", + "channel": "whatsapp", + "read_at": "2026-02-03T04:56:55.887062" + }, + { + "message_id": "68cf1fe6-aaf4-4268-8737-d6b9e27c77cd", + "interaction_id": "2ed3a4e9-44c0-4b6e-9b9e-2f155f3f1ca8", + "person_id": "9c65cf85-bcf0-406b-ade5-72e6e4b6927e", + "sender_role": "client", + "message_text": "Thanks. Will review and come back to you.", + "delivered_at": "2026-02-04T00:07:55.887062", + "channel": "whatsapp", + "read_at": null + } + ], + "emails": [], + "visits": [ + { + "visit_id": "c5d35eff-3a50-4cef-a36c-08bf7c56366c", + "person_id": "9c65cf85-bcf0-406b-ade5-72e6e4b6927e", + "lead_id": "a0c327ea-18ad-43fe-bb68-71e3d124ba66", + "project_name": "Sugam Prakriti", + "visited_at": "2026-02-05T11:07:55.886874", + "visit_notes": "NRI client on short trip. Wants to finalize before return.", + "host_user_id": "user_2", + "revisit_intent": "no", + "household_id": "2f8429b2-869c-438f-90a6-f0c7dc1882c1" + } + ], + "reminders": [ + { + "reminder_id": "983da4f2-b69b-479b-8dd9-5e3dc316a164", + "person_id": "9c65cf85-bcf0-406b-ade5-72e6e4b6927e", + "lead_id": "a0c327ea-18ad-43fe-bb68-71e3d124ba66", + "reminder_text": "Check competitor comparison status", + "due_at": "2026-04-26T11:07:55.887155", + "completed": true, + "completed_at": "2026-03-30T11:07:55.887165", + "assigned_user_id": "user_1", + "created_at": "2026-02-25T11:07:55.887167" + }, + { + "reminder_id": "b13627c4-e63c-4070-94c1-2623e90e6fce", + "person_id": "9c65cf85-bcf0-406b-ade5-72e6e4b6927e", + "lead_id": "a0c327ea-18ad-43fe-bb68-71e3d124ba66", + "reminder_text": "Check loan approval status", + "due_at": "2026-05-09T11:07:55.887172", + "completed": false, + "completed_at": null, + "assigned_user_id": "user_4", + "created_at": "2026-01-27T11:07:55.887180" + }, + { + "reminder_id": "017574ce-a622-43fd-b1c3-1dfc149959d3", + "person_id": "9c65cf85-bcf0-406b-ade5-72e6e4b6927e", + "lead_id": "a0c327ea-18ad-43fe-bb68-71e3d124ba66", + "reminder_text": "Confirm booking appointment", + "due_at": "2026-04-28T11:07:55.887182", + "completed": true, + "completed_at": "2026-04-12T11:07:55.887190", + "assigned_user_id": "user_5", + "created_at": "2026-02-02T11:07:55.887202" + } + ], + "qd_scores": [ + { + "qd_id": "33b59864-b1d0-4119-86d8-99bca8f1f17c", + "person_id": "9c65cf85-bcf0-406b-ade5-72e6e4b6927e", + "score_type": "intent_score", + "current_value": 0.452, + "computed_at": "2026-04-17T11:07:55.887231", + "evidence_refs_json": "[\"d0a95e9a-05d6-4c62-b6c2-754e3e2571e2\", \"8dd296de-c80e-4da3-a73a-6cf57dce38e2\", \"ba767ccb-28f2-4757-9c5b-8457b4bd1f70\", \"e123c25f-e712-42da-b7c5-08e312304b60\", \"15f14942-f48c-4281-be08-5ad795731e07\"]" + }, + { + "qd_id": "6dfeba9d-a2a9-4c64-986a-7ff70206e03a", + "person_id": "9c65cf85-bcf0-406b-ade5-72e6e4b6927e", + "score_type": "urgency_score", + "current_value": 0.48, + "computed_at": "2026-02-26T11:07:55.887384", + "evidence_refs_json": "[\"9f4eebcd-e2f0-4b10-bc18-34bd43073a45\", \"ec9b8bbe-2504-48f0-abb3-ad7b51559d58\"]" + }, + { + "qd_id": "878864e9-67ed-4311-95d7-79a5ed3d09b5", + "person_id": "9c65cf85-bcf0-406b-ade5-72e6e4b6927e", + "score_type": "engagement_score", + "current_value": 0.483, + "computed_at": "2026-02-23T11:07:55.887449", + "evidence_refs_json": "[\"1d6c550c-70f0-4bf6-b5bd-691b7b18b5ef\", \"1f0aaa94-438e-4f7a-b45f-ffe2357cb900\", \"06c33879-1bdc-4bab-acfa-33a9768af68d\", \"5da1263c-811e-4b75-8cd3-b65b60cd5b28\", \"a9fba0fa-7c4c-421e-be4b-7529cdad1250\"]" + } + ], + "qd_timeseries": [ + { + "timeseries_id": "140a263c-f0c4-4a57-b653-f3725be7a203", + "person_id": "9c65cf85-bcf0-406b-ade5-72e6e4b6927e", + "signal_source": "whatsapp", + "timestamp": "2025-11-01T11:07:55.887276", + "value": 0.477, + "score_type": "intent_score", + "evidence_ref": "127f124e-8e7e-4840-a184-be059a43fe4e" + }, + { + "timeseries_id": "5cf2a956-5649-4b97-ae66-4114cdb2c66c", + "person_id": "9c65cf85-bcf0-406b-ade5-72e6e4b6927e", + "signal_source": "call", + "timestamp": "2025-11-13T11:07:55.887276", + "value": 0.557, + "score_type": "intent_score", + "evidence_ref": "d99a1efc-ee99-4221-b5fa-b3d9525c0a95" + }, + { + "timeseries_id": "acc66141-cc6c-4898-b4b6-22a98b735d74", + "person_id": "9c65cf85-bcf0-406b-ade5-72e6e4b6927e", + "signal_source": "site_visit", + "timestamp": "2025-11-22T11:07:55.887276", + "value": 0.511, + "score_type": "intent_score", + "evidence_ref": "49aaa3cc-3c82-4f3a-88d7-15dc22e651b9" + }, + { + "timeseries_id": "64320936-bdde-40b0-b320-8f903e0e2bb8", + "person_id": "9c65cf85-bcf0-406b-ade5-72e6e4b6927e", + "signal_source": "site_visit", + "timestamp": "2025-12-04T11:07:55.887276", + "value": 0.568, + "score_type": "intent_score", + "evidence_ref": "d1d5294e-e395-43ed-8662-519b323fa84a" + }, + { + "timeseries_id": "f07aea83-b375-4b1a-a6e1-ef1dba80d2d7", + "person_id": "9c65cf85-bcf0-406b-ade5-72e6e4b6927e", + "signal_source": "call", + "timestamp": "2025-12-14T11:07:55.887276", + "value": 0.529, + "score_type": "intent_score", + "evidence_ref": "07b2df9a-2488-4445-a049-3a51c4c892bc" + }, + { + "timeseries_id": "ff6fdc1f-27cf-41b9-9f18-5f4d464b574f", + "person_id": "9c65cf85-bcf0-406b-ade5-72e6e4b6927e", + "signal_source": "email", + "timestamp": "2025-12-29T11:07:55.887276", + "value": 0.335, + "score_type": "intent_score", + "evidence_ref": "1e3d9f64-fcf7-4999-903b-a7c94e134314" + }, + { + "timeseries_id": "57511453-9d24-46df-a7dc-b57f2c134758", + "person_id": "9c65cf85-bcf0-406b-ade5-72e6e4b6927e", + "signal_source": "whatsapp", + "timestamp": "2026-01-09T11:07:55.887276", + "value": 0.498, + "score_type": "intent_score", + "evidence_ref": "56e76fcd-5897-4da9-894c-32c56af28a18" + }, + { + "timeseries_id": "65b1900b-a39f-4ef3-b514-3caa2d4fe882", + "person_id": "9c65cf85-bcf0-406b-ade5-72e6e4b6927e", + "signal_source": "email", + "timestamp": "2025-11-09T11:07:55.887401", + "value": 0.465, + "score_type": "urgency_score", + "evidence_ref": "f4bbd3ab-9372-4cb4-a082-d7cf0f1a1441" + }, + { + "timeseries_id": "62188cb0-e82f-44f6-a0b1-b3cd36d2606e", + "person_id": "9c65cf85-bcf0-406b-ade5-72e6e4b6927e", + "signal_source": "whatsapp", + "timestamp": "2025-11-27T11:07:55.887401", + "value": 0.572, + "score_type": "urgency_score", + "evidence_ref": "65cb9260-01fa-4802-a147-de4de786d21d" + }, + { + "timeseries_id": "14c6abf5-871e-47fa-8e6b-50313d158d37", + "person_id": "9c65cf85-bcf0-406b-ade5-72e6e4b6927e", + "signal_source": "email", + "timestamp": "2025-12-17T11:07:55.887401", + "value": 0.444, + "score_type": "urgency_score", + "evidence_ref": "419a9848-c4fd-4b2d-b8c0-75cc6222625b" + }, + { + "timeseries_id": "689e965b-db34-45ca-b38e-72d3aaf7caa8", + "person_id": "9c65cf85-bcf0-406b-ade5-72e6e4b6927e", + "signal_source": "whatsapp", + "timestamp": "2025-11-11T11:07:55.887480", + "value": 0.471, + "score_type": "engagement_score", + "evidence_ref": "6377b068-2d4e-4b62-a526-5463bcd1bda8" + }, + { + "timeseries_id": "3b19eede-dd7a-430b-a8a7-efa86d248579", + "person_id": "9c65cf85-bcf0-406b-ade5-72e6e4b6927e", + "signal_source": "site_visit", + "timestamp": "2025-11-17T11:07:55.887480", + "value": 0.368, + "score_type": "engagement_score", + "evidence_ref": "0f5b8d04-085f-437b-aeb2-04ceb20c4280" + }, + { + "timeseries_id": "d3d0a43d-5e7b-4422-9cc3-c4ba914f8b9a", + "person_id": "9c65cf85-bcf0-406b-ade5-72e6e4b6927e", + "signal_source": "call", + "timestamp": "2025-11-30T11:07:55.887480", + "value": 0.381, + "score_type": "engagement_score", + "evidence_ref": "de6f767f-4363-41c1-9151-c1bc8dc67270" + }, + { + "timeseries_id": "0413073f-27ce-48be-93f5-b30350b12550", + "person_id": "9c65cf85-bcf0-406b-ade5-72e6e4b6927e", + "signal_source": "email", + "timestamp": "2025-12-10T11:07:55.887480", + "value": 0.402, + "score_type": "engagement_score", + "evidence_ref": "8a610d6e-de7f-4716-9123-27c6d9cec0de" + }, + { + "timeseries_id": "7e927c73-26b6-46ac-9b8e-f53ebcc559b9", + "person_id": "9c65cf85-bcf0-406b-ade5-72e6e4b6927e", + "signal_source": "call", + "timestamp": "2025-12-17T11:07:55.887480", + "value": 0.444, + "score_type": "engagement_score", + "evidence_ref": "3b393b89-c89c-439d-a8d2-e93046e184ab" + }, + { + "timeseries_id": "b0620323-480c-4c7c-9020-61a64a0b3639", + "person_id": "9c65cf85-bcf0-406b-ade5-72e6e4b6927e", + "signal_source": "call", + "timestamp": "2026-01-06T11:07:55.887480", + "value": 0.467, + "score_type": "engagement_score", + "evidence_ref": "fe58a9a9-ebce-49b6-af4c-746f82f8cd30" + }, + { + "timeseries_id": "f19f94db-973e-4c41-84c5-da1f4d5bcd15", + "person_id": "9c65cf85-bcf0-406b-ade5-72e6e4b6927e", + "signal_source": "email", + "timestamp": "2026-01-16T11:07:55.887480", + "value": 0.401, + "score_type": "engagement_score", + "evidence_ref": "8152d82a-a6fb-4cd7-88c5-c67eb364f913" + } + ], + "intel_events": [], + "client360": { + "client_ref": "9c65cf85-bcf0-406b-ade5-72e6e4b6927e", + "snapshot_generated_at": "2026-04-18T11:07:55.887612", + "identity": { + "full_name": "Moumita Bose", + "primary_email": "moumita.bose152@gmail.com", + "primary_phone": "+91 8066091571", + "persona_labels": "[\"investment_focus\", \"analytical_buyer\", \"status_buyer\"]", + "buyer_type": "slow_burn_investor" + }, + "account_links": [ + "ccc19201-7df7-4fb9-b3ad-d1eb1edf302c" + ], + "active_opportunities": [ + { + "opportunity_id": "2b921d09-44b9-4a4b-9b30-b912520c9627", + "project": "Sugam Prakriti", + "stage": "negotiation", + "value": 7018823 + } + ], + "recent_interactions": [ + { + "interaction_id": "2ed3a4e9-44c0-4b6e-9b9e-2f155f3f1ca8", + "channel": "whatsapp", + "happened_at": "2026-04-03T11:07:55.887051" + }, + { + "interaction_id": "316f18f4-5939-4c4f-b954-fb70ebafcca2", + "channel": "site_visit", + "happened_at": "2026-04-02T11:07:55.886855" + }, + { + "interaction_id": "235f8271-3bd3-4205-bf13-c724540ef4d6", + "channel": "builder_event", + "happened_at": "2026-03-20T11:07:55.887126" + }, + { + "interaction_id": "1aea9aa8-a694-4331-afec-8fd2b610352d", + "channel": "call", + "happened_at": "2026-03-08T11:07:55.886975" + }, + { + "interaction_id": "d0681aa6-c4ad-4fb8-9792-666742facab9", + "channel": "builder_event", + "happened_at": "2026-01-14T11:07:55.887144" + } + ], + "property_interests": [ + { + "project": "Sugam Prakriti", + "config": "2BHK", + "budget_max": 7169049 + }, + { + "project": "Godrej Elevate", + "config": "3BHK", + "budget_max": 16876517 + } + ], + "tasks": [ + "Check loan approval status" + ], + "qd_overview": { + "intent_score": 0.452, + "urgency_score": 0.48, + "engagement_score": 0.483 + }, + "risk_flags": [ + "multiple_project_comparisons", + "price_objection_raised" + ], + "recommended_next_actions": [ + "Escalate to senior advisor", + "Prepare final offer" + ], + "lead_stage": "negotiation", + "lead_status": "active" + } + }, + { + "person": { + "person_id": "d1734cba-c12b-43fd-bd6c-c931f5dbb7d9", + "full_name": "Poulomi Ganguly", + "primary_email": "poulomi.ganguly99@gmail.com", + "primary_phone": "+91 8687502175", + "secondary_phone": "+91 9108606793", + "linkedin_url": null, + "occupation": "Professor", + "employer": "Axis Bank", + "account_id": "e7bc1d8b-7015-4b81-9df9-933d9a82263b", + "location_city": "Dubai", + "location_country": "USA", + "buyer_type": "nri", + "persona_labels": "[\"investment_focus\", \"cash_rich_investor\"]", + "is_nri": true, + "source_confidence": 0.751, + "created_at": "2025-09-28T11:07:55.887647", + "updated_at": "2026-02-01T11:07:55.887649" + }, + "lead": { + "lead_id": "851d4a1a-d0be-4422-be88-5dfd8b176b75", + "person_id": "d1734cba-c12b-43fd-bd6c-c931f5dbb7d9", + "account_id": "e7bc1d8b-7015-4b81-9df9-933d9a82263b", + "source_system": "walk_in", + "status": "active", + "stage": "booked", + "budget_band": "₹89L - ₹98L", + "urgency": "immediate", + "assigned_user_id": "user_5", + "primary_project": "Eden Devprayag", + "objection": null, + "motivation": "Status/prestige", + "financing_posture": "cash", + "created_at": "2025-09-03T11:07:55.887711", + "updated_at": "2026-01-10T11:07:55.887713" + }, + "opportunities": [ + { + "opportunity_id": "1220bfdf-2660-4e91-ba55-d5d5c87ae23c", + "lead_id": "851d4a1a-d0be-4422-be88-5dfd8b176b75", + "person_id": "d1734cba-c12b-43fd-bd6c-c931f5dbb7d9", + "project_name": "Eden Devprayag", + "unit_config": "2BHK", + "stage": "booked", + "value": 8933044, + "probability": 95, + "expected_close_date": "2026-04-04T11:07:55.887782", + "next_action": "Share legal docs", + "created_at": "2025-12-21T11:07:55.887784", + "updated_at": "2026-03-13T11:07:55.887785" + } + ], + "property_interests": [ + { + "interest_id": "c0bfcdd4-c680-476a-8c6d-1f131e4c6ba6", + "person_id": "d1734cba-c12b-43fd-bd6c-c931f5dbb7d9", + "project_name": "Eden Devprayag", + "configuration": "3BHK", + "budget_min": 7368596, + "budget_max": 9006061, + "urgency": "flexible", + "facing_preference": "east", + "floor_preference": "high", + "notes": "Status/prestige", + "created_at": "2025-10-20T11:07:55.887697" + } + ], + "interactions": [ + { + "interaction_id": "19a5fbe4-38bb-4564-891d-3bf9a833f94f", + "person_id": "d1734cba-c12b-43fd-bd6c-c931f5dbb7d9", + "lead_id": "851d4a1a-d0be-4422-be88-5dfd8b176b75", + "channel": "builder_event", + "interaction_type": "builder_event", + "happened_at": "2026-01-08T11:07:55.887795", + "summary": "Builder Event interaction regarding Eden Devprayag", + "source_ref": "9b288dda-e13d-4fb6-9568-7270d1dff170", + "created_at": "2025-12-05T11:07:55.887807" + }, + { + "interaction_id": "181f6ce4-fb90-48d9-a069-bc8eeab51986", + "person_id": "d1734cba-c12b-43fd-bd6c-c931f5dbb7d9", + "lead_id": "851d4a1a-d0be-4422-be88-5dfd8b176b75", + "channel": "site_visit", + "interaction_type": "site_visit", + "happened_at": "2025-12-01T11:07:55.887816", + "summary": "Site Visit interaction regarding Eden Devprayag", + "source_ref": "8e008177-04d2-4f37-9a4a-739c054a2e6e", + "created_at": "2025-10-24T11:07:55.887824" + }, + { + "interaction_id": "1e3dd98d-461d-4d0b-8714-5e2a6e18b224", + "person_id": "d1734cba-c12b-43fd-bd6c-c931f5dbb7d9", + "lead_id": "851d4a1a-d0be-4422-be88-5dfd8b176b75", + "channel": "email", + "interaction_type": "email", + "happened_at": "2026-03-28T11:07:55.887840", + "summary": "Email interaction regarding Eden Devprayag", + "source_ref": "9f71f9c8-7775-4397-965d-a424ae402a03", + "created_at": "2026-01-06T11:07:55.887848" + } + ], + "calls": [], + "transcripts": [], + "messages": [], + "emails": [ + { + "email_id": "ea6ff3ec-cf94-47ef-bd0b-f6da70697aa8", + "interaction_id": "1e3dd98d-461d-4d0b-8714-5e2a6e18b224", + "person_id": "d1734cba-c12b-43fd-bd6c-c931f5dbb7d9", + "subject": "Booking Procedure - Eden Devprayag", + "body": "Dear Poulomi,\n\nThank you for your interest in Eden Devprayag. As discussed, please find the brochure and floor plans attached.\n\nWe would be happy to arrange a site visit at your convenience.\n\nBest regards,\nVelocity Real Estate Team", + "sender_role": "agent", + "sent_at": "2025-12-10T11:07:55.887858", + "opened_at": "2025-12-06T11:07:55.887859", + "replied_at": "2025-10-26T11:07:55.887861" + } + ], + "visits": [ + { + "visit_id": "397da30c-1b03-4ff5-8e61-56012e057004", + "person_id": "d1734cba-c12b-43fd-bd6c-c931f5dbb7d9", + "lead_id": "851d4a1a-d0be-4422-be88-5dfd8b176b75", + "project_name": "Eden Devprayag", + "visited_at": "2025-12-17T11:07:55.887831", + "visit_notes": "Revisit after 2 months. Re-evaluating options.", + "host_user_id": "user_2", + "revisit_intent": "no", + "household_id": "7b6eeb0d-7147-453c-aba4-5e8d20f41d15" + } + ], + "reminders": [ + { + "reminder_id": "4165a748-f432-4455-aca7-75b64547fb72", + "person_id": "d1734cba-c12b-43fd-bd6c-c931f5dbb7d9", + "lead_id": "851d4a1a-d0be-4422-be88-5dfd8b176b75", + "reminder_text": "Nudge for final decision", + "due_at": "2026-05-15T11:07:55.887864", + "completed": true, + "completed_at": "2026-04-12T11:07:55.887872", + "assigned_user_id": "user_2", + "created_at": "2026-03-05T11:07:55.887874" + }, + { + "reminder_id": "7f0b9963-10ca-4043-929d-22d75aeee523", + "person_id": "d1734cba-c12b-43fd-bd6c-c931f5dbb7d9", + "lead_id": "851d4a1a-d0be-4422-be88-5dfd8b176b75", + "reminder_text": "Follow up after site visit", + "due_at": "2026-04-23T11:07:55.887875", + "completed": false, + "completed_at": null, + "assigned_user_id": "user_4", + "created_at": "2026-03-13T11:07:55.887890" + } + ], + "qd_scores": [ + { + "qd_id": "a2f29b95-74b8-45dc-b2e0-d934fd990288", + "person_id": "d1734cba-c12b-43fd-bd6c-c931f5dbb7d9", + "score_type": "intent_score", + "current_value": 0.88, + "computed_at": "2026-03-24T11:07:55.887903", + "evidence_refs_json": "[\"4a599d5a-dc60-4569-b573-f16fad370651\", \"3960a502-a45c-44cd-811e-83e7f42fa08b\", \"fa0fdac7-f8c3-4cf8-8f52-d469a04f099c\", \"f1503af0-ca4d-4969-974a-220cc16b42f7\", \"43b52392-63bb-4960-8d2c-6250c2b9dad1\"]" + }, + { + "qd_id": "9b59a3a7-f685-4aad-b447-6e9bc89ffc93", + "person_id": "d1734cba-c12b-43fd-bd6c-c931f5dbb7d9", + "score_type": "urgency_score", + "current_value": 1.0, + "computed_at": "2026-02-20T11:07:55.888016", + "evidence_refs_json": "[\"6affc5f3-4b98-47d1-9fb6-eb64a5e410d5\", \"9fc8695b-4836-4ebd-9ceb-75b6cc768967\", \"c6aa7d4e-9a19-49eb-bb8e-76928842bc3c\", \"fcd95cb3-ed8b-402e-ad22-c18c03093dae\", \"bddfac59-c2cd-4d3f-b341-ffb271a0e9f0\"]" + }, + { + "qd_id": "65fe79f4-ad35-4f62-9d90-e9ec32bcdb2f", + "person_id": "d1734cba-c12b-43fd-bd6c-c931f5dbb7d9", + "score_type": "engagement_score", + "current_value": 0.918, + "computed_at": "2026-03-31T11:07:55.888141", + "evidence_refs_json": "[\"8787ed39-eabe-4a98-9843-1cd0fa5196d3\", \"45ac5525-7af3-4035-a3eb-063f17e06f41\", \"1326e53a-6986-45ed-955f-d3f13f5aafab\", \"0967657c-ad79-45ff-b44d-809c3694da3c\", \"41395981-5f7d-4660-b26e-cde345a2813d\"]" + } + ], + "qd_timeseries": [ + { + "timeseries_id": "5aa7f62a-714f-4883-b78c-db93265b40e3", + "person_id": "d1734cba-c12b-43fd-bd6c-c931f5dbb7d9", + "signal_source": "email", + "timestamp": "2025-11-27T11:07:55.887937", + "value": 0.98, + "score_type": "intent_score", + "evidence_ref": "246ac762-f084-4528-a8af-6da04f94a2b6" + }, + { + "timeseries_id": "39be9e84-6ae3-4387-a634-a79b44695942", + "person_id": "d1734cba-c12b-43fd-bd6c-c931f5dbb7d9", + "signal_source": "email", + "timestamp": "2025-12-02T11:07:55.887937", + "value": 0.787, + "score_type": "intent_score", + "evidence_ref": "7836b485-0725-4d78-a3cd-6d728e260f4c" + }, + { + "timeseries_id": "42ccd844-903c-4f13-8428-5d985846db61", + "person_id": "d1734cba-c12b-43fd-bd6c-c931f5dbb7d9", + "signal_source": "whatsapp", + "timestamp": "2025-12-11T11:07:55.887937", + "value": 0.896, + "score_type": "intent_score", + "evidence_ref": "61926ddd-517e-4ac3-917c-24307d4f4f35" + }, + { + "timeseries_id": "8a98f57a-6405-49f7-b872-e68435b9cabd", + "person_id": "d1734cba-c12b-43fd-bd6c-c931f5dbb7d9", + "signal_source": "call", + "timestamp": "2025-12-19T11:07:55.887937", + "value": 0.895, + "score_type": "intent_score", + "evidence_ref": "ba24e8a9-6e00-4b8b-9d25-1476973d7468" + }, + { + "timeseries_id": "f9b94004-aa26-44d5-b2ef-062056939839", + "person_id": "d1734cba-c12b-43fd-bd6c-c931f5dbb7d9", + "signal_source": "site_visit", + "timestamp": "2025-12-27T11:07:55.887937", + "value": 0.968, + "score_type": "intent_score", + "evidence_ref": "97d4496b-8f0b-4b44-96f3-8c00404d28a5" + }, + { + "timeseries_id": "f3ae1ed2-1ae1-4819-a5c1-6f7dd5f25da9", + "person_id": "d1734cba-c12b-43fd-bd6c-c931f5dbb7d9", + "signal_source": "email", + "timestamp": "2025-12-23T11:07:55.888049", + "value": 0.889, + "score_type": "urgency_score", + "evidence_ref": "82e1854d-49f7-4579-b832-75e9b0de3d2c" + }, + { + "timeseries_id": "c3ca1d12-afc6-428b-a99a-908b744ed47a", + "person_id": "d1734cba-c12b-43fd-bd6c-c931f5dbb7d9", + "signal_source": "email", + "timestamp": "2026-01-05T11:07:55.888049", + "value": 0.915, + "score_type": "urgency_score", + "evidence_ref": "7bb9a559-4e43-409e-b0c3-ec8fdf47963e" + }, + { + "timeseries_id": "90676ced-375b-4567-b916-cf61330705c6", + "person_id": "d1734cba-c12b-43fd-bd6c-c931f5dbb7d9", + "signal_source": "call", + "timestamp": "2026-01-22T11:07:55.888049", + "value": 0.975, + "score_type": "urgency_score", + "evidence_ref": "599584e3-65a4-496d-bacb-83da8106e622" + }, + { + "timeseries_id": "6e163fec-abe9-439a-9701-fe8095b04242", + "person_id": "d1734cba-c12b-43fd-bd6c-c931f5dbb7d9", + "signal_source": "whatsapp", + "timestamp": "2026-02-06T11:07:55.888049", + "value": 0.892, + "score_type": "urgency_score", + "evidence_ref": "addc611d-10ba-4336-9376-e7ae8f452a8e" + }, + { + "timeseries_id": "7a24115f-8316-4608-adb1-0ebe541e0a5d", + "person_id": "d1734cba-c12b-43fd-bd6c-c931f5dbb7d9", + "signal_source": "site_visit", + "timestamp": "2026-02-26T11:07:55.888049", + "value": 1.0, + "score_type": "urgency_score", + "evidence_ref": "dbe08689-8f16-457f-9bfd-13e43f6963e0" + }, + { + "timeseries_id": "f3f79ec2-fe5b-45f9-ad7b-35896a7836e2", + "person_id": "d1734cba-c12b-43fd-bd6c-c931f5dbb7d9", + "signal_source": "site_visit", + "timestamp": "2026-03-03T11:07:55.888049", + "value": 1.0, + "score_type": "urgency_score", + "evidence_ref": "a6a245bc-ba19-46f6-afa8-7a7fe14d5cfd" + }, + { + "timeseries_id": "091e3725-5461-401e-bcc8-f44ec892a742", + "person_id": "d1734cba-c12b-43fd-bd6c-c931f5dbb7d9", + "signal_source": "whatsapp", + "timestamp": "2025-11-07T11:07:55.888172", + "value": 0.87, + "score_type": "engagement_score", + "evidence_ref": "fd61f7b0-646c-4e1c-86e5-c8c74aeef07f" + }, + { + "timeseries_id": "5703a79f-1893-493a-a504-6e64e8c15527", + "person_id": "d1734cba-c12b-43fd-bd6c-c931f5dbb7d9", + "signal_source": "site_visit", + "timestamp": "2025-11-26T11:07:55.888172", + "value": 0.863, + "score_type": "engagement_score", + "evidence_ref": "4be08aec-83f8-4d35-8983-9d5266968b33" + }, + { + "timeseries_id": "5d5ff30e-e052-4cec-ba3d-9ac74954ed11", + "person_id": "d1734cba-c12b-43fd-bd6c-c931f5dbb7d9", + "signal_source": "call", + "timestamp": "2025-12-14T11:07:55.888172", + "value": 0.843, + "score_type": "engagement_score", + "evidence_ref": "7a7d6d36-b073-4533-9d3a-7e24088733cf" + } + ], + "intel_events": [ + { + "event_id": "dd4f207c-69a0-4a08-bc8b-7edc75fa391c", + "event_type": "perception_session", + "person_id": "d1734cba-c12b-43fd-bd6c-c931f5dbb7d9", + "project_ref": "Eden Devprayag", + "session_at": "2026-03-01T11:07:55.888239", + "rooms_visited": "[\"amenity_deck\", \"model_flat_3bhk\"]", + "dwell_time_seconds": 410, + "engagement_score": 0.752, + "cctv_ref": "cctv_98afce93", + "notes": "Perception session recorded during scheduled site visit" + } + ], + "client360": { + "client_ref": "d1734cba-c12b-43fd-bd6c-c931f5dbb7d9", + "snapshot_generated_at": "2026-04-18T11:07:55.888259", + "identity": { + "full_name": "Poulomi Ganguly", + "primary_email": "poulomi.ganguly99@gmail.com", + "primary_phone": "+91 8687502175", + "persona_labels": "[\"investment_focus\", \"cash_rich_investor\"]", + "buyer_type": "nri" + }, + "account_links": [ + "e7bc1d8b-7015-4b81-9df9-933d9a82263b" + ], + "active_opportunities": [ + { + "opportunity_id": "1220bfdf-2660-4e91-ba55-d5d5c87ae23c", + "project": "Eden Devprayag", + "stage": "booked", + "value": 8933044 + } + ], + "recent_interactions": [ + { + "interaction_id": "1e3dd98d-461d-4d0b-8714-5e2a6e18b224", + "channel": "email", + "happened_at": "2026-03-28T11:07:55.887840" + }, + { + "interaction_id": "19a5fbe4-38bb-4564-891d-3bf9a833f94f", + "channel": "builder_event", + "happened_at": "2026-01-08T11:07:55.887795" + }, + { + "interaction_id": "181f6ce4-fb90-48d9-a069-bc8eeab51986", + "channel": "site_visit", + "happened_at": "2025-12-01T11:07:55.887816" + } + ], + "property_interests": [ + { + "project": "Eden Devprayag", + "config": "3BHK", + "budget_max": 9006061 + } + ], + "tasks": [ + "Follow up after site visit" + ], + "qd_overview": { + "intent_score": 0.88, + "urgency_score": 1.0, + "engagement_score": 0.918 + }, + "risk_flags": [], + "recommended_next_actions": [ + "Share loan documents", + "Introduce relationship manager" + ], + "lead_stage": "booked", + "lead_status": "active" + } + }, + { + "person": { + "person_id": "f3ca7bc0-6ba9-44d8-af5b-1f57260ec7e3", + "full_name": "Arnav Chowdhury", + "primary_email": "arnav.chowdhury30@yahoo.com", + "primary_phone": "+91 7827912699", + "secondary_phone": "+91 7862114934", + "linkedin_url": "https://linkedin.com/in/arnav-chowdhury-355", + "occupation": "Port Authority Officer", + "employer": "State Bank of India", + "account_id": "283303e6-6a31-4582-8839-6075a7675ffb", + "location_city": "Kolkata", + "location_country": "India", + "buyer_type": "high_intent", + "persona_labels": "[\"first_time_buyer\"]", + "is_nri": false, + "source_confidence": 0.864, + "created_at": "2025-07-20T11:07:55.888291", + "updated_at": "2026-02-26T11:07:55.888293" + }, + "lead": { + "lead_id": "c8a37552-04d5-48cd-985a-cfe8a94d53e9", + "person_id": "f3ca7bc0-6ba9-44d8-af5b-1f57260ec7e3", + "account_id": "283303e6-6a31-4582-8839-6075a7675ffb", + "source_system": "referral", + "status": "active", + "stage": "proposal_sent", + "budget_band": "₹100L - ₹110L", + "urgency": "within_6_months", + "assigned_user_id": "user_1", + "primary_project": "Siddha Sky Waterfront", + "objection": null, + "motivation": "Status/prestige", + "financing_posture": "home_loan", + "created_at": "2025-09-30T11:07:55.888350", + "updated_at": "2025-11-22T11:07:55.888352" + }, + "opportunities": [ + { + "opportunity_id": "0aa4034b-3654-42ed-bf4a-b2a26981e42b", + "lead_id": "c8a37552-04d5-48cd-985a-cfe8a94d53e9", + "person_id": "f3ca7bc0-6ba9-44d8-af5b-1f57260ec7e3", + "project_name": "Siddha Sky Waterfront", + "unit_config": "3BHK", + "stage": "proposal_sent", + "value": 10012765, + "probability": 55, + "expected_close_date": "2026-06-20T11:07:55.888402", + "next_action": "Schedule site revisit", + "created_at": "2026-02-15T11:07:55.888407", + "updated_at": "2026-04-03T11:07:55.888408" + } + ], + "property_interests": [ + { + "interest_id": "4b8b90c7-1e6c-46b1-a026-04fa96dd1df9", + "person_id": "f3ca7bc0-6ba9-44d8-af5b-1f57260ec7e3", + "project_name": "Siddha Sky Waterfront", + "configuration": "3BHK", + "budget_min": 14174059, + "budget_max": 17323850, + "urgency": "flexible", + "facing_preference": "any", + "floor_preference": "any", + "notes": "Investment portfolio", + "created_at": "2025-07-10T11:07:55.888318" + }, + { + "interest_id": "4e7d9543-f23a-4a2d-abc7-a56451b04cd3", + "person_id": "f3ca7bc0-6ba9-44d8-af5b-1f57260ec7e3", + "project_name": "DTC Good Earth", + "configuration": "3BHK", + "budget_min": 6715398, + "budget_max": 8207709, + "urgency": "investment_only", + "facing_preference": "north", + "floor_preference": "high", + "notes": "Investment portfolio", + "created_at": "2025-07-18T11:07:55.888332" + } + ], + "interactions": [ + { + "interaction_id": "5a3bc5c8-12ca-49b4-bca8-1bc5b46b013d", + "person_id": "f3ca7bc0-6ba9-44d8-af5b-1f57260ec7e3", + "lead_id": "c8a37552-04d5-48cd-985a-cfe8a94d53e9", + "channel": "referral", + "interaction_type": "referral", + "happened_at": "2026-01-29T11:07:55.888418", + "summary": "Referral interaction regarding Siddha Sky Waterfront", + "source_ref": "170831a9-b45a-467d-aa23-343a8ae7d1f9", + "created_at": "2025-10-17T11:07:55.888426" + }, + { + "interaction_id": "c16d7a24-f384-46ea-b678-82cbaa4ad6b5", + "person_id": "f3ca7bc0-6ba9-44d8-af5b-1f57260ec7e3", + "lead_id": "c8a37552-04d5-48cd-985a-cfe8a94d53e9", + "channel": "digital_ad", + "interaction_type": "digital_ad", + "happened_at": "2025-11-04T11:07:55.888435", + "summary": "Digital Ad interaction regarding Siddha Sky Waterfront", + "source_ref": "54768eab-a33b-4255-a550-e7f031cea916", + "created_at": "2026-02-06T11:07:55.888445" + }, + { + "interaction_id": "50793e31-0e08-40b2-b597-fddaa7dd6d76", + "person_id": "f3ca7bc0-6ba9-44d8-af5b-1f57260ec7e3", + "lead_id": "c8a37552-04d5-48cd-985a-cfe8a94d53e9", + "channel": "site_visit", + "interaction_type": "site_visit", + "happened_at": "2026-01-11T11:07:55.888456", + "summary": "Site Visit interaction regarding Siddha Sky Waterfront", + "source_ref": "6686ab92-4061-4992-9aef-c1338dc31a53", + "created_at": "2026-01-18T11:07:55.888463" + }, + { + "interaction_id": "95401326-b33c-4b64-b309-5515aace786e", + "person_id": "f3ca7bc0-6ba9-44d8-af5b-1f57260ec7e3", + "lead_id": "c8a37552-04d5-48cd-985a-cfe8a94d53e9", + "channel": "email", + "interaction_type": "email", + "happened_at": "2025-10-26T11:07:55.888485", + "summary": "Email interaction regarding Siddha Sky Waterfront", + "source_ref": "a8122131-fa9f-4347-bf8c-5c3799d13ca7", + "created_at": "2025-12-05T11:07:55.888492" + }, + { + "interaction_id": "84cad989-5040-4825-9bb6-ecfb0ffad545", + "person_id": "f3ca7bc0-6ba9-44d8-af5b-1f57260ec7e3", + "lead_id": "c8a37552-04d5-48cd-985a-cfe8a94d53e9", + "channel": "digital_ad", + "interaction_type": "digital_ad", + "happened_at": "2026-01-12T11:07:55.888511", + "summary": "Digital Ad interaction regarding Siddha Sky Waterfront", + "source_ref": "5f8953f4-2ac3-41aa-84d7-bb756242252f", + "created_at": "2025-11-25T11:07:55.888518" + } + ], + "calls": [], + "transcripts": [], + "messages": [], + "emails": [ + { + "email_id": "f2502704-0e76-421a-978e-b481caf0aed8", + "interaction_id": "95401326-b33c-4b64-b309-5515aace786e", + "person_id": "f3ca7bc0-6ba9-44d8-af5b-1f57260ec7e3", + "subject": "Floor Plan & Price List - Siddha Sky Waterfront", + "body": "Dear Arnav,\n\nWe are pleased to share the exclusive early-bird pricing for Siddha Sky Waterfront. This offer is valid until the end of the month.\n\nPlease let us know if you would like to schedule a meeting.\n\nWarm regards,\nVelocity Real Estate", + "sender_role": "agent", + "sent_at": "2025-11-19T11:07:55.888503", + "opened_at": null, + "replied_at": null + } + ], + "visits": [ + { + "visit_id": "4468838b-c95f-41c9-9508-344bc178199e", + "person_id": "f3ca7bc0-6ba9-44d8-af5b-1f57260ec7e3", + "lead_id": "c8a37552-04d5-48cd-985a-cfe8a94d53e9", + "project_name": "Siddha Sky Waterfront", + "visited_at": "2025-12-21T11:07:55.888471", + "visit_notes": "Second visit. More focused on parking and amenities.", + "host_user_id": "user_2", + "revisit_intent": "no", + "household_id": null + } + ], + "reminders": [ + { + "reminder_id": "d5dcdbfd-2058-46ae-b939-0978b8aff3be", + "person_id": "f3ca7bc0-6ba9-44d8-af5b-1f57260ec7e3", + "lead_id": "c8a37552-04d5-48cd-985a-cfe8a94d53e9", + "reminder_text": "Nudge for final decision", + "due_at": "2026-05-09T11:07:55.888521", + "completed": true, + "completed_at": "2026-04-15T11:07:55.888529", + "assigned_user_id": "user_3", + "created_at": "2026-03-01T11:07:55.888531" + }, + { + "reminder_id": "b572076a-0c7d-4fd2-91d6-6bb4c64491a1", + "person_id": "f3ca7bc0-6ba9-44d8-af5b-1f57260ec7e3", + "lead_id": "c8a37552-04d5-48cd-985a-cfe8a94d53e9", + "reminder_text": "Send legal documents", + "due_at": "2026-04-28T11:07:55.888533", + "completed": false, + "completed_at": null, + "assigned_user_id": "user_3", + "created_at": "2026-02-05T11:07:55.888540" + }, + { + "reminder_id": "f6134e0a-4a8b-4a69-b5d4-a053bff295b5", + "person_id": "f3ca7bc0-6ba9-44d8-af5b-1f57260ec7e3", + "lead_id": "c8a37552-04d5-48cd-985a-cfe8a94d53e9", + "reminder_text": "Send legal documents", + "due_at": "2026-04-26T11:07:55.888542", + "completed": true, + "completed_at": "2026-04-11T11:07:55.888549", + "assigned_user_id": "user_2", + "created_at": "2026-02-13T11:07:55.888551" + } + ], + "qd_scores": [ + { + "qd_id": "68e1e1af-495f-40a2-b043-f52fb94974be", + "person_id": "f3ca7bc0-6ba9-44d8-af5b-1f57260ec7e3", + "score_type": "intent_score", + "current_value": 0.921, + "computed_at": "2026-03-30T11:07:55.888563", + "evidence_refs_json": "[\"5ccd0c66-5142-48cf-865e-c863da46c54b\", \"8904e5ae-b626-414d-8bf7-1a163524b6ca\", \"2f2259df-4f20-4722-9f06-bd22f18d52eb\", \"f0c823b1-8227-4cee-85ff-78caf6098ca7\"]" + }, + { + "qd_id": "65b4f93f-45fd-4070-b9e2-fc426918a6bb", + "person_id": "f3ca7bc0-6ba9-44d8-af5b-1f57260ec7e3", + "score_type": "urgency_score", + "current_value": 0.906, + "computed_at": "2026-02-18T11:07:55.888686", + "evidence_refs_json": "[\"714df857-12f9-4c20-b94b-791e90ae9cdc\", \"1ab9f97f-a84f-4ced-9670-05dcc1223215\", \"40fdaa8e-0c7b-4dd7-a7e3-a7ff437b5a58\"]" + }, + { + "qd_id": "9459bce7-685b-47bf-8141-bafdb00990ac", + "person_id": "f3ca7bc0-6ba9-44d8-af5b-1f57260ec7e3", + "score_type": "engagement_score", + "current_value": 0.909, + "computed_at": "2026-03-09T11:07:55.888784", + "evidence_refs_json": "[\"b7048c1b-fb6c-4df6-8f3f-566b8f36a86c\", \"0c32053a-3da5-4200-aee6-4168090e3cc0\"]" + } + ], + "qd_timeseries": [ + { + "timeseries_id": "fc6d3588-2c16-45a5-a342-d8bb6a2ad5a6", + "person_id": "f3ca7bc0-6ba9-44d8-af5b-1f57260ec7e3", + "signal_source": "email", + "timestamp": "2025-11-08T11:07:55.888591", + "value": 0.978, + "score_type": "intent_score", + "evidence_ref": "2d5df6e6-683d-40b1-85b0-e0e325fbdd4d" + }, + { + "timeseries_id": "028fe699-9d49-4526-8664-d3be0f332485", + "person_id": "f3ca7bc0-6ba9-44d8-af5b-1f57260ec7e3", + "signal_source": "site_visit", + "timestamp": "2025-11-19T11:07:55.888591", + "value": 0.975, + "score_type": "intent_score", + "evidence_ref": "49baf94d-1521-48bd-829f-6ff37ccd1508" + }, + { + "timeseries_id": "bbb998c4-b75b-41a7-acca-eb6d039dd827", + "person_id": "f3ca7bc0-6ba9-44d8-af5b-1f57260ec7e3", + "signal_source": "email", + "timestamp": "2025-12-01T11:07:55.888591", + "value": 1.0, + "score_type": "intent_score", + "evidence_ref": "9116b4aa-c017-49ef-baef-d03f59b5319b" + }, + { + "timeseries_id": "37c402ea-2867-40cd-baba-bde3f78020d1", + "person_id": "f3ca7bc0-6ba9-44d8-af5b-1f57260ec7e3", + "signal_source": "site_visit", + "timestamp": "2025-12-17T11:07:55.888591", + "value": 1.0, + "score_type": "intent_score", + "evidence_ref": "7797c681-ebb3-469c-87e8-9502caa2b951" + }, + { + "timeseries_id": "7e0e27eb-8da5-4019-b10a-e3f4502a0371", + "person_id": "f3ca7bc0-6ba9-44d8-af5b-1f57260ec7e3", + "signal_source": "site_visit", + "timestamp": "2025-12-27T11:07:55.888591", + "value": 0.824, + "score_type": "intent_score", + "evidence_ref": "9e0cca61-abf7-4687-b46c-04e5f5497101" + }, + { + "timeseries_id": "fc21b784-5834-4f50-8a25-acec4c94140c", + "person_id": "f3ca7bc0-6ba9-44d8-af5b-1f57260ec7e3", + "signal_source": "site_visit", + "timestamp": "2026-01-05T11:07:55.888591", + "value": 0.975, + "score_type": "intent_score", + "evidence_ref": "feab9ab7-98e0-4fe9-abc9-1c02ffd51ce2" + }, + { + "timeseries_id": "50556497-2ad4-487b-98aa-aea3c9ae28a6", + "person_id": "f3ca7bc0-6ba9-44d8-af5b-1f57260ec7e3", + "signal_source": "whatsapp", + "timestamp": "2025-10-27T11:07:55.888708", + "value": 0.871, + "score_type": "urgency_score", + "evidence_ref": "78099003-101b-4e4c-9818-1a5efa8de5bb" + }, + { + "timeseries_id": "2c3f81d5-3343-4085-8772-a171c5c81de9", + "person_id": "f3ca7bc0-6ba9-44d8-af5b-1f57260ec7e3", + "signal_source": "email", + "timestamp": "2025-11-10T11:07:55.888708", + "value": 0.975, + "score_type": "urgency_score", + "evidence_ref": "d93296cc-244c-4ff4-80f6-be67d49db7fc" + }, + { + "timeseries_id": "3c8ab9c2-34cc-420e-9935-258b6b5855d0", + "person_id": "f3ca7bc0-6ba9-44d8-af5b-1f57260ec7e3", + "signal_source": "site_visit", + "timestamp": "2025-11-25T11:07:55.888708", + "value": 0.849, + "score_type": "urgency_score", + "evidence_ref": "ff3a6d86-4ddd-4638-a737-7ce4698649bd" + }, + { + "timeseries_id": "bec23309-15d2-4130-995d-61e240316cfa", + "person_id": "f3ca7bc0-6ba9-44d8-af5b-1f57260ec7e3", + "signal_source": "email", + "timestamp": "2025-12-09T11:07:55.888708", + "value": 0.99, + "score_type": "urgency_score", + "evidence_ref": "f2be3abd-5552-4c25-9ab1-821c32747de0" + }, + { + "timeseries_id": "d584f9ed-fac4-4745-859a-5320f61ecc02", + "person_id": "f3ca7bc0-6ba9-44d8-af5b-1f57260ec7e3", + "signal_source": "call", + "timestamp": "2025-12-29T11:07:55.888708", + "value": 0.994, + "score_type": "urgency_score", + "evidence_ref": "3fcca203-e6f8-4bdd-9a9f-0c3958a76b04" + }, + { + "timeseries_id": "386fca9a-e2dc-4a6e-a0b1-9f49e40ef1bc", + "person_id": "f3ca7bc0-6ba9-44d8-af5b-1f57260ec7e3", + "signal_source": "email", + "timestamp": "2025-11-27T11:07:55.888799", + "value": 0.916, + "score_type": "engagement_score", + "evidence_ref": "eaef31d8-f05b-4f5a-bf5a-407e22c77e5e" + }, + { + "timeseries_id": "78bff704-05ce-42a9-80ca-dd5975cb43a3", + "person_id": "f3ca7bc0-6ba9-44d8-af5b-1f57260ec7e3", + "signal_source": "call", + "timestamp": "2025-12-15T11:07:55.888799", + "value": 0.998, + "score_type": "engagement_score", + "evidence_ref": "aa557793-302e-4f10-b0c5-dee2ecd42523" + }, + { + "timeseries_id": "fe2f8d12-b09f-490b-a1c1-5058baa72325", + "person_id": "f3ca7bc0-6ba9-44d8-af5b-1f57260ec7e3", + "signal_source": "whatsapp", + "timestamp": "2025-12-24T11:07:55.888799", + "value": 1.0, + "score_type": "engagement_score", + "evidence_ref": "ae03cc97-f76f-4938-ae99-527e77cb59c4" + }, + { + "timeseries_id": "d401b28c-6721-4255-918a-3fff0de7e65e", + "person_id": "f3ca7bc0-6ba9-44d8-af5b-1f57260ec7e3", + "signal_source": "email", + "timestamp": "2026-01-08T11:07:55.888799", + "value": 1.0, + "score_type": "engagement_score", + "evidence_ref": "a09d18a6-5c95-4133-9ae4-79cdbe8870f0" + } + ], + "intel_events": [ + { + "event_id": "40c8d8de-0548-4613-b013-98882ded1083", + "event_type": "number_plate_detected", + "person_id": "f3ca7bc0-6ba9-44d8-af5b-1f57260ec7e3", + "project_ref": "Siddha Sky Waterfront", + "detected_at": "2026-02-18T11:07:55.888861", + "vehicle_plate_hash": "WB28F3954", + "confidence": 0.937, + "media_ref": "cctv_clip_8e5ba3cc.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + } + ], + "client360": { + "client_ref": "f3ca7bc0-6ba9-44d8-af5b-1f57260ec7e3", + "snapshot_generated_at": "2026-04-18T11:07:55.888875", + "identity": { + "full_name": "Arnav Chowdhury", + "primary_email": "arnav.chowdhury30@yahoo.com", + "primary_phone": "+91 7827912699", + "persona_labels": "[\"first_time_buyer\"]", + "buyer_type": "high_intent" + }, + "account_links": [ + "283303e6-6a31-4582-8839-6075a7675ffb" + ], + "active_opportunities": [ + { + "opportunity_id": "0aa4034b-3654-42ed-bf4a-b2a26981e42b", + "project": "Siddha Sky Waterfront", + "stage": "proposal_sent", + "value": 10012765 + } + ], + "recent_interactions": [ + { + "interaction_id": "5a3bc5c8-12ca-49b4-bca8-1bc5b46b013d", + "channel": "referral", + "happened_at": "2026-01-29T11:07:55.888418" + }, + { + "interaction_id": "84cad989-5040-4825-9bb6-ecfb0ffad545", + "channel": "digital_ad", + "happened_at": "2026-01-12T11:07:55.888511" + }, + { + "interaction_id": "50793e31-0e08-40b2-b597-fddaa7dd6d76", + "channel": "site_visit", + "happened_at": "2026-01-11T11:07:55.888456" + }, + { + "interaction_id": "c16d7a24-f384-46ea-b678-82cbaa4ad6b5", + "channel": "digital_ad", + "happened_at": "2025-11-04T11:07:55.888435" + }, + { + "interaction_id": "95401326-b33c-4b64-b309-5515aace786e", + "channel": "email", + "happened_at": "2025-10-26T11:07:55.888485" + } + ], + "property_interests": [ + { + "project": "Siddha Sky Waterfront", + "config": "3BHK", + "budget_max": 17323850 + }, + { + "project": "DTC Good Earth", + "config": "3BHK", + "budget_max": 8207709 + } + ], + "tasks": [ + "Send legal documents" + ], + "qd_overview": { + "intent_score": 0.921, + "urgency_score": 0.906, + "engagement_score": 0.909 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Chase for decision", + "Address objections" + ], + "lead_stage": "proposal_sent", + "lead_status": "active" + } + }, + { + "person": { + "person_id": "c0bf70c1-1d37-4c7f-94e1-d80ac2a50306", + "full_name": "Nilanjan Mondal", + "primary_email": "nilanjan.mondal281@yahoo.com", + "primary_phone": "+91 7724156214", + "secondary_phone": "+91 7680473653", + "linkedin_url": null, + "occupation": "Entrepreneur", + "employer": null, + "account_id": null, + "location_city": "Dubai", + "location_country": "UAE", + "buyer_type": "nri", + "persona_labels": "[\"analytical_buyer\"]", + "is_nri": true, + "source_confidence": 0.782, + "created_at": "2025-07-01T11:07:55.888908", + "updated_at": "2025-11-06T11:07:55.888910" + }, + "lead": { + "lead_id": "ebf4e3aa-7c94-4dca-a94a-409369bf4525", + "person_id": "c0bf70c1-1d37-4c7f-94e1-d80ac2a50306", + "account_id": null, + "source_system": "walk_in", + "status": "active", + "stage": "inquiry", + "budget_band": "₹49L - ₹54L", + "urgency": "within_3_months", + "assigned_user_id": "user_1", + "primary_project": "Siddha Serena", + "objection": null, + "motivation": "Own home for the first time", + "financing_posture": "part_cash_part_loan", + "created_at": "2025-09-13T11:07:55.888957", + "updated_at": "2025-12-22T11:07:55.888959" + }, + "opportunities": [], + "property_interests": [ + { + "interest_id": "0dbc3a29-264a-43c8-a7d0-989eae26c5ad", + "person_id": "c0bf70c1-1d37-4c7f-94e1-d80ac2a50306", + "project_name": "Siddha Serena", + "configuration": "2BHK", + "budget_min": 7078145, + "budget_max": 8651066, + "urgency": "within_6_months", + "facing_preference": "east", + "floor_preference": "high", + "notes": "School proximity", + "created_at": "2025-12-31T11:07:55.888934" + }, + { + "interest_id": "66a95981-0b37-4324-952f-a2a0b923e4da", + "person_id": "c0bf70c1-1d37-4c7f-94e1-d80ac2a50306", + "project_name": "DTC Good Earth", + "configuration": "2BHK", + "budget_min": 7054638, + "budget_max": 8622335, + "urgency": "immediate", + "facing_preference": "west", + "floor_preference": "mid", + "notes": "Retirement planning", + "created_at": "2025-11-30T11:07:55.888944" + } + ], + "interactions": [ + { + "interaction_id": "b48d3b01-bb1c-4c60-9c8d-d15dbf214cc3", + "person_id": "c0bf70c1-1d37-4c7f-94e1-d80ac2a50306", + "lead_id": "ebf4e3aa-7c94-4dca-a94a-409369bf4525", + "channel": "site_visit", + "interaction_type": "site_visit", + "happened_at": "2025-10-24T11:07:55.888985", + "summary": "Site Visit interaction regarding Siddha Serena", + "source_ref": "5bc23c1b-9bd8-4f23-a6a3-531ec6f5b22f", + "created_at": "2026-03-14T11:07:55.888992" + }, + { + "interaction_id": "4748f161-dbca-4fe5-a831-502216d0d8ae", + "person_id": "c0bf70c1-1d37-4c7f-94e1-d80ac2a50306", + "lead_id": "ebf4e3aa-7c94-4dca-a94a-409369bf4525", + "channel": "call", + "interaction_type": "call", + "happened_at": "2026-01-04T11:07:55.889009", + "summary": "Call interaction regarding Siddha Serena", + "source_ref": "71b05ec0-3282-4b1f-80b9-dabe9864cf3d", + "created_at": "2026-04-13T11:07:55.889017" + }, + { + "interaction_id": "ef16166b-e1cd-4648-8cd8-2629068d9fdc", + "person_id": "c0bf70c1-1d37-4c7f-94e1-d80ac2a50306", + "lead_id": "ebf4e3aa-7c94-4dca-a94a-409369bf4525", + "channel": "site_visit", + "interaction_type": "site_visit", + "happened_at": "2025-10-20T11:07:55.889092", + "summary": "Site Visit interaction regarding Siddha Serena", + "source_ref": "04c75451-fe51-4c2e-aee8-0d4fb854f72e", + "created_at": "2026-03-09T11:07:55.889101" + }, + { + "interaction_id": "fbd27ea2-6d71-4e45-b6d2-df033359d27b", + "person_id": "c0bf70c1-1d37-4c7f-94e1-d80ac2a50306", + "lead_id": "ebf4e3aa-7c94-4dca-a94a-409369bf4525", + "channel": "site_visit", + "interaction_type": "site_visit", + "happened_at": "2025-10-30T11:07:55.889120", + "summary": "Site Visit interaction regarding Siddha Serena", + "source_ref": "6d040ce7-2e1d-4f13-ba52-008d3c0be97e", + "created_at": "2026-03-23T11:07:55.889128" + }, + { + "interaction_id": "ebff2900-1565-4b0c-b4c5-e99d77ce4412", + "person_id": "c0bf70c1-1d37-4c7f-94e1-d80ac2a50306", + "lead_id": "ebf4e3aa-7c94-4dca-a94a-409369bf4525", + "channel": "referral", + "interaction_type": "referral", + "happened_at": "2025-10-20T11:07:55.889147", + "summary": "Referral interaction regarding Siddha Serena", + "source_ref": "4d3afd47-a272-4727-be7f-87e69fbca922", + "created_at": "2026-03-13T11:07:55.889155" + } + ], + "calls": [ + { + "call_id": "161d2fcb-a1f2-46dc-96a7-9f1c1024b3c0", + "interaction_id": "4748f161-dbca-4fe5-a831-502216d0d8ae", + "person_id": "c0bf70c1-1d37-4c7f-94e1-d80ac2a50306", + "call_direction": "inbound", + "duration_seconds": 576, + "recording_ref": "recording_161d2fcb.mp3", + "transcript_ref": "69b1673c-74dd-48d1-90ce-1c4ee10e35b3", + "call_ts": "2026-02-19T11:07:55.889035" + } + ], + "transcripts": [ + { + "transcript_id": "69b1673c-74dd-48d1-90ce-1c4ee10e35b3", + "call_id": "161d2fcb-a1f2-46dc-96a7-9f1c1024b3c0", + "person_id": "c0bf70c1-1d37-4c7f-94e1-d80ac2a50306", + "interaction_ref": "4748f161-dbca-4fe5-a831-502216d0d8ae", + "language": "en", + "full_text": "Hello, am I speaking with Nilanjan? This is Velocity Real Estate. Yes speaking. How can I help you? We noticed your inquiry about Siddha Serena. Are you still looking? Yes I am. Can you tell me more about the configurations and pricing? Of course. We have 2BHK units available starting from ₹4,958,231. Would you be interested in a site visit? Yes, that sounds good. What about the possession timeline? The project is expected to be ready by Q3 2027. We have early-bird pricing available this month. I'll discuss with my family and get back to you. Can you send me the brochure? Absolutely. I'll WhatsApp you the details right away. Thank you Nilanjan.", + "speaker_segments_json": "[{\"speaker\": \"agent\", \"start_seconds\": 0, \"end_seconds\": 11, \"text\": \"Hello, am I speaking with Nilanjan? This is Velocity Real Estate.\"}, {\"speaker\": \"client\", \"start_seconds\": 8, \"end_seconds\": 18, \"text\": \"Yes speaking. How can I help you?\"}, {\"speaker\": \"agent\", \"start_seconds\": 22, \"end_seconds\": 38, \"text\": \"We noticed your inquiry about Siddha Serena. Are you still looking?\"}, {\"speaker\": \"client\", \"start_seconds\": 27, \"end_seconds\": 44, \"text\": \"Yes I am. Can you tell me more about the configurations and pricing?\"}, {\"speaker\": \"agent\", \"start_seconds\": 64, \"end_seconds\": 70, \"text\": \"Of course. We have 2BHK units available starting from \\u20b94,958,231. Would you be interested in a site visit?\"}, {\"speaker\": \"client\", \"start_seconds\": 45, \"end_seconds\": 53, \"text\": \"Yes, that sounds good. What about the possession timeline?\"}, {\"speaker\": \"agent\", \"start_seconds\": 48, \"end_seconds\": 54, \"text\": \"The project is expected to be ready by Q3 2027. We have early-bird pricing available this month.\"}, {\"speaker\": \"client\", \"start_seconds\": 77, \"end_seconds\": 95, \"text\": \"I'll discuss with my family and get back to you. Can you send me the brochure?\"}, {\"speaker\": \"agent\", \"start_seconds\": 176, \"end_seconds\": 193, \"text\": \"Absolutely. I'll WhatsApp you the details right away. Thank you Nilanjan.\"}]", + "confidence": 0.913, + "created_at": "2026-02-19T11:07:55.889035" + } + ], + "messages": [], + "emails": [], + "visits": [ + { + "visit_id": "194947c5-4d88-4d9b-bba9-904ca4832681", + "person_id": "c0bf70c1-1d37-4c7f-94e1-d80ac2a50306", + "lead_id": "ebf4e3aa-7c94-4dca-a94a-409369bf4525", + "project_name": "Siddha Serena", + "visited_at": "2026-01-20T11:07:55.889000", + "visit_notes": "NRI client on short trip. Wants to finalize before return.", + "host_user_id": "user_3", + "revisit_intent": "yes", + "household_id": null + }, + { + "visit_id": "577d1097-d128-4054-b0d2-de99bf696f9f", + "person_id": "c0bf70c1-1d37-4c7f-94e1-d80ac2a50306", + "lead_id": "ebf4e3aa-7c94-4dca-a94a-409369bf4525", + "project_name": "Siddha Serena", + "visited_at": "2026-02-24T11:07:55.889110", + "visit_notes": "First visit. Very impressed with the view.", + "host_user_id": "user_1", + "revisit_intent": "no", + "household_id": null + }, + { + "visit_id": "d8bc71f1-6539-4349-a6c6-ea00ac99c3bc", + "person_id": "c0bf70c1-1d37-4c7f-94e1-d80ac2a50306", + "lead_id": "ebf4e3aa-7c94-4dca-a94a-409369bf4525", + "project_name": "Siddha Serena", + "visited_at": "2025-10-30T11:07:55.889138", + "visit_notes": "Revisit after 2 months. Re-evaluating options.", + "host_user_id": "user_3", + "revisit_intent": "maybe", + "household_id": null + } + ], + "reminders": [ + { + "reminder_id": "4a7e7be1-889d-416d-89c8-f0bc4ef76cdf", + "person_id": "c0bf70c1-1d37-4c7f-94e1-d80ac2a50306", + "lead_id": "ebf4e3aa-7c94-4dca-a94a-409369bf4525", + "reminder_text": "Re-engage after 2 weeks silence", + "due_at": "2026-04-22T11:07:55.889158", + "completed": true, + "completed_at": "2026-03-25T11:07:55.889166", + "assigned_user_id": "user_5", + "created_at": "2026-03-11T11:07:55.889167" + }, + { + "reminder_id": "ebd9fe50-d0ea-45ed-b21b-8f3a083695e8", + "person_id": "c0bf70c1-1d37-4c7f-94e1-d80ac2a50306", + "lead_id": "ebf4e3aa-7c94-4dca-a94a-409369bf4525", + "reminder_text": "Share updated price list", + "due_at": "2026-05-09T11:07:55.889169", + "completed": false, + "completed_at": null, + "assigned_user_id": "user_4", + "created_at": "2026-03-06T11:07:55.889177" + }, + { + "reminder_id": "32f0b56e-2404-4160-816b-af6feaf7cc52", + "person_id": "c0bf70c1-1d37-4c7f-94e1-d80ac2a50306", + "lead_id": "ebf4e3aa-7c94-4dca-a94a-409369bf4525", + "reminder_text": "Send legal documents", + "due_at": "2026-04-29T11:07:55.889179", + "completed": false, + "completed_at": null, + "assigned_user_id": "user_5", + "created_at": "2026-03-06T11:07:55.889187" + }, + { + "reminder_id": "240af85a-1854-42ac-a676-396e5cc32ecc", + "person_id": "c0bf70c1-1d37-4c7f-94e1-d80ac2a50306", + "lead_id": "ebf4e3aa-7c94-4dca-a94a-409369bf4525", + "reminder_text": "Send legal documents", + "due_at": "2026-05-07T11:07:55.889202", + "completed": true, + "completed_at": "2026-04-12T11:07:55.889223", + "assigned_user_id": "user_1", + "created_at": "2026-02-11T11:07:55.889226" + } + ], + "qd_scores": [ + { + "qd_id": "9a03d6c0-dbe1-4bd9-8cf1-0c8663341001", + "person_id": "c0bf70c1-1d37-4c7f-94e1-d80ac2a50306", + "score_type": "intent_score", + "current_value": 0.81, + "computed_at": "2026-04-08T11:07:55.889238", + "evidence_refs_json": "[\"28ead6cf-a8df-473a-b50f-c1fc87c374da\", \"82597bf3-47d6-4448-9c42-554dbeb4f13d\"]" + }, + { + "qd_id": "59e2eae4-9673-4e94-9112-fcdddfd3d319", + "person_id": "c0bf70c1-1d37-4c7f-94e1-d80ac2a50306", + "score_type": "urgency_score", + "current_value": 0.725, + "computed_at": "2026-03-07T11:07:55.889364", + "evidence_refs_json": "[\"11b8d53a-61a8-4def-a8ff-e30765042220\", \"0f3cdf94-2f51-4d3a-8ee4-22e49dcde493\", \"b4259a84-d342-4b75-92cd-9c91a7dd9287\"]" + }, + { + "qd_id": "d941e631-30d5-4cbd-9e8f-f748ed2e92b1", + "person_id": "c0bf70c1-1d37-4c7f-94e1-d80ac2a50306", + "score_type": "engagement_score", + "current_value": 0.831, + "computed_at": "2026-04-10T11:07:55.889470", + "evidence_refs_json": "[\"af850d65-f543-4703-b8f8-c4c5d8f47889\", \"ab4f4737-4847-495f-ae4b-27b20d4c886c\", \"c8a8a0f4-9744-473a-b8b0-e01597c06b2d\"]" + } + ], + "qd_timeseries": [ + { + "timeseries_id": "dacfb0e4-e4a6-4531-91c7-6ed6db2dc221", + "person_id": "c0bf70c1-1d37-4c7f-94e1-d80ac2a50306", + "signal_source": "call", + "timestamp": "2025-11-07T11:07:55.889259", + "value": 0.907, + "score_type": "intent_score", + "evidence_ref": "4d6a8c4d-1af1-413d-8bd6-e08abb03990f" + }, + { + "timeseries_id": "bdd2d452-7c18-4b3f-a1ab-a11339f0c195", + "person_id": "c0bf70c1-1d37-4c7f-94e1-d80ac2a50306", + "signal_source": "email", + "timestamp": "2025-11-19T11:07:55.889259", + "value": 0.927, + "score_type": "intent_score", + "evidence_ref": "e59e1942-be3e-4ecf-aea6-7b25011a558a" + }, + { + "timeseries_id": "6090bea3-2e3b-47ef-9d1e-bc5186479422", + "person_id": "c0bf70c1-1d37-4c7f-94e1-d80ac2a50306", + "signal_source": "site_visit", + "timestamp": "2025-12-03T11:07:55.889259", + "value": 0.801, + "score_type": "intent_score", + "evidence_ref": "56d6cc56-1aa6-4e40-b240-f70928775b22" + }, + { + "timeseries_id": "b6fb6828-c802-496d-aa3f-bbe51d0b3f8b", + "person_id": "c0bf70c1-1d37-4c7f-94e1-d80ac2a50306", + "signal_source": "whatsapp", + "timestamp": "2025-12-11T11:07:55.889259", + "value": 0.9, + "score_type": "intent_score", + "evidence_ref": "5021a878-9c8c-4325-a876-b1c797cb52c6" + }, + { + "timeseries_id": "f0627a4d-2f65-418a-9167-24ebd40009a2", + "person_id": "c0bf70c1-1d37-4c7f-94e1-d80ac2a50306", + "signal_source": "site_visit", + "timestamp": "2025-12-25T11:07:55.889259", + "value": 0.882, + "score_type": "intent_score", + "evidence_ref": "ff7157c3-56f7-4d13-a81f-ebc13b8c95f7" + }, + { + "timeseries_id": "f316c854-68cf-4d59-af94-b566caed34ad", + "person_id": "c0bf70c1-1d37-4c7f-94e1-d80ac2a50306", + "signal_source": "email", + "timestamp": "2026-01-09T11:07:55.889259", + "value": 0.867, + "score_type": "intent_score", + "evidence_ref": "f0de4eb6-099a-4752-99b8-e4382c7fd59e" + }, + { + "timeseries_id": "4543539c-9a42-427a-9846-0b2e4270b3a6", + "person_id": "c0bf70c1-1d37-4c7f-94e1-d80ac2a50306", + "signal_source": "call", + "timestamp": "2026-01-17T11:07:55.889259", + "value": 0.692, + "score_type": "intent_score", + "evidence_ref": "aec920c4-1131-4be1-9ff7-6e988e9feaf6" + }, + { + "timeseries_id": "e7bd89fb-2307-4966-9c1f-2d4df6ba20e8", + "person_id": "c0bf70c1-1d37-4c7f-94e1-d80ac2a50306", + "signal_source": "site_visit", + "timestamp": "2025-12-17T11:07:55.889387", + "value": 0.816, + "score_type": "urgency_score", + "evidence_ref": "d3c6e137-50ab-44b5-9a2d-e7788384e2f9" + }, + { + "timeseries_id": "a7467e30-87a9-45e0-b98a-313079ec59d1", + "person_id": "c0bf70c1-1d37-4c7f-94e1-d80ac2a50306", + "signal_source": "site_visit", + "timestamp": "2025-12-24T11:07:55.889387", + "value": 0.801, + "score_type": "urgency_score", + "evidence_ref": "e7ba05b1-6a9e-43b5-aa1b-99bf70884bd9" + }, + { + "timeseries_id": "51ad31e7-9306-4bf4-ac98-b7d305d29d66", + "person_id": "c0bf70c1-1d37-4c7f-94e1-d80ac2a50306", + "signal_source": "call", + "timestamp": "2026-01-03T11:07:55.889387", + "value": 0.701, + "score_type": "urgency_score", + "evidence_ref": "84aec893-50e7-45c1-8a1d-3dd3fecc77f6" + }, + { + "timeseries_id": "b1334877-979a-47bf-a853-fd37e28474aa", + "person_id": "c0bf70c1-1d37-4c7f-94e1-d80ac2a50306", + "signal_source": "site_visit", + "timestamp": "2026-01-22T11:07:55.889387", + "value": 0.806, + "score_type": "urgency_score", + "evidence_ref": "a78c1014-4591-4e90-b735-7a231e19e06d" + }, + { + "timeseries_id": "109471e0-a07f-49c1-8125-8556c48ae5b2", + "person_id": "c0bf70c1-1d37-4c7f-94e1-d80ac2a50306", + "signal_source": "email", + "timestamp": "2026-02-11T11:07:55.889387", + "value": 0.761, + "score_type": "urgency_score", + "evidence_ref": "57dc0bfb-e439-4cbb-9ede-fe238fefd8da" + }, + { + "timeseries_id": "c0e1bbf5-c4dc-4a82-adab-3d98d7599a86", + "person_id": "c0bf70c1-1d37-4c7f-94e1-d80ac2a50306", + "signal_source": "call", + "timestamp": "2025-11-15T11:07:55.889492", + "value": 0.811, + "score_type": "engagement_score", + "evidence_ref": "361b3d76-8261-40fa-97fa-034671a44573" + }, + { + "timeseries_id": "48b5cdae-6db7-4307-84e2-9fd3b5d7a118", + "person_id": "c0bf70c1-1d37-4c7f-94e1-d80ac2a50306", + "signal_source": "email", + "timestamp": "2025-12-05T11:07:55.889492", + "value": 0.755, + "score_type": "engagement_score", + "evidence_ref": "2fff3b34-9ee2-4058-9218-190cf0d0cd89" + }, + { + "timeseries_id": "f510ebec-19c7-48ec-ae35-d78abb910f0d", + "person_id": "c0bf70c1-1d37-4c7f-94e1-d80ac2a50306", + "signal_source": "site_visit", + "timestamp": "2025-12-22T11:07:55.889492", + "value": 0.858, + "score_type": "engagement_score", + "evidence_ref": "48a38923-79bf-44ee-980c-a56d7b9a9fd2" + } + ], + "intel_events": [ + { + "event_id": "a444464d-a8cb-4e17-8607-b2409d4e45f8", + "event_type": "number_plate_detected", + "person_id": "c0bf70c1-1d37-4c7f-94e1-d80ac2a50306", + "project_ref": "Siddha Serena", + "detected_at": "2026-04-01T11:07:55.889545", + "vehicle_plate_hash": "WB71H2850", + "confidence": 0.963, + "media_ref": "cctv_clip_8ba05add.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + } + ], + "client360": { + "client_ref": "c0bf70c1-1d37-4c7f-94e1-d80ac2a50306", + "snapshot_generated_at": "2026-04-18T11:07:55.889560", + "identity": { + "full_name": "Nilanjan Mondal", + "primary_email": "nilanjan.mondal281@yahoo.com", + "primary_phone": "+91 7724156214", + "persona_labels": "[\"analytical_buyer\"]", + "buyer_type": "nri" + }, + "account_links": [], + "active_opportunities": [], + "recent_interactions": [ + { + "interaction_id": "4748f161-dbca-4fe5-a831-502216d0d8ae", + "channel": "call", + "happened_at": "2026-01-04T11:07:55.889009" + }, + { + "interaction_id": "fbd27ea2-6d71-4e45-b6d2-df033359d27b", + "channel": "site_visit", + "happened_at": "2025-10-30T11:07:55.889120" + }, + { + "interaction_id": "b48d3b01-bb1c-4c60-9c8d-d15dbf214cc3", + "channel": "site_visit", + "happened_at": "2025-10-24T11:07:55.888985" + }, + { + "interaction_id": "ebff2900-1565-4b0c-b4c5-e99d77ce4412", + "channel": "referral", + "happened_at": "2025-10-20T11:07:55.889147" + }, + { + "interaction_id": "ef16166b-e1cd-4648-8cd8-2629068d9fdc", + "channel": "site_visit", + "happened_at": "2025-10-20T11:07:55.889092" + } + ], + "property_interests": [ + { + "project": "Siddha Serena", + "config": "2BHK", + "budget_max": 8651066 + }, + { + "project": "DTC Good Earth", + "config": "2BHK", + "budget_max": 8622335 + } + ], + "tasks": [ + "Share updated price list", + "Send legal documents" + ], + "qd_overview": { + "intent_score": 0.81, + "urgency_score": 0.725, + "engagement_score": 0.831 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Send project brochure", + "Schedule site visit" + ], + "lead_stage": "inquiry", + "lead_status": "active" + } + }, + { + "person": { + "person_id": "8a80acad-4f4d-42d7-9a5c-ff0b77b94313", + "full_name": "Namrata Mondal", + "primary_email": "namrata.mondal536@rediffmail.com", + "primary_phone": "+91 9655316364", + "secondary_phone": null, + "linkedin_url": "https://linkedin.com/in/namrata-mondal-354", + "occupation": "Real Estate Broker", + "employer": "DLF Limited", + "account_id": "da6384f9-5476-458c-8783-68c3219c1706", + "location_city": "Dubai", + "location_country": "Australia", + "buyer_type": "nri", + "persona_labels": "[\"first_time_buyer\", \"status_buyer\", \"family_centric\"]", + "is_nri": true, + "source_confidence": 0.836, + "created_at": "2025-04-30T11:07:55.889590", + "updated_at": "2025-11-04T11:07:55.889592" + }, + "lead": { + "lead_id": "279a89c5-3a4b-46d8-9ff0-602a9e904fd9", + "person_id": "8a80acad-4f4d-42d7-9a5c-ff0b77b94313", + "account_id": "da6384f9-5476-458c-8783-68c3219c1706", + "source_system": "housing_com", + "status": "active", + "stage": "inquiry", + "budget_band": "₹83L - ₹91L", + "urgency": "flexible", + "assigned_user_id": "user_3", + "primary_project": "Godrej Blue", + "objection": null, + "motivation": "Upgrade from current home", + "financing_posture": "nri_remittance", + "created_at": "2025-07-17T11:07:55.889653", + "updated_at": "2025-11-01T11:07:55.889655" + }, + "opportunities": [], + "property_interests": [ + { + "interest_id": "de1b81a4-4362-4918-b497-a5e89d1b18b6", + "person_id": "8a80acad-4f4d-42d7-9a5c-ff0b77b94313", + "project_name": "Godrej Blue", + "configuration": "4BHK", + "budget_min": 9843012, + "budget_max": 12030348, + "urgency": "flexible", + "facing_preference": "west", + "floor_preference": "low", + "notes": "Good connectivity to workplace", + "created_at": "2025-11-27T11:07:55.889616" + }, + { + "interest_id": "b9eca9b8-a6da-47d2-99df-c7b1d43442ba", + "person_id": "8a80acad-4f4d-42d7-9a5c-ff0b77b94313", + "project_name": "Eden Devprayag", + "configuration": "2BHK", + "budget_min": 9248172, + "budget_max": 11303321, + "urgency": "within_6_months", + "facing_preference": "east", + "floor_preference": "mid", + "notes": "School proximity", + "created_at": "2025-09-06T11:07:55.889627" + }, + { + "interest_id": "e659828f-86d8-481e-9497-d36bfb36627f", + "person_id": "8a80acad-4f4d-42d7-9a5c-ff0b77b94313", + "project_name": "Godrej Elevate", + "configuration": "4BHK", + "budget_min": 15989278, + "budget_max": 19542451, + "urgency": "within_3_months", + "facing_preference": "east", + "floor_preference": "any", + "notes": "Good connectivity to workplace", + "created_at": "2025-07-27T11:07:55.889639" + } + ], + "interactions": [ + { + "interaction_id": "6343dce0-eb5b-44ed-8b57-ba1e7bee39aa", + "person_id": "8a80acad-4f4d-42d7-9a5c-ff0b77b94313", + "lead_id": "279a89c5-3a4b-46d8-9ff0-602a9e904fd9", + "channel": "referral", + "interaction_type": "referral", + "happened_at": "2025-11-28T11:07:55.889675", + "summary": "Referral interaction regarding Godrej Blue", + "source_ref": "20cd81d3-5c87-48d8-a507-4b61d5e51f53", + "created_at": "2026-04-17T11:07:55.889683" + }, + { + "interaction_id": "b970aba6-8a15-46a3-b682-88efd77587b1", + "person_id": "8a80acad-4f4d-42d7-9a5c-ff0b77b94313", + "lead_id": "279a89c5-3a4b-46d8-9ff0-602a9e904fd9", + "channel": "builder_event", + "interaction_type": "builder_event", + "happened_at": "2026-03-25T11:07:55.889691", + "summary": "Builder Event interaction regarding Godrej Blue", + "source_ref": "2a808ecc-574e-45d0-929c-40db7d15b8a7", + "created_at": "2025-11-14T11:07:55.889699" + }, + { + "interaction_id": "7525b3d2-c331-4991-8b11-caf80f75fc5f", + "person_id": "8a80acad-4f4d-42d7-9a5c-ff0b77b94313", + "lead_id": "279a89c5-3a4b-46d8-9ff0-602a9e904fd9", + "channel": "referral", + "interaction_type": "referral", + "happened_at": "2025-11-05T11:07:55.889707", + "summary": "Referral interaction regarding Godrej Blue", + "source_ref": "ad6d0bea-e404-47d6-b119-2d44cbdd4b03", + "created_at": "2026-01-30T11:07:55.889715" + } + ], + "calls": [], + "transcripts": [], + "messages": [], + "emails": [], + "visits": [], + "reminders": [ + { + "reminder_id": "89c39c62-05de-4f9e-9bfd-191006f5ca6c", + "person_id": "8a80acad-4f4d-42d7-9a5c-ff0b77b94313", + "lead_id": "279a89c5-3a4b-46d8-9ff0-602a9e904fd9", + "reminder_text": "Confirm booking appointment", + "due_at": "2026-04-28T11:07:55.889717", + "completed": true, + "completed_at": "2026-04-06T11:07:55.889726", + "assigned_user_id": "user_1", + "created_at": "2026-01-25T11:07:55.889728" + }, + { + "reminder_id": "4a087ea6-b763-49fe-8ada-e2aba41c8ec6", + "person_id": "8a80acad-4f4d-42d7-9a5c-ff0b77b94313", + "lead_id": "279a89c5-3a4b-46d8-9ff0-602a9e904fd9", + "reminder_text": "Confirm booking appointment", + "due_at": "2026-05-11T11:07:55.889729", + "completed": true, + "completed_at": "2026-03-31T11:07:55.889736", + "assigned_user_id": "user_5", + "created_at": "2026-02-08T11:07:55.889738" + } + ], + "qd_scores": [ + { + "qd_id": "94dc9562-f917-404b-9889-7119fe10503b", + "person_id": "8a80acad-4f4d-42d7-9a5c-ff0b77b94313", + "score_type": "intent_score", + "current_value": 0.803, + "computed_at": "2026-03-30T11:07:55.889750", + "evidence_refs_json": "[\"144d7188-9c82-4c2d-85bf-e161a856f1a3\", \"b5bddf61-7d68-4627-800e-8d8883e65b5d\", \"1da741d8-3657-49c1-ac2b-ecae5a4ce3f8\", \"0273922d-ceda-4e78-ba42-dd90c709d480\"]" + }, + { + "qd_id": "23ac8d9c-bbac-4ad1-b1c3-aa948b3e0a3a", + "person_id": "8a80acad-4f4d-42d7-9a5c-ff0b77b94313", + "score_type": "urgency_score", + "current_value": 0.785, + "computed_at": "2026-04-04T11:07:55.889834", + "evidence_refs_json": "[\"93a417c6-1340-4fdf-a494-a1d39fdcfa9b\", \"798212ad-8edf-4a00-9dd8-7665c61f9cec\", \"e26943da-c425-4aa7-aab9-95006321e0ee\", \"771bc20d-1150-4b7b-b828-3f7888709499\", \"5930702a-832e-4dbc-b8d7-584ea8887223\"]" + }, + { + "qd_id": "c677f2c2-2477-42de-bbbd-17fdacb2b3da", + "person_id": "8a80acad-4f4d-42d7-9a5c-ff0b77b94313", + "score_type": "engagement_score", + "current_value": 0.767, + "computed_at": "2026-03-13T11:07:55.889942", + "evidence_refs_json": "[\"f0c7d78c-b3a7-4502-8dd2-7e5751748cc0\", \"0de0ac3a-6e22-4ab7-ae88-04ff00a87c9a\", \"cff8078b-115e-4ffd-8fca-42fca288cb61\", \"f5376cd6-76e2-45e0-91b5-902dc42dd6c9\", \"0ec18494-a865-4dbd-99fd-0547f80fcca5\"]" + } + ], + "qd_timeseries": [ + { + "timeseries_id": "20291fd5-f10a-4b67-9f5a-fd3764c83ef8", + "person_id": "8a80acad-4f4d-42d7-9a5c-ff0b77b94313", + "signal_source": "whatsapp", + "timestamp": "2025-11-11T11:07:55.889778", + "value": 0.801, + "score_type": "intent_score", + "evidence_ref": "8c096b30-a727-4a72-8bb6-bd3f035dc032" + }, + { + "timeseries_id": "cdebb213-6d6c-43d9-b97e-98e86460f4f2", + "person_id": "8a80acad-4f4d-42d7-9a5c-ff0b77b94313", + "signal_source": "call", + "timestamp": "2025-11-29T11:07:55.889778", + "value": 0.744, + "score_type": "intent_score", + "evidence_ref": "c7316d0c-ad75-4ab7-9066-3ed12011b3bc" + }, + { + "timeseries_id": "22e49730-2d9b-4c79-90ad-e1d423d4f56a", + "person_id": "8a80acad-4f4d-42d7-9a5c-ff0b77b94313", + "signal_source": "whatsapp", + "timestamp": "2025-12-10T11:07:55.889778", + "value": 0.712, + "score_type": "intent_score", + "evidence_ref": "9a11e1bf-91fc-4c3c-b204-1c319833a457" + }, + { + "timeseries_id": "2f7bb112-2bf3-4ad9-afda-bdb3fff9e088", + "person_id": "8a80acad-4f4d-42d7-9a5c-ff0b77b94313", + "signal_source": "call", + "timestamp": "2025-11-12T11:07:55.889870", + "value": 0.847, + "score_type": "urgency_score", + "evidence_ref": "e09fda5c-712d-443c-b1b6-96944f53eca2" + }, + { + "timeseries_id": "2662a2bb-2fff-432c-884e-0bac7dca63c1", + "person_id": "8a80acad-4f4d-42d7-9a5c-ff0b77b94313", + "signal_source": "call", + "timestamp": "2025-11-18T11:07:55.889870", + "value": 0.85, + "score_type": "urgency_score", + "evidence_ref": "50772fe9-a88e-4f07-a5ec-bdfb3c7114a9" + }, + { + "timeseries_id": "4f7352fb-967b-4b3b-aa1b-c1aad88b2f37", + "person_id": "8a80acad-4f4d-42d7-9a5c-ff0b77b94313", + "signal_source": "email", + "timestamp": "2025-12-07T11:07:55.889870", + "value": 0.823, + "score_type": "urgency_score", + "evidence_ref": "345ae127-7525-4233-b946-c631dd62210a" + }, + { + "timeseries_id": "9f420725-12af-4d3a-8e96-89db7f2dd715", + "person_id": "8a80acad-4f4d-42d7-9a5c-ff0b77b94313", + "signal_source": "email", + "timestamp": "2025-12-16T11:07:55.889870", + "value": 0.666, + "score_type": "urgency_score", + "evidence_ref": "5c0952db-4312-4f4d-9177-0b046e8a4e91" + }, + { + "timeseries_id": "72c17411-4395-4dab-9c84-e409ced86b1d", + "person_id": "8a80acad-4f4d-42d7-9a5c-ff0b77b94313", + "signal_source": "whatsapp", + "timestamp": "2025-11-16T11:07:55.889985", + "value": 0.813, + "score_type": "engagement_score", + "evidence_ref": "251b5d9b-fdb9-48b4-bb7d-590971ef4f29" + }, + { + "timeseries_id": "922d32b9-627d-4270-82f2-61f2fa46d25e", + "person_id": "8a80acad-4f4d-42d7-9a5c-ff0b77b94313", + "signal_source": "whatsapp", + "timestamp": "2025-11-26T11:07:55.889985", + "value": 0.672, + "score_type": "engagement_score", + "evidence_ref": "27cccfad-94af-4601-9ae8-f17c7218aae5" + }, + { + "timeseries_id": "d04901d9-53ff-44dd-8a4d-6f9016e5da3d", + "person_id": "8a80acad-4f4d-42d7-9a5c-ff0b77b94313", + "signal_source": "email", + "timestamp": "2025-12-11T11:07:55.889985", + "value": 0.747, + "score_type": "engagement_score", + "evidence_ref": "0da8e95e-6c01-4c15-9c57-5bea28b03cb9" + }, + { + "timeseries_id": "a231a0f6-69c9-4d04-b376-15f6fd5f27b5", + "person_id": "8a80acad-4f4d-42d7-9a5c-ff0b77b94313", + "signal_source": "site_visit", + "timestamp": "2025-12-23T11:07:55.889985", + "value": 0.742, + "score_type": "engagement_score", + "evidence_ref": "e023591e-15d8-47bb-8f41-546879350928" + }, + { + "timeseries_id": "3bab712a-d1ff-4b33-9172-cc3cf86aa705", + "person_id": "8a80acad-4f4d-42d7-9a5c-ff0b77b94313", + "signal_source": "site_visit", + "timestamp": "2026-01-07T11:07:55.889985", + "value": 0.756, + "score_type": "engagement_score", + "evidence_ref": "2e775bf5-c6a4-49de-8393-d7abe3615411" + }, + { + "timeseries_id": "d6df1eec-8c4e-4f89-b933-ff20a303c111", + "person_id": "8a80acad-4f4d-42d7-9a5c-ff0b77b94313", + "signal_source": "whatsapp", + "timestamp": "2026-01-16T11:07:55.889985", + "value": 0.746, + "score_type": "engagement_score", + "evidence_ref": "a0380ace-a716-4c16-a05e-d71dcb93a406" + }, + { + "timeseries_id": "ee32631e-dd1a-4876-94d5-f8dd84dae118", + "person_id": "8a80acad-4f4d-42d7-9a5c-ff0b77b94313", + "signal_source": "site_visit", + "timestamp": "2026-01-30T11:07:55.889985", + "value": 0.818, + "score_type": "engagement_score", + "evidence_ref": "c2c6f090-0cbb-4730-91d6-b3ba6d47c45c" + } + ], + "intel_events": [ + { + "event_id": "968f4ec3-4292-4c7f-8c41-af8c4c888bf7", + "event_type": "number_plate_detected", + "person_id": "8a80acad-4f4d-42d7-9a5c-ff0b77b94313", + "project_ref": "Godrej Blue", + "detected_at": "2026-01-27T11:07:55.890091", + "vehicle_plate_hash": "WB37D4435", + "confidence": 0.9, + "media_ref": "cctv_clip_f7538c01.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + } + ], + "client360": { + "client_ref": "8a80acad-4f4d-42d7-9a5c-ff0b77b94313", + "snapshot_generated_at": "2026-04-18T11:07:55.890106", + "identity": { + "full_name": "Namrata Mondal", + "primary_email": "namrata.mondal536@rediffmail.com", + "primary_phone": "+91 9655316364", + "persona_labels": "[\"first_time_buyer\", \"status_buyer\", \"family_centric\"]", + "buyer_type": "nri" + }, + "account_links": [ + "da6384f9-5476-458c-8783-68c3219c1706" + ], + "active_opportunities": [], + "recent_interactions": [ + { + "interaction_id": "b970aba6-8a15-46a3-b682-88efd77587b1", + "channel": "builder_event", + "happened_at": "2026-03-25T11:07:55.889691" + }, + { + "interaction_id": "6343dce0-eb5b-44ed-8b57-ba1e7bee39aa", + "channel": "referral", + "happened_at": "2025-11-28T11:07:55.889675" + }, + { + "interaction_id": "7525b3d2-c331-4991-8b11-caf80f75fc5f", + "channel": "referral", + "happened_at": "2025-11-05T11:07:55.889707" + } + ], + "property_interests": [ + { + "project": "Godrej Blue", + "config": "4BHK", + "budget_max": 12030348 + }, + { + "project": "Eden Devprayag", + "config": "2BHK", + "budget_max": 11303321 + }, + { + "project": "Godrej Elevate", + "config": "4BHK", + "budget_max": 19542451 + } + ], + "tasks": [], + "qd_overview": { + "intent_score": 0.803, + "urgency_score": 0.785, + "engagement_score": 0.767 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Send project brochure", + "Schedule site visit" + ], + "lead_stage": "inquiry", + "lead_status": "active" + } + }, + { + "person": { + "person_id": "088d8d2c-eb7f-40b2-8332-b46a9596fecd", + "full_name": "Ajoy Ghosh", + "primary_email": "ajoy.ghosh711@rediffmail.com", + "primary_phone": "+91 8384617549", + "secondary_phone": "+91 8512849852", + "linkedin_url": "https://linkedin.com/in/ajoy-ghosh-696", + "occupation": "Pharmaceutical Executive", + "employer": null, + "account_id": null, + "location_city": "New Town", + "location_country": "India", + "buyer_type": "price_sensitive", + "persona_labels": "[\"first_time_buyer\"]", + "is_nri": false, + "source_confidence": 0.986, + "created_at": "2025-04-22T11:07:55.890132", + "updated_at": "2026-01-01T11:07:55.890134" + }, + "lead": { + "lead_id": "55eb9dd1-db04-47d1-8c97-bfa939e37c02", + "person_id": "088d8d2c-eb7f-40b2-8332-b46a9596fecd", + "account_id": null, + "source_system": "walk_in", + "status": "cold", + "stage": "cold", + "budget_band": "₹99L - ₹109L", + "urgency": "within_3_months", + "assigned_user_id": "user_1", + "primary_project": "Siddha Sky Waterfront", + "objection": "Comparing with other project", + "motivation": "Children's future", + "financing_posture": "unknown", + "created_at": "2025-10-16T11:07:55.890207", + "updated_at": "2026-01-16T11:07:55.890210" + }, + "opportunities": [], + "property_interests": [ + { + "interest_id": "c3a3c991-9a22-4a39-b3f5-b59d0b9eaa1d", + "person_id": "088d8d2c-eb7f-40b2-8332-b46a9596fecd", + "project_name": "Siddha Sky Waterfront", + "configuration": "4BHK", + "budget_min": 10744359, + "budget_max": 13131994, + "urgency": "immediate", + "facing_preference": "east", + "floor_preference": "mid", + "notes": "NRI returning to India", + "created_at": "2025-08-09T11:07:55.890181" + } + ], + "interactions": [ + { + "interaction_id": "868da71f-0291-4cf3-b455-614e074359bc", + "person_id": "088d8d2c-eb7f-40b2-8332-b46a9596fecd", + "lead_id": "55eb9dd1-db04-47d1-8c97-bfa939e37c02", + "channel": "builder_event", + "interaction_type": "builder_event", + "happened_at": "2026-02-19T11:07:55.890331", + "summary": "Builder Event interaction regarding Siddha Sky Waterfront", + "source_ref": "96d5184f-999e-431c-909e-33fbe810f5db", + "created_at": "2025-11-06T11:07:55.890340" + }, + { + "interaction_id": "d00a12a7-f5d1-442a-a10c-a33c009398e4", + "person_id": "088d8d2c-eb7f-40b2-8332-b46a9596fecd", + "lead_id": "55eb9dd1-db04-47d1-8c97-bfa939e37c02", + "channel": "digital_ad", + "interaction_type": "digital_ad", + "happened_at": "2025-10-18T11:07:55.890349", + "summary": "Digital Ad interaction regarding Siddha Sky Waterfront", + "source_ref": "4a1d3f04-e882-43c1-9329-a1e5accaef19", + "created_at": "2025-11-03T11:07:55.890357" + }, + { + "interaction_id": "d8a13d1f-2213-43af-b3c6-ee655556e0f4", + "person_id": "088d8d2c-eb7f-40b2-8332-b46a9596fecd", + "lead_id": "55eb9dd1-db04-47d1-8c97-bfa939e37c02", + "channel": "email", + "interaction_type": "email", + "happened_at": "2025-10-06T11:07:55.890376", + "summary": "Email interaction regarding Siddha Sky Waterfront", + "source_ref": "44a6e7b6-e036-4794-b2d6-0a7b6d87a1ce", + "created_at": "2025-11-18T11:07:55.890384" + }, + { + "interaction_id": "ffa270ac-79f5-4585-97f2-3ddd00815e5f", + "person_id": "088d8d2c-eb7f-40b2-8332-b46a9596fecd", + "lead_id": "55eb9dd1-db04-47d1-8c97-bfa939e37c02", + "channel": "email", + "interaction_type": "email", + "happened_at": "2025-12-24T11:07:55.890411", + "summary": "Email interaction regarding Siddha Sky Waterfront", + "source_ref": "715be481-c835-4789-a585-2aa342a4775b", + "created_at": "2026-03-03T11:07:55.890420" + }, + { + "interaction_id": "48754df9-3364-4918-82db-ae6ef71c41e6", + "person_id": "088d8d2c-eb7f-40b2-8332-b46a9596fecd", + "lead_id": "55eb9dd1-db04-47d1-8c97-bfa939e37c02", + "channel": "whatsapp", + "interaction_type": "whatsapp", + "happened_at": "2025-12-29T11:07:55.890449", + "summary": "Whatsapp interaction regarding Siddha Sky Waterfront", + "source_ref": "b73a73eb-3a9d-4198-8f0c-1bbabe88c3a2", + "created_at": "2026-02-05T11:07:55.890458" + }, + { + "interaction_id": "c4706aba-3ccf-420c-bfaf-b488f556b4a4", + "person_id": "088d8d2c-eb7f-40b2-8332-b46a9596fecd", + "lead_id": "55eb9dd1-db04-47d1-8c97-bfa939e37c02", + "channel": "builder_event", + "interaction_type": "builder_event", + "happened_at": "2025-11-22T11:07:55.890535", + "summary": "Builder Event interaction regarding Siddha Sky Waterfront", + "source_ref": "a51657fd-6c5f-48c6-9307-afa241051f5c", + "created_at": "2025-11-28T11:07:55.890549" + } + ], + "calls": [], + "transcripts": [], + "messages": [ + { + "message_id": "b5ffa15e-7e17-46b8-bcab-c4a0875dd194", + "interaction_id": "48754df9-3364-4918-82db-ae6ef71c41e6", + "person_id": "088d8d2c-eb7f-40b2-8332-b46a9596fecd", + "sender_role": "agent", + "message_text": "Good morning Ajoy! Wanted to follow up on your visit to Siddha Sky Waterfront. Any thoughts so far?", + "delivered_at": "2026-02-05T20:07:55.890461", + "channel": "whatsapp", + "read_at": "2026-02-05T20:40:55.890461" + }, + { + "message_id": "85aed3b9-9530-4914-85d1-8a243edaad86", + "interaction_id": "48754df9-3364-4918-82db-ae6ef71c41e6", + "person_id": "088d8d2c-eb7f-40b2-8332-b46a9596fecd", + "sender_role": "client", + "message_text": "I saw another project in Rajarhat. How does Siddha Sky Waterfront compare?", + "delivered_at": "2026-02-05T21:07:55.890461", + "channel": "whatsapp", + "read_at": "2026-02-05T23:07:55.890461" + }, + { + "message_id": "8a23bc50-4fab-42ac-b1d6-95d942dfe5bb", + "interaction_id": "48754df9-3364-4918-82db-ae6ef71c41e6", + "person_id": "088d8d2c-eb7f-40b2-8332-b46a9596fecd", + "sender_role": "agent", + "message_text": "Hi Ajoy, just sending over the brochure for Siddha Sky Waterfront as promised. Let me know if you have any questions!", + "delivered_at": "2026-02-06T07:07:55.890461", + "channel": "whatsapp", + "read_at": null + }, + { + "message_id": "ba0312a0-25c8-4fe9-aa97-b87a46e1d467", + "interaction_id": "48754df9-3364-4918-82db-ae6ef71c41e6", + "person_id": "088d8d2c-eb7f-40b2-8332-b46a9596fecd", + "sender_role": "client", + "message_text": "Thanks. Will review and come back to you.", + "delivered_at": "2026-02-07T04:07:55.890461", + "channel": "whatsapp", + "read_at": "2026-02-07T05:28:55.890461" + }, + { + "message_id": "f1e7a7dc-9b74-4e89-8fd1-329eb51669dc", + "interaction_id": "48754df9-3364-4918-82db-ae6ef71c41e6", + "person_id": "088d8d2c-eb7f-40b2-8332-b46a9596fecd", + "sender_role": "agent", + "message_text": "Good evening Ajoy! Sharing the updated price list for Siddha Sky Waterfront. Some great units still available.", + "delivered_at": "2026-02-08T20:07:55.890461", + "channel": "whatsapp", + "read_at": "2026-02-08T21:10:55.890461" + } + ], + "emails": [ + { + "email_id": "2a9f1753-289e-44cb-a66b-1a3849c05aa3", + "interaction_id": "d8a13d1f-2213-43af-b3c6-ee655556e0f4", + "person_id": "088d8d2c-eb7f-40b2-8332-b46a9596fecd", + "subject": "Floor Plan & Price List - Siddha Sky Waterfront", + "body": "Dear Ajoy,\n\nFollowing up on your recent visit to Siddha Sky Waterfront. We hope you found it informative.\n\nWe have a 3BHK unit available that matches your requirements exactly. Shall we discuss further?\n\nBest,\nVelocity Real Estate Team", + "sender_role": "agent", + "sent_at": "2025-11-14T11:07:55.890396", + "opened_at": null, + "replied_at": "2026-02-27T11:07:55.890399" + }, + { + "email_id": "abd25d1d-f40e-4746-a763-f59f965acabf", + "interaction_id": "ffa270ac-79f5-4585-97f2-3ddd00815e5f", + "person_id": "088d8d2c-eb7f-40b2-8332-b46a9596fecd", + "subject": "Booking Procedure - Siddha Sky Waterfront", + "body": "Dear Ajoy,\n\nThank you for your interest in Siddha Sky Waterfront. As discussed, please find the brochure and floor plans attached.\n\nWe would be happy to arrange a site visit at your convenience.\n\nBest regards,\nVelocity Real Estate Team", + "sender_role": "agent", + "sent_at": "2026-03-01T11:07:55.890435", + "opened_at": "2025-12-07T11:07:55.890438", + "replied_at": null + } + ], + "visits": [], + "reminders": [ + { + "reminder_id": "9b36a568-aaec-4d9a-9880-32c16c80e5bc", + "person_id": "088d8d2c-eb7f-40b2-8332-b46a9596fecd", + "lead_id": "55eb9dd1-db04-47d1-8c97-bfa939e37c02", + "reminder_text": "Confirm booking appointment", + "due_at": "2026-05-16T11:07:55.890553", + "completed": true, + "completed_at": "2026-04-01T11:07:55.890563", + "assigned_user_id": "user_2", + "created_at": "2026-03-07T11:07:55.890565" + }, + { + "reminder_id": "1a39694d-be6a-434f-acf1-46ee3c32128e", + "person_id": "088d8d2c-eb7f-40b2-8332-b46a9596fecd", + "lead_id": "55eb9dd1-db04-47d1-8c97-bfa939e37c02", + "reminder_text": "Re-engage after 2 weeks silence", + "due_at": "2026-05-02T11:07:55.890568", + "completed": false, + "completed_at": null, + "assigned_user_id": "user_2", + "created_at": "2026-02-20T11:07:55.890578" + }, + { + "reminder_id": "6e6ad8e9-746d-4cb3-b758-7cb9337fe0f3", + "person_id": "088d8d2c-eb7f-40b2-8332-b46a9596fecd", + "lead_id": "55eb9dd1-db04-47d1-8c97-bfa939e37c02", + "reminder_text": "Share updated price list", + "due_at": "2026-05-01T11:07:55.890580", + "completed": true, + "completed_at": "2026-04-06T11:07:55.890590", + "assigned_user_id": "user_2", + "created_at": "2026-01-21T11:07:55.890592" + } + ], + "qd_scores": [ + { + "qd_id": "6d449703-8cbd-418c-9247-3f090175417e", + "person_id": "088d8d2c-eb7f-40b2-8332-b46a9596fecd", + "score_type": "intent_score", + "current_value": 0.365, + "computed_at": "2026-04-17T11:07:55.890610", + "evidence_refs_json": "[\"d28bbe96-a70c-4fca-82c3-806f90178816\", \"e1eafc2d-3d8b-4f0c-a724-b1949759c378\"]" + }, + { + "qd_id": "b9653f92-5c5f-42c9-a1ef-673b18abd781", + "person_id": "088d8d2c-eb7f-40b2-8332-b46a9596fecd", + "score_type": "urgency_score", + "current_value": 0.34, + "computed_at": "2026-03-25T11:07:55.890732", + "evidence_refs_json": "[\"c666ac0b-78e9-4581-9121-879694997190\", \"29ecd037-8e4c-40ba-b7e6-a0a6277b0ff8\", \"65107f95-4743-46fe-ad5c-b23c4bb5d714\", \"af672bbd-e629-40ee-b523-a2bffa105dae\", \"178d7d76-6625-4be5-b420-bb849a9e197c\"]" + }, + { + "qd_id": "6bec1f16-6352-49be-b706-69706a6da844", + "person_id": "088d8d2c-eb7f-40b2-8332-b46a9596fecd", + "score_type": "engagement_score", + "current_value": 0.309, + "computed_at": "2026-04-04T11:07:55.890840", + "evidence_refs_json": "[\"883690ff-fa86-48dc-9238-607790affb69\", \"dd9e45d5-02c2-4fc7-a85c-1fc379982ab1\", \"ed993e4b-8736-4029-b0f3-1db0991a5d8e\", \"dfc20b3d-e2cc-401b-98f4-88624979f760\", \"d6395334-00ef-4767-a3f1-26231ab78d58\"]" + } + ], + "qd_timeseries": [ + { + "timeseries_id": "8037b129-6bed-4e0b-a1ce-b09fddf8b62e", + "person_id": "088d8d2c-eb7f-40b2-8332-b46a9596fecd", + "signal_source": "whatsapp", + "timestamp": "2025-11-26T11:07:55.890636", + "value": 0.462, + "score_type": "intent_score", + "evidence_ref": "79e739ce-0653-4eb7-bf71-19a8a9e451e5" + }, + { + "timeseries_id": "eede8088-8e3b-47c8-af13-6fbeb708d92a", + "person_id": "088d8d2c-eb7f-40b2-8332-b46a9596fecd", + "signal_source": "call", + "timestamp": "2025-12-08T11:07:55.890636", + "value": 0.409, + "score_type": "intent_score", + "evidence_ref": "98a8af0b-50fd-4aae-a7d1-b8cb076960bd" + }, + { + "timeseries_id": "c53b8586-5aa4-43a6-b676-4aea05be05c6", + "person_id": "088d8d2c-eb7f-40b2-8332-b46a9596fecd", + "signal_source": "email", + "timestamp": "2025-12-23T11:07:55.890636", + "value": 0.465, + "score_type": "intent_score", + "evidence_ref": "8f2a9fc8-3675-4dff-9325-2539edeaade5" + }, + { + "timeseries_id": "aa3a8371-8744-4a6d-9da7-50d6b31ce8b9", + "person_id": "088d8d2c-eb7f-40b2-8332-b46a9596fecd", + "signal_source": "email", + "timestamp": "2025-12-31T11:07:55.890636", + "value": 0.307, + "score_type": "intent_score", + "evidence_ref": "e7d9d7c3-5ea4-45c5-973a-c7543e9562ae" + }, + { + "timeseries_id": "246e1ebb-3082-444d-a9e4-cfe3cf614a21", + "person_id": "088d8d2c-eb7f-40b2-8332-b46a9596fecd", + "signal_source": "call", + "timestamp": "2026-01-14T11:07:55.890636", + "value": 0.464, + "score_type": "intent_score", + "evidence_ref": "6fa1995d-63cc-4535-9451-bf5b6cc52ad5" + }, + { + "timeseries_id": "726ae5b0-04ac-4026-b04d-e4fe861b3f6e", + "person_id": "088d8d2c-eb7f-40b2-8332-b46a9596fecd", + "signal_source": "whatsapp", + "timestamp": "2025-12-02T11:07:55.890775", + "value": 0.297, + "score_type": "urgency_score", + "evidence_ref": "19953853-5ec2-453b-b90a-a95887d2cb20" + }, + { + "timeseries_id": "64d0708e-321e-4063-9d6b-2700e89591f2", + "person_id": "088d8d2c-eb7f-40b2-8332-b46a9596fecd", + "signal_source": "call", + "timestamp": "2025-12-09T11:07:55.890775", + "value": 0.26, + "score_type": "urgency_score", + "evidence_ref": "9a800026-d30e-4397-ac38-ca46b9061364" + }, + { + "timeseries_id": "827eebeb-8383-4423-a0e2-921c686eac3a", + "person_id": "088d8d2c-eb7f-40b2-8332-b46a9596fecd", + "signal_source": "call", + "timestamp": "2025-12-14T11:07:55.890775", + "value": 0.271, + "score_type": "urgency_score", + "evidence_ref": "37cfc939-6f2b-4934-84e1-c648e4c9dce8" + }, + { + "timeseries_id": "f85b5a7d-6fd1-466c-8ee3-da7936fc6447", + "person_id": "088d8d2c-eb7f-40b2-8332-b46a9596fecd", + "signal_source": "email", + "timestamp": "2025-11-07T11:07:55.890897", + "value": 0.344, + "score_type": "engagement_score", + "evidence_ref": "9cbf4d6e-1399-4553-87e3-f3505a6010ee" + }, + { + "timeseries_id": "b9733725-1753-4882-ab24-2bf2ac34c9fa", + "person_id": "088d8d2c-eb7f-40b2-8332-b46a9596fecd", + "signal_source": "whatsapp", + "timestamp": "2025-11-14T11:07:55.890897", + "value": 0.195, + "score_type": "engagement_score", + "evidence_ref": "ee278e5a-ec87-49ce-9dac-d213eb880145" + }, + { + "timeseries_id": "d256201d-6dfd-4d79-86aa-17c8a431c0db", + "person_id": "088d8d2c-eb7f-40b2-8332-b46a9596fecd", + "signal_source": "call", + "timestamp": "2025-11-29T11:07:55.890897", + "value": 0.21, + "score_type": "engagement_score", + "evidence_ref": "f8d691f3-d5e6-4d89-bd53-e423eceac503" + } + ], + "intel_events": [ + { + "event_id": "ed5d1a74-9980-4108-91c6-7bed11c5eccc", + "event_type": "perception_session", + "person_id": "088d8d2c-eb7f-40b2-8332-b46a9596fecd", + "project_ref": "Siddha Sky Waterfront", + "session_at": "2026-03-13T11:07:55.890974", + "rooms_visited": "[\"amenity_deck\"]", + "dwell_time_seconds": 1112, + "engagement_score": 0.946, + "cctv_ref": "cctv_add16e7f", + "notes": "Perception session recorded during scheduled site visit" + } + ], + "client360": { + "client_ref": "088d8d2c-eb7f-40b2-8332-b46a9596fecd", + "snapshot_generated_at": "2026-04-18T11:07:55.891003", + "identity": { + "full_name": "Ajoy Ghosh", + "primary_email": "ajoy.ghosh711@rediffmail.com", + "primary_phone": "+91 8384617549", + "persona_labels": "[\"first_time_buyer\"]", + "buyer_type": "price_sensitive" + }, + "account_links": [], + "active_opportunities": [], + "recent_interactions": [ + { + "interaction_id": "868da71f-0291-4cf3-b455-614e074359bc", + "channel": "builder_event", + "happened_at": "2026-02-19T11:07:55.890331" + }, + { + "interaction_id": "48754df9-3364-4918-82db-ae6ef71c41e6", + "channel": "whatsapp", + "happened_at": "2025-12-29T11:07:55.890449" + }, + { + "interaction_id": "ffa270ac-79f5-4585-97f2-3ddd00815e5f", + "channel": "email", + "happened_at": "2025-12-24T11:07:55.890411" + }, + { + "interaction_id": "c4706aba-3ccf-420c-bfaf-b488f556b4a4", + "channel": "builder_event", + "happened_at": "2025-11-22T11:07:55.890535" + }, + { + "interaction_id": "d00a12a7-f5d1-442a-a10c-a33c009398e4", + "channel": "digital_ad", + "happened_at": "2025-10-18T11:07:55.890349" + } + ], + "property_interests": [ + { + "project": "Siddha Sky Waterfront", + "config": "4BHK", + "budget_max": 13131994 + } + ], + "tasks": [ + "Re-engage after 2 weeks silence" + ], + "qd_overview": { + "intent_score": 0.365, + "urgency_score": 0.34, + "engagement_score": 0.309 + }, + "risk_flags": [ + "no_follow_up_in_30_days", + "decision_stalled_at_family" + ], + "recommended_next_actions": [ + "Re-engage with new offer", + "Check status after 30 days" + ], + "lead_stage": "cold", + "lead_status": "cold" + } + }, + { + "person": { + "person_id": "8d73b35d-23ea-40a7-96f5-a7ee5ca4e577", + "full_name": "Ipsita Rao", + "primary_email": "ipsita.rao690@gmail.com", + "primary_phone": "+91 9297096148", + "secondary_phone": null, + "linkedin_url": "https://linkedin.com/in/ipsita-rao-164", + "occupation": "NRI IT Professional", + "employer": "State Bank of India", + "account_id": "283303e6-6a31-4582-8839-6075a7675ffb", + "location_city": "Tollygunge", + "location_country": "India", + "buyer_type": "repeat_visitor", + "persona_labels": "[\"family_centric\", \"analytical_buyer\"]", + "is_nri": false, + "source_confidence": 0.936, + "created_at": "2025-10-09T11:07:55.891049", + "updated_at": "2025-10-20T11:07:55.891051" + }, + "lead": { + "lead_id": "30568e91-2eb8-4967-8f16-fe089cf0cd9a", + "person_id": "8d73b35d-23ea-40a7-96f5-a7ee5ca4e577", + "account_id": "283303e6-6a31-4582-8839-6075a7675ffb", + "source_system": "magicbricks", + "status": "active", + "stage": "site_visit_done", + "budget_band": "₹248L - ₹273L", + "urgency": "immediate", + "assigned_user_id": "user_3", + "primary_project": "Siddha Suburbia Bungalow", + "objection": null, + "motivation": "Children's future", + "financing_posture": "part_cash_part_loan", + "created_at": "2025-09-23T11:07:55.891146", + "updated_at": "2026-01-02T11:07:55.891147" + }, + "opportunities": [ + { + "opportunity_id": "390a9de4-4b60-470c-8460-f7552ac9bcc0", + "lead_id": "30568e91-2eb8-4967-8f16-fe089cf0cd9a", + "person_id": "8d73b35d-23ea-40a7-96f5-a7ee5ca4e577", + "project_name": "Siddha Suburbia Bungalow", + "unit_config": "5BHK", + "stage": "site_visit_done", + "value": 24839171, + "probability": 40, + "expected_close_date": "2026-06-16T11:07:55.891191", + "next_action": "Schedule site revisit", + "created_at": "2026-02-04T11:07:55.891208", + "updated_at": "2026-02-22T11:07:55.891210" + } + ], + "property_interests": [ + { + "interest_id": "58d16b17-b3db-4764-a0e7-db967c980edb", + "person_id": "8d73b35d-23ea-40a7-96f5-a7ee5ca4e577", + "project_name": "Siddha Suburbia Bungalow", + "configuration": "5BHK", + "budget_min": 16559151, + "budget_max": 20238962, + "urgency": "flexible", + "facing_preference": "east", + "floor_preference": "any", + "notes": "Investment portfolio", + "created_at": "2025-10-04T11:07:55.891106" + }, + { + "interest_id": "520ec18d-92b2-48b1-8d35-59bfada33cc3", + "person_id": "8d73b35d-23ea-40a7-96f5-a7ee5ca4e577", + "project_name": "Godrej Blue", + "configuration": "2BHK", + "budget_min": 7329645, + "budget_max": 8958455, + "urgency": "flexible", + "facing_preference": "any", + "floor_preference": "high", + "notes": "Investment portfolio", + "created_at": "2025-12-03T11:07:55.891117" + }, + { + "interest_id": "d4c5add5-e3f0-4e46-ab48-b272c9ad58ff", + "person_id": "8d73b35d-23ea-40a7-96f5-a7ee5ca4e577", + "project_name": "Sugam Prakriti", + "configuration": "4BHK", + "budget_min": 8217040, + "budget_max": 10043049, + "urgency": "immediate", + "facing_preference": "any", + "floor_preference": "mid", + "notes": "Upgrade from current home", + "created_at": "2026-02-07T11:07:55.891127" + } + ], + "interactions": [ + { + "interaction_id": "818b56aa-ee97-45d6-a2f4-9baff52edcab", + "person_id": "8d73b35d-23ea-40a7-96f5-a7ee5ca4e577", + "lead_id": "30568e91-2eb8-4967-8f16-fe089cf0cd9a", + "channel": "site_visit", + "interaction_type": "site_visit", + "happened_at": "2025-11-03T11:07:55.891232", + "summary": "Site Visit interaction regarding Siddha Suburbia Bungalow", + "source_ref": "3c9f8dbc-5ecb-441d-bdae-1331569d1765", + "created_at": "2025-11-28T11:07:55.891244" + }, + { + "interaction_id": "a9cd9bb2-81a3-4399-bd41-3a3b1500c003", + "person_id": "8d73b35d-23ea-40a7-96f5-a7ee5ca4e577", + "lead_id": "30568e91-2eb8-4967-8f16-fe089cf0cd9a", + "channel": "whatsapp", + "interaction_type": "whatsapp", + "happened_at": "2026-02-26T11:07:55.891263", + "summary": "Whatsapp interaction regarding Siddha Suburbia Bungalow", + "source_ref": "72c5b037-6c9e-4b65-b3ac-419552d65f77", + "created_at": "2025-10-14T11:07:55.891270" + }, + { + "interaction_id": "71354453-61a8-41b8-bfa0-1e1c0210ada3", + "person_id": "8d73b35d-23ea-40a7-96f5-a7ee5ca4e577", + "lead_id": "30568e91-2eb8-4967-8f16-fe089cf0cd9a", + "channel": "call", + "interaction_type": "call", + "happened_at": "2026-04-16T11:07:55.891343", + "summary": "Call interaction regarding Siddha Suburbia Bungalow", + "source_ref": "c6b79fe0-de41-401b-bf70-480628c3ba4f", + "created_at": "2026-01-27T11:07:55.891351" + }, + { + "interaction_id": "b59f2c70-e2cf-4b6f-81ab-62e0f181f4a3", + "person_id": "8d73b35d-23ea-40a7-96f5-a7ee5ca4e577", + "lead_id": "30568e91-2eb8-4967-8f16-fe089cf0cd9a", + "channel": "digital_ad", + "interaction_type": "digital_ad", + "happened_at": "2026-03-29T11:07:55.891432", + "summary": "Digital Ad interaction regarding Siddha Suburbia Bungalow", + "source_ref": "4ec870ec-d485-4c4b-99bf-c63125bb4a55", + "created_at": "2025-10-13T11:07:55.891441" + }, + { + "interaction_id": "97762163-c24a-4adf-8e5c-bca0c61d49c2", + "person_id": "8d73b35d-23ea-40a7-96f5-a7ee5ca4e577", + "lead_id": "30568e91-2eb8-4967-8f16-fe089cf0cd9a", + "channel": "whatsapp", + "interaction_type": "whatsapp", + "happened_at": "2026-04-13T11:07:55.891449", + "summary": "Whatsapp interaction regarding Siddha Suburbia Bungalow", + "source_ref": "8f990ef8-8abf-4f3f-9c03-99bf6d66cf2d", + "created_at": "2025-12-09T11:07:55.891457" + }, + { + "interaction_id": "7edf6fac-b1cb-4d3c-8914-c57b87161443", + "person_id": "8d73b35d-23ea-40a7-96f5-a7ee5ca4e577", + "lead_id": "30568e91-2eb8-4967-8f16-fe089cf0cd9a", + "channel": "email", + "interaction_type": "email", + "happened_at": "2026-01-07T11:07:55.891497", + "summary": "Email interaction regarding Siddha Suburbia Bungalow", + "source_ref": "f54a6ab3-9cc3-4fd1-ac06-a1046f871add", + "created_at": "2026-02-19T11:07:55.891504" + }, + { + "interaction_id": "9a49aab0-4980-4d72-9d87-9e1207c1cbe3", + "person_id": "8d73b35d-23ea-40a7-96f5-a7ee5ca4e577", + "lead_id": "30568e91-2eb8-4967-8f16-fe089cf0cd9a", + "channel": "whatsapp", + "interaction_type": "whatsapp", + "happened_at": "2026-01-06T11:07:55.891527", + "summary": "Whatsapp interaction regarding Siddha Suburbia Bungalow", + "source_ref": "04d0e948-a4a1-4593-a05e-e0e17920a745", + "created_at": "2026-01-14T11:07:55.891537" + } + ], + "calls": [ + { + "call_id": "cb734142-4258-46fd-b504-0efd6423a80d", + "interaction_id": "71354453-61a8-41b8-bfa0-1e1c0210ada3", + "person_id": "8d73b35d-23ea-40a7-96f5-a7ee5ca4e577", + "call_direction": "outbound", + "duration_seconds": 812, + "recording_ref": "recording_cb734142.mp3", + "transcript_ref": "eea84092-2b4c-46e7-894b-47a89e978d19", + "call_ts": "2026-02-20T11:07:55.891367" + } + ], + "transcripts": [ + { + "transcript_id": "eea84092-2b4c-46e7-894b-47a89e978d19", + "call_id": "cb734142-4258-46fd-b504-0efd6423a80d", + "person_id": "8d73b35d-23ea-40a7-96f5-a7ee5ca4e577", + "interaction_ref": "71354453-61a8-41b8-bfa0-1e1c0210ada3", + "language": "en", + "full_text": "Hello, am I speaking with Ipsita? This is Velocity Real Estate. Yes speaking. How can I help you? We noticed your inquiry about Siddha Suburbia Bungalow. Are you still looking? Yes I am. Can you tell me more about the configurations and pricing? Of course. We have 5BHK units available starting from ₹24,839,171. Would you be interested in a site visit? Yes, that sounds good. What about the possession timeline? The project is expected to be ready by Q3 2027. We have early-bird pricing available this month. I'll discuss with my family and get back to you. Can you send me the brochure? Absolutely. I'll WhatsApp you the details right away. Thank you Ipsita.", + "speaker_segments_json": "[{\"speaker\": \"agent\", \"start_seconds\": 0, \"end_seconds\": 13, \"text\": \"Hello, am I speaking with Ipsita? This is Velocity Real Estate.\"}, {\"speaker\": \"client\", \"start_seconds\": 19, \"end_seconds\": 28, \"text\": \"Yes speaking. How can I help you?\"}, {\"speaker\": \"agent\", \"start_seconds\": 36, \"end_seconds\": 56, \"text\": \"We noticed your inquiry about Siddha Suburbia Bungalow. Are you still looking?\"}, {\"speaker\": \"client\", \"start_seconds\": 66, \"end_seconds\": 85, \"text\": \"Yes I am. Can you tell me more about the configurations and pricing?\"}, {\"speaker\": \"agent\", \"start_seconds\": 76, \"end_seconds\": 90, \"text\": \"Of course. We have 5BHK units available starting from \\u20b924,839,171. Would you be interested in a site visit?\"}, {\"speaker\": \"client\", \"start_seconds\": 115, \"end_seconds\": 123, \"text\": \"Yes, that sounds good. What about the possession timeline?\"}, {\"speaker\": \"agent\", \"start_seconds\": 78, \"end_seconds\": 85, \"text\": \"The project is expected to be ready by Q3 2027. We have early-bird pricing available this month.\"}, {\"speaker\": \"client\", \"start_seconds\": 112, \"end_seconds\": 121, \"text\": \"I'll discuss with my family and get back to you. Can you send me the brochure?\"}, {\"speaker\": \"agent\", \"start_seconds\": 200, \"end_seconds\": 211, \"text\": \"Absolutely. I'll WhatsApp you the details right away. Thank you Ipsita.\"}]", + "confidence": 0.945, + "created_at": "2026-02-20T11:07:55.891367" + } + ], + "messages": [ + { + "message_id": "de80acd6-6845-43ae-9f44-e2791a82f107", + "interaction_id": "a9cd9bb2-81a3-4399-bd41-3a3b1500c003", + "person_id": "8d73b35d-23ea-40a7-96f5-a7ee5ca4e577", + "sender_role": "agent", + "message_text": "Hi Ipsita, we have a limited early booking offer expiring this Friday. Would love to share the details.", + "delivered_at": "2026-02-03T09:07:55.891273", + "channel": "whatsapp", + "read_at": null + }, + { + "message_id": "cdb78b1a-b14e-46e3-a1c7-dcd79f1e2075", + "interaction_id": "a9cd9bb2-81a3-4399-bd41-3a3b1500c003", + "person_id": "8d73b35d-23ea-40a7-96f5-a7ee5ca4e577", + "sender_role": "client", + "message_text": "My wife liked the project. We are deciding this week.", + "delivered_at": "2026-02-05T03:07:55.891273", + "channel": "whatsapp", + "read_at": null + }, + { + "message_id": "530a9dd9-6cbf-4f77-9145-622e97925e12", + "interaction_id": "a9cd9bb2-81a3-4399-bd41-3a3b1500c003", + "person_id": "8d73b35d-23ea-40a7-96f5-a7ee5ca4e577", + "sender_role": "agent", + "message_text": "Hi Ipsita, just sending over the brochure for Siddha Suburbia Bungalow as promised. Let me know if you have any questions!", + "delivered_at": "2026-02-06T19:07:55.891273", + "channel": "whatsapp", + "read_at": "2026-02-06T19:48:55.891273" + }, + { + "message_id": "125705bf-68d1-4f1d-8636-90fde5a28737", + "interaction_id": "a9cd9bb2-81a3-4399-bd41-3a3b1500c003", + "person_id": "8d73b35d-23ea-40a7-96f5-a7ee5ca4e577", + "sender_role": "client", + "message_text": "We are ready to proceed. What is the booking amount?", + "delivered_at": "2026-02-08T03:07:55.891273", + "channel": "whatsapp", + "read_at": "2026-02-08T04:32:55.891273" + }, + { + "message_id": "76d3b00f-7ef6-44f4-b429-86cecc7950f5", + "interaction_id": "a9cd9bb2-81a3-4399-bd41-3a3b1500c003", + "person_id": "8d73b35d-23ea-40a7-96f5-a7ee5ca4e577", + "sender_role": "agent", + "message_text": "Hi Ipsita, reminder about tomorrow's meeting at our Siddha Suburbia Bungalow sample flat at 11am.", + "delivered_at": "2026-02-08T23:07:55.891273", + "channel": "whatsapp", + "read_at": "2026-02-09T00:20:55.891273" + }, + { + "message_id": "8ef3bb3d-5ddd-454a-950e-7f39b32cc177", + "interaction_id": "a9cd9bb2-81a3-4399-bd41-3a3b1500c003", + "person_id": "8d73b35d-23ea-40a7-96f5-a7ee5ca4e577", + "sender_role": "client", + "message_text": "I saw another project in Rajarhat. How does Siddha Suburbia Bungalow compare?", + "delivered_at": "2026-02-10T12:07:55.891273", + "channel": "whatsapp", + "read_at": "2026-02-10T13:02:55.891273" + }, + { + "message_id": "52a0f805-7609-4671-bb09-acf8df542990", + "interaction_id": "97762163-c24a-4adf-8e5c-bca0c61d49c2", + "person_id": "8d73b35d-23ea-40a7-96f5-a7ee5ca4e577", + "sender_role": "agent", + "message_text": "Hi Ipsita, just checking in. Has the loan pre-approval come through? Happy to connect you with our banking partner.", + "delivered_at": "2026-01-29T01:07:55.891459", + "channel": "whatsapp", + "read_at": "2026-01-29T02:23:55.891459" + }, + { + "message_id": "dcc5ab99-aa6d-42a1-9082-8267f3600db4", + "interaction_id": "97762163-c24a-4adf-8e5c-bca0c61d49c2", + "person_id": "8d73b35d-23ea-40a7-96f5-a7ee5ca4e577", + "sender_role": "client", + "message_text": "Thanks. Will review and come back to you.", + "delivered_at": "2026-01-29T15:07:55.891459", + "channel": "whatsapp", + "read_at": "2026-01-29T16:17:55.891459" + }, + { + "message_id": "98d0a349-f65e-4550-ae69-1f3002edfd1e", + "interaction_id": "97762163-c24a-4adf-8e5c-bca0c61d49c2", + "person_id": "8d73b35d-23ea-40a7-96f5-a7ee5ca4e577", + "sender_role": "agent", + "message_text": "Hello Ipsita, the floor plan you requested for Siddha Suburbia Bungalow is attached here.", + "delivered_at": "2026-01-31T02:07:55.891459", + "channel": "whatsapp", + "read_at": "2026-01-31T02:27:55.891459" + }, + { + "message_id": "eaa19852-85ff-4783-ab80-e89f3584853e", + "interaction_id": "9a49aab0-4980-4d72-9d87-9e1207c1cbe3", + "person_id": "8d73b35d-23ea-40a7-96f5-a7ee5ca4e577", + "sender_role": "agent", + "message_text": "Good morning Ipsita! Wanted to follow up on your visit to Siddha Suburbia Bungalow. Any thoughts so far?", + "delivered_at": "2026-02-14T06:07:55.891540", + "channel": "whatsapp", + "read_at": "2026-02-14T07:51:55.891540" + }, + { + "message_id": "5c04f8d2-e7b4-4b25-8cc4-9edc62ef1d61", + "interaction_id": "9a49aab0-4980-4d72-9d87-9e1207c1cbe3", + "person_id": "8d73b35d-23ea-40a7-96f5-a7ee5ca4e577", + "sender_role": "client", + "message_text": "What is the maintenance charge per month?", + "delivered_at": "2026-02-15T22:07:55.891540", + "channel": "whatsapp", + "read_at": "2026-02-15T22:25:55.891540" + }, + { + "message_id": "6c6fb285-d08d-4615-b8d2-4ca2cfa65add", + "interaction_id": "9a49aab0-4980-4d72-9d87-9e1207c1cbe3", + "person_id": "8d73b35d-23ea-40a7-96f5-a7ee5ca4e577", + "sender_role": "agent", + "message_text": "Good morning Ipsita! Wanted to follow up on your visit to Siddha Suburbia Bungalow. Any thoughts so far?", + "delivered_at": "2026-02-17T03:07:55.891540", + "channel": "whatsapp", + "read_at": null + } + ], + "emails": [ + { + "email_id": "43d856e1-6cbf-4c9e-8b39-f95aa1ece728", + "interaction_id": "7edf6fac-b1cb-4d3c-8914-c57b87161443", + "person_id": "8d73b35d-23ea-40a7-96f5-a7ee5ca4e577", + "subject": "Floor Plan & Price List - Siddha Suburbia Bungalow", + "body": "Dear Ipsita,\n\nFollowing up on your recent visit to Siddha Suburbia Bungalow. We hope you found it informative.\n\nWe have a 5BHK unit available that matches your requirements exactly. Shall we discuss further?\n\nBest,\nVelocity Real Estate Team", + "sender_role": "agent", + "sent_at": "2026-02-02T11:07:55.891518", + "opened_at": null, + "replied_at": null + } + ], + "visits": [ + { + "visit_id": "fb9b1ead-750c-457d-a379-06c48a3f56df", + "person_id": "8d73b35d-23ea-40a7-96f5-a7ee5ca4e577", + "lead_id": "30568e91-2eb8-4967-8f16-fe089cf0cd9a", + "project_name": "Siddha Suburbia Bungalow", + "visited_at": "2026-03-30T11:07:55.891252", + "visit_notes": "Second visit. More focused on parking and amenities.", + "host_user_id": "user_1", + "revisit_intent": "no", + "household_id": "2d673f02-86f4-40fc-bd55-fd3ec3b70020" + } + ], + "reminders": [ + { + "reminder_id": "75158f4a-726d-4358-8685-f6321c470f9a", + "person_id": "8d73b35d-23ea-40a7-96f5-a7ee5ca4e577", + "lead_id": "30568e91-2eb8-4967-8f16-fe089cf0cd9a", + "reminder_text": "Confirm booking appointment", + "due_at": "2026-04-25T11:07:55.891576", + "completed": true, + "completed_at": "2026-04-16T11:07:55.891584", + "assigned_user_id": "user_2", + "created_at": "2026-01-29T11:07:55.891586" + }, + { + "reminder_id": "fb72e07f-0051-4847-846c-42a77f3ca920", + "person_id": "8d73b35d-23ea-40a7-96f5-a7ee5ca4e577", + "lead_id": "30568e91-2eb8-4967-8f16-fe089cf0cd9a", + "reminder_text": "Send legal documents", + "due_at": "2026-05-03T11:07:55.891588", + "completed": false, + "completed_at": null, + "assigned_user_id": "user_3", + "created_at": "2026-03-04T11:07:55.891596" + } + ], + "qd_scores": [ + { + "qd_id": "a85e11ad-4fd5-4fe9-96af-20c93f881b39", + "person_id": "8d73b35d-23ea-40a7-96f5-a7ee5ca4e577", + "score_type": "intent_score", + "current_value": 0.583, + "computed_at": "2026-03-03T11:07:55.891610", + "evidence_refs_json": "[\"96792da8-a7f0-41dd-ba30-347ed1f17185\", \"012e8346-6ab1-466e-852f-72a3ee890c59\", \"092eca88-cac1-4fae-8431-a7636a2a2018\", \"1cb7bcb5-0a3e-4163-b913-c1c7db9bcf8a\"]" + }, + { + "qd_id": "4d680e8f-632c-4960-a935-fa3af0fd6c41", + "person_id": "8d73b35d-23ea-40a7-96f5-a7ee5ca4e577", + "score_type": "urgency_score", + "current_value": 0.554, + "computed_at": "2026-04-07T11:07:55.891725", + "evidence_refs_json": "[\"ef1ab022-669c-420d-b328-6c4523ca5ec1\", \"bf04b4c0-c141-4f3a-b75c-678d4c91a09c\", \"12a2b79b-2d49-4ef9-aa6c-75d891f8c41c\"]" + }, + { + "qd_id": "69a57577-8278-4bd3-9faf-d1b4018cd8ff", + "person_id": "8d73b35d-23ea-40a7-96f5-a7ee5ca4e577", + "score_type": "engagement_score", + "current_value": 0.557, + "computed_at": "2026-03-08T11:07:55.891854", + "evidence_refs_json": "[\"a6679784-e0f5-4408-b3de-02407a0f49fa\", \"d81e2277-418e-46ee-a54c-41e194044693\"]" + } + ], + "qd_timeseries": [ + { + "timeseries_id": "1c511f47-9c99-4b7b-aab6-219b80a15960", + "person_id": "8d73b35d-23ea-40a7-96f5-a7ee5ca4e577", + "signal_source": "email", + "timestamp": "2025-11-06T11:07:55.891645", + "value": 0.62, + "score_type": "intent_score", + "evidence_ref": "fa5b6ecb-f7d6-4023-bab9-7f676f5a4a3a" + }, + { + "timeseries_id": "7ab2fc01-ed0f-45ee-ac40-3edfb1014849", + "person_id": "8d73b35d-23ea-40a7-96f5-a7ee5ca4e577", + "signal_source": "call", + "timestamp": "2025-11-22T11:07:55.891645", + "value": 0.587, + "score_type": "intent_score", + "evidence_ref": "72b4b451-6051-40bd-bec3-9c93532838f5" + }, + { + "timeseries_id": "eb4b1ee4-222f-4209-aede-fa9fa5f6c908", + "person_id": "8d73b35d-23ea-40a7-96f5-a7ee5ca4e577", + "signal_source": "whatsapp", + "timestamp": "2025-12-09T11:07:55.891645", + "value": 0.587, + "score_type": "intent_score", + "evidence_ref": "8a0ee3c2-d26e-4f2b-9ea5-79e19191e97f" + }, + { + "timeseries_id": "e5e028a0-99a7-467a-90b4-0a35c806d918", + "person_id": "8d73b35d-23ea-40a7-96f5-a7ee5ca4e577", + "signal_source": "site_visit", + "timestamp": "2025-12-25T11:07:55.891645", + "value": 0.58, + "score_type": "intent_score", + "evidence_ref": "477efbcc-712b-4354-bc50-162028e55322" + }, + { + "timeseries_id": "d5c6f8c0-2ae6-48bb-940b-08c6b8797daa", + "person_id": "8d73b35d-23ea-40a7-96f5-a7ee5ca4e577", + "signal_source": "call", + "timestamp": "2026-01-14T11:07:55.891645", + "value": 0.583, + "score_type": "intent_score", + "evidence_ref": "b3478d4e-667b-449d-aa71-8f5b855c4525" + }, + { + "timeseries_id": "dc312725-f856-4c1e-aee7-5206612c318c", + "person_id": "8d73b35d-23ea-40a7-96f5-a7ee5ca4e577", + "signal_source": "whatsapp", + "timestamp": "2025-12-28T11:07:55.891749", + "value": 0.47, + "score_type": "urgency_score", + "evidence_ref": "6360e3fa-8600-402c-8659-214f2d68cd98" + }, + { + "timeseries_id": "3523edc7-dd62-4b0e-a5f1-e29edd1be51c", + "person_id": "8d73b35d-23ea-40a7-96f5-a7ee5ca4e577", + "signal_source": "site_visit", + "timestamp": "2026-01-07T11:07:55.891749", + "value": 0.578, + "score_type": "urgency_score", + "evidence_ref": "eaa4f795-54bd-429e-b7ae-1c81791d5d95" + }, + { + "timeseries_id": "58735806-13fe-415e-a861-2b8a57595b42", + "person_id": "8d73b35d-23ea-40a7-96f5-a7ee5ca4e577", + "signal_source": "whatsapp", + "timestamp": "2026-01-15T11:07:55.891749", + "value": 0.534, + "score_type": "urgency_score", + "evidence_ref": "f01e3eff-3e75-4b6f-a442-3a6f141fd7f4" + }, + { + "timeseries_id": "91561fce-be65-4083-8ba3-5fd7d382fba5", + "person_id": "8d73b35d-23ea-40a7-96f5-a7ee5ca4e577", + "signal_source": "call", + "timestamp": "2026-01-30T11:07:55.891749", + "value": 0.55, + "score_type": "urgency_score", + "evidence_ref": "5c170720-fa0e-4d61-92b0-d2c5fdc50de4" + }, + { + "timeseries_id": "fc67d8d8-bfe3-4da7-a15e-7987fd6eb198", + "person_id": "8d73b35d-23ea-40a7-96f5-a7ee5ca4e577", + "signal_source": "email", + "timestamp": "2026-02-19T11:07:55.891749", + "value": 0.485, + "score_type": "urgency_score", + "evidence_ref": "895d887e-25d7-4a0f-bc71-7608ab712c6f" + }, + { + "timeseries_id": "033b1468-84ff-4ab1-98e0-7aefb102d32b", + "person_id": "8d73b35d-23ea-40a7-96f5-a7ee5ca4e577", + "signal_source": "email", + "timestamp": "2026-03-01T11:07:55.891749", + "value": 0.439, + "score_type": "urgency_score", + "evidence_ref": "2df1261d-cec3-4938-8d40-ff24f6917f3d" + }, + { + "timeseries_id": "28f01796-6570-4b39-afcf-7197446742ef", + "person_id": "8d73b35d-23ea-40a7-96f5-a7ee5ca4e577", + "signal_source": "whatsapp", + "timestamp": "2026-03-07T11:07:55.891749", + "value": 0.572, + "score_type": "urgency_score", + "evidence_ref": "6d961cec-f71f-41bc-b0b0-1f89c2a3cf7f" + }, + { + "timeseries_id": "dd2bb53a-61f3-495e-a417-c0a239278b27", + "person_id": "8d73b35d-23ea-40a7-96f5-a7ee5ca4e577", + "signal_source": "call", + "timestamp": "2025-11-01T11:07:55.891869", + "value": 0.477, + "score_type": "engagement_score", + "evidence_ref": "b54bac79-5d8b-4baa-ae59-9d8d2ec11851" + }, + { + "timeseries_id": "417d9b58-30ef-4935-bb40-c677b99ad163", + "person_id": "8d73b35d-23ea-40a7-96f5-a7ee5ca4e577", + "signal_source": "email", + "timestamp": "2025-11-11T11:07:55.891869", + "value": 0.581, + "score_type": "engagement_score", + "evidence_ref": "13cab90d-4be4-4c48-9aea-a4dd4628d575" + }, + { + "timeseries_id": "25f5ec1d-143c-4ad7-838d-667acc41b277", + "person_id": "8d73b35d-23ea-40a7-96f5-a7ee5ca4e577", + "signal_source": "site_visit", + "timestamp": "2025-11-16T11:07:55.891869", + "value": 0.664, + "score_type": "engagement_score", + "evidence_ref": "18d1deb4-12e7-42fb-9178-8b7ef21a31bd" + }, + { + "timeseries_id": "4c796049-11f2-45e2-895f-0fbc6c2b47c2", + "person_id": "8d73b35d-23ea-40a7-96f5-a7ee5ca4e577", + "signal_source": "email", + "timestamp": "2025-11-27T11:07:55.891869", + "value": 0.583, + "score_type": "engagement_score", + "evidence_ref": "b4524a41-c130-4325-9eae-fd6a8d4e0a05" + }, + { + "timeseries_id": "66bfd1c4-4551-40bf-be77-ef588106c663", + "person_id": "8d73b35d-23ea-40a7-96f5-a7ee5ca4e577", + "signal_source": "email", + "timestamp": "2025-12-17T11:07:55.891869", + "value": 0.478, + "score_type": "engagement_score", + "evidence_ref": "a7696b46-5018-4136-86e0-8d18a77563c2" + }, + { + "timeseries_id": "ba7a7445-0212-4dda-ad6c-d0ccc46a0b2f", + "person_id": "8d73b35d-23ea-40a7-96f5-a7ee5ca4e577", + "signal_source": "whatsapp", + "timestamp": "2026-01-04T11:07:55.891869", + "value": 0.628, + "score_type": "engagement_score", + "evidence_ref": "f460ccad-5a87-4b9a-ae93-b03ba1eec3e6" + }, + { + "timeseries_id": "ccd402be-20b3-4bf3-bac3-41c17d1c16d0", + "person_id": "8d73b35d-23ea-40a7-96f5-a7ee5ca4e577", + "signal_source": "site_visit", + "timestamp": "2026-01-14T11:07:55.891869", + "value": 0.477, + "score_type": "engagement_score", + "evidence_ref": "5311bda0-fd07-4718-b55b-9f490d02bf43" + } + ], + "intel_events": [ + { + "event_id": "026f042d-3e5b-411d-8273-f24333d799eb", + "event_type": "number_plate_detected", + "person_id": "8d73b35d-23ea-40a7-96f5-a7ee5ca4e577", + "project_ref": "Siddha Suburbia Bungalow", + "detected_at": "2026-02-18T11:07:55.892275", + "vehicle_plate_hash": "WB86K2127", + "confidence": 0.805, + "media_ref": "cctv_clip_e4c8a4c0.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + } + ], + "client360": { + "client_ref": "8d73b35d-23ea-40a7-96f5-a7ee5ca4e577", + "snapshot_generated_at": "2026-04-18T11:07:55.892310", + "identity": { + "full_name": "Ipsita Rao", + "primary_email": "ipsita.rao690@gmail.com", + "primary_phone": "+91 9297096148", + "persona_labels": "[\"family_centric\", \"analytical_buyer\"]", + "buyer_type": "repeat_visitor" + }, + "account_links": [ + "283303e6-6a31-4582-8839-6075a7675ffb" + ], + "active_opportunities": [ + { + "opportunity_id": "390a9de4-4b60-470c-8460-f7552ac9bcc0", + "project": "Siddha Suburbia Bungalow", + "stage": "site_visit_done", + "value": 24839171 + } + ], + "recent_interactions": [ + { + "interaction_id": "71354453-61a8-41b8-bfa0-1e1c0210ada3", + "channel": "call", + "happened_at": "2026-04-16T11:07:55.891343" + }, + { + "interaction_id": "97762163-c24a-4adf-8e5c-bca0c61d49c2", + "channel": "whatsapp", + "happened_at": "2026-04-13T11:07:55.891449" + }, + { + "interaction_id": "b59f2c70-e2cf-4b6f-81ab-62e0f181f4a3", + "channel": "digital_ad", + "happened_at": "2026-03-29T11:07:55.891432" + }, + { + "interaction_id": "a9cd9bb2-81a3-4399-bd41-3a3b1500c003", + "channel": "whatsapp", + "happened_at": "2026-02-26T11:07:55.891263" + }, + { + "interaction_id": "7edf6fac-b1cb-4d3c-8914-c57b87161443", + "channel": "email", + "happened_at": "2026-01-07T11:07:55.891497" + } + ], + "property_interests": [ + { + "project": "Siddha Suburbia Bungalow", + "config": "5BHK", + "budget_max": 20238962 + }, + { + "project": "Godrej Blue", + "config": "2BHK", + "budget_max": 8958455 + }, + { + "project": "Sugam Prakriti", + "config": "4BHK", + "budget_max": 10043049 + } + ], + "tasks": [ + "Send legal documents" + ], + "qd_overview": { + "intent_score": 0.583, + "urgency_score": 0.554, + "engagement_score": 0.557 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Follow up on impressions", + "Send updated price list" + ], + "lead_stage": "site_visit_done", + "lead_status": "active" + } + }, + { + "person": { + "person_id": "c417420c-d97c-4e51-b7da-471237d43506", + "full_name": "Madhumita Bagchi", + "primary_email": "madhumita.bagchi488@company.com", + "primary_phone": "+91 9576180666", + "secondary_phone": null, + "linkedin_url": "https://linkedin.com/in/madhumita-bagchi-615", + "occupation": "Chartered Accountant", + "employer": "CESC Limited", + "account_id": "719009b0-4ad2-4ab0-ab36-7144c1c43981", + "location_city": "Tollygunge", + "location_country": "India", + "buyer_type": "slow_burn_investor", + "persona_labels": "[\"nri_diaspora\", \"value_seeker\", \"emotional_buyer\"]", + "is_nri": false, + "source_confidence": 0.779, + "created_at": "2025-06-19T11:07:55.892369", + "updated_at": "2025-10-31T11:07:55.892371" + }, + "lead": { + "lead_id": "175bcb9c-6712-4ef7-9460-15fb34ce0b9d", + "person_id": "c417420c-d97c-4e51-b7da-471237d43506", + "account_id": "719009b0-4ad2-4ab0-ab36-7144c1c43981", + "source_system": "website", + "status": "active", + "stage": "qualified", + "budget_band": "₹165L - ₹182L", + "urgency": "immediate", + "assigned_user_id": "user_5", + "primary_project": "Siddha Sky Waterfront", + "objection": null, + "motivation": "School proximity", + "financing_posture": "home_loan", + "created_at": "2025-08-15T11:07:55.892445", + "updated_at": "2026-04-16T11:07:55.892447" + }, + "opportunities": [ + { + "opportunity_id": "62104586-3e91-4d21-b160-3d7777b10e3c", + "lead_id": "175bcb9c-6712-4ef7-9460-15fb34ce0b9d", + "person_id": "c417420c-d97c-4e51-b7da-471237d43506", + "project_name": "Siddha Sky Waterfront", + "unit_config": "4BHK", + "stage": "qualified", + "value": 16557906, + "probability": 20, + "expected_close_date": "2026-06-26T11:07:55.892478", + "next_action": "Confirm booking slot", + "created_at": "2025-12-15T11:07:55.892480", + "updated_at": "2026-04-01T11:07:55.892482" + } + ], + "property_interests": [ + { + "interest_id": "f688f85c-13e8-471a-a806-f63bf79e8021", + "person_id": "c417420c-d97c-4e51-b7da-471237d43506", + "project_name": "Siddha Sky Waterfront", + "configuration": "4BHK", + "budget_min": 9205895, + "budget_max": 11251650, + "urgency": "investment_only", + "facing_preference": "south", + "floor_preference": "mid", + "notes": "Good connectivity to workplace", + "created_at": "2025-07-30T11:07:55.892398" + }, + { + "interest_id": "8a5aa0d6-01db-4850-9793-afee5a253dfb", + "person_id": "c417420c-d97c-4e51-b7da-471237d43506", + "project_name": "Eden Devprayag", + "configuration": "3BHK", + "budget_min": 9396320, + "budget_max": 11484391, + "urgency": "investment_only", + "facing_preference": "any", + "floor_preference": "low", + "notes": "Status/prestige", + "created_at": "2026-01-14T11:07:55.892413" + }, + { + "interest_id": "307cb7a9-e635-49da-9aee-26ac28e3dec2", + "person_id": "c417420c-d97c-4e51-b7da-471237d43506", + "project_name": "DTC Sojon", + "configuration": "2BHK", + "budget_min": 4951147, + "budget_max": 6051402, + "urgency": "within_3_months", + "facing_preference": "east", + "floor_preference": "high", + "notes": "Healthcare access", + "created_at": "2025-07-08T11:07:55.892423" + } + ], + "interactions": [ + { + "interaction_id": "73016a03-4293-45ed-9736-f2c5bcfd67e9", + "person_id": "c417420c-d97c-4e51-b7da-471237d43506", + "lead_id": "175bcb9c-6712-4ef7-9460-15fb34ce0b9d", + "channel": "site_visit", + "interaction_type": "site_visit", + "happened_at": "2025-11-24T11:07:55.892491", + "summary": "Site Visit interaction regarding Siddha Sky Waterfront", + "source_ref": "09f995f2-67c1-4d8d-87c3-a50c4c407b28", + "created_at": "2026-01-14T11:07:55.892499" + }, + { + "interaction_id": "b7ddb331-4cb4-4ede-81f7-d10d52e1dbd0", + "person_id": "c417420c-d97c-4e51-b7da-471237d43506", + "lead_id": "175bcb9c-6712-4ef7-9460-15fb34ce0b9d", + "channel": "site_visit", + "interaction_type": "site_visit", + "happened_at": "2025-11-27T11:07:55.892517", + "summary": "Site Visit interaction regarding Siddha Sky Waterfront", + "source_ref": "e50cef58-7f47-44b6-974a-62fe6df76cdc", + "created_at": "2025-11-26T11:07:55.892524" + }, + { + "interaction_id": "5147bdb7-ae3a-4209-968e-85b9843066b1", + "person_id": "c417420c-d97c-4e51-b7da-471237d43506", + "lead_id": "175bcb9c-6712-4ef7-9460-15fb34ce0b9d", + "channel": "referral", + "interaction_type": "referral", + "happened_at": "2025-12-15T11:07:55.892555", + "summary": "Referral interaction regarding Siddha Sky Waterfront", + "source_ref": "6653188d-a05d-4e2d-9bb4-8a9d8b96a7f8", + "created_at": "2026-02-12T11:07:55.892563" + }, + { + "interaction_id": "b8d16bd7-887c-4973-a78b-5d9e3643af40", + "person_id": "c417420c-d97c-4e51-b7da-471237d43506", + "lead_id": "175bcb9c-6712-4ef7-9460-15fb34ce0b9d", + "channel": "email", + "interaction_type": "email", + "happened_at": "2025-11-21T11:07:55.892571", + "summary": "Email interaction regarding Siddha Sky Waterfront", + "source_ref": "961da73a-aa7a-4744-a771-ee4dea0f0738", + "created_at": "2026-01-19T11:07:55.892579" + }, + { + "interaction_id": "f05e859b-073d-406a-9d8e-ac4a7f139aaa", + "person_id": "c417420c-d97c-4e51-b7da-471237d43506", + "lead_id": "175bcb9c-6712-4ef7-9460-15fb34ce0b9d", + "channel": "call", + "interaction_type": "call", + "happened_at": "2025-12-24T11:07:55.892606", + "summary": "Call interaction regarding Siddha Sky Waterfront", + "source_ref": "f14ad7cb-e983-4821-bd56-0219c8e8dd16", + "created_at": "2025-10-20T11:07:55.892616" + }, + { + "interaction_id": "dceb1b0f-a4bc-4dca-9f84-095a663dc62a", + "person_id": "c417420c-d97c-4e51-b7da-471237d43506", + "lead_id": "175bcb9c-6712-4ef7-9460-15fb34ce0b9d", + "channel": "site_visit", + "interaction_type": "site_visit", + "happened_at": "2025-11-11T11:07:55.892694", + "summary": "Site Visit interaction regarding Siddha Sky Waterfront", + "source_ref": "14c401ae-150b-43e0-816e-cc22631f8983", + "created_at": "2025-11-01T11:07:55.892703" + }, + { + "interaction_id": "6d2216e5-0820-4eda-82b7-9d7f12097f16", + "person_id": "c417420c-d97c-4e51-b7da-471237d43506", + "lead_id": "175bcb9c-6712-4ef7-9460-15fb34ce0b9d", + "channel": "builder_event", + "interaction_type": "builder_event", + "happened_at": "2026-03-04T11:07:55.892720", + "summary": "Builder Event interaction regarding Siddha Sky Waterfront", + "source_ref": "299c85af-75cb-4ba3-a90b-5c2bb2d4eec3", + "created_at": "2025-11-05T11:07:55.892728" + } + ], + "calls": [ + { + "call_id": "21c7ffa5-9e53-4ba8-94ba-4e9d36112967", + "interaction_id": "f05e859b-073d-406a-9d8e-ac4a7f139aaa", + "person_id": "c417420c-d97c-4e51-b7da-471237d43506", + "call_direction": "outbound", + "duration_seconds": 575, + "recording_ref": "recording_21c7ffa5.mp3", + "transcript_ref": "930b7ba4-8bc3-47ff-8142-a7f4ba987b38", + "call_ts": "2026-03-23T11:07:55.892634" + } + ], + "transcripts": [ + { + "transcript_id": "930b7ba4-8bc3-47ff-8142-a7f4ba987b38", + "call_id": "21c7ffa5-9e53-4ba8-94ba-4e9d36112967", + "person_id": "c417420c-d97c-4e51-b7da-471237d43506", + "interaction_ref": "f05e859b-073d-406a-9d8e-ac4a7f139aaa", + "language": "en", + "full_text": "Hello, am I speaking with Madhumita? This is Velocity Real Estate. Yes speaking. How can I help you? We noticed your inquiry about Siddha Sky Waterfront. Are you still looking? Yes I am. Can you tell me more about the configurations and pricing? Of course. We have 4BHK units available starting from ₹16,557,906. Would you be interested in a site visit? Yes, that sounds good. What about the possession timeline? The project is expected to be ready by Q3 2027. We have early-bird pricing available this month. I'll discuss with my family and get back to you. Can you send me the brochure? Absolutely. I'll WhatsApp you the details right away. Thank you Madhumita.", + "speaker_segments_json": "[{\"speaker\": \"agent\", \"start_seconds\": 0, \"end_seconds\": 17, \"text\": \"Hello, am I speaking with Madhumita? This is Velocity Real Estate.\"}, {\"speaker\": \"client\", \"start_seconds\": 18, \"end_seconds\": 24, \"text\": \"Yes speaking. How can I help you?\"}, {\"speaker\": \"agent\", \"start_seconds\": 26, \"end_seconds\": 43, \"text\": \"We noticed your inquiry about Siddha Sky Waterfront. Are you still looking?\"}, {\"speaker\": \"client\", \"start_seconds\": 24, \"end_seconds\": 31, \"text\": \"Yes I am. Can you tell me more about the configurations and pricing?\"}, {\"speaker\": \"agent\", \"start_seconds\": 48, \"end_seconds\": 68, \"text\": \"Of course. We have 4BHK units available starting from \\u20b916,557,906. Would you be interested in a site visit?\"}, {\"speaker\": \"client\", \"start_seconds\": 105, \"end_seconds\": 112, \"text\": \"Yes, that sounds good. What about the possession timeline?\"}, {\"speaker\": \"agent\", \"start_seconds\": 60, \"end_seconds\": 73, \"text\": \"The project is expected to be ready by Q3 2027. We have early-bird pricing available this month.\"}, {\"speaker\": \"client\", \"start_seconds\": 105, \"end_seconds\": 121, \"text\": \"I'll discuss with my family and get back to you. Can you send me the brochure?\"}, {\"speaker\": \"agent\", \"start_seconds\": 80, \"end_seconds\": 86, \"text\": \"Absolutely. I'll WhatsApp you the details right away. Thank you Madhumita.\"}]", + "confidence": 0.978, + "created_at": "2026-03-23T11:07:55.892634" + } + ], + "messages": [], + "emails": [ + { + "email_id": "64a9be53-a320-472e-af09-1dcfa8a50faf", + "interaction_id": "b8d16bd7-887c-4973-a78b-5d9e3643af40", + "person_id": "c417420c-d97c-4e51-b7da-471237d43506", + "subject": "Booking Procedure - Siddha Sky Waterfront", + "body": "Dear Madhumita,\n\nWe are pleased to share the exclusive early-bird pricing for Siddha Sky Waterfront. This offer is valid until the end of the month.\n\nPlease let us know if you would like to schedule a meeting.\n\nWarm regards,\nVelocity Real Estate", + "sender_role": "agent", + "sent_at": "2026-03-13T11:07:55.892595", + "opened_at": "2025-10-31T11:07:55.892597", + "replied_at": null + } + ], + "visits": [ + { + "visit_id": "8de644f9-069e-4378-a42a-8edea58bbe0a", + "person_id": "c417420c-d97c-4e51-b7da-471237d43506", + "lead_id": "175bcb9c-6712-4ef7-9460-15fb34ce0b9d", + "project_name": "Siddha Sky Waterfront", + "visited_at": "2025-11-12T11:07:55.892507", + "visit_notes": "Second visit. More focused on parking and amenities.", + "host_user_id": "user_4", + "revisit_intent": "yes", + "household_id": null + }, + { + "visit_id": "410c1d55-9a22-4e44-8053-58a844cda524", + "person_id": "c417420c-d97c-4e51-b7da-471237d43506", + "lead_id": "175bcb9c-6712-4ef7-9460-15fb34ce0b9d", + "project_name": "Siddha Sky Waterfront", + "visited_at": "2025-12-15T11:07:55.892532", + "visit_notes": "Visited with spouse. Both interested. Requested payment plan.", + "host_user_id": "user_3", + "revisit_intent": "maybe", + "household_id": null + }, + { + "visit_id": "96761cd6-3e2e-457a-b4ef-bc9f6eae7e0c", + "person_id": "c417420c-d97c-4e51-b7da-471237d43506", + "lead_id": "175bcb9c-6712-4ef7-9460-15fb34ce0b9d", + "project_name": "Siddha Sky Waterfront", + "visited_at": "2025-12-05T11:07:55.892711", + "visit_notes": "Second visit. More focused on parking and amenities.", + "host_user_id": "user_5", + "revisit_intent": "yes", + "household_id": null + } + ], + "reminders": [ + { + "reminder_id": "592ae931-4161-4cb6-beff-8e5e8975450a", + "person_id": "c417420c-d97c-4e51-b7da-471237d43506", + "lead_id": "175bcb9c-6712-4ef7-9460-15fb34ce0b9d", + "reminder_text": "Re-engage after 2 weeks silence", + "due_at": "2026-05-04T11:07:55.892736", + "completed": false, + "completed_at": null, + "assigned_user_id": "user_3", + "created_at": "2026-03-06T11:07:55.892748" + }, + { + "reminder_id": "0f307f72-73b0-4947-a009-eb18892cb6c0", + "person_id": "c417420c-d97c-4e51-b7da-471237d43506", + "lead_id": "175bcb9c-6712-4ef7-9460-15fb34ce0b9d", + "reminder_text": "Re-engage after 2 weeks silence", + "due_at": "2026-05-17T11:07:55.892750", + "completed": true, + "completed_at": "2026-04-01T11:07:55.892759", + "assigned_user_id": "user_2", + "created_at": "2026-02-07T11:07:55.892761" + }, + { + "reminder_id": "bde5bf51-5418-4c78-8ffb-bbd9d145d239", + "person_id": "c417420c-d97c-4e51-b7da-471237d43506", + "lead_id": "175bcb9c-6712-4ef7-9460-15fb34ce0b9d", + "reminder_text": "Confirm booking appointment", + "due_at": "2026-05-13T11:07:55.892762", + "completed": true, + "completed_at": "2026-04-10T11:07:55.892770", + "assigned_user_id": "user_1", + "created_at": "2026-03-08T11:07:55.892772" + }, + { + "reminder_id": "cd8804e0-a6a6-4518-8c68-39b29c1814e6", + "person_id": "c417420c-d97c-4e51-b7da-471237d43506", + "lead_id": "175bcb9c-6712-4ef7-9460-15fb34ce0b9d", + "reminder_text": "Check competitor comparison status", + "due_at": "2026-05-16T11:07:55.892774", + "completed": true, + "completed_at": "2026-04-06T11:07:55.892789", + "assigned_user_id": "user_4", + "created_at": "2026-02-21T11:07:55.892791" + } + ], + "qd_scores": [ + { + "qd_id": "584f98bb-9e52-4efe-b60b-0bad1a147246", + "person_id": "c417420c-d97c-4e51-b7da-471237d43506", + "score_type": "intent_score", + "current_value": 0.455, + "computed_at": "2026-02-24T11:07:55.892817", + "evidence_refs_json": "[\"8751793e-0bf3-4c99-921c-f6dc17478890\", \"446143e2-34ae-4b8b-93de-59608105e1fa\", \"fe16894c-ded4-495a-8287-1792b5fc2c81\", \"8d70700e-f071-4e17-9793-5f1e4f36f7e9\"]" + }, + { + "qd_id": "f09368d5-9164-437d-be8d-6f72b5746bae", + "person_id": "c417420c-d97c-4e51-b7da-471237d43506", + "score_type": "urgency_score", + "current_value": 0.543, + "computed_at": "2026-02-21T11:07:55.893141", + "evidence_refs_json": "[\"2d60245e-f033-4da1-840b-b0f3b1dfba23\", \"401e123b-df3d-4e95-aa4c-d2b9ae8f4401\"]" + }, + { + "qd_id": "95fad4f6-f88a-40ab-94e1-c1d378be0eed", + "person_id": "c417420c-d97c-4e51-b7da-471237d43506", + "score_type": "engagement_score", + "current_value": 0.401, + "computed_at": "2026-02-23T11:07:55.893271", + "evidence_refs_json": "[\"a0a5fa66-0893-4e15-8a87-c429a60130ce\", \"06f22bd7-0a9c-4830-9fe0-15e9e5c89b2a\", \"4b7d77e5-357c-4e5c-bcb8-ed0b0b8d12de\", \"ff8b4dd2-6748-4144-a00d-850d8ed7d240\"]" + } + ], + "qd_timeseries": [ + { + "timeseries_id": "fc02ccc4-1e3e-4611-b7a3-9b57db257f67", + "person_id": "c417420c-d97c-4e51-b7da-471237d43506", + "signal_source": "email", + "timestamp": "2025-12-16T11:07:55.892912", + "value": 0.558, + "score_type": "intent_score", + "evidence_ref": "08779a40-8402-40f2-ba39-f5d23002bede" + }, + { + "timeseries_id": "91a9b762-335e-48d4-a2b3-aecf949e13d0", + "person_id": "c417420c-d97c-4e51-b7da-471237d43506", + "signal_source": "site_visit", + "timestamp": "2025-12-21T11:07:55.892912", + "value": 0.377, + "score_type": "intent_score", + "evidence_ref": "15538a43-e53e-4877-ad1a-398c6add0e92" + }, + { + "timeseries_id": "a44124ac-43d4-4e6a-8694-f302ebacd841", + "person_id": "c417420c-d97c-4e51-b7da-471237d43506", + "signal_source": "call", + "timestamp": "2025-12-29T11:07:55.892912", + "value": 0.456, + "score_type": "intent_score", + "evidence_ref": "b81e1dfe-b899-4cb3-a6e6-c386cd720744" + }, + { + "timeseries_id": "59b6f995-30d6-487b-8c4e-888164ce85a1", + "person_id": "c417420c-d97c-4e51-b7da-471237d43506", + "signal_source": "call", + "timestamp": "2026-01-13T11:07:55.892912", + "value": 0.528, + "score_type": "intent_score", + "evidence_ref": "2958dca9-6e38-49d3-bec2-fcfc0d2acacd" + }, + { + "timeseries_id": "a11e9711-6ee9-4f74-8fc0-e896aaebc331", + "person_id": "c417420c-d97c-4e51-b7da-471237d43506", + "signal_source": "site_visit", + "timestamp": "2026-01-26T11:07:55.892912", + "value": 0.502, + "score_type": "intent_score", + "evidence_ref": "a20a39a4-efb3-403b-8d8b-9971c5abd0df" + }, + { + "timeseries_id": "c2f41027-b0b6-4272-9d27-badb1d0bf950", + "person_id": "c417420c-d97c-4e51-b7da-471237d43506", + "signal_source": "email", + "timestamp": "2026-02-12T11:07:55.892912", + "value": 0.52, + "score_type": "intent_score", + "evidence_ref": "424e652e-d7fb-4e83-bec6-2bafe02b2e77" + }, + { + "timeseries_id": "fe6ce9c4-1d39-4131-ba90-6fb01d278a18", + "person_id": "c417420c-d97c-4e51-b7da-471237d43506", + "signal_source": "email", + "timestamp": "2026-02-27T11:07:55.892912", + "value": 0.499, + "score_type": "intent_score", + "evidence_ref": "0dbe8fc5-70a2-4da4-ac2c-a1eb577afac0" + }, + { + "timeseries_id": "3d2933f3-dc64-44a3-94d4-b2cb12bc1c86", + "person_id": "c417420c-d97c-4e51-b7da-471237d43506", + "signal_source": "call", + "timestamp": "2025-12-02T11:07:55.893166", + "value": 0.515, + "score_type": "urgency_score", + "evidence_ref": "6d189f24-e626-4ed7-a9b5-03b1936634f0" + }, + { + "timeseries_id": "c584306e-1841-4aa0-9c2a-80313daeeda3", + "person_id": "c417420c-d97c-4e51-b7da-471237d43506", + "signal_source": "whatsapp", + "timestamp": "2025-12-14T11:07:55.893166", + "value": 0.615, + "score_type": "urgency_score", + "evidence_ref": "48dc1257-3fb4-45ce-aaa6-03c3b00ecd7c" + }, + { + "timeseries_id": "e6c93ecb-9fd8-40aa-8edb-5b4afc22a100", + "person_id": "c417420c-d97c-4e51-b7da-471237d43506", + "signal_source": "site_visit", + "timestamp": "2026-01-01T11:07:55.893166", + "value": 0.547, + "score_type": "urgency_score", + "evidence_ref": "34707eb8-4f27-440a-8d8b-002eead8eb82" + }, + { + "timeseries_id": "9d397873-dbd5-4a3f-b634-77d8123b64a3", + "person_id": "c417420c-d97c-4e51-b7da-471237d43506", + "signal_source": "email", + "timestamp": "2025-12-11T11:07:55.893321", + "value": 0.443, + "score_type": "engagement_score", + "evidence_ref": "d9dbb8e8-7055-40f4-8ab9-145eca0f54cb" + }, + { + "timeseries_id": "b43c9fca-f68a-43f9-8d9d-89f93e83c763", + "person_id": "c417420c-d97c-4e51-b7da-471237d43506", + "signal_source": "call", + "timestamp": "2025-12-26T11:07:55.893321", + "value": 0.414, + "score_type": "engagement_score", + "evidence_ref": "8382b167-6ea1-46f9-b4c4-4a2cc9064343" + }, + { + "timeseries_id": "d36dcaec-1b51-4fb6-992f-d8ef737e8381", + "person_id": "c417420c-d97c-4e51-b7da-471237d43506", + "signal_source": "email", + "timestamp": "2026-01-05T11:07:55.893321", + "value": 0.356, + "score_type": "engagement_score", + "evidence_ref": "1cea25dd-1fc4-47c0-9e9e-fd20057dc911" + }, + { + "timeseries_id": "f642bd7d-e2d1-44a8-ba26-943c5eb5684c", + "person_id": "c417420c-d97c-4e51-b7da-471237d43506", + "signal_source": "site_visit", + "timestamp": "2026-01-16T11:07:55.893321", + "value": 0.325, + "score_type": "engagement_score", + "evidence_ref": "f9f5edba-4ff3-4068-88d8-bfdb4d67e87c" + }, + { + "timeseries_id": "75c2d127-6119-4d10-9ff9-c50a1cfda99f", + "person_id": "c417420c-d97c-4e51-b7da-471237d43506", + "signal_source": "email", + "timestamp": "2026-01-27T11:07:55.893321", + "value": 0.458, + "score_type": "engagement_score", + "evidence_ref": "2f5d2719-9b94-43d1-9c43-2bfa12d6b548" + } + ], + "intel_events": [], + "client360": { + "client_ref": "c417420c-d97c-4e51-b7da-471237d43506", + "snapshot_generated_at": "2026-04-18T11:07:55.893413", + "identity": { + "full_name": "Madhumita Bagchi", + "primary_email": "madhumita.bagchi488@company.com", + "primary_phone": "+91 9576180666", + "persona_labels": "[\"nri_diaspora\", \"value_seeker\", \"emotional_buyer\"]", + "buyer_type": "slow_burn_investor" + }, + "account_links": [ + "719009b0-4ad2-4ab0-ab36-7144c1c43981" + ], + "active_opportunities": [ + { + "opportunity_id": "62104586-3e91-4d21-b160-3d7777b10e3c", + "project": "Siddha Sky Waterfront", + "stage": "qualified", + "value": 16557906 + } + ], + "recent_interactions": [ + { + "interaction_id": "6d2216e5-0820-4eda-82b7-9d7f12097f16", + "channel": "builder_event", + "happened_at": "2026-03-04T11:07:55.892720" + }, + { + "interaction_id": "f05e859b-073d-406a-9d8e-ac4a7f139aaa", + "channel": "call", + "happened_at": "2025-12-24T11:07:55.892606" + }, + { + "interaction_id": "5147bdb7-ae3a-4209-968e-85b9843066b1", + "channel": "referral", + "happened_at": "2025-12-15T11:07:55.892555" + }, + { + "interaction_id": "b7ddb331-4cb4-4ede-81f7-d10d52e1dbd0", + "channel": "site_visit", + "happened_at": "2025-11-27T11:07:55.892517" + }, + { + "interaction_id": "73016a03-4293-45ed-9736-f2c5bcfd67e9", + "channel": "site_visit", + "happened_at": "2025-11-24T11:07:55.892491" + } + ], + "property_interests": [ + { + "project": "Siddha Sky Waterfront", + "config": "4BHK", + "budget_max": 11251650 + }, + { + "project": "Eden Devprayag", + "config": "3BHK", + "budget_max": 11484391 + }, + { + "project": "DTC Sojon", + "config": "2BHK", + "budget_max": 6051402 + } + ], + "tasks": [ + "Re-engage after 2 weeks silence" + ], + "qd_overview": { + "intent_score": 0.455, + "urgency_score": 0.543, + "engagement_score": 0.401 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Book site visit", + "Share payment plan" + ], + "lead_stage": "qualified", + "lead_status": "active" + } + }, + { + "person": { + "person_id": "69665345-4cfc-4a65-b64e-892e0f12fb96", + "full_name": "Antara Mitra", + "primary_email": "antara.mitra943@gmail.com", + "primary_phone": "+91 9902590965", + "secondary_phone": "+91 9115979460", + "linkedin_url": "https://linkedin.com/in/antara-mitra-882", + "occupation": "Doctor", + "employer": "JK Lakshmi Cement", + "account_id": "167e5af1-66b1-41c0-9a9d-42aa9b77a3a7", + "location_city": "Tollygunge", + "location_country": "India", + "buyer_type": "high_intent", + "persona_labels": "[\"family_centric\", \"value_seeker\", \"emotional_buyer\"]", + "is_nri": false, + "source_confidence": 0.885, + "created_at": "2025-10-10T11:07:55.893463", + "updated_at": "2025-12-15T11:07:55.893466" + }, + "lead": { + "lead_id": "b8308ff2-5a39-4d75-9783-74a0eebe8224", + "person_id": "69665345-4cfc-4a65-b64e-892e0f12fb96", + "account_id": "167e5af1-66b1-41c0-9a9d-42aa9b77a3a7", + "source_system": "builder_event", + "status": "active", + "stage": "booked", + "budget_band": "₹68L - ₹75L", + "urgency": "flexible", + "assigned_user_id": "user_1", + "primary_project": "Siddha Serena", + "objection": null, + "motivation": "School proximity", + "financing_posture": "nri_remittance", + "created_at": "2025-09-10T11:07:55.893516", + "updated_at": "2025-10-23T11:07:55.893517" + }, + "opportunities": [ + { + "opportunity_id": "7e80cfa4-4bbb-4c7f-9d88-c8b9792ef89d", + "lead_id": "b8308ff2-5a39-4d75-9783-74a0eebe8224", + "person_id": "69665345-4cfc-4a65-b64e-892e0f12fb96", + "project_name": "Siddha Serena", + "unit_config": "3BHK", + "stage": "booked", + "value": 6858586, + "probability": 95, + "expected_close_date": "2026-04-12T11:07:55.893585", + "next_action": "Confirm booking slot", + "created_at": "2025-11-01T11:07:55.893587", + "updated_at": "2026-04-04T11:07:55.893588" + } + ], + "property_interests": [ + { + "interest_id": "9a362c0c-e359-4aa3-a0a2-1b36ad5e5897", + "person_id": "69665345-4cfc-4a65-b64e-892e0f12fb96", + "project_name": "Siddha Serena", + "configuration": "2BHK", + "budget_min": 6249464, + "budget_max": 7638233, + "urgency": "within_6_months", + "facing_preference": "south", + "floor_preference": "mid", + "notes": "Healthcare access", + "created_at": "2026-01-16T11:07:55.893489" + }, + { + "interest_id": "27311dd8-603d-4e3d-b5cb-bf2a987b4464", + "person_id": "69665345-4cfc-4a65-b64e-892e0f12fb96", + "project_name": "Godrej Blue", + "configuration": "2BHK", + "budget_min": 10269169, + "budget_max": 12551206, + "urgency": "flexible", + "facing_preference": "south", + "floor_preference": "low", + "notes": "School proximity", + "created_at": "2025-11-21T11:07:55.893500" + } + ], + "interactions": [ + { + "interaction_id": "c1a0fe6a-765f-4460-bfca-210ea101066b", + "person_id": "69665345-4cfc-4a65-b64e-892e0f12fb96", + "lead_id": "b8308ff2-5a39-4d75-9783-74a0eebe8224", + "channel": "digital_ad", + "interaction_type": "digital_ad", + "happened_at": "2025-10-07T11:07:55.893601", + "summary": "Digital Ad interaction regarding Siddha Serena", + "source_ref": "6dab6d0b-da03-48de-8e91-afce212b1b35", + "created_at": "2026-01-12T11:07:55.893612" + }, + { + "interaction_id": "50ce42e3-e8b9-4555-9c1e-d417f45f1ca5", + "person_id": "69665345-4cfc-4a65-b64e-892e0f12fb96", + "lead_id": "b8308ff2-5a39-4d75-9783-74a0eebe8224", + "channel": "email", + "interaction_type": "email", + "happened_at": "2026-01-05T11:07:55.893620", + "summary": "Email interaction regarding Siddha Serena", + "source_ref": "e06766a0-9f69-4ebd-b58a-48d1435d9231", + "created_at": "2026-02-05T11:07:55.893629" + }, + { + "interaction_id": "c919af9c-2d5b-455d-b289-c6ddcdd925e7", + "person_id": "69665345-4cfc-4a65-b64e-892e0f12fb96", + "lead_id": "b8308ff2-5a39-4d75-9783-74a0eebe8224", + "channel": "call", + "interaction_type": "call", + "happened_at": "2026-03-23T11:07:55.893651", + "summary": "Call interaction regarding Siddha Serena", + "source_ref": "20dd40a3-6e60-438d-af3f-a6419473cdd4", + "created_at": "2025-10-15T11:07:55.893658" + }, + { + "interaction_id": "c0b9f6f0-db67-4d72-8c3d-2e990a6e6c66", + "person_id": "69665345-4cfc-4a65-b64e-892e0f12fb96", + "lead_id": "b8308ff2-5a39-4d75-9783-74a0eebe8224", + "channel": "call", + "interaction_type": "call", + "happened_at": "2026-04-02T11:07:55.924758", + "summary": "Call interaction regarding Siddha Serena", + "source_ref": "97ab81d7-2985-4cd5-a184-208639cc414e", + "created_at": "2026-02-21T11:07:55.924809" + }, + { + "interaction_id": "6a3cc92d-bdcc-4237-84a0-7c10ac79c7cf", + "person_id": "69665345-4cfc-4a65-b64e-892e0f12fb96", + "lead_id": "b8308ff2-5a39-4d75-9783-74a0eebe8224", + "channel": "site_visit", + "interaction_type": "site_visit", + "happened_at": "2025-10-01T11:07:55.924955", + "summary": "Site Visit interaction regarding Siddha Serena", + "source_ref": "67fbc382-69bf-4018-80ed-22460816b998", + "created_at": "2025-10-11T11:07:55.924966" + }, + { + "interaction_id": "98ec670f-ea87-4105-ad3c-2aa7662da830", + "person_id": "69665345-4cfc-4a65-b64e-892e0f12fb96", + "lead_id": "b8308ff2-5a39-4d75-9783-74a0eebe8224", + "channel": "email", + "interaction_type": "email", + "happened_at": "2025-12-20T11:07:55.924987", + "summary": "Email interaction regarding Siddha Serena", + "source_ref": "aca7b3b9-0ddb-419e-be0d-1fc7faa03bad", + "created_at": "2025-11-07T11:07:55.924994" + } + ], + "calls": [ + { + "call_id": "7a8777f0-2613-4c05-ac2d-008a3121b337", + "interaction_id": "c919af9c-2d5b-455d-b289-c6ddcdd925e7", + "person_id": "69665345-4cfc-4a65-b64e-892e0f12fb96", + "call_direction": "outbound", + "duration_seconds": 818, + "recording_ref": "recording_7a8777f0.mp3", + "transcript_ref": "68d1bc65-8a12-4fd7-805f-7482fa11ec0b", + "call_ts": "2026-02-16T11:07:55.893673" + }, + { + "call_id": "7da51655-9d8a-48da-8a6c-26729800aa1a", + "interaction_id": "c0b9f6f0-db67-4d72-8c3d-2e990a6e6c66", + "person_id": "69665345-4cfc-4a65-b64e-892e0f12fb96", + "call_direction": "outbound", + "duration_seconds": 848, + "recording_ref": "recording_7da51655.mp3", + "transcript_ref": "bc8aa59e-9025-476f-92b6-346704ee59a8", + "call_ts": "2025-12-17T11:07:55.924832" + } + ], + "transcripts": [ + { + "transcript_id": "68d1bc65-8a12-4fd7-805f-7482fa11ec0b", + "call_id": "7a8777f0-2613-4c05-ac2d-008a3121b337", + "person_id": "69665345-4cfc-4a65-b64e-892e0f12fb96", + "interaction_ref": "c919af9c-2d5b-455d-b289-c6ddcdd925e7", + "language": "en", + "full_text": "Good morning Antara, just following up on your site visit last week. Yes I visited with my wife. We liked the view from the higher floors. That's wonderful. We also have east-facing units still available. What's the difference in price between east and west facing? East facing carries a premium of about 3 to 4 percent. But the morning light is excellent. Hmm. And what about car parking? We have two vehicles. We offer two covered parking slots for 3BHK and above. That's included. Okay let me check our loan eligibility and I'll call you back this week. Perfect. I'll also check if the early booking offer can be extended. Thank you Antara.", + "speaker_segments_json": "[{\"speaker\": \"agent\", \"start_seconds\": 0, \"end_seconds\": 18, \"text\": \"Good morning Antara, just following up on your site visit last week.\"}, {\"speaker\": \"client\", \"start_seconds\": 20, \"end_seconds\": 31, \"text\": \"Yes I visited with my wife. We liked the view from the higher floors.\"}, {\"speaker\": \"agent\", \"start_seconds\": 24, \"end_seconds\": 33, \"text\": \"That's wonderful. We also have east-facing units still available.\"}, {\"speaker\": \"client\", \"start_seconds\": 69, \"end_seconds\": 74, \"text\": \"What's the difference in price between east and west facing?\"}, {\"speaker\": \"agent\", \"start_seconds\": 52, \"end_seconds\": 70, \"text\": \"East facing carries a premium of about 3 to 4 percent. But the morning light is excellent.\"}, {\"speaker\": \"client\", \"start_seconds\": 115, \"end_seconds\": 124, \"text\": \"Hmm. And what about car parking? We have two vehicles.\"}, {\"speaker\": \"agent\", \"start_seconds\": 144, \"end_seconds\": 159, \"text\": \"We offer two covered parking slots for 3BHK and above. That's included.\"}, {\"speaker\": \"client\", \"start_seconds\": 161, \"end_seconds\": 175, \"text\": \"Okay let me check our loan eligibility and I'll call you back this week.\"}, {\"speaker\": \"agent\", \"start_seconds\": 128, \"end_seconds\": 134, \"text\": \"Perfect. I'll also check if the early booking offer can be extended. Thank you Antara.\"}]", + "confidence": 0.837, + "created_at": "2026-02-16T11:07:55.893673" + }, + { + "transcript_id": "bc8aa59e-9025-476f-92b6-346704ee59a8", + "call_id": "7da51655-9d8a-48da-8a6c-26729800aa1a", + "person_id": "69665345-4cfc-4a65-b64e-892e0f12fb96", + "interaction_ref": "c0b9f6f0-db67-4d72-8c3d-2e990a6e6c66", + "language": "en", + "full_text": "Good morning Antara, just following up on your site visit last week. Yes I visited with my wife. We liked the view from the higher floors. That's wonderful. We also have east-facing units still available. What's the difference in price between east and west facing? East facing carries a premium of about 3 to 4 percent. But the morning light is excellent. Hmm. And what about car parking? We have two vehicles. We offer two covered parking slots for 3BHK and above. That's included. Okay let me check our loan eligibility and I'll call you back this week. Perfect. I'll also check if the early booking offer can be extended. Thank you Antara.", + "speaker_segments_json": "[{\"speaker\": \"agent\", \"start_seconds\": 0, \"end_seconds\": 19, \"text\": \"Good morning Antara, just following up on your site visit last week.\"}, {\"speaker\": \"client\", \"start_seconds\": 18, \"end_seconds\": 31, \"text\": \"Yes I visited with my wife. We liked the view from the higher floors.\"}, {\"speaker\": \"agent\", \"start_seconds\": 38, \"end_seconds\": 54, \"text\": \"That's wonderful. We also have east-facing units still available.\"}, {\"speaker\": \"client\", \"start_seconds\": 75, \"end_seconds\": 88, \"text\": \"What's the difference in price between east and west facing?\"}, {\"speaker\": \"agent\", \"start_seconds\": 76, \"end_seconds\": 81, \"text\": \"East facing carries a premium of about 3 to 4 percent. But the morning light is excellent.\"}, {\"speaker\": \"client\", \"start_seconds\": 105, \"end_seconds\": 113, \"text\": \"Hmm. And what about car parking? We have two vehicles.\"}, {\"speaker\": \"agent\", \"start_seconds\": 114, \"end_seconds\": 125, \"text\": \"We offer two covered parking slots for 3BHK and above. That's included.\"}, {\"speaker\": \"client\", \"start_seconds\": 175, \"end_seconds\": 185, \"text\": \"Okay let me check our loan eligibility and I'll call you back this week.\"}, {\"speaker\": \"agent\", \"start_seconds\": 136, \"end_seconds\": 152, \"text\": \"Perfect. I'll also check if the early booking offer can be extended. Thank you Antara.\"}]", + "confidence": 0.934, + "created_at": "2025-12-17T11:07:55.924832" + } + ], + "messages": [], + "emails": [ + { + "email_id": "6d0c4c09-a1f4-44b8-be30-9485b8ea9612", + "interaction_id": "50ce42e3-e8b9-4555-9c1e-d417f45f1ca5", + "person_id": "69665345-4cfc-4a65-b64e-892e0f12fb96", + "subject": "Payment Plan Details - Siddha Serena", + "body": "Dear Antara,\n\nThank you for your interest in Siddha Serena. As discussed, please find the brochure and floor plans attached.\n\nWe would be happy to arrange a site visit at your convenience.\n\nBest regards,\nVelocity Real Estate Team", + "sender_role": "agent", + "sent_at": "2025-11-22T11:07:55.893642", + "opened_at": null, + "replied_at": null + }, + { + "email_id": "16d0b800-6608-4ac5-8090-91b8af116a48", + "interaction_id": "98ec670f-ea87-4105-ad3c-2aa7662da830", + "person_id": "69665345-4cfc-4a65-b64e-892e0f12fb96", + "subject": "Exclusive Offer - Siddha Serena Units", + "body": "Dear Antara,\n\nThank you for your interest in Siddha Serena. As discussed, please find the brochure and floor plans attached.\n\nWe would be happy to arrange a site visit at your convenience.\n\nBest regards,\nVelocity Real Estate Team", + "sender_role": "agent", + "sent_at": "2025-11-05T11:07:55.925007", + "opened_at": "2026-01-21T11:07:55.925009", + "replied_at": null + } + ], + "visits": [ + { + "visit_id": "d3e04339-400a-4e6d-bb13-a3669c6d568f", + "person_id": "69665345-4cfc-4a65-b64e-892e0f12fb96", + "lead_id": "b8308ff2-5a39-4d75-9783-74a0eebe8224", + "project_name": "Siddha Serena", + "visited_at": "2025-12-24T11:07:55.924975", + "visit_notes": "Liked the 3BHK show flat. Concerned about traffic.", + "host_user_id": "user_4", + "revisit_intent": "maybe", + "household_id": null + } + ], + "reminders": [ + { + "reminder_id": "8a1670fa-2d9a-45b0-8ec8-e9a6e37f0a28", + "person_id": "69665345-4cfc-4a65-b64e-892e0f12fb96", + "lead_id": "b8308ff2-5a39-4d75-9783-74a0eebe8224", + "reminder_text": "Share updated price list", + "due_at": "2026-04-21T11:07:55.925014", + "completed": true, + "completed_at": "2026-04-12T11:07:55.925022", + "assigned_user_id": "user_3", + "created_at": "2026-03-04T11:07:55.925024" + }, + { + "reminder_id": "f6ce2b6f-a3dd-4366-a54c-dfbea88b7f1b", + "person_id": "69665345-4cfc-4a65-b64e-892e0f12fb96", + "lead_id": "b8308ff2-5a39-4d75-9783-74a0eebe8224", + "reminder_text": "Send legal documents", + "due_at": "2026-05-08T11:07:55.925026", + "completed": false, + "completed_at": null, + "assigned_user_id": "user_3", + "created_at": "2026-02-08T11:07:55.925034" + }, + { + "reminder_id": "de77d37a-51aa-4a25-bfcf-6847e323a12e", + "person_id": "69665345-4cfc-4a65-b64e-892e0f12fb96", + "lead_id": "b8308ff2-5a39-4d75-9783-74a0eebe8224", + "reminder_text": "Nudge for final decision", + "due_at": "2026-04-28T11:07:55.925036", + "completed": false, + "completed_at": null, + "assigned_user_id": "user_3", + "created_at": "2026-01-30T11:07:55.925044" + }, + { + "reminder_id": "061fc5c6-4cc5-4fcf-a444-e4e161db24c3", + "person_id": "69665345-4cfc-4a65-b64e-892e0f12fb96", + "lead_id": "b8308ff2-5a39-4d75-9783-74a0eebe8224", + "reminder_text": "Nudge for final decision", + "due_at": "2026-04-30T11:07:55.925057", + "completed": true, + "completed_at": "2026-04-04T11:07:55.925065", + "assigned_user_id": "user_2", + "created_at": "2026-03-07T11:07:55.925067" + } + ], + "qd_scores": [ + { + "qd_id": "3895d644-27a0-4c74-b1d5-c1511cfd8893", + "person_id": "69665345-4cfc-4a65-b64e-892e0f12fb96", + "score_type": "intent_score", + "current_value": 0.935, + "computed_at": "2026-02-17T11:07:55.925090", + "evidence_refs_json": "[\"313b95e7-d98d-48f9-bb01-361592fc900e\", \"a7a50c1a-9603-4fbd-8e0e-630ef0820d27\", \"5a405fe8-bc9c-4599-9556-56555ac57843\", \"52ee5113-3e2c-40d0-974b-f86e3f21bdf3\", \"1a84bd27-ae45-4e82-a1d8-fe5c169258ab\"]" + }, + { + "qd_id": "f37bc39c-c184-4db0-8d67-a7243e0216bd", + "person_id": "69665345-4cfc-4a65-b64e-892e0f12fb96", + "score_type": "urgency_score", + "current_value": 1.0, + "computed_at": "2026-03-29T11:07:55.925232", + "evidence_refs_json": "[\"3c943455-b227-4645-babf-4cfa3364bbe8\", \"023cd41f-9ed5-4fa6-a374-8b1c8f1af18b\", \"54cb5448-4bcf-478d-b193-0c191d543f41\"]" + }, + { + "qd_id": "edf216be-84ce-448c-a6bd-1bcbde6b653c", + "person_id": "69665345-4cfc-4a65-b64e-892e0f12fb96", + "score_type": "engagement_score", + "current_value": 0.993, + "computed_at": "2026-03-01T11:07:55.925355", + "evidence_refs_json": "[\"c6775995-1480-412a-b646-595c4168d78c\", \"dceee4a4-2c70-4bae-a56f-1ac76c97b24a\", \"ccdb0d32-e766-4de5-9f85-6c07938df591\", \"574fbf04-de3a-4937-9bbd-e3b990106ef6\", \"54fcf072-d70d-44bb-adc9-909af1228675\"]" + } + ], + "qd_timeseries": [ + { + "timeseries_id": "ff805328-950e-45ce-9a79-d9d655abd8fb", + "person_id": "69665345-4cfc-4a65-b64e-892e0f12fb96", + "signal_source": "email", + "timestamp": "2025-11-19T11:07:55.925127", + "value": 0.941, + "score_type": "intent_score", + "evidence_ref": "48069316-d8fd-4e65-900a-d78161fba3e6" + }, + { + "timeseries_id": "365a1c89-35e1-4442-aeee-631348b7b7b9", + "person_id": "69665345-4cfc-4a65-b64e-892e0f12fb96", + "signal_source": "call", + "timestamp": "2025-11-26T11:07:55.925127", + "value": 0.878, + "score_type": "intent_score", + "evidence_ref": "d5bb1bae-69c4-4adc-b098-027df0e2dca7" + }, + { + "timeseries_id": "82534933-342e-416a-85dc-2cde0809df92", + "person_id": "69665345-4cfc-4a65-b64e-892e0f12fb96", + "signal_source": "call", + "timestamp": "2025-12-05T11:07:55.925127", + "value": 0.972, + "score_type": "intent_score", + "evidence_ref": "74e48fdd-6a14-4a95-baee-b1c4786320c9" + }, + { + "timeseries_id": "a1ae65e5-3b06-4a34-9c40-83966e75cde8", + "person_id": "69665345-4cfc-4a65-b64e-892e0f12fb96", + "signal_source": "whatsapp", + "timestamp": "2025-12-23T11:07:55.925256", + "value": 0.912, + "score_type": "urgency_score", + "evidence_ref": "b35c221b-d53d-4d88-aed2-bded618311e0" + }, + { + "timeseries_id": "beac73de-4e45-42ed-948d-4037c7ac0610", + "person_id": "69665345-4cfc-4a65-b64e-892e0f12fb96", + "signal_source": "call", + "timestamp": "2026-01-02T11:07:55.925256", + "value": 0.888, + "score_type": "urgency_score", + "evidence_ref": "591cb4b6-44d6-42a9-9d9e-76bd50fc15b5" + }, + { + "timeseries_id": "9fb785d5-d051-4420-a688-805b6c59adbc", + "person_id": "69665345-4cfc-4a65-b64e-892e0f12fb96", + "signal_source": "site_visit", + "timestamp": "2026-01-18T11:07:55.925256", + "value": 1.0, + "score_type": "urgency_score", + "evidence_ref": "d20baf60-e19c-44b6-820e-cda16eba83bd" + }, + { + "timeseries_id": "9ad4d5f5-7f31-481a-a568-8e3f03b1d8f8", + "person_id": "69665345-4cfc-4a65-b64e-892e0f12fb96", + "signal_source": "site_visit", + "timestamp": "2026-02-06T11:07:55.925256", + "value": 1.0, + "score_type": "urgency_score", + "evidence_ref": "3f1ea1b0-cdab-4364-a858-c18c0d2ba9b4" + }, + { + "timeseries_id": "995ad972-ecfc-4253-a554-57e378f42f41", + "person_id": "69665345-4cfc-4a65-b64e-892e0f12fb96", + "signal_source": "whatsapp", + "timestamp": "2026-02-15T11:07:55.925256", + "value": 1.0, + "score_type": "urgency_score", + "evidence_ref": "6d28aebe-c77a-426f-bcfa-a1df1613b126" + }, + { + "timeseries_id": "79432535-e760-41c3-8398-f4573c126645", + "person_id": "69665345-4cfc-4a65-b64e-892e0f12fb96", + "signal_source": "site_visit", + "timestamp": "2025-11-30T11:07:55.925389", + "value": 0.989, + "score_type": "engagement_score", + "evidence_ref": "6572c06d-4fc4-4928-8be2-2481a02564e3" + }, + { + "timeseries_id": "9fd7aa21-2b2a-465c-9d71-07ad26d5b8eb", + "person_id": "69665345-4cfc-4a65-b64e-892e0f12fb96", + "signal_source": "call", + "timestamp": "2025-12-12T11:07:55.925389", + "value": 0.979, + "score_type": "engagement_score", + "evidence_ref": "d1c71372-5806-4945-b10f-e387b37fdcf7" + }, + { + "timeseries_id": "b1e22409-a1c6-4fe2-8b23-082cbcf42c21", + "person_id": "69665345-4cfc-4a65-b64e-892e0f12fb96", + "signal_source": "email", + "timestamp": "2025-12-28T11:07:55.925389", + "value": 0.935, + "score_type": "engagement_score", + "evidence_ref": "ed6072e5-436c-45bd-b337-ac2433366adb" + }, + { + "timeseries_id": "a672e624-e12e-422f-bd32-c7b8bb003074", + "person_id": "69665345-4cfc-4a65-b64e-892e0f12fb96", + "signal_source": "call", + "timestamp": "2026-01-11T11:07:55.925389", + "value": 0.873, + "score_type": "engagement_score", + "evidence_ref": "4f454448-102d-48df-9c35-2f864ceee66d" + }, + { + "timeseries_id": "bfd0a983-d520-4f41-8ac0-9a2b1c6988aa", + "person_id": "69665345-4cfc-4a65-b64e-892e0f12fb96", + "signal_source": "site_visit", + "timestamp": "2026-01-20T11:07:55.925389", + "value": 0.942, + "score_type": "engagement_score", + "evidence_ref": "ab2a5191-1fd6-412c-a546-bc50d91b65f9" + }, + { + "timeseries_id": "6416533f-2378-4f99-ab05-04f51e490f35", + "person_id": "69665345-4cfc-4a65-b64e-892e0f12fb96", + "signal_source": "email", + "timestamp": "2026-01-25T11:07:55.925389", + "value": 1.0, + "score_type": "engagement_score", + "evidence_ref": "7521dda2-6080-48fb-a084-015f0de820b2" + }, + { + "timeseries_id": "6cd14017-a4c3-4e3e-82c9-b2eaa3112056", + "person_id": "69665345-4cfc-4a65-b64e-892e0f12fb96", + "signal_source": "site_visit", + "timestamp": "2026-02-14T11:07:55.925389", + "value": 0.875, + "score_type": "engagement_score", + "evidence_ref": "17a130e1-72d9-49f6-88f0-0f65daf42382" + } + ], + "intel_events": [], + "client360": { + "client_ref": "69665345-4cfc-4a65-b64e-892e0f12fb96", + "snapshot_generated_at": "2026-04-18T11:07:55.925527", + "identity": { + "full_name": "Antara Mitra", + "primary_email": "antara.mitra943@gmail.com", + "primary_phone": "+91 9902590965", + "persona_labels": "[\"family_centric\", \"value_seeker\", \"emotional_buyer\"]", + "buyer_type": "high_intent" + }, + "account_links": [ + "167e5af1-66b1-41c0-9a9d-42aa9b77a3a7" + ], + "active_opportunities": [ + { + "opportunity_id": "7e80cfa4-4bbb-4c7f-9d88-c8b9792ef89d", + "project": "Siddha Serena", + "stage": "booked", + "value": 6858586 + } + ], + "recent_interactions": [ + { + "interaction_id": "c0b9f6f0-db67-4d72-8c3d-2e990a6e6c66", + "channel": "call", + "happened_at": "2026-04-02T11:07:55.924758" + }, + { + "interaction_id": "c919af9c-2d5b-455d-b289-c6ddcdd925e7", + "channel": "call", + "happened_at": "2026-03-23T11:07:55.893651" + }, + { + "interaction_id": "50ce42e3-e8b9-4555-9c1e-d417f45f1ca5", + "channel": "email", + "happened_at": "2026-01-05T11:07:55.893620" + }, + { + "interaction_id": "98ec670f-ea87-4105-ad3c-2aa7662da830", + "channel": "email", + "happened_at": "2025-12-20T11:07:55.924987" + }, + { + "interaction_id": "c1a0fe6a-765f-4460-bfca-210ea101066b", + "channel": "digital_ad", + "happened_at": "2025-10-07T11:07:55.893601" + } + ], + "property_interests": [ + { + "project": "Siddha Serena", + "config": "2BHK", + "budget_max": 7638233 + }, + { + "project": "Godrej Blue", + "config": "2BHK", + "budget_max": 12551206 + } + ], + "tasks": [ + "Send legal documents", + "Nudge for final decision" + ], + "qd_overview": { + "intent_score": 0.935, + "urgency_score": 1.0, + "engagement_score": 0.993 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Share loan documents", + "Introduce relationship manager" + ], + "lead_stage": "booked", + "lead_status": "active" + } + }, + { + "person": { + "person_id": "8e869aad-116e-49e4-86ba-7ead41c8bb16", + "full_name": "Arjun Ganguly", + "primary_email": "arjun.ganguly448@hotmail.com", + "primary_phone": "+91 8073295668", + "secondary_phone": null, + "linkedin_url": "https://linkedin.com/in/arjun-ganguly-499", + "occupation": "Pharmaceutical Executive", + "employer": "ITC Limited", + "account_id": "4b56a688-c54f-4460-a12c-8043ea8682ae", + "location_city": "Dubai", + "location_country": "Australia", + "buyer_type": "nri", + "persona_labels": "[\"nri_diaspora\"]", + "is_nri": true, + "source_confidence": 0.805, + "created_at": "2025-09-30T11:07:55.925599", + "updated_at": "2025-12-30T11:07:55.925602" + }, + "lead": { + "lead_id": "3fcfad2c-b017-4667-aa2f-4fe3e9ffa101", + "person_id": "8e869aad-116e-49e4-86ba-7ead41c8bb16", + "account_id": "4b56a688-c54f-4460-a12c-8043ea8682ae", + "source_system": "housing_com", + "status": "active", + "stage": "inquiry", + "budget_band": "₹70L - ₹77L", + "urgency": "immediate", + "assigned_user_id": "user_2", + "primary_project": "Shriram Grand City", + "objection": null, + "motivation": "Upgrade from current home", + "financing_posture": "cash", + "created_at": "2025-10-19T11:07:55.925700", + "updated_at": "2025-12-12T11:07:55.925701" + }, + "opportunities": [], + "property_interests": [ + { + "interest_id": "e2fc843e-cda9-47a9-bcbb-606079e15f7b", + "person_id": "8e869aad-116e-49e4-86ba-7ead41c8bb16", + "project_name": "Shriram Grand City", + "configuration": "2BHK", + "budget_min": 6327127, + "budget_max": 7733156, + "urgency": "within_3_months", + "facing_preference": "north", + "floor_preference": "low", + "notes": "Good connectivity to workplace", + "created_at": "2025-09-12T11:07:55.925660" + }, + { + "interest_id": "f5915e4d-92d8-4f41-957d-95ffe3572850", + "person_id": "8e869aad-116e-49e4-86ba-7ead41c8bb16", + "project_name": "Siddha Sky Waterfront", + "configuration": "4BHK", + "budget_min": 12659087, + "budget_max": 15472218, + "urgency": "investment_only", + "facing_preference": "south", + "floor_preference": "mid", + "notes": "Retirement planning", + "created_at": "2026-02-13T11:07:55.925671" + }, + { + "interest_id": "f03d7af0-d8e3-4635-a5f2-eb0a07fd718d", + "person_id": "8e869aad-116e-49e4-86ba-7ead41c8bb16", + "project_name": "Siddha Suburbia Bungalow", + "configuration": "4BHK", + "budget_min": 11549418, + "budget_max": 14115955, + "urgency": "investment_only", + "facing_preference": "east", + "floor_preference": "mid", + "notes": "Upgrade from current home", + "created_at": "2025-12-07T11:07:55.925681" + } + ], + "interactions": [ + { + "interaction_id": "025e9d9b-8a8c-4127-bb6d-2add9301c0b0", + "person_id": "8e869aad-116e-49e4-86ba-7ead41c8bb16", + "lead_id": "3fcfad2c-b017-4667-aa2f-4fe3e9ffa101", + "channel": "email", + "interaction_type": "email", + "happened_at": "2025-12-20T11:07:55.925725", + "summary": "Email interaction regarding Shriram Grand City", + "source_ref": "574941f2-c4fa-49b0-acb2-fea29bfbde56", + "created_at": "2025-10-21T11:07:55.925733" + }, + { + "interaction_id": "1fadc488-0fea-47d5-b256-a773f3dfe6f7", + "person_id": "8e869aad-116e-49e4-86ba-7ead41c8bb16", + "lead_id": "3fcfad2c-b017-4667-aa2f-4fe3e9ffa101", + "channel": "builder_event", + "interaction_type": "builder_event", + "happened_at": "2026-01-07T11:07:55.925755", + "summary": "Builder Event interaction regarding Shriram Grand City", + "source_ref": "93054afe-01db-428d-82cd-2040c6350903", + "created_at": "2026-03-30T11:07:55.925763" + }, + { + "interaction_id": "82ac0176-a407-4f22-b898-8961aaa801a4", + "person_id": "8e869aad-116e-49e4-86ba-7ead41c8bb16", + "lead_id": "3fcfad2c-b017-4667-aa2f-4fe3e9ffa101", + "channel": "referral", + "interaction_type": "referral", + "happened_at": "2025-12-18T11:07:55.925771", + "summary": "Referral interaction regarding Shriram Grand City", + "source_ref": "2f55a3da-600a-405d-9426-a252ce59ded2", + "created_at": "2026-03-02T11:07:55.925778" + }, + { + "interaction_id": "c2e50ddc-209f-4104-b731-c5f5659b4ea2", + "person_id": "8e869aad-116e-49e4-86ba-7ead41c8bb16", + "lead_id": "3fcfad2c-b017-4667-aa2f-4fe3e9ffa101", + "channel": "call", + "interaction_type": "call", + "happened_at": "2026-02-12T11:07:55.925786", + "summary": "Call interaction regarding Shriram Grand City", + "source_ref": "08a1eb25-6511-4e35-a887-8ecf776e08c5", + "created_at": "2026-01-10T11:07:55.925793" + }, + { + "interaction_id": "0258e0a0-1066-48a5-91d9-4d0ef85ea6a7", + "person_id": "8e869aad-116e-49e4-86ba-7ead41c8bb16", + "lead_id": "3fcfad2c-b017-4667-aa2f-4fe3e9ffa101", + "channel": "email", + "interaction_type": "email", + "happened_at": "2026-02-26T11:07:55.925895", + "summary": "Email interaction regarding Shriram Grand City", + "source_ref": "c12c7084-b1a9-4334-aafd-a52f968325b2", + "created_at": "2026-01-15T11:07:55.925904" + }, + { + "interaction_id": "0f2e57ac-70ea-4b8f-8832-db36479f0833", + "person_id": "8e869aad-116e-49e4-86ba-7ead41c8bb16", + "lead_id": "3fcfad2c-b017-4667-aa2f-4fe3e9ffa101", + "channel": "whatsapp", + "interaction_type": "whatsapp", + "happened_at": "2026-03-06T11:07:55.925929", + "summary": "Whatsapp interaction regarding Shriram Grand City", + "source_ref": "bb415502-0447-4b98-a871-8c92260502be", + "created_at": "2026-02-06T11:07:55.925938" + } + ], + "calls": [ + { + "call_id": "155c2aa0-ad39-4919-9405-7552192033ec", + "interaction_id": "c2e50ddc-209f-4104-b731-c5f5659b4ea2", + "person_id": "8e869aad-116e-49e4-86ba-7ead41c8bb16", + "call_direction": "outbound", + "duration_seconds": 815, + "recording_ref": "recording_155c2aa0.mp3", + "transcript_ref": "97f9c504-bfe9-4e32-9b41-100639cdd043", + "call_ts": "2026-03-17T11:07:55.925807" + } + ], + "transcripts": [ + { + "transcript_id": "97f9c504-bfe9-4e32-9b41-100639cdd043", + "call_id": "155c2aa0-ad39-4919-9405-7552192033ec", + "person_id": "8e869aad-116e-49e4-86ba-7ead41c8bb16", + "interaction_ref": "c2e50ddc-209f-4104-b731-c5f5659b4ea2", + "language": "en", + "full_text": "Hello, am I speaking with Arjun? This is Velocity Real Estate. Yes speaking. How can I help you? We noticed your inquiry about Shriram Grand City. Are you still looking? Yes I am. Can you tell me more about the configurations and pricing? Of course. We have 3BHK units available starting from ₹7,077,063. Would you be interested in a site visit? Yes, that sounds good. What about the possession timeline? The project is expected to be ready by Q3 2027. We have early-bird pricing available this month. I'll discuss with my family and get back to you. Can you send me the brochure? Absolutely. I'll WhatsApp you the details right away. Thank you Arjun.", + "speaker_segments_json": "[{\"speaker\": \"agent\", \"start_seconds\": 0, \"end_seconds\": 17, \"text\": \"Hello, am I speaking with Arjun? This is Velocity Real Estate.\"}, {\"speaker\": \"client\", \"start_seconds\": 22, \"end_seconds\": 34, \"text\": \"Yes speaking. How can I help you?\"}, {\"speaker\": \"agent\", \"start_seconds\": 18, \"end_seconds\": 29, \"text\": \"We noticed your inquiry about Shriram Grand City. Are you still looking?\"}, {\"speaker\": \"client\", \"start_seconds\": 66, \"end_seconds\": 74, \"text\": \"Yes I am. Can you tell me more about the configurations and pricing?\"}, {\"speaker\": \"agent\", \"start_seconds\": 96, \"end_seconds\": 107, \"text\": \"Of course. We have 3BHK units available starting from \\u20b97,077,063. Would you be interested in a site visit?\"}, {\"speaker\": \"client\", \"start_seconds\": 115, \"end_seconds\": 132, \"text\": \"Yes, that sounds good. What about the possession timeline?\"}, {\"speaker\": \"agent\", \"start_seconds\": 102, \"end_seconds\": 117, \"text\": \"The project is expected to be ready by Q3 2027. We have early-bird pricing available this month.\"}, {\"speaker\": \"client\", \"start_seconds\": 91, \"end_seconds\": 97, \"text\": \"I'll discuss with my family and get back to you. Can you send me the brochure?\"}, {\"speaker\": \"agent\", \"start_seconds\": 200, \"end_seconds\": 208, \"text\": \"Absolutely. I'll WhatsApp you the details right away. Thank you Arjun.\"}]", + "confidence": 0.902, + "created_at": "2026-03-17T11:07:55.925807" + } + ], + "messages": [ + { + "message_id": "36fd3d27-db4d-4923-ac31-2fe80c96ff21", + "interaction_id": "0f2e57ac-70ea-4b8f-8832-db36479f0833", + "person_id": "8e869aad-116e-49e4-86ba-7ead41c8bb16", + "sender_role": "agent", + "message_text": "Good evening Arjun! Sharing the updated price list for Shriram Grand City. Some great units still available.", + "delivered_at": "2026-02-03T13:07:55.925941", + "channel": "whatsapp", + "read_at": "2026-02-03T13:13:55.925941" + }, + { + "message_id": "3cc34066-bbd2-4106-b726-c78e9abe786c", + "interaction_id": "0f2e57ac-70ea-4b8f-8832-db36479f0833", + "person_id": "8e869aad-116e-49e4-86ba-7ead41c8bb16", + "sender_role": "client", + "message_text": "We are ready to proceed. What is the booking amount?", + "delivered_at": "2026-02-05T03:07:55.925941", + "channel": "whatsapp", + "read_at": "2026-02-05T03:27:55.925941" + }, + { + "message_id": "027635ae-9373-413f-a7b5-aafa76da61fc", + "interaction_id": "0f2e57ac-70ea-4b8f-8832-db36479f0833", + "person_id": "8e869aad-116e-49e4-86ba-7ead41c8bb16", + "sender_role": "agent", + "message_text": "Good evening Arjun! Sharing the updated price list for Shriram Grand City. Some great units still available.", + "delivered_at": "2026-02-06T03:07:55.925941", + "channel": "whatsapp", + "read_at": null + } + ], + "emails": [ + { + "email_id": "0acd297b-6c8c-4773-9c41-2999ffe6b0f8", + "interaction_id": "025e9d9b-8a8c-4127-bb6d-2add9301c0b0", + "person_id": "8e869aad-116e-49e4-86ba-7ead41c8bb16", + "subject": "Site Visit Confirmation - Shriram Grand City", + "body": "Dear Arjun,\n\nWe are pleased to share the exclusive early-bird pricing for Shriram Grand City. This offer is valid until the end of the month.\n\nPlease let us know if you would like to schedule a meeting.\n\nWarm regards,\nVelocity Real Estate", + "sender_role": "agent", + "sent_at": "2026-03-28T11:07:55.925745", + "opened_at": "2026-03-11T11:07:55.925747", + "replied_at": null + }, + { + "email_id": "537c5ddd-983e-4d7f-9698-65e32e90a20c", + "interaction_id": "0258e0a0-1066-48a5-91d9-4d0ef85ea6a7", + "person_id": "8e869aad-116e-49e4-86ba-7ead41c8bb16", + "subject": "Site Visit Confirmation - Shriram Grand City", + "body": "Dear Arjun,\n\nFollowing up on your recent visit to Shriram Grand City. We hope you found it informative.\n\nWe have a 3BHK unit available that matches your requirements exactly. Shall we discuss further?\n\nBest,\nVelocity Real Estate Team", + "sender_role": "agent", + "sent_at": "2026-02-21T11:07:55.925915", + "opened_at": "2026-02-16T11:07:55.925916", + "replied_at": "2026-01-24T11:07:55.925918" + } + ], + "visits": [], + "reminders": [ + { + "reminder_id": "61984418-6c82-4600-8ab3-920df0b93a33", + "person_id": "8e869aad-116e-49e4-86ba-7ead41c8bb16", + "lead_id": "3fcfad2c-b017-4667-aa2f-4fe3e9ffa101", + "reminder_text": "Send festive offer", + "due_at": "2026-05-03T11:07:55.925977", + "completed": false, + "completed_at": null, + "assigned_user_id": "user_3", + "created_at": "2026-01-18T11:07:55.925985" + }, + { + "reminder_id": "cc879d55-d187-4b6d-88b8-5b2c6c0157fd", + "person_id": "8e869aad-116e-49e4-86ba-7ead41c8bb16", + "lead_id": "3fcfad2c-b017-4667-aa2f-4fe3e9ffa101", + "reminder_text": "Follow up after site visit", + "due_at": "2026-04-24T11:07:55.925987", + "completed": true, + "completed_at": "2026-04-06T11:07:55.925994", + "assigned_user_id": "user_2", + "created_at": "2026-02-02T11:07:55.925996" + } + ], + "qd_scores": [ + { + "qd_id": "aeb468b1-ccc6-46e5-a2de-e86dca630d72", + "person_id": "8e869aad-116e-49e4-86ba-7ead41c8bb16", + "score_type": "intent_score", + "current_value": 0.709, + "computed_at": "2026-04-16T11:07:55.926008", + "evidence_refs_json": "[\"a6abbc87-8162-4843-8073-444f22e1cbfe\", \"ff3dd89b-4f14-4b3e-84ea-46709c84370c\", \"d567768d-0aa0-421f-9fff-08e7e05c2532\", \"67301765-ac54-4cf1-addf-89dc56268838\", \"3cfcdaef-23d2-4170-924b-d4d3f9f6cf72\"]" + }, + { + "qd_id": "598e2691-dfd0-47f8-9d56-d9a389779a0a", + "person_id": "8e869aad-116e-49e4-86ba-7ead41c8bb16", + "score_type": "urgency_score", + "current_value": 0.636, + "computed_at": "2026-02-23T11:07:55.926112", + "evidence_refs_json": "[\"ea4f8a37-3c8b-4cd7-b5ce-96d437cade15\", \"d086226d-5161-46cc-b94c-b5c0fe2bad40\", \"c9924ddc-2f95-4c55-ada8-62aef3df545e\"]" + }, + { + "qd_id": "13d76493-6286-428f-bffb-bd6e7eaec3e5", + "person_id": "8e869aad-116e-49e4-86ba-7ead41c8bb16", + "score_type": "engagement_score", + "current_value": 0.61, + "computed_at": "2026-03-15T11:07:55.926256", + "evidence_refs_json": "[\"9e78119f-9bd7-4212-87d6-876cd93600d6\", \"d0ad98a2-c26c-4f92-bf4c-b6a363c8baf9\"]" + } + ], + "qd_timeseries": [ + { + "timeseries_id": "0ee99be7-1d7d-4029-a6e9-1aff6d519757", + "person_id": "8e869aad-116e-49e4-86ba-7ead41c8bb16", + "signal_source": "call", + "timestamp": "2025-12-10T11:07:55.926046", + "value": 0.705, + "score_type": "intent_score", + "evidence_ref": "85da8b6d-f851-4d2e-82f1-b637cabbc4ac" + }, + { + "timeseries_id": "742f2bea-ffee-4716-a1fb-afd8c390399c", + "person_id": "8e869aad-116e-49e4-86ba-7ead41c8bb16", + "signal_source": "site_visit", + "timestamp": "2025-12-29T11:07:55.926046", + "value": 0.719, + "score_type": "intent_score", + "evidence_ref": "473e9985-8c2a-44ee-8102-83bf90c96126" + }, + { + "timeseries_id": "3cf46f8b-1e0c-4f98-8c28-ae72b587ebc1", + "person_id": "8e869aad-116e-49e4-86ba-7ead41c8bb16", + "signal_source": "whatsapp", + "timestamp": "2026-01-18T11:07:55.926046", + "value": 0.725, + "score_type": "intent_score", + "evidence_ref": "da557deb-acc0-408d-a1a4-7b05cea797f3" + }, + { + "timeseries_id": "7ab2a12b-0e57-4fff-a356-3a0b28b3b0b1", + "person_id": "8e869aad-116e-49e4-86ba-7ead41c8bb16", + "signal_source": "site_visit", + "timestamp": "2026-02-03T11:07:55.926046", + "value": 0.765, + "score_type": "intent_score", + "evidence_ref": "497e55d1-a67e-4934-8471-d0374337f2b9" + }, + { + "timeseries_id": "80cfc525-ff3f-471c-b05c-395e8737164a", + "person_id": "8e869aad-116e-49e4-86ba-7ead41c8bb16", + "signal_source": "email", + "timestamp": "2025-12-24T11:07:55.926133", + "value": 0.587, + "score_type": "urgency_score", + "evidence_ref": "f7fdf159-4175-4a62-87cf-e99fa3838054" + }, + { + "timeseries_id": "5b36fbc6-9bb0-4f6a-98ae-1ec1f2ea3463", + "person_id": "8e869aad-116e-49e4-86ba-7ead41c8bb16", + "signal_source": "site_visit", + "timestamp": "2026-01-06T11:07:55.926133", + "value": 0.625, + "score_type": "urgency_score", + "evidence_ref": "f2334599-0d3b-4d80-b736-11a95f5f0459" + }, + { + "timeseries_id": "8211ed7d-5c71-4d97-9ca0-b5d620b2b3cd", + "person_id": "8e869aad-116e-49e4-86ba-7ead41c8bb16", + "signal_source": "whatsapp", + "timestamp": "2026-01-23T11:07:55.926133", + "value": 0.728, + "score_type": "urgency_score", + "evidence_ref": "df045565-54ec-4ede-a687-752fb994046e" + }, + { + "timeseries_id": "b2d33955-b8bc-402a-8401-73c084b05204", + "person_id": "8e869aad-116e-49e4-86ba-7ead41c8bb16", + "signal_source": "whatsapp", + "timestamp": "2026-02-08T11:07:55.926133", + "value": 0.593, + "score_type": "urgency_score", + "evidence_ref": "fb564c95-3e06-431d-9d7c-8034d409d00e" + }, + { + "timeseries_id": "0fb6ca7f-bd8f-4d2f-b9eb-68e8475f8e5e", + "person_id": "8e869aad-116e-49e4-86ba-7ead41c8bb16", + "signal_source": "email", + "timestamp": "2026-02-15T11:07:55.926133", + "value": 0.562, + "score_type": "urgency_score", + "evidence_ref": "31fc7b8d-1c3c-42fe-aa16-e311e166ad2d" + }, + { + "timeseries_id": "5b75a7fa-74ca-430d-8222-136c2a93c550", + "person_id": "8e869aad-116e-49e4-86ba-7ead41c8bb16", + "signal_source": "whatsapp", + "timestamp": "2026-03-07T11:07:55.926133", + "value": 0.663, + "score_type": "urgency_score", + "evidence_ref": "2a2506e6-c439-4e3c-9dc1-45e472b60c70" + }, + { + "timeseries_id": "3578e6a3-81d4-4242-95f3-68aacf63317c", + "person_id": "8e869aad-116e-49e4-86ba-7ead41c8bb16", + "signal_source": "email", + "timestamp": "2026-03-22T11:07:55.926133", + "value": 0.67, + "score_type": "urgency_score", + "evidence_ref": "689b8e14-153d-46e2-9651-d113f0699c6c" + }, + { + "timeseries_id": "2f73b3a3-19e8-4b7c-af76-0576e6a4dff8", + "person_id": "8e869aad-116e-49e4-86ba-7ead41c8bb16", + "signal_source": "call", + "timestamp": "2025-12-27T11:07:55.926272", + "value": 0.538, + "score_type": "engagement_score", + "evidence_ref": "abc9aa23-778b-4e80-bb1a-6578da25fc9e" + }, + { + "timeseries_id": "80c7c15c-a87f-49a4-85a9-4c3a75b11d9a", + "person_id": "8e869aad-116e-49e4-86ba-7ead41c8bb16", + "signal_source": "whatsapp", + "timestamp": "2026-01-16T11:07:55.926272", + "value": 0.514, + "score_type": "engagement_score", + "evidence_ref": "25edd44b-4be3-4247-a3e1-ae75fa344050" + }, + { + "timeseries_id": "9cd24869-7770-404f-882b-2b0af1c70ee3", + "person_id": "8e869aad-116e-49e4-86ba-7ead41c8bb16", + "signal_source": "email", + "timestamp": "2026-02-02T11:07:55.926272", + "value": 0.616, + "score_type": "engagement_score", + "evidence_ref": "35407f7b-6c5a-47b8-9939-3a4e6233327f" + }, + { + "timeseries_id": "5f610c7c-4a65-4052-a199-9c8156829fc0", + "person_id": "8e869aad-116e-49e4-86ba-7ead41c8bb16", + "signal_source": "call", + "timestamp": "2026-02-15T11:07:55.926272", + "value": 0.578, + "score_type": "engagement_score", + "evidence_ref": "e44d6a56-5714-4a4d-8f51-58b7bca54df2" + } + ], + "intel_events": [ + { + "event_id": "68a8a265-70af-43d1-8dd2-23953b5eed49", + "event_type": "number_plate_detected", + "person_id": "8e869aad-116e-49e4-86ba-7ead41c8bb16", + "project_ref": "Shriram Grand City", + "detected_at": "2026-04-08T11:07:55.926334", + "vehicle_plate_hash": "WB11D9051", + "confidence": 0.973, + "media_ref": "cctv_clip_f0b4c387.mp4", + "notes": "Vehicle detected at project entrance during site visit window" + }, + { + "event_id": "6069add1-06a2-4b29-b035-aa209c6cab91", + "event_type": "perception_session", + "person_id": "8e869aad-116e-49e4-86ba-7ead41c8bb16", + "project_ref": "Shriram Grand City", + "session_at": "2026-03-19T11:07:55.926352", + "rooms_visited": "[\"lobby\", \"model_flat_3bhk\", \"terrace\"]", + "dwell_time_seconds": 1883, + "engagement_score": 0.903, + "cctv_ref": "cctv_31198ac1", + "notes": "Perception session recorded during scheduled site visit" + } + ], + "client360": { + "client_ref": "8e869aad-116e-49e4-86ba-7ead41c8bb16", + "snapshot_generated_at": "2026-04-18T11:07:55.926373", + "identity": { + "full_name": "Arjun Ganguly", + "primary_email": "arjun.ganguly448@hotmail.com", + "primary_phone": "+91 8073295668", + "persona_labels": "[\"nri_diaspora\"]", + "buyer_type": "nri" + }, + "account_links": [ + "4b56a688-c54f-4460-a12c-8043ea8682ae" + ], + "active_opportunities": [], + "recent_interactions": [ + { + "interaction_id": "0f2e57ac-70ea-4b8f-8832-db36479f0833", + "channel": "whatsapp", + "happened_at": "2026-03-06T11:07:55.925929" + }, + { + "interaction_id": "0258e0a0-1066-48a5-91d9-4d0ef85ea6a7", + "channel": "email", + "happened_at": "2026-02-26T11:07:55.925895" + }, + { + "interaction_id": "c2e50ddc-209f-4104-b731-c5f5659b4ea2", + "channel": "call", + "happened_at": "2026-02-12T11:07:55.925786" + }, + { + "interaction_id": "1fadc488-0fea-47d5-b256-a773f3dfe6f7", + "channel": "builder_event", + "happened_at": "2026-01-07T11:07:55.925755" + }, + { + "interaction_id": "025e9d9b-8a8c-4127-bb6d-2add9301c0b0", + "channel": "email", + "happened_at": "2025-12-20T11:07:55.925725" + } + ], + "property_interests": [ + { + "project": "Shriram Grand City", + "config": "2BHK", + "budget_max": 7733156 + }, + { + "project": "Siddha Sky Waterfront", + "config": "4BHK", + "budget_max": 15472218 + }, + { + "project": "Siddha Suburbia Bungalow", + "config": "4BHK", + "budget_max": 14115955 + } + ], + "tasks": [ + "Send festive offer" + ], + "qd_overview": { + "intent_score": 0.709, + "urgency_score": 0.636, + "engagement_score": 0.61 + }, + "risk_flags": [ + "multiple_project_comparisons" + ], + "recommended_next_actions": [ + "Send project brochure", + "Schedule site visit" + ], + "lead_stage": "inquiry", + "lead_status": "active" + } + } +] \ No newline at end of file diff --git a/db assets/synthetic_crm_v1/json/client_360_snapshots_batch_1.json b/db assets/synthetic_crm_v1/json/client_360_snapshots_batch_1.json new file mode 100644 index 00000000..b4d49ae0 --- /dev/null +++ b/db assets/synthetic_crm_v1/json/client_360_snapshots_batch_1.json @@ -0,0 +1,5264 @@ +[ + { + "client_ref": "PER-0001", + "identity": { + "full_name": "Rohan Bose", + "email": "rohan.bose99@gmail.com", + "phone": "+91-76251-12482", + "linkedin": "https://linkedin.com/in/rohan-bose-551", + "persona": [ + "high_intent_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-1-1", + "project_id": "PRJ-004", + "unit_id": "PRJ-004-U019", + "stage": "closed_lost", + "value_cr": 22.28, + "probability": 0.37, + "expected_close": "2026-08-15T00:00:00" + }, + { + "opportunity_id": "OPP-1-2", + "project_id": "PRJ-011", + "unit_id": "PRJ-011-U010", + "stage": "closed_won", + "value_cr": 6.18, + "probability": 0.86, + "expected_close": "2026-08-27T00:00:00" + }, + { + "opportunity_id": "OPP-1-3", + "project_id": "PRJ-012", + "unit_id": "PRJ-012-U001", + "stage": "verbal_commitment", + "value_cr": 20.23, + "probability": 0.89, + "expected_close": "2026-07-22T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000013", + "channel": "whatsapp", + "type": "follow_up", + "happened_at": "2025-12-13T00:00:00", + "summary": "Follow Up via whatsapp regarding DTC Sojon" + }, + { + "interaction_id": "INT-000012", + "channel": "phone_call", + "type": "site_visit", + "happened_at": "2025-12-02T00:00:00", + "summary": "Site Visit via phone_call regarding DTC Sojon" + }, + { + "interaction_id": "INT-000011", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2025-11-25T00:00:00", + "summary": "Site Visit via site_visit regarding DTC Sojon" + }, + { + "interaction_id": "INT-000010", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2025-11-15T00:00:00", + "summary": "Site Visit via site_visit regarding DTC Sojon" + }, + { + "interaction_id": "INT-000009", + "channel": "whatsapp", + "type": "document_sharing", + "happened_at": "2025-11-08T00:00:00", + "summary": "Document Sharing via whatsapp regarding DTC Sojon" + } + ], + "property_interests": [ + { + "project_id": "PRJ-004", + "unit_id": "PRJ-004-U019", + "interest_level": "high", + "configuration": "Penthouse", + "budget_range": "17.82 - 26.74", + "timeline": "6_months", + "financing": "cash", + "notes": "Comparing with competitor projects" + }, + { + "project_id": "PRJ-011", + "unit_id": "PRJ-011-U010", + "interest_level": "medium", + "configuration": "4 BHK", + "budget_range": "4.94 - 7.42", + "timeline": "6_months", + "financing": "cash", + "notes": "Prefers higher floor" + }, + { + "project_id": "PRJ-012", + "unit_id": "PRJ-012-U001", + "interest_level": "very_high", + "configuration": "4 BHK", + "budget_range": "16.18 - 24.28", + "timeline": "3_months", + "financing": "home_loan", + "notes": "Comparing with competitor projects" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00001", + "text": "Send revised payment plan", + "due_at": "2025-09-26T00:00:00", + "status": "pending", + "assigned_to": "user_002" + }, + { + "reminder_id": "REM-00002", + "text": "Follow up on DTC Sojon pricing discussion", + "due_at": "2025-10-20T00:00:00", + "status": "overdue", + "assigned_to": "user_002" + }, + { + "reminder_id": "REM-00003", + "text": "Follow up on DTC Sojon pricing discussion", + "due_at": "2025-11-10T00:00:00", + "status": "pending", + "assigned_to": "user_002" + } + ], + "qd_overview": { + "current_score": 98, + "score_type": "intent", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 3 + }, + "risk_flags": [ + "financing_not_finalized", + "timeline_unclear" + ], + "metadata": { + "total_interactions": 13, + "total_visits": 4, + "total_opportunities": 3, + "source_confidence": 0.82, + "last_updated": "2025-02-26T00:00:00" + } + }, + { + "client_ref": "PER-0002", + "identity": { + "full_name": "Debjani Sen", + "email": "debjani.sen88@hotmail.com", + "phone": "+91-77840-41779", + "linkedin": "https://linkedin.com/in/debjani-sen-151", + "persona": [ + "slow_burn_investor" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": "HH-0002", + "household_name": "Sen Family", + "size": 5, + "decision_maker_id": "PER-0002" + }, + "relationships": [ + { + "related_person_id": "PER-0002-CO", + "type": "business_partner", + "strength": 0.9 + } + ], + "active_opportunities": [ + { + "opportunity_id": "OPP-2-1", + "project_id": "PRJ-002", + "unit_id": "PRJ-002-U019", + "stage": "verbal_commitment", + "value_cr": 10.46, + "probability": 0.34, + "expected_close": "2026-10-04T00:00:00" + }, + { + "opportunity_id": "OPP-2-2", + "project_id": "PRJ-004", + "unit_id": "PRJ-004-U020", + "stage": "discovery", + "value_cr": 18.88, + "probability": 0.38, + "expected_close": "2026-09-12T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000020", + "channel": "phone_call", + "type": "price_discussion", + "happened_at": "2025-02-18T00:00:00", + "summary": "Price Discussion via phone_call regarding Atri Surya Toron" + }, + { + "interaction_id": "INT-000019", + "channel": "whatsapp", + "type": "document_sharing", + "happened_at": "2025-02-13T00:00:00", + "summary": "Document Sharing via whatsapp regarding Atri Surya Toron" + }, + { + "interaction_id": "INT-000018", + "channel": "phone_call", + "type": "family_discussion", + "happened_at": "2025-02-10T00:00:00", + "summary": "Family Discussion via phone_call regarding Atri Surya Toron" + }, + { + "interaction_id": "INT-000017", + "channel": "whatsapp", + "type": "initial_enquiry", + "happened_at": "2025-02-08T00:00:00", + "summary": "Initial Enquiry via whatsapp regarding Atri Surya Toron" + }, + { + "interaction_id": "INT-000016", + "channel": "email", + "type": "family_discussion", + "happened_at": "2025-02-05T00:00:00", + "summary": "Family Discussion via email regarding Atri Surya Toron" + } + ], + "property_interests": [ + { + "project_id": "PRJ-002", + "unit_id": "PRJ-002-U019", + "interest_level": "very_high", + "configuration": "2 BHK", + "budget_range": "8.37 - 12.55", + "timeline": "3_months", + "financing": "undecided", + "notes": "Prefers higher floor" + }, + { + "project_id": "PRJ-004", + "unit_id": "PRJ-004-U020", + "interest_level": "high", + "configuration": "5 BHK", + "budget_range": "15.1 - 22.66", + "timeline": "3_months", + "financing": "cash", + "notes": "Waiting for festive season offer" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00005", + "text": "Send revised payment plan", + "due_at": "2025-02-11T00:00:00", + "status": "completed", + "assigned_to": "user_002" + }, + { + "reminder_id": "REM-00006", + "text": "Send home loan documents checklist", + "due_at": "2025-02-15T00:00:00", + "status": "completed", + "assigned_to": "user_002" + }, + { + "reminder_id": "REM-00007", + "text": "Send home loan documents checklist", + "due_at": "2025-02-19T00:00:00", + "status": "overdue", + "assigned_to": "user_002" + } + ], + "qd_overview": { + "current_score": 89.6, + "score_type": "engagement", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 2 + }, + "risk_flags": [], + "metadata": { + "total_interactions": 7, + "total_visits": 0, + "total_opportunities": 2, + "source_confidence": 0.9, + "last_updated": "2024-08-19T00:00:00" + } + }, + { + "client_ref": "PER-0002-CO", + "identity": { + "full_name": "Raj Banerjee", + "email": "raj.banerjee80@yahoo.com", + "phone": "+91-83333-95575", + "linkedin": null, + "persona": [ + "co_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [ + { + "related_person_id": "PER-0002", + "type": "business_partner", + "strength": 0.9 + } + ], + "active_opportunities": [], + "recent_interactions": [], + "property_interests": [], + "tasks_and_reminders": [], + "qd_overview": { + "current_score": 66.4, + "score_type": "urgency", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 5 + }, + "risk_flags": [ + "competitor_comparison_active" + ], + "metadata": { + "total_interactions": 0, + "total_visits": 0, + "total_opportunities": 0, + "source_confidence": 0.85, + "last_updated": "2026-04-18T00:00:00" + } + }, + { + "client_ref": "PER-0003", + "identity": { + "full_name": "Meera Roy", + "email": "meera.roy32@hotmail.com", + "phone": "+91-98054-93719", + "linkedin": "https://linkedin.com/in/meera-roy-515", + "persona": [ + "slow_burn_investor" + ] + }, + "account_links": { + "account_id": "ACC-0003", + "account_name": "KPMG", + "account_type": "individual_business" + }, + "household": { + "household_id": "HH-0003", + "household_name": "Roy Family", + "size": 5, + "decision_maker_id": "PER-0003" + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-3-1", + "project_id": "PRJ-004", + "unit_id": "PRJ-004-U004", + "stage": "site_visit", + "value_cr": 22.05, + "probability": 0.51, + "expected_close": "2026-09-11T00:00:00" + }, + { + "opportunity_id": "OPP-3-2", + "project_id": "PRJ-013", + "unit_id": "PRJ-013-U015", + "stage": "proposal", + "value_cr": 26.57, + "probability": 0.75, + "expected_close": "2026-06-07T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000023", + "channel": "whatsapp", + "type": "site_visit", + "happened_at": "2025-02-27T00:00:00", + "summary": "Site Visit via whatsapp regarding Godrej Elevate" + }, + { + "interaction_id": "INT-000022", + "channel": "phone_call", + "type": "negotiation", + "happened_at": "2024-12-07T00:00:00", + "summary": "Negotiation via phone_call regarding Godrej Elevate" + }, + { + "interaction_id": "INT-000021", + "channel": "web_enquiry", + "type": "initial_enquiry", + "happened_at": "2024-12-05T00:00:00", + "summary": "Initial Enquiry via web_enquiry regarding Godrej Elevate" + } + ], + "property_interests": [ + { + "project_id": "PRJ-004", + "unit_id": "PRJ-004-U004", + "interest_level": "high", + "configuration": "3 BHK", + "budget_range": "17.64 - 26.46", + "timeline": "flexible", + "financing": "undecided", + "notes": "Comparing with competitor projects" + }, + { + "project_id": "PRJ-013", + "unit_id": "PRJ-013-U015", + "interest_level": "very_high", + "configuration": "4 BHK", + "budget_range": "21.26 - 31.88", + "timeline": "6_months", + "financing": "cash", + "notes": "Comparing with competitor projects" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00008", + "text": "Send home loan documents checklist", + "due_at": "2024-12-07T00:00:00", + "status": "pending", + "assigned_to": "user_002" + }, + { + "reminder_id": "REM-00009", + "text": "Call back regarding east-facing unit availability", + "due_at": "2025-03-01T00:00:00", + "status": "completed", + "assigned_to": "user_002" + } + ], + "qd_overview": { + "current_score": 83.7, + "score_type": "financial_qualification", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 5 + }, + "risk_flags": [ + "slow_response_pattern" + ], + "metadata": { + "total_interactions": 3, + "total_visits": 0, + "total_opportunities": 2, + "source_confidence": 0.94, + "last_updated": "2024-12-01T00:00:00" + } + }, + { + "client_ref": "PER-0004", + "identity": { + "full_name": "Nilesh Pillai", + "email": "nilesh.pillai29@yahoo.com", + "phone": "+91-80751-78202", + "linkedin": "https://linkedin.com/in/nilesh-pillai-552", + "persona": [ + "high_intent_buyer" + ] + }, + "account_links": { + "account_id": "ACC-0004", + "account_name": "Deloitte India", + "account_type": "developer" + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-4-1", + "project_id": "PRJ-014", + "unit_id": "PRJ-014-U006", + "stage": "site_visit", + "value_cr": 58.43, + "probability": 0.66, + "expected_close": "2026-08-15T00:00:00" + }, + { + "opportunity_id": "OPP-4-2", + "project_id": "PRJ-004", + "unit_id": "PRJ-004-U020", + "stage": "prospecting", + "value_cr": 18.88, + "probability": 0.74, + "expected_close": "2026-08-02T00:00:00" + }, + { + "opportunity_id": "OPP-4-3", + "project_id": "PRJ-008", + "unit_id": "PRJ-008-U007", + "stage": "site_visit", + "value_cr": 24.0, + "probability": 0.33, + "expected_close": "2026-06-15T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000032", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2025-07-06T00:00:00", + "summary": "Site Visit via site_visit regarding Ambuja Utpaala" + }, + { + "interaction_id": "INT-000031", + "channel": "whatsapp", + "type": "price_discussion", + "happened_at": "2025-06-17T00:00:00", + "summary": "Price Discussion via whatsapp regarding Ambuja Utpaala" + }, + { + "interaction_id": "INT-000030", + "channel": "phone_call", + "type": "price_discussion", + "happened_at": "2025-05-30T00:00:00", + "summary": "Price Discussion via phone_call regarding Ambuja Utpaala" + }, + { + "interaction_id": "INT-000029", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2025-05-29T00:00:00", + "summary": "Site Visit via site_visit regarding Ambuja Utpaala" + }, + { + "interaction_id": "INT-000028", + "channel": "whatsapp", + "type": "negotiation", + "happened_at": "2025-05-24T00:00:00", + "summary": "Negotiation via whatsapp regarding Ambuja Utpaala" + } + ], + "property_interests": [ + { + "project_id": "PRJ-014", + "unit_id": "PRJ-014-U006", + "interest_level": "medium", + "configuration": "Penthouse", + "budget_range": "46.74 - 70.12", + "timeline": "flexible", + "financing": "home_loan", + "notes": "Waiting for festive season offer" + }, + { + "project_id": "PRJ-004", + "unit_id": "PRJ-004-U020", + "interest_level": "very_high", + "configuration": "5 BHK", + "budget_range": "15.1 - 22.66", + "timeline": "flexible", + "financing": "home_loan", + "notes": "Needs proximity to school" + }, + { + "project_id": "PRJ-008", + "unit_id": "PRJ-008-U007", + "interest_level": "very_high", + "configuration": "2 BHK", + "budget_range": "19.2 - 28.8", + "timeline": "immediate", + "financing": "home_loan", + "notes": "Needs proximity to school" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00010", + "text": "Follow up on Ambuja Utpaala pricing discussion", + "due_at": "2025-04-20T00:00:00", + "status": "completed", + "assigned_to": "user_001" + }, + { + "reminder_id": "REM-00011", + "text": "Schedule family meeting for final decision", + "due_at": "2025-05-17T00:00:00", + "status": "completed", + "assigned_to": "user_001" + }, + { + "reminder_id": "REM-00012", + "text": "Follow up on Ambuja Utpaala pricing discussion", + "due_at": "2025-05-27T00:00:00", + "status": "completed", + "assigned_to": "user_001" + } + ], + "qd_overview": { + "current_score": 98, + "score_type": "intent", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 3 + }, + "risk_flags": [], + "metadata": { + "total_interactions": 9, + "total_visits": 2, + "total_opportunities": 3, + "source_confidence": 0.78, + "last_updated": "2026-01-04T00:00:00" + } + }, + { + "client_ref": "PER-0005", + "identity": { + "full_name": "Kunal Saha", + "email": "kunal.saha96@gmail.com", + "phone": "+91-78019-15798", + "linkedin": "https://linkedin.com/in/kunal-saha-511", + "persona": [ + "high_intent_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-5-1", + "project_id": "PRJ-012", + "unit_id": "PRJ-012-U004", + "stage": "closed_won", + "value_cr": 10.9, + "probability": 0.23, + "expected_close": "2026-08-22T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000044", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2024-08-13T00:00:00", + "summary": "Site Visit via site_visit regarding Shriram Grand City" + }, + { + "interaction_id": "INT-000043", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2024-08-05T00:00:00", + "summary": "Site Visit via site_visit regarding Shriram Grand City" + }, + { + "interaction_id": "INT-000042", + "channel": "whatsapp", + "type": "initial_enquiry", + "happened_at": "2024-08-01T00:00:00", + "summary": "Initial Enquiry via whatsapp regarding Shriram Grand City" + }, + { + "interaction_id": "INT-000040", + "channel": "whatsapp", + "type": "price_discussion", + "happened_at": "2024-07-30T00:00:00", + "summary": "Price Discussion via whatsapp regarding Shriram Grand City" + }, + { + "interaction_id": "INT-000041", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2024-07-30T00:00:00", + "summary": "Site Visit via site_visit regarding Shriram Grand City" + } + ], + "property_interests": [ + { + "project_id": "PRJ-012", + "unit_id": "PRJ-012-U004", + "interest_level": "very_high", + "configuration": "Villa", + "budget_range": "8.72 - 13.08", + "timeline": "3_months", + "financing": "home_loan", + "notes": "Prefers higher floor" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00015", + "text": "Send revised payment plan", + "due_at": "2024-06-15T00:00:00", + "status": "completed", + "assigned_to": "user_003" + }, + { + "reminder_id": "REM-00016", + "text": "Send home loan documents checklist", + "due_at": "2024-06-27T00:00:00", + "status": "pending", + "assigned_to": "user_003" + }, + { + "reminder_id": "REM-00017", + "text": "Send home loan documents checklist", + "due_at": "2024-07-04T00:00:00", + "status": "completed", + "assigned_to": "user_003" + } + ], + "qd_overview": { + "current_score": 98, + "score_type": "financial_qualification", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 5 + }, + "risk_flags": [ + "competitor_comparison_active" + ], + "metadata": { + "total_interactions": 12, + "total_visits": 5, + "total_opportunities": 1, + "source_confidence": 0.85, + "last_updated": "2024-08-10T00:00:00" + } + }, + { + "client_ref": "PER-0006", + "identity": { + "full_name": "Kunal Mukherjee", + "email": "kunal.mukherjee81@rediffmail.com", + "phone": "+91-83648-83044", + "linkedin": "https://linkedin.com/in/kunal-mukherjee-642", + "persona": [ + "broker_referral_chain" + ] + }, + "account_links": { + "account_id": "ACC-0006", + "account_name": "Deloitte India", + "account_type": "developer" + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-6-1", + "project_id": "PRJ-012", + "unit_id": "PRJ-012-U007", + "stage": "proposal", + "value_cr": 2.7, + "probability": 0.51, + "expected_close": "2026-08-11T00:00:00" + }, + { + "opportunity_id": "OPP-6-2", + "project_id": "PRJ-002", + "unit_id": "PRJ-002-U015", + "stage": "closed_lost", + "value_cr": 4.45, + "probability": 0.88, + "expected_close": "2026-07-09T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000047", + "channel": "email", + "type": "document_sharing", + "happened_at": "2024-09-17T00:00:00", + "summary": "Document Sharing via email regarding Sugam Prakriti" + }, + { + "interaction_id": "INT-000046", + "channel": "phone_call", + "type": "initial_enquiry", + "happened_at": "2024-09-02T00:00:00", + "summary": "Initial Enquiry via phone_call regarding Sugam Prakriti" + }, + { + "interaction_id": "INT-000045", + "channel": "web_enquiry", + "type": "initial_enquiry", + "happened_at": "2024-07-29T00:00:00", + "summary": "Initial Enquiry via web_enquiry regarding Sugam Prakriti" + } + ], + "property_interests": [ + { + "project_id": "PRJ-012", + "unit_id": "PRJ-012-U007", + "interest_level": "low", + "configuration": "Duplex", + "budget_range": "2.16 - 3.24", + "timeline": "3_months", + "financing": "home_loan", + "notes": "Waiting for festive season offer" + }, + { + "project_id": "PRJ-002", + "unit_id": "PRJ-002-U015", + "interest_level": "medium", + "configuration": "Villa", + "budget_range": "3.56 - 5.34", + "timeline": "6_months", + "financing": "combined", + "notes": "Wants ready to move in" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00021", + "text": "Send revised payment plan", + "due_at": "2024-09-19T00:00:00", + "status": "completed", + "assigned_to": "user_005" + } + ], + "qd_overview": { + "current_score": 84.4, + "score_type": "overall", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 5 + }, + "risk_flags": [ + "slow_response_pattern" + ], + "metadata": { + "total_interactions": 3, + "total_visits": 0, + "total_opportunities": 2, + "source_confidence": 0.78, + "last_updated": "2024-09-18T00:00:00" + } + }, + { + "client_ref": "PER-0007", + "identity": { + "full_name": "Isha Sharma", + "email": "isha.sharma56@hotmail.com", + "phone": "+91-98927-75179", + "linkedin": "https://linkedin.com/in/isha-sharma-577", + "persona": [ + "nri_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-7-1", + "project_id": "PRJ-011", + "unit_id": "PRJ-011-U007", + "stage": "negotiation", + "value_cr": 32.9, + "probability": 0.75, + "expected_close": "2026-09-20T00:00:00" + }, + { + "opportunity_id": "OPP-7-2", + "project_id": "PRJ-013", + "unit_id": "PRJ-013-U007", + "stage": "site_visit", + "value_cr": 38.85, + "probability": 0.22, + "expected_close": "2026-10-04T00:00:00" + }, + { + "opportunity_id": "OPP-7-3", + "project_id": "PRJ-014", + "unit_id": "PRJ-014-U001", + "stage": "prospecting", + "value_cr": 73.38, + "probability": 0.45, + "expected_close": "2026-07-16T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000055", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2024-10-05T00:00:00", + "summary": "Site Visit via site_visit regarding DTC Sojon" + }, + { + "interaction_id": "INT-000053", + "channel": "whatsapp", + "type": "price_discussion", + "happened_at": "2024-09-25T00:00:00", + "summary": "Price Discussion via whatsapp regarding DTC Sojon" + }, + { + "interaction_id": "INT-000054", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2024-09-25T00:00:00", + "summary": "Site Visit via site_visit regarding DTC Sojon" + }, + { + "interaction_id": "INT-000052", + "channel": "phone_call", + "type": "family_discussion", + "happened_at": "2024-08-23T00:00:00", + "summary": "Family Discussion via phone_call regarding DTC Sojon" + }, + { + "interaction_id": "INT-000051", + "channel": "phone_call", + "type": "negotiation", + "happened_at": "2024-08-18T00:00:00", + "summary": "Negotiation via phone_call regarding DTC Sojon" + } + ], + "property_interests": [ + { + "project_id": "PRJ-011", + "unit_id": "PRJ-011-U007", + "interest_level": "very_high", + "configuration": "Duplex", + "budget_range": "26.32 - 39.48", + "timeline": "flexible", + "financing": "home_loan", + "notes": "Waiting for festive season offer" + }, + { + "project_id": "PRJ-013", + "unit_id": "PRJ-013-U007", + "interest_level": "medium", + "configuration": "5 BHK", + "budget_range": "31.08 - 46.62", + "timeline": "immediate", + "financing": "cash", + "notes": "Looking for east facing unit" + }, + { + "project_id": "PRJ-014", + "unit_id": "PRJ-014-U001", + "interest_level": "medium", + "configuration": "5 BHK", + "budget_range": "58.7 - 88.06", + "timeline": "immediate", + "financing": "home_loan", + "notes": "Comparing with competitor projects" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00022", + "text": "Send home loan documents checklist", + "due_at": "2024-08-02T00:00:00", + "status": "completed", + "assigned_to": "user_002" + }, + { + "reminder_id": "REM-00023", + "text": "Send home loan documents checklist", + "due_at": "2024-08-09T00:00:00", + "status": "pending", + "assigned_to": "user_002" + } + ], + "qd_overview": { + "current_score": 98, + "score_type": "engagement", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 5 + }, + "risk_flags": [ + "competitor_comparison_active" + ], + "metadata": { + "total_interactions": 8, + "total_visits": 2, + "total_opportunities": 3, + "source_confidence": 0.77, + "last_updated": "2025-04-25T00:00:00" + } + }, + { + "client_ref": "PER-0008", + "identity": { + "full_name": "Parth Saha", + "email": "parth.saha71@rediffmail.com", + "phone": "+91-70515-10866", + "linkedin": "https://linkedin.com/in/parth-saha-644", + "persona": [ + "nri_buyer" + ] + }, + "account_links": { + "account_id": "ACC-0008", + "account_name": "HCL Technologies", + "account_type": "referral_partner" + }, + "household": { + "household_id": "HH-0008", + "household_name": "Saha Family", + "size": 2, + "decision_maker_id": "PER-0008" + }, + "relationships": [ + { + "related_person_id": "PER-0008-CO", + "type": "sibling", + "strength": 0.99 + } + ], + "active_opportunities": [ + { + "opportunity_id": "OPP-8-1", + "project_id": "PRJ-011", + "unit_id": "PRJ-011-U007", + "stage": "discovery", + "value_cr": 32.9, + "probability": 0.86, + "expected_close": "2026-05-28T00:00:00" + }, + { + "opportunity_id": "OPP-8-2", + "project_id": "PRJ-002", + "unit_id": "PRJ-002-U014", + "stage": "negotiation", + "value_cr": 7.77, + "probability": 0.86, + "expected_close": "2026-10-09T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000062", + "channel": "email", + "type": "document_sharing", + "happened_at": "2025-10-28T00:00:00", + "summary": "Document Sharing via email regarding DTC Sojon" + }, + { + "interaction_id": "INT-000061", + "channel": "phone_call", + "type": "initial_enquiry", + "happened_at": "2025-10-23T00:00:00", + "summary": "Initial Enquiry via phone_call regarding DTC Sojon" + }, + { + "interaction_id": "INT-000060", + "channel": "whatsapp", + "type": "document_sharing", + "happened_at": "2025-10-09T00:00:00", + "summary": "Document Sharing via whatsapp regarding DTC Sojon" + }, + { + "interaction_id": "INT-000059", + "channel": "phone_call", + "type": "site_visit", + "happened_at": "2025-10-08T00:00:00", + "summary": "Site Visit via phone_call regarding DTC Sojon" + }, + { + "interaction_id": "INT-000058", + "channel": "email", + "type": "follow_up", + "happened_at": "2025-09-22T00:00:00", + "summary": "Follow Up via email regarding DTC Sojon" + } + ], + "property_interests": [ + { + "project_id": "PRJ-011", + "unit_id": "PRJ-011-U007", + "interest_level": "medium", + "configuration": "Duplex", + "budget_range": "26.32 - 39.48", + "timeline": "flexible", + "financing": "combined", + "notes": "Looking for east facing unit" + }, + { + "project_id": "PRJ-002", + "unit_id": "PRJ-002-U014", + "interest_level": "low", + "configuration": "Penthouse", + "budget_range": "6.22 - 9.32", + "timeline": "3_months", + "financing": "combined", + "notes": "Looking for east facing unit" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00024", + "text": "Confirm site visit for Saturday", + "due_at": "2025-08-08T00:00:00", + "status": "pending", + "assigned_to": "user_001" + }, + { + "reminder_id": "REM-00025", + "text": "Send revised payment plan", + "due_at": "2025-09-17T00:00:00", + "status": "completed", + "assigned_to": "user_001" + }, + { + "reminder_id": "REM-00026", + "text": "Send home loan documents checklist", + "due_at": "2025-10-15T00:00:00", + "status": "pending", + "assigned_to": "user_001" + } + ], + "qd_overview": { + "current_score": 77.1, + "score_type": "engagement", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 5 + }, + "risk_flags": [], + "metadata": { + "total_interactions": 7, + "total_visits": 0, + "total_opportunities": 2, + "source_confidence": 0.88, + "last_updated": "2024-01-18T00:00:00" + } + }, + { + "client_ref": "PER-0008-CO", + "identity": { + "full_name": "Divya Nair", + "email": "divya.nair42@outlook.com", + "phone": "+91-78759-62022", + "linkedin": null, + "persona": [ + "co_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [ + { + "related_person_id": "PER-0008", + "type": "sibling", + "strength": 0.99 + } + ], + "active_opportunities": [], + "recent_interactions": [], + "property_interests": [], + "tasks_and_reminders": [], + "qd_overview": { + "current_score": 30.2, + "score_type": "engagement", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 2 + }, + "risk_flags": [ + "financing_not_finalized", + "timeline_unclear" + ], + "metadata": { + "total_interactions": 0, + "total_visits": 0, + "total_opportunities": 0, + "source_confidence": 0.85, + "last_updated": "2026-04-18T00:00:00" + } + }, + { + "client_ref": "PER-0009", + "identity": { + "full_name": "Sanjay Chatterjee", + "email": "sanjay.chatterjee48@yahoo.com", + "phone": "+91-88479-41519", + "linkedin": "https://linkedin.com/in/sanjay-chatterjee-680", + "persona": [ + "repeat_visitor" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-9-1", + "project_id": "PRJ-013", + "unit_id": "PRJ-013-U007", + "stage": "prospecting", + "value_cr": 38.85, + "probability": 0.64, + "expected_close": "2026-09-10T00:00:00" + }, + { + "opportunity_id": "OPP-9-2", + "project_id": "PRJ-003", + "unit_id": "PRJ-003-U010", + "stage": "discovery", + "value_cr": 15.57, + "probability": 0.76, + "expected_close": "2026-08-01T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000068", + "channel": "walk_in", + "type": "family_discussion", + "happened_at": "2026-05-09T00:00:00", + "summary": "Family Discussion via walk_in regarding Atri Aqua" + }, + { + "interaction_id": "INT-000067", + "channel": "web_enquiry", + "type": "price_discussion", + "happened_at": "2026-04-19T00:00:00", + "summary": "Price Discussion via web_enquiry regarding Atri Aqua" + }, + { + "interaction_id": "INT-000066", + "channel": "walk_in", + "type": "negotiation", + "happened_at": "2026-04-17T00:00:00", + "summary": "Negotiation via walk_in regarding Atri Aqua" + }, + { + "interaction_id": "INT-000064", + "channel": "whatsapp", + "type": "family_discussion", + "happened_at": "2026-03-28T00:00:00", + "summary": "Family Discussion via whatsapp regarding Atri Aqua" + }, + { + "interaction_id": "INT-000065", + "channel": "email", + "type": "document_sharing", + "happened_at": "2026-03-28T00:00:00", + "summary": "Document Sharing via email regarding Atri Aqua" + } + ], + "property_interests": [ + { + "project_id": "PRJ-013", + "unit_id": "PRJ-013-U007", + "interest_level": "medium", + "configuration": "5 BHK", + "budget_range": "31.08 - 46.62", + "timeline": "6_months", + "financing": "undecided", + "notes": "Wants ready to move in" + }, + { + "project_id": "PRJ-003", + "unit_id": "PRJ-003-U010", + "interest_level": "low", + "configuration": "4 BHK", + "budget_range": "12.46 - 18.68", + "timeline": "immediate", + "financing": "combined", + "notes": "Needs proximity to school" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00028", + "text": "Send revised payment plan", + "due_at": "2026-03-31T00:00:00", + "status": "completed", + "assigned_to": "user_001" + } + ], + "qd_overview": { + "current_score": 70.1, + "score_type": "urgency", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 4 + }, + "risk_flags": [ + "competitor_comparison_active" + ], + "metadata": { + "total_interactions": 6, + "total_visits": 0, + "total_opportunities": 2, + "source_confidence": 0.94, + "last_updated": "2025-11-24T00:00:00" + } + }, + { + "client_ref": "PER-0010", + "identity": { + "full_name": "Sanjay Agarwal", + "email": "sanjay.agarwal56@gmail.com", + "phone": "+91-72998-10680", + "linkedin": "https://linkedin.com/in/sanjay-agarwal-415", + "persona": [ + "slow_burn_investor" + ] + }, + "account_links": { + "account_id": "ACC-0010", + "account_name": "Deloitte India", + "account_type": "individual_business" + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-10-1", + "project_id": "PRJ-005", + "unit_id": "PRJ-005-U009", + "stage": "closed_won", + "value_cr": 2.39, + "probability": 0.76, + "expected_close": "2026-10-08T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000072", + "channel": "walk_in", + "type": "initial_enquiry", + "happened_at": "2024-06-01T00:00:00", + "summary": "Initial Enquiry via walk_in regarding Siddha Suburbia Bungalow" + }, + { + "interaction_id": "INT-000071", + "channel": "whatsapp", + "type": "family_discussion", + "happened_at": "2024-05-05T00:00:00", + "summary": "Family Discussion via whatsapp regarding Siddha Suburbia Bungalow" + }, + { + "interaction_id": "INT-000070", + "channel": "phone_call", + "type": "initial_enquiry", + "happened_at": "2024-05-02T00:00:00", + "summary": "Initial Enquiry via phone_call regarding Siddha Suburbia Bungalow" + }, + { + "interaction_id": "INT-000069", + "channel": "referral", + "type": "initial_enquiry", + "happened_at": "2024-04-16T00:00:00", + "summary": "Initial Enquiry via referral regarding Siddha Suburbia Bungalow" + } + ], + "property_interests": [ + { + "project_id": "PRJ-005", + "unit_id": "PRJ-005-U009", + "interest_level": "medium", + "configuration": "Villa", + "budget_range": "1.91 - 2.87", + "timeline": "flexible", + "financing": "home_loan", + "notes": "Needs proximity to school" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00029", + "text": "Share competitor comparison sheet", + "due_at": "2024-05-04T00:00:00", + "status": "pending", + "assigned_to": "user_005" + }, + { + "reminder_id": "REM-00030", + "text": "Update on road widening approval status", + "due_at": "2024-05-06T00:00:00", + "status": "completed", + "assigned_to": "user_005" + }, + { + "reminder_id": "REM-00031", + "text": "Schedule family meeting for final decision", + "due_at": "2024-06-08T00:00:00", + "status": "completed", + "assigned_to": "user_005" + } + ], + "qd_overview": { + "current_score": 54.4, + "score_type": "engagement", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 4 + }, + "risk_flags": [ + "price_sensitivity_high" + ], + "metadata": { + "total_interactions": 4, + "total_visits": 0, + "total_opportunities": 1, + "source_confidence": 0.85, + "last_updated": "2024-10-03T00:00:00" + } + }, + { + "client_ref": "PER-0011", + "identity": { + "full_name": "Tanvi Das", + "email": "tanvi.das18@yahoo.com", + "phone": "+91-84243-46170", + "linkedin": "https://linkedin.com/in/tanvi-das-531", + "persona": [ + "slow_burn_investor" + ] + }, + "account_links": { + "account_id": "ACC-0011", + "account_name": "JSW Steel", + "account_type": "developer" + }, + "household": { + "household_id": "HH-0011", + "household_name": "Das Family", + "size": 4, + "decision_maker_id": "PER-0011" + }, + "relationships": [ + { + "related_person_id": "PER-0011-CO", + "type": "parent", + "strength": 0.79 + } + ], + "active_opportunities": [ + { + "opportunity_id": "OPP-11-1", + "project_id": "PRJ-008", + "unit_id": "PRJ-008-U018", + "stage": "negotiation", + "value_cr": 51.49, + "probability": 0.81, + "expected_close": "2026-06-04T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000076", + "channel": "whatsapp", + "type": "negotiation", + "happened_at": "2025-08-01T00:00:00", + "summary": "Negotiation via whatsapp regarding Siddha Serena" + }, + { + "interaction_id": "INT-000075", + "channel": "whatsapp", + "type": "price_discussion", + "happened_at": "2025-07-01T00:00:00", + "summary": "Price Discussion via whatsapp regarding Siddha Serena" + }, + { + "interaction_id": "INT-000074", + "channel": "phone_call", + "type": "family_discussion", + "happened_at": "2025-06-02T00:00:00", + "summary": "Family Discussion via phone_call regarding Siddha Serena" + }, + { + "interaction_id": "INT-000073", + "channel": "referral", + "type": "initial_enquiry", + "happened_at": "2025-05-31T00:00:00", + "summary": "Initial Enquiry via referral regarding Siddha Serena" + } + ], + "property_interests": [ + { + "project_id": "PRJ-008", + "unit_id": "PRJ-008-U018", + "interest_level": "very_high", + "configuration": "2 BHK", + "budget_range": "41.19 - 61.79", + "timeline": "3_months", + "financing": "combined", + "notes": "Needs proximity to school" + } + ], + "tasks_and_reminders": [], + "qd_overview": { + "current_score": 84.0, + "score_type": "urgency", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 2 + }, + "risk_flags": [ + "financing_not_finalized", + "timeline_unclear" + ], + "metadata": { + "total_interactions": 4, + "total_visits": 0, + "total_opportunities": 1, + "source_confidence": 0.82, + "last_updated": "2024-03-19T00:00:00" + } + }, + { + "client_ref": "PER-0011-CO", + "identity": { + "full_name": "Parth Verma", + "email": "parth.verma52@rediffmail.com", + "phone": "+91-80968-66441", + "linkedin": null, + "persona": [ + "co_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [ + { + "related_person_id": "PER-0011", + "type": "parent", + "strength": 0.79 + } + ], + "active_opportunities": [], + "recent_interactions": [], + "property_interests": [], + "tasks_and_reminders": [], + "qd_overview": { + "current_score": 65.7, + "score_type": "engagement", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 3 + }, + "risk_flags": [ + "competitor_comparison_active" + ], + "metadata": { + "total_interactions": 0, + "total_visits": 0, + "total_opportunities": 0, + "source_confidence": 0.85, + "last_updated": "2026-04-18T00:00:00" + } + }, + { + "client_ref": "PER-0012", + "identity": { + "full_name": "Vivek Verma", + "email": "vivek.verma19@rediffmail.com", + "phone": "+91-89593-72814", + "linkedin": "https://linkedin.com/in/vivek-verma-696", + "persona": [ + "slow_burn_investor" + ] + }, + "account_links": { + "account_id": "ACC-0012", + "account_name": "Wipro", + "account_type": "referral_partner" + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-12-1", + "project_id": "PRJ-002", + "unit_id": "PRJ-002-U001", + "stage": "discovery", + "value_cr": 2.96, + "probability": 0.32, + "expected_close": "2026-09-25T00:00:00" + }, + { + "opportunity_id": "OPP-12-2", + "project_id": "PRJ-008", + "unit_id": "PRJ-008-U018", + "stage": "site_visit", + "value_cr": 51.49, + "probability": 0.39, + "expected_close": "2026-05-24T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000081", + "channel": "whatsapp", + "type": "initial_enquiry", + "happened_at": "2024-06-07T00:00:00", + "summary": "Initial Enquiry via whatsapp regarding Sugam Prakriti" + }, + { + "interaction_id": "INT-000080", + "channel": "whatsapp", + "type": "document_sharing", + "happened_at": "2024-05-18T00:00:00", + "summary": "Document Sharing via whatsapp regarding Sugam Prakriti" + }, + { + "interaction_id": "INT-000079", + "channel": "whatsapp", + "type": "initial_enquiry", + "happened_at": "2024-04-22T00:00:00", + "summary": "Initial Enquiry via whatsapp regarding Sugam Prakriti" + }, + { + "interaction_id": "INT-000078", + "channel": "whatsapp", + "type": "document_sharing", + "happened_at": "2024-04-20T00:00:00", + "summary": "Document Sharing via whatsapp regarding Sugam Prakriti" + }, + { + "interaction_id": "INT-000077", + "channel": "web_enquiry", + "type": "initial_enquiry", + "happened_at": "2024-04-04T00:00:00", + "summary": "Initial Enquiry via web_enquiry regarding Sugam Prakriti" + } + ], + "property_interests": [ + { + "project_id": "PRJ-002", + "unit_id": "PRJ-002-U001", + "interest_level": "medium", + "configuration": "Villa", + "budget_range": "2.37 - 3.55", + "timeline": "flexible", + "financing": "combined", + "notes": "Wants ready to move in" + }, + { + "project_id": "PRJ-008", + "unit_id": "PRJ-008-U018", + "interest_level": "low", + "configuration": "2 BHK", + "budget_range": "41.19 - 61.79", + "timeline": "6_months", + "financing": "undecided", + "notes": "Looking for east facing unit" + } + ], + "tasks_and_reminders": [], + "qd_overview": { + "current_score": 95.8, + "score_type": "overall", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 4 + }, + "risk_flags": [], + "metadata": { + "total_interactions": 5, + "total_visits": 0, + "total_opportunities": 2, + "source_confidence": 0.84, + "last_updated": "2025-12-09T00:00:00" + } + }, + { + "client_ref": "PER-0013", + "identity": { + "full_name": "Rahul Gupta", + "email": "rahul.gupta53@rediffmail.com", + "phone": "+91-95698-37114", + "linkedin": "https://linkedin.com/in/rahul-gupta-633", + "persona": [ + "high_intent_buyer" + ] + }, + "account_links": { + "account_id": "ACC-0013", + "account_name": "Unacademy", + "account_type": "referral_partner" + }, + "household": { + "household_id": "HH-0013", + "household_name": "Gupta Family", + "size": 4, + "decision_maker_id": "PER-0013" + }, + "relationships": [ + { + "related_person_id": "PER-0013-CO", + "type": "business_partner", + "strength": 0.99 + } + ], + "active_opportunities": [ + { + "opportunity_id": "OPP-13-1", + "project_id": "PRJ-004", + "unit_id": "PRJ-004-U008", + "stage": "discovery", + "value_cr": 31.98, + "probability": 0.59, + "expected_close": "2026-10-02T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000088", + "channel": "web_enquiry", + "type": "price_discussion", + "happened_at": "2025-04-28T00:00:00", + "summary": "Price Discussion via web_enquiry regarding Atri Surya Toron" + }, + { + "interaction_id": "INT-000087", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2025-04-15T00:00:00", + "summary": "Site Visit via site_visit regarding Atri Surya Toron" + }, + { + "interaction_id": "INT-000086", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2025-04-08T00:00:00", + "summary": "Site Visit via site_visit regarding Atri Surya Toron" + }, + { + "interaction_id": "INT-000085", + "channel": "whatsapp", + "type": "initial_enquiry", + "happened_at": "2025-04-03T00:00:00", + "summary": "Initial Enquiry via whatsapp regarding Atri Surya Toron" + }, + { + "interaction_id": "INT-000084", + "channel": "whatsapp", + "type": "initial_enquiry", + "happened_at": "2025-03-17T00:00:00", + "summary": "Initial Enquiry via whatsapp regarding Atri Surya Toron" + } + ], + "property_interests": [ + { + "project_id": "PRJ-004", + "unit_id": "PRJ-004-U008", + "interest_level": "high", + "configuration": "Villa", + "budget_range": "25.58 - 38.38", + "timeline": "6_months", + "financing": "home_loan", + "notes": "Wants ready to move in" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00032", + "text": "Confirm site visit for Saturday", + "due_at": "2025-03-23T00:00:00", + "status": "pending", + "assigned_to": "user_004" + }, + { + "reminder_id": "REM-00033", + "text": "Call back regarding east-facing unit availability", + "due_at": "2025-04-10T00:00:00", + "status": "overdue", + "assigned_to": "user_004" + } + ], + "qd_overview": { + "current_score": 87.3, + "score_type": "intent", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 5 + }, + "risk_flags": [ + "price_sensitivity_high" + ], + "metadata": { + "total_interactions": 7, + "total_visits": 2, + "total_opportunities": 1, + "source_confidence": 0.86, + "last_updated": "2024-04-09T00:00:00" + } + }, + { + "client_ref": "PER-0013-CO", + "identity": { + "full_name": "Swati Patel", + "email": "swati.patel76@yahoo.com", + "phone": "+91-88084-30989", + "linkedin": null, + "persona": [ + "co_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [ + { + "related_person_id": "PER-0013", + "type": "business_partner", + "strength": 0.99 + } + ], + "active_opportunities": [], + "recent_interactions": [], + "property_interests": [], + "tasks_and_reminders": [], + "qd_overview": { + "current_score": 65.3, + "score_type": "financial_qualification", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 3 + }, + "risk_flags": [ + "decision_maker_not_met" + ], + "metadata": { + "total_interactions": 0, + "total_visits": 0, + "total_opportunities": 0, + "source_confidence": 0.85, + "last_updated": "2026-04-18T00:00:00" + } + }, + { + "client_ref": "PER-0014", + "identity": { + "full_name": "Vidya Agarwal", + "email": "vidya.agarwal86@rediffmail.com", + "phone": "+91-90031-61451", + "linkedin": "https://linkedin.com/in/vidya-agarwal-701", + "persona": [ + "high_intent_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-14-1", + "project_id": "PRJ-008", + "unit_id": "PRJ-008-U014", + "stage": "site_visit", + "value_cr": 5.24, + "probability": 0.57, + "expected_close": "2026-09-20T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000097", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2026-02-27T00:00:00", + "summary": "Site Visit via site_visit regarding Siddha Serena" + }, + { + "interaction_id": "INT-000096", + "channel": "whatsapp", + "type": "price_discussion", + "happened_at": "2026-02-21T00:00:00", + "summary": "Price Discussion via whatsapp regarding Siddha Serena" + }, + { + "interaction_id": "INT-000095", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2026-02-14T00:00:00", + "summary": "Site Visit via site_visit regarding Siddha Serena" + }, + { + "interaction_id": "INT-000094", + "channel": "phone_call", + "type": "initial_enquiry", + "happened_at": "2026-02-05T00:00:00", + "summary": "Initial Enquiry via phone_call regarding Siddha Serena" + }, + { + "interaction_id": "INT-000093", + "channel": "whatsapp", + "type": "document_sharing", + "happened_at": "2026-01-18T00:00:00", + "summary": "Document Sharing via whatsapp regarding Siddha Serena" + } + ], + "property_interests": [ + { + "project_id": "PRJ-008", + "unit_id": "PRJ-008-U014", + "interest_level": "medium", + "configuration": "Duplex", + "budget_range": "4.19 - 6.29", + "timeline": "3_months", + "financing": "combined", + "notes": "Wants ready to move in" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00034", + "text": "Confirm site visit for Saturday", + "due_at": "2026-01-09T00:00:00", + "status": "overdue", + "assigned_to": "user_001" + }, + { + "reminder_id": "REM-00035", + "text": "Update on road widening approval status", + "due_at": "2026-01-19T00:00:00", + "status": "overdue", + "assigned_to": "user_001" + }, + { + "reminder_id": "REM-00036", + "text": "Send home loan documents checklist", + "due_at": "2026-02-12T00:00:00", + "status": "completed", + "assigned_to": "user_001" + } + ], + "qd_overview": { + "current_score": 68.4, + "score_type": "financial_qualification", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 3 + }, + "risk_flags": [ + "decision_maker_not_met" + ], + "metadata": { + "total_interactions": 9, + "total_visits": 2, + "total_opportunities": 1, + "source_confidence": 0.78, + "last_updated": "2025-04-13T00:00:00" + } + }, + { + "client_ref": "PER-0015", + "identity": { + "full_name": "Ananya Reddy", + "email": "ananya.reddy27@yahoo.com", + "phone": "+91-96712-60324", + "linkedin": "https://linkedin.com/in/ananya-reddy-675", + "persona": [ + "family_decision_unit" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": "HH-0015", + "household_name": "Reddy Family", + "size": 5, + "decision_maker_id": "PER-0015" + }, + "relationships": [ + { + "related_person_id": "PER-0015-CO", + "type": "parent", + "strength": 0.86 + } + ], + "active_opportunities": [ + { + "opportunity_id": "OPP-15-1", + "project_id": "PRJ-003", + "unit_id": "PRJ-003-U003", + "stage": "proposal", + "value_cr": 20.76, + "probability": 0.79, + "expected_close": "2026-06-02T00:00:00" + }, + { + "opportunity_id": "OPP-15-2", + "project_id": "PRJ-012", + "unit_id": "PRJ-012-U004", + "stage": "negotiation", + "value_cr": 10.9, + "probability": 0.59, + "expected_close": "2026-09-26T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000102", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2025-06-29T00:00:00", + "summary": "Site Visit via site_visit regarding Atri Aqua" + }, + { + "interaction_id": "INT-000101", + "channel": "phone_call", + "type": "document_sharing", + "happened_at": "2025-06-25T00:00:00", + "summary": "Document Sharing via phone_call regarding Atri Aqua" + }, + { + "interaction_id": "INT-000100", + "channel": "email", + "type": "follow_up", + "happened_at": "2025-06-01T00:00:00", + "summary": "Follow Up via email regarding Atri Aqua" + }, + { + "interaction_id": "INT-000099", + "channel": "whatsapp", + "type": "price_discussion", + "happened_at": "2025-05-22T00:00:00", + "summary": "Price Discussion via whatsapp regarding Atri Aqua" + }, + { + "interaction_id": "INT-000098", + "channel": "web_enquiry", + "type": "initial_enquiry", + "happened_at": "2025-04-24T00:00:00", + "summary": "Initial Enquiry via web_enquiry regarding Atri Aqua" + } + ], + "property_interests": [ + { + "project_id": "PRJ-003", + "unit_id": "PRJ-003-U003", + "interest_level": "high", + "configuration": "Duplex", + "budget_range": "16.61 - 24.91", + "timeline": "6_months", + "financing": "home_loan", + "notes": "Prefers higher floor" + }, + { + "project_id": "PRJ-012", + "unit_id": "PRJ-012-U004", + "interest_level": "low", + "configuration": "Villa", + "budget_range": "8.72 - 13.08", + "timeline": "3_months", + "financing": "undecided", + "notes": "Looking for east facing unit" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00038", + "text": "Confirm site visit for Saturday", + "due_at": "2025-06-03T00:00:00", + "status": "overdue", + "assigned_to": "user_005" + } + ], + "qd_overview": { + "current_score": 98, + "score_type": "urgency", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 2 + }, + "risk_flags": [], + "metadata": { + "total_interactions": 5, + "total_visits": 1, + "total_opportunities": 2, + "source_confidence": 0.87, + "last_updated": "2025-02-22T00:00:00" + } + }, + { + "client_ref": "PER-0015-CO", + "identity": { + "full_name": "Aditya Bose", + "email": "aditya.bose13@yahoo.com", + "phone": "+91-79571-14285", + "linkedin": null, + "persona": [ + "co_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [ + { + "related_person_id": "PER-0015", + "type": "parent", + "strength": 0.86 + } + ], + "active_opportunities": [], + "recent_interactions": [], + "property_interests": [], + "tasks_and_reminders": [], + "qd_overview": { + "current_score": 35.9, + "score_type": "intent", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 3 + }, + "risk_flags": [ + "slow_response_pattern" + ], + "metadata": { + "total_interactions": 0, + "total_visits": 0, + "total_opportunities": 0, + "source_confidence": 0.85, + "last_updated": "2026-04-18T00:00:00" + } + }, + { + "client_ref": "PER-0016", + "identity": { + "full_name": "Raj Patel", + "email": "raj.patel28@outlook.com", + "phone": "+91-97147-42447", + "linkedin": "https://linkedin.com/in/raj-patel-879", + "persona": [ + "repeat_visitor" + ] + }, + "account_links": { + "account_id": "ACC-0016", + "account_name": "HCL Technologies", + "account_type": "developer" + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-16-1", + "project_id": "PRJ-003", + "unit_id": "PRJ-003-U011", + "stage": "verbal_commitment", + "value_cr": 3.86, + "probability": 0.86, + "expected_close": "2026-05-30T00:00:00" + }, + { + "opportunity_id": "OPP-16-2", + "project_id": "PRJ-014", + "unit_id": "PRJ-014-U002", + "stage": "closed_lost", + "value_cr": 24.47, + "probability": 0.49, + "expected_close": "2026-09-04T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000107", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2024-06-16T00:00:00", + "summary": "Site Visit via site_visit regarding Ambuja Utpaala" + }, + { + "interaction_id": "INT-000106", + "channel": "phone_call", + "type": "site_visit", + "happened_at": "2024-06-10T00:00:00", + "summary": "Site Visit via phone_call regarding Ambuja Utpaala" + }, + { + "interaction_id": "INT-000105", + "channel": "whatsapp", + "type": "family_discussion", + "happened_at": "2024-05-17T00:00:00", + "summary": "Family Discussion via whatsapp regarding Ambuja Utpaala" + }, + { + "interaction_id": "INT-000104", + "channel": "whatsapp", + "type": "family_discussion", + "happened_at": "2024-05-08T00:00:00", + "summary": "Family Discussion via whatsapp regarding Ambuja Utpaala" + }, + { + "interaction_id": "INT-000103", + "channel": "walk_in", + "type": "initial_enquiry", + "happened_at": "2024-04-11T00:00:00", + "summary": "Initial Enquiry via walk_in regarding Ambuja Utpaala" + } + ], + "property_interests": [ + { + "project_id": "PRJ-003", + "unit_id": "PRJ-003-U011", + "interest_level": "low", + "configuration": "Duplex", + "budget_range": "3.09 - 4.63", + "timeline": "flexible", + "financing": "cash", + "notes": "Looking for east facing unit" + }, + { + "project_id": "PRJ-014", + "unit_id": "PRJ-014-U002", + "interest_level": "medium", + "configuration": "Penthouse", + "budget_range": "19.58 - 29.36", + "timeline": "6_months", + "financing": "home_loan", + "notes": "Prefers higher floor" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00039", + "text": "Confirm site visit for Saturday", + "due_at": "2024-06-15T00:00:00", + "status": "completed", + "assigned_to": "user_004" + }, + { + "reminder_id": "REM-00040", + "text": "Update on road widening approval status", + "due_at": "2024-06-22T00:00:00", + "status": "completed", + "assigned_to": "user_004" + } + ], + "qd_overview": { + "current_score": 74.8, + "score_type": "financial_qualification", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 4 + }, + "risk_flags": [ + "decision_maker_not_met" + ], + "metadata": { + "total_interactions": 5, + "total_visits": 1, + "total_opportunities": 2, + "source_confidence": 0.94, + "last_updated": "2025-05-16T00:00:00" + } + }, + { + "client_ref": "PER-0017", + "identity": { + "full_name": "Neha Chatterjee", + "email": "neha.chatterjee57@yahoo.com", + "phone": "+91-71696-61949", + "linkedin": "https://linkedin.com/in/neha-chatterjee-740", + "persona": [ + "high_intent_buyer" + ] + }, + "account_links": { + "account_id": "ACC-0017", + "account_name": "Deloitte India", + "account_type": "corporate" + }, + "household": { + "household_id": "HH-0017", + "household_name": "Chatterjee Family", + "size": 3, + "decision_maker_id": "PER-0017" + }, + "relationships": [ + { + "related_person_id": "PER-0017-CO", + "type": "spouse", + "strength": 0.77 + } + ], + "active_opportunities": [ + { + "opportunity_id": "OPP-17-1", + "project_id": "PRJ-010", + "unit_id": "PRJ-010-U004", + "stage": "site_visit", + "value_cr": 4.99, + "probability": 0.47, + "expected_close": "2026-07-11T00:00:00" + }, + { + "opportunity_id": "OPP-17-2", + "project_id": "PRJ-002", + "unit_id": "PRJ-002-U019", + "stage": "discovery", + "value_cr": 10.46, + "probability": 0.22, + "expected_close": "2026-06-18T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000110", + "channel": "email", + "type": "family_discussion", + "happened_at": "2026-03-20T00:00:00", + "summary": "Family Discussion via email regarding Godrej Blue" + }, + { + "interaction_id": "INT-000109", + "channel": "whatsapp", + "type": "price_discussion", + "happened_at": "2026-01-29T00:00:00", + "summary": "Price Discussion via whatsapp regarding Godrej Blue" + }, + { + "interaction_id": "INT-000108", + "channel": "referral", + "type": "initial_enquiry", + "happened_at": "2026-01-28T00:00:00", + "summary": "Initial Enquiry via referral regarding Godrej Blue" + } + ], + "property_interests": [ + { + "project_id": "PRJ-010", + "unit_id": "PRJ-010-U004", + "interest_level": "medium", + "configuration": "Penthouse", + "budget_range": "3.99 - 5.99", + "timeline": "flexible", + "financing": "undecided", + "notes": "Needs proximity to school" + }, + { + "project_id": "PRJ-002", + "unit_id": "PRJ-002-U019", + "interest_level": "very_high", + "configuration": "2 BHK", + "budget_range": "8.37 - 12.55", + "timeline": "6_months", + "financing": "undecided", + "notes": "Prefers higher floor" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00041", + "text": "Call back regarding east-facing unit availability", + "due_at": "2026-02-02T00:00:00", + "status": "completed", + "assigned_to": "user_002" + }, + { + "reminder_id": "REM-00042", + "text": "Update on road widening approval status", + "due_at": "2026-02-05T00:00:00", + "status": "completed", + "assigned_to": "user_002" + }, + { + "reminder_id": "REM-00043", + "text": "Send revised payment plan", + "due_at": "2026-03-27T00:00:00", + "status": "completed", + "assigned_to": "user_002" + } + ], + "qd_overview": { + "current_score": 50.1, + "score_type": "engagement", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 3 + }, + "risk_flags": [ + "financing_not_finalized", + "timeline_unclear" + ], + "metadata": { + "total_interactions": 3, + "total_visits": 0, + "total_opportunities": 2, + "source_confidence": 0.82, + "last_updated": "2026-02-12T00:00:00" + } + }, + { + "client_ref": "PER-0017-CO", + "identity": { + "full_name": "Arjun Agarwal", + "email": "arjun.agarwal25@rediffmail.com", + "phone": "+91-92742-27324", + "linkedin": null, + "persona": [ + "co_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [ + { + "related_person_id": "PER-0017", + "type": "spouse", + "strength": 0.77 + } + ], + "active_opportunities": [], + "recent_interactions": [], + "property_interests": [], + "tasks_and_reminders": [], + "qd_overview": { + "current_score": 63.9, + "score_type": "intent", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 2 + }, + "risk_flags": [ + "slow_response_pattern" + ], + "metadata": { + "total_interactions": 0, + "total_visits": 0, + "total_opportunities": 0, + "source_confidence": 0.85, + "last_updated": "2026-04-18T00:00:00" + } + }, + { + "client_ref": "PER-0018", + "identity": { + "full_name": "Sourav Chatterjee", + "email": "sourav.chatterjee41@hotmail.com", + "phone": "+91-89693-88644", + "linkedin": "https://linkedin.com/in/sourav-chatterjee-838", + "persona": [ + "price_sensitive_aspirational" + ] + }, + "account_links": { + "account_id": "ACC-0018", + "account_name": "Accenture India", + "account_type": "individual_business" + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-18-1", + "project_id": "PRJ-001", + "unit_id": "PRJ-001-U010", + "stage": "verbal_commitment", + "value_cr": 38.51, + "probability": 0.21, + "expected_close": "2026-10-10T00:00:00" + }, + { + "opportunity_id": "OPP-18-2", + "project_id": "PRJ-001", + "unit_id": "PRJ-001-U002", + "stage": "prospecting", + "value_cr": 32.98, + "probability": 0.32, + "expected_close": "2026-05-28T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000113", + "channel": "whatsapp", + "type": "family_discussion", + "happened_at": "2025-01-27T00:00:00", + "summary": "Family Discussion via whatsapp regarding Eden Devprayag" + }, + { + "interaction_id": "INT-000112", + "channel": "whatsapp", + "type": "follow_up", + "happened_at": "2024-12-22T00:00:00", + "summary": "Follow Up via whatsapp regarding Eden Devprayag" + }, + { + "interaction_id": "INT-000111", + "channel": "web_enquiry", + "type": "initial_enquiry", + "happened_at": "2024-12-12T00:00:00", + "summary": "Initial Enquiry via web_enquiry regarding Eden Devprayag" + } + ], + "property_interests": [ + { + "project_id": "PRJ-001", + "unit_id": "PRJ-001-U010", + "interest_level": "high", + "configuration": "Penthouse", + "budget_range": "30.81 - 46.21", + "timeline": "3_months", + "financing": "undecided", + "notes": "Looking for east facing unit" + }, + { + "project_id": "PRJ-001", + "unit_id": "PRJ-001-U002", + "interest_level": "very_high", + "configuration": "2 BHK", + "budget_range": "26.38 - 39.58", + "timeline": "6_months", + "financing": "undecided", + "notes": "Wants ready to move in" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00044", + "text": "Confirm site visit for Saturday", + "due_at": "2024-12-29T00:00:00", + "status": "overdue", + "assigned_to": "user_002" + }, + { + "reminder_id": "REM-00045", + "text": "Send revised payment plan", + "due_at": "2025-01-31T00:00:00", + "status": "overdue", + "assigned_to": "user_002" + } + ], + "qd_overview": { + "current_score": 78.1, + "score_type": "urgency", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 3 + }, + "risk_flags": [ + "financing_not_finalized", + "timeline_unclear" + ], + "metadata": { + "total_interactions": 3, + "total_visits": 0, + "total_opportunities": 2, + "source_confidence": 0.89, + "last_updated": "2025-12-08T00:00:00" + } + }, + { + "client_ref": "PER-0019", + "identity": { + "full_name": "Manish Pillai", + "email": "manish.pillai88@yahoo.com", + "phone": "+91-79092-20957", + "linkedin": "https://linkedin.com/in/manish-pillai-417", + "persona": [ + "price_sensitive_aspirational" + ] + }, + "account_links": { + "account_id": "ACC-0019", + "account_name": "IBM India", + "account_type": "developer" + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-19-1", + "project_id": "PRJ-003", + "unit_id": "PRJ-003-U011", + "stage": "verbal_commitment", + "value_cr": 3.86, + "probability": 0.54, + "expected_close": "2026-07-23T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000123", + "channel": "whatsapp", + "type": "initial_enquiry", + "happened_at": "2026-04-09T00:00:00", + "summary": "Initial Enquiry via whatsapp regarding Atri Aqua" + }, + { + "interaction_id": "INT-000122", + "channel": "whatsapp", + "type": "initial_enquiry", + "happened_at": "2026-03-24T00:00:00", + "summary": "Initial Enquiry via whatsapp regarding Atri Aqua" + }, + { + "interaction_id": "INT-000121", + "channel": "web_enquiry", + "type": "price_discussion", + "happened_at": "2026-03-06T00:00:00", + "summary": "Price Discussion via web_enquiry regarding Atri Aqua" + }, + { + "interaction_id": "INT-000120", + "channel": "whatsapp", + "type": "follow_up", + "happened_at": "2026-03-03T00:00:00", + "summary": "Follow Up via whatsapp regarding Atri Aqua" + }, + { + "interaction_id": "INT-000119", + "channel": "referral", + "type": "follow_up", + "happened_at": "2026-02-26T00:00:00", + "summary": "Follow Up via referral regarding Atri Aqua" + } + ], + "property_interests": [ + { + "project_id": "PRJ-003", + "unit_id": "PRJ-003-U011", + "interest_level": "high", + "configuration": "Duplex", + "budget_range": "3.09 - 4.63", + "timeline": "3_months", + "financing": "combined", + "notes": "Waiting for festive season offer" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00046", + "text": "Update on road widening approval status", + "due_at": "2026-02-04T00:00:00", + "status": "completed", + "assigned_to": "user_001" + }, + { + "reminder_id": "REM-00047", + "text": "Share competitor comparison sheet", + "due_at": "2026-02-22T00:00:00", + "status": "overdue", + "assigned_to": "user_001" + }, + { + "reminder_id": "REM-00048", + "text": "Call back regarding east-facing unit availability", + "due_at": "2026-03-27T00:00:00", + "status": "overdue", + "assigned_to": "user_001" + } + ], + "qd_overview": { + "current_score": 68.2, + "score_type": "engagement", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 5 + }, + "risk_flags": [ + "slow_response_pattern" + ], + "metadata": { + "total_interactions": 10, + "total_visits": 0, + "total_opportunities": 1, + "source_confidence": 0.77, + "last_updated": "2026-04-07T00:00:00" + } + }, + { + "client_ref": "PER-0020", + "identity": { + "full_name": "Amit Singh", + "email": "amit.singh44@hotmail.com", + "phone": "+91-72092-44465", + "linkedin": "https://linkedin.com/in/amit-singh-829", + "persona": [ + "broker_referral_chain" + ] + }, + "account_links": { + "account_id": "ACC-0020", + "account_name": "Emami", + "account_type": "referral_partner" + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-20-1", + "project_id": "PRJ-003", + "unit_id": "PRJ-003-U003", + "stage": "prospecting", + "value_cr": 20.76, + "probability": 0.57, + "expected_close": "2026-09-02T00:00:00" + }, + { + "opportunity_id": "OPP-20-2", + "project_id": "PRJ-006", + "unit_id": "PRJ-006-U003", + "stage": "discovery", + "value_cr": 14.7, + "probability": 0.59, + "expected_close": "2026-06-17T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000127", + "channel": "referral", + "type": "family_discussion", + "happened_at": "2024-12-07T00:00:00", + "summary": "Family Discussion via referral regarding Merlin Avana" + }, + { + "interaction_id": "INT-000126", + "channel": "whatsapp", + "type": "document_sharing", + "happened_at": "2024-12-06T00:00:00", + "summary": "Document Sharing via whatsapp regarding Merlin Avana" + }, + { + "interaction_id": "INT-000125", + "channel": "phone_call", + "type": "negotiation", + "happened_at": "2024-12-03T00:00:00", + "summary": "Negotiation via phone_call regarding Merlin Avana" + }, + { + "interaction_id": "INT-000124", + "channel": "web_enquiry", + "type": "initial_enquiry", + "happened_at": "2024-10-23T00:00:00", + "summary": "Initial Enquiry via web_enquiry regarding Merlin Avana" + } + ], + "property_interests": [ + { + "project_id": "PRJ-003", + "unit_id": "PRJ-003-U003", + "interest_level": "high", + "configuration": "Duplex", + "budget_range": "16.61 - 24.91", + "timeline": "3_months", + "financing": "undecided", + "notes": "Waiting for festive season offer" + }, + { + "project_id": "PRJ-006", + "unit_id": "PRJ-006-U003", + "interest_level": "low", + "configuration": "5 BHK", + "budget_range": "11.76 - 17.64", + "timeline": "3_months", + "financing": "home_loan", + "notes": "Comparing with competitor projects" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00049", + "text": "Share competitor comparison sheet", + "due_at": "2024-10-30T00:00:00", + "status": "completed", + "assigned_to": "user_001" + } + ], + "qd_overview": { + "current_score": 56.5, + "score_type": "urgency", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 5 + }, + "risk_flags": [ + "price_sensitivity_high" + ], + "metadata": { + "total_interactions": 4, + "total_visits": 0, + "total_opportunities": 2, + "source_confidence": 0.97, + "last_updated": "2024-03-19T00:00:00" + } + }, + { + "client_ref": "PER-0021", + "identity": { + "full_name": "Riya Kumar", + "email": "riya.kumar46@outlook.com", + "phone": "+91-80724-21322", + "linkedin": "https://linkedin.com/in/riya-kumar-666", + "persona": [ + "repeat_visitor" + ] + }, + "account_links": { + "account_id": "ACC-0021", + "account_name": "Accenture India", + "account_type": "individual_business" + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-21-1", + "project_id": "PRJ-002", + "unit_id": "PRJ-002-U013", + "stage": "discovery", + "value_cr": 2.34, + "probability": 0.53, + "expected_close": "2026-08-26T00:00:00" + }, + { + "opportunity_id": "OPP-21-2", + "project_id": "PRJ-005", + "unit_id": "PRJ-005-U008", + "stage": "verbal_commitment", + "value_cr": 3.88, + "probability": 0.89, + "expected_close": "2026-08-26T00:00:00" + }, + { + "opportunity_id": "OPP-21-3", + "project_id": "PRJ-004", + "unit_id": "PRJ-004-U001", + "stage": "proposal", + "value_cr": 6.2, + "probability": 0.22, + "expected_close": "2026-10-14T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000135", + "channel": "whatsapp", + "type": "document_sharing", + "happened_at": "2024-09-23T00:00:00", + "summary": "Document Sharing via whatsapp regarding Atri Surya Toron" + }, + { + "interaction_id": "INT-000134", + "channel": "phone_call", + "type": "price_discussion", + "happened_at": "2024-09-17T00:00:00", + "summary": "Price Discussion via phone_call regarding Atri Surya Toron" + }, + { + "interaction_id": "INT-000133", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2024-09-16T00:00:00", + "summary": "Site Visit via site_visit regarding Atri Surya Toron" + }, + { + "interaction_id": "INT-000132", + "channel": "whatsapp", + "type": "follow_up", + "happened_at": "2024-09-04T00:00:00", + "summary": "Follow Up via whatsapp regarding Atri Surya Toron" + }, + { + "interaction_id": "INT-000131", + "channel": "whatsapp", + "type": "follow_up", + "happened_at": "2024-08-31T00:00:00", + "summary": "Follow Up via whatsapp regarding Atri Surya Toron" + } + ], + "property_interests": [ + { + "project_id": "PRJ-002", + "unit_id": "PRJ-002-U013", + "interest_level": "low", + "configuration": "Duplex", + "budget_range": "1.87 - 2.81", + "timeline": "flexible", + "financing": "home_loan", + "notes": "Needs proximity to school" + }, + { + "project_id": "PRJ-005", + "unit_id": "PRJ-005-U008", + "interest_level": "high", + "configuration": "3 BHK", + "budget_range": "3.1 - 4.66", + "timeline": "6_months", + "financing": "undecided", + "notes": "Prefers higher floor" + }, + { + "project_id": "PRJ-004", + "unit_id": "PRJ-004-U001", + "interest_level": "medium", + "configuration": "5 BHK", + "budget_range": "4.96 - 7.44", + "timeline": "immediate", + "financing": "home_loan", + "notes": "Wants ready to move in" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00050", + "text": "Follow up on Atri Surya Toron pricing discussion", + "due_at": "2024-09-05T00:00:00", + "status": "completed", + "assigned_to": "user_001" + }, + { + "reminder_id": "REM-00051", + "text": "Update on road widening approval status", + "due_at": "2024-09-11T00:00:00", + "status": "pending", + "assigned_to": "user_001" + } + ], + "qd_overview": { + "current_score": 98, + "score_type": "engagement", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 5 + }, + "risk_flags": [ + "slow_response_pattern" + ], + "metadata": { + "total_interactions": 8, + "total_visits": 1, + "total_opportunities": 3, + "source_confidence": 0.86, + "last_updated": "2024-07-24T00:00:00" + } + }, + { + "client_ref": "PER-0022", + "identity": { + "full_name": "Sneha Pillai", + "email": "sneha.pillai55@yahoo.com", + "phone": "+91-84808-50410", + "linkedin": "https://linkedin.com/in/sneha-pillai-574", + "persona": [ + "nri_buyer" + ] + }, + "account_links": { + "account_id": "ACC-0022", + "account_name": "Accenture India", + "account_type": "corporate" + }, + "household": { + "household_id": "HH-0022", + "household_name": "Pillai Family", + "size": 3, + "decision_maker_id": "PER-0022" + }, + "relationships": [ + { + "related_person_id": "PER-0022-CO", + "type": "parent", + "strength": 0.73 + } + ], + "active_opportunities": [ + { + "opportunity_id": "OPP-22-1", + "project_id": "PRJ-005", + "unit_id": "PRJ-005-U005", + "stage": "prospecting", + "value_cr": 19.27, + "probability": 0.95, + "expected_close": "2026-07-07T00:00:00" + }, + { + "opportunity_id": "OPP-22-2", + "project_id": "PRJ-002", + "unit_id": "PRJ-002-U001", + "stage": "closed_lost", + "value_cr": 2.96, + "probability": 0.14, + "expected_close": "2026-10-11T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000140", + "channel": "email", + "type": "family_discussion", + "happened_at": "2024-07-30T00:00:00", + "summary": "Family Discussion via email regarding Siddha Suburbia Bungalow" + }, + { + "interaction_id": "INT-000139", + "channel": "email", + "type": "initial_enquiry", + "happened_at": "2024-07-19T00:00:00", + "summary": "Initial Enquiry via email regarding Siddha Suburbia Bungalow" + }, + { + "interaction_id": "INT-000138", + "channel": "email", + "type": "initial_enquiry", + "happened_at": "2024-07-09T00:00:00", + "summary": "Initial Enquiry via email regarding Siddha Suburbia Bungalow" + }, + { + "interaction_id": "INT-000137", + "channel": "whatsapp", + "type": "family_discussion", + "happened_at": "2024-06-25T00:00:00", + "summary": "Family Discussion via whatsapp regarding Siddha Suburbia Bungalow" + }, + { + "interaction_id": "INT-000136", + "channel": "web_enquiry", + "type": "initial_enquiry", + "happened_at": "2024-06-20T00:00:00", + "summary": "Initial Enquiry via web_enquiry regarding Siddha Suburbia Bungalow" + } + ], + "property_interests": [ + { + "project_id": "PRJ-005", + "unit_id": "PRJ-005-U005", + "interest_level": "very_high", + "configuration": "3 BHK", + "budget_range": "15.42 - 23.12", + "timeline": "3_months", + "financing": "cash", + "notes": "Prefers higher floor" + }, + { + "project_id": "PRJ-002", + "unit_id": "PRJ-002-U001", + "interest_level": "very_high", + "configuration": "Villa", + "budget_range": "2.37 - 3.55", + "timeline": "flexible", + "financing": "cash", + "notes": "Wants ready to move in" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00052", + "text": "Confirm site visit for Saturday", + "due_at": "2024-07-02T00:00:00", + "status": "completed", + "assigned_to": "user_002" + } + ], + "qd_overview": { + "current_score": 76.6, + "score_type": "urgency", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 5 + }, + "risk_flags": [], + "metadata": { + "total_interactions": 5, + "total_visits": 0, + "total_opportunities": 2, + "source_confidence": 0.81, + "last_updated": "2024-04-02T00:00:00" + } + }, + { + "client_ref": "PER-0022-CO", + "identity": { + "full_name": "Prasenjit Sharma", + "email": "prasenjit.sharma32@gmail.com", + "phone": "+91-83251-69270", + "linkedin": null, + "persona": [ + "co_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [ + { + "related_person_id": "PER-0022", + "type": "parent", + "strength": 0.73 + } + ], + "active_opportunities": [], + "recent_interactions": [], + "property_interests": [], + "tasks_and_reminders": [], + "qd_overview": { + "current_score": 48.4, + "score_type": "overall", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 2 + }, + "risk_flags": [ + "price_sensitivity_high" + ], + "metadata": { + "total_interactions": 0, + "total_visits": 0, + "total_opportunities": 0, + "source_confidence": 0.85, + "last_updated": "2026-04-18T00:00:00" + } + }, + { + "client_ref": "PER-0023", + "identity": { + "full_name": "Rahul Roy", + "email": "rahul.roy33@outlook.com", + "phone": "+91-79170-68459", + "linkedin": "https://linkedin.com/in/rahul-roy-252", + "persona": [ + "family_decision_unit" + ] + }, + "account_links": { + "account_id": "ACC-0023", + "account_name": "Tech Mahindra", + "account_type": "developer" + }, + "household": { + "household_id": "HH-0023", + "household_name": "Roy Family", + "size": 2, + "decision_maker_id": "PER-0023" + }, + "relationships": [ + { + "related_person_id": "PER-0023-CO", + "type": "sibling", + "strength": 0.84 + } + ], + "active_opportunities": [ + { + "opportunity_id": "OPP-23-1", + "project_id": "PRJ-006", + "unit_id": "PRJ-006-U001", + "stage": "verbal_commitment", + "value_cr": 5.95, + "probability": 0.91, + "expected_close": "2026-10-09T00:00:00" + }, + { + "opportunity_id": "OPP-23-2", + "project_id": "PRJ-008", + "unit_id": "PRJ-008-U001", + "stage": "discovery", + "value_cr": 3.81, + "probability": 0.15, + "expected_close": "2026-07-13T00:00:00" + }, + { + "opportunity_id": "OPP-23-3", + "project_id": "PRJ-004", + "unit_id": "PRJ-004-U020", + "stage": "site_visit", + "value_cr": 18.88, + "probability": 0.39, + "expected_close": "2026-07-02T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000144", + "channel": "whatsapp", + "type": "document_sharing", + "happened_at": "2025-02-16T00:00:00", + "summary": "Document Sharing via whatsapp regarding Atri Surya Toron" + }, + { + "interaction_id": "INT-000142", + "channel": "phone_call", + "type": "follow_up", + "happened_at": "2024-12-31T00:00:00", + "summary": "Follow Up via phone_call regarding Atri Surya Toron" + }, + { + "interaction_id": "INT-000143", + "channel": "email", + "type": "price_discussion", + "happened_at": "2024-12-31T00:00:00", + "summary": "Price Discussion via email regarding Atri Surya Toron" + }, + { + "interaction_id": "INT-000141", + "channel": "referral", + "type": "initial_enquiry", + "happened_at": "2024-12-29T00:00:00", + "summary": "Initial Enquiry via referral regarding Atri Surya Toron" + } + ], + "property_interests": [ + { + "project_id": "PRJ-006", + "unit_id": "PRJ-006-U001", + "interest_level": "medium", + "configuration": "Penthouse", + "budget_range": "4.76 - 7.14", + "timeline": "flexible", + "financing": "combined", + "notes": "Needs proximity to school" + }, + { + "project_id": "PRJ-008", + "unit_id": "PRJ-008-U001", + "interest_level": "very_high", + "configuration": "Villa", + "budget_range": "3.05 - 4.57", + "timeline": "immediate", + "financing": "combined", + "notes": "Comparing with competitor projects" + }, + { + "project_id": "PRJ-004", + "unit_id": "PRJ-004-U020", + "interest_level": "low", + "configuration": "5 BHK", + "budget_range": "15.1 - 22.66", + "timeline": "immediate", + "financing": "home_loan", + "notes": "Comparing with competitor projects" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00053", + "text": "Share competitor comparison sheet", + "due_at": "2025-01-04T00:00:00", + "status": "completed", + "assigned_to": "user_001" + } + ], + "qd_overview": { + "current_score": 98, + "score_type": "engagement", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 2 + }, + "risk_flags": [ + "decision_maker_not_met" + ], + "metadata": { + "total_interactions": 4, + "total_visits": 0, + "total_opportunities": 3, + "source_confidence": 0.76, + "last_updated": "2025-09-23T00:00:00" + } + }, + { + "client_ref": "PER-0023-CO", + "identity": { + "full_name": "Pallavi Nair", + "email": "pallavi.nair41@hotmail.com", + "phone": "+91-96045-12559", + "linkedin": null, + "persona": [ + "co_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [ + { + "related_person_id": "PER-0023", + "type": "sibling", + "strength": 0.84 + } + ], + "active_opportunities": [], + "recent_interactions": [], + "property_interests": [], + "tasks_and_reminders": [], + "qd_overview": { + "current_score": 77.0, + "score_type": "engagement", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 5 + }, + "risk_flags": [ + "decision_maker_not_met" + ], + "metadata": { + "total_interactions": 0, + "total_visits": 0, + "total_opportunities": 0, + "source_confidence": 0.85, + "last_updated": "2026-04-18T00:00:00" + } + }, + { + "client_ref": "PER-0024", + "identity": { + "full_name": "Vikram Nair", + "email": "vikram.nair56@gmail.com", + "phone": "+91-82241-96787", + "linkedin": "https://linkedin.com/in/vikram-nair-505", + "persona": [ + "price_sensitive_aspirational" + ] + }, + "account_links": { + "account_id": "ACC-0024", + "account_name": "ICICI Bank", + "account_type": "developer" + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-24-1", + "project_id": "PRJ-006", + "unit_id": "PRJ-006-U002", + "stage": "discovery", + "value_cr": 24.02, + "probability": 0.8, + "expected_close": "2026-08-11T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000155", + "channel": "whatsapp", + "type": "price_discussion", + "happened_at": "2026-03-23T00:00:00", + "summary": "Price Discussion via whatsapp regarding Merlin Avana" + }, + { + "interaction_id": "INT-000154", + "channel": "phone_call", + "type": "initial_enquiry", + "happened_at": "2026-03-08T00:00:00", + "summary": "Initial Enquiry via phone_call regarding Merlin Avana" + }, + { + "interaction_id": "INT-000153", + "channel": "whatsapp", + "type": "initial_enquiry", + "happened_at": "2026-02-13T00:00:00", + "summary": "Initial Enquiry via whatsapp regarding Merlin Avana" + }, + { + "interaction_id": "INT-000152", + "channel": "whatsapp", + "type": "family_discussion", + "happened_at": "2026-02-11T00:00:00", + "summary": "Family Discussion via whatsapp regarding Merlin Avana" + }, + { + "interaction_id": "INT-000151", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2026-02-10T00:00:00", + "summary": "Site Visit via site_visit regarding Merlin Avana" + } + ], + "property_interests": [ + { + "project_id": "PRJ-006", + "unit_id": "PRJ-006-U002", + "interest_level": "low", + "configuration": "Duplex", + "budget_range": "19.22 - 28.82", + "timeline": "6_months", + "financing": "home_loan", + "notes": "Needs proximity to school" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00054", + "text": "Confirm site visit for Saturday", + "due_at": "2026-01-28T00:00:00", + "status": "completed", + "assigned_to": "user_002" + }, + { + "reminder_id": "REM-00055", + "text": "Share competitor comparison sheet", + "due_at": "2026-02-14T00:00:00", + "status": "completed", + "assigned_to": "user_002" + }, + { + "reminder_id": "REM-00056", + "text": "Schedule family meeting for final decision", + "due_at": "2026-02-13T00:00:00", + "status": "pending", + "assigned_to": "user_002" + } + ], + "qd_overview": { + "current_score": 98, + "score_type": "urgency", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 5 + }, + "risk_flags": [ + "competitor_comparison_active" + ], + "metadata": { + "total_interactions": 11, + "total_visits": 2, + "total_opportunities": 1, + "source_confidence": 0.88, + "last_updated": "2024-11-05T00:00:00" + } + }, + { + "client_ref": "PER-0025", + "identity": { + "full_name": "Neha Sen", + "email": "neha.sen10@gmail.com", + "phone": "+91-82646-67438", + "linkedin": "https://linkedin.com/in/neha-sen-850", + "persona": [ + "family_decision_unit" + ] + }, + "account_links": { + "account_id": "ACC-0025", + "account_name": "Ola", + "account_type": "referral_partner" + }, + "household": { + "household_id": "HH-0025", + "household_name": "Sen Family", + "size": 3, + "decision_maker_id": "PER-0025" + }, + "relationships": [ + { + "related_person_id": "PER-0025-CO", + "type": "sibling", + "strength": 0.75 + } + ], + "active_opportunities": [ + { + "opportunity_id": "OPP-25-1", + "project_id": "PRJ-003", + "unit_id": "PRJ-003-U001", + "stage": "discovery", + "value_cr": 69.0, + "probability": 0.38, + "expected_close": "2026-07-05T00:00:00" + }, + { + "opportunity_id": "OPP-25-2", + "project_id": "PRJ-002", + "unit_id": "PRJ-002-U001", + "stage": "closed_won", + "value_cr": 2.96, + "probability": 0.59, + "expected_close": "2026-09-20T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000158", + "channel": "whatsapp", + "type": "follow_up", + "happened_at": "2024-08-05T00:00:00", + "summary": "Follow Up via whatsapp regarding Sugam Prakriti" + }, + { + "interaction_id": "INT-000157", + "channel": "whatsapp", + "type": "document_sharing", + "happened_at": "2024-08-03T00:00:00", + "summary": "Document Sharing via whatsapp regarding Sugam Prakriti" + }, + { + "interaction_id": "INT-000156", + "channel": "web_enquiry", + "type": "initial_enquiry", + "happened_at": "2024-07-16T00:00:00", + "summary": "Initial Enquiry via web_enquiry regarding Sugam Prakriti" + } + ], + "property_interests": [ + { + "project_id": "PRJ-003", + "unit_id": "PRJ-003-U001", + "interest_level": "high", + "configuration": "Duplex", + "budget_range": "55.2 - 82.8", + "timeline": "6_months", + "financing": "combined", + "notes": "Needs proximity to school" + }, + { + "project_id": "PRJ-002", + "unit_id": "PRJ-002-U001", + "interest_level": "low", + "configuration": "Villa", + "budget_range": "2.37 - 3.55", + "timeline": "6_months", + "financing": "cash", + "notes": "Wants ready to move in" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00061", + "text": "Share competitor comparison sheet", + "due_at": "2024-07-23T00:00:00", + "status": "completed", + "assigned_to": "user_004" + }, + { + "reminder_id": "REM-00062", + "text": "Confirm site visit for Saturday", + "due_at": "2024-08-10T00:00:00", + "status": "pending", + "assigned_to": "user_004" + } + ], + "qd_overview": { + "current_score": 89.9, + "score_type": "engagement", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 3 + }, + "risk_flags": [ + "slow_response_pattern" + ], + "metadata": { + "total_interactions": 3, + "total_visits": 0, + "total_opportunities": 2, + "source_confidence": 0.85, + "last_updated": "2025-02-27T00:00:00" + } + }, + { + "client_ref": "PER-0025-CO", + "identity": { + "full_name": "Rohan Gupta", + "email": "rohan.gupta12@outlook.com", + "phone": "+91-78556-23726", + "linkedin": null, + "persona": [ + "co_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [ + { + "related_person_id": "PER-0025", + "type": "sibling", + "strength": 0.75 + } + ], + "active_opportunities": [], + "recent_interactions": [], + "property_interests": [], + "tasks_and_reminders": [], + "qd_overview": { + "current_score": 36.1, + "score_type": "overall", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 5 + }, + "risk_flags": [ + "financing_not_finalized", + "timeline_unclear" + ], + "metadata": { + "total_interactions": 0, + "total_visits": 0, + "total_opportunities": 0, + "source_confidence": 0.85, + "last_updated": "2026-04-18T00:00:00" + } + }, + { + "client_ref": "PER-0026", + "identity": { + "full_name": "Pallavi Sen", + "email": "pallavi.sen13@yahoo.com", + "phone": "+91-75597-93648", + "linkedin": "https://linkedin.com/in/pallavi-sen-398", + "persona": [ + "high_intent_buyer" + ] + }, + "account_links": { + "account_id": "ACC-0026", + "account_name": "Swiggy", + "account_type": "developer" + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-26-1", + "project_id": "PRJ-013", + "unit_id": "PRJ-013-U015", + "stage": "discovery", + "value_cr": 26.57, + "probability": 0.17, + "expected_close": "2026-08-14T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000165", + "channel": "phone_call", + "type": "initial_enquiry", + "happened_at": "2025-04-25T00:00:00", + "summary": "Initial Enquiry via phone_call regarding Godrej Elevate" + }, + { + "interaction_id": "INT-000164", + "channel": "referral", + "type": "family_discussion", + "happened_at": "2025-04-16T00:00:00", + "summary": "Family Discussion via referral regarding Godrej Elevate" + }, + { + "interaction_id": "INT-000162", + "channel": "email", + "type": "negotiation", + "happened_at": "2025-03-11T00:00:00", + "summary": "Negotiation via email regarding Godrej Elevate" + }, + { + "interaction_id": "INT-000163", + "channel": "email", + "type": "follow_up", + "happened_at": "2025-03-11T00:00:00", + "summary": "Follow Up via email regarding Godrej Elevate" + }, + { + "interaction_id": "INT-000161", + "channel": "whatsapp", + "type": "price_discussion", + "happened_at": "2025-03-09T00:00:00", + "summary": "Price Discussion via whatsapp regarding Godrej Elevate" + } + ], + "property_interests": [ + { + "project_id": "PRJ-013", + "unit_id": "PRJ-013-U015", + "interest_level": "very_high", + "configuration": "4 BHK", + "budget_range": "21.26 - 31.88", + "timeline": "3_months", + "financing": "cash", + "notes": "Wants ready to move in" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00063", + "text": "Send home loan documents checklist", + "due_at": "2025-04-23T00:00:00", + "status": "completed", + "assigned_to": "user_004" + } + ], + "qd_overview": { + "current_score": 68.8, + "score_type": "intent", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 4 + }, + "risk_flags": [ + "decision_maker_not_met" + ], + "metadata": { + "total_interactions": 7, + "total_visits": 0, + "total_opportunities": 1, + "source_confidence": 0.97, + "last_updated": "2024-04-28T00:00:00" + } + }, + { + "client_ref": "PER-0027", + "identity": { + "full_name": "Asha Reddy", + "email": "asha.reddy83@yahoo.com", + "phone": "+91-85606-49171", + "linkedin": "https://linkedin.com/in/asha-reddy-180", + "persona": [ + "price_sensitive_aspirational" + ] + }, + "account_links": { + "account_id": "ACC-0027", + "account_name": "SRF Limited", + "account_type": "individual_business" + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-27-1", + "project_id": "PRJ-009", + "unit_id": "PRJ-009-U012", + "stage": "verbal_commitment", + "value_cr": 52.97, + "probability": 0.83, + "expected_close": "2026-09-28T00:00:00" + }, + { + "opportunity_id": "OPP-27-2", + "project_id": "PRJ-003", + "unit_id": "PRJ-003-U003", + "stage": "discovery", + "value_cr": 20.76, + "probability": 0.89, + "expected_close": "2026-10-09T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000174", + "channel": "whatsapp", + "type": "negotiation", + "happened_at": "2024-09-05T00:00:00", + "summary": "Negotiation via whatsapp regarding Atri Aqua" + }, + { + "interaction_id": "INT-000173", + "channel": "web_enquiry", + "type": "site_visit", + "happened_at": "2024-08-25T00:00:00", + "summary": "Site Visit via web_enquiry regarding Atri Aqua" + }, + { + "interaction_id": "INT-000172", + "channel": "referral", + "type": "document_sharing", + "happened_at": "2024-08-11T00:00:00", + "summary": "Document Sharing via referral regarding Atri Aqua" + }, + { + "interaction_id": "INT-000171", + "channel": "whatsapp", + "type": "site_visit", + "happened_at": "2024-08-07T00:00:00", + "summary": "Site Visit via whatsapp regarding Atri Aqua" + }, + { + "interaction_id": "INT-000170", + "channel": "email", + "type": "site_visit", + "happened_at": "2024-08-03T00:00:00", + "summary": "Site Visit via email regarding Atri Aqua" + } + ], + "property_interests": [ + { + "project_id": "PRJ-009", + "unit_id": "PRJ-009-U012", + "interest_level": "low", + "configuration": "5 BHK", + "budget_range": "42.38 - 63.56", + "timeline": "flexible", + "financing": "cash", + "notes": "Wants ready to move in" + }, + { + "project_id": "PRJ-003", + "unit_id": "PRJ-003-U003", + "interest_level": "high", + "configuration": "Duplex", + "budget_range": "16.61 - 24.91", + "timeline": "6_months", + "financing": "undecided", + "notes": "Prefers higher floor" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00064", + "text": "Follow up on Atri Aqua pricing discussion", + "due_at": "2024-07-15T00:00:00", + "status": "completed", + "assigned_to": "user_001" + }, + { + "reminder_id": "REM-00065", + "text": "Update on road widening approval status", + "due_at": "2024-08-09T00:00:00", + "status": "completed", + "assigned_to": "user_001" + }, + { + "reminder_id": "REM-00066", + "text": "Send revised payment plan", + "due_at": "2024-08-14T00:00:00", + "status": "completed", + "assigned_to": "user_001" + } + ], + "qd_overview": { + "current_score": 98, + "score_type": "financial_qualification", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 3 + }, + "risk_flags": [ + "slow_response_pattern" + ], + "metadata": { + "total_interactions": 9, + "total_visits": 0, + "total_opportunities": 2, + "source_confidence": 0.84, + "last_updated": "2024-02-05T00:00:00" + } + }, + { + "client_ref": "PER-0028", + "identity": { + "full_name": "Meera Saha", + "email": "meera.saha70@gmail.com", + "phone": "+91-75642-46099", + "linkedin": "https://linkedin.com/in/meera-saha-512", + "persona": [ + "nri_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": "HH-0028", + "household_name": "Saha Family", + "size": 4, + "decision_maker_id": "PER-0028" + }, + "relationships": [ + { + "related_person_id": "PER-0028-CO", + "type": "sibling", + "strength": 0.95 + } + ], + "active_opportunities": [ + { + "opportunity_id": "OPP-28-1", + "project_id": "PRJ-008", + "unit_id": "PRJ-008-U018", + "stage": "verbal_commitment", + "value_cr": 51.49, + "probability": 0.8, + "expected_close": "2026-09-26T00:00:00" + }, + { + "opportunity_id": "OPP-28-2", + "project_id": "PRJ-013", + "unit_id": "PRJ-013-U013", + "stage": "prospecting", + "value_cr": 11.61, + "probability": 0.25, + "expected_close": "2026-07-08T00:00:00" + }, + { + "opportunity_id": "OPP-28-3", + "project_id": "PRJ-006", + "unit_id": "PRJ-006-U002", + "stage": "negotiation", + "value_cr": 24.02, + "probability": 0.41, + "expected_close": "2026-09-13T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000180", + "channel": "referral", + "type": "price_discussion", + "happened_at": "2024-11-11T00:00:00", + "summary": "Price Discussion via referral regarding Siddha Serena" + }, + { + "interaction_id": "INT-000179", + "channel": "phone_call", + "type": "document_sharing", + "happened_at": "2024-10-26T00:00:00", + "summary": "Document Sharing via phone_call regarding Siddha Serena" + }, + { + "interaction_id": "INT-000178", + "channel": "walk_in", + "type": "negotiation", + "happened_at": "2024-09-11T00:00:00", + "summary": "Negotiation via walk_in regarding Siddha Serena" + }, + { + "interaction_id": "INT-000177", + "channel": "whatsapp", + "type": "price_discussion", + "happened_at": "2024-09-09T00:00:00", + "summary": "Price Discussion via whatsapp regarding Siddha Serena" + }, + { + "interaction_id": "INT-000176", + "channel": "phone_call", + "type": "price_discussion", + "happened_at": "2024-09-04T00:00:00", + "summary": "Price Discussion via phone_call regarding Siddha Serena" + } + ], + "property_interests": [ + { + "project_id": "PRJ-008", + "unit_id": "PRJ-008-U018", + "interest_level": "low", + "configuration": "2 BHK", + "budget_range": "41.19 - 61.79", + "timeline": "6_months", + "financing": "undecided", + "notes": "Needs proximity to school" + }, + { + "project_id": "PRJ-013", + "unit_id": "PRJ-013-U013", + "interest_level": "medium", + "configuration": "Penthouse", + "budget_range": "9.29 - 13.93", + "timeline": "immediate", + "financing": "undecided", + "notes": "Looking for east facing unit" + }, + { + "project_id": "PRJ-006", + "unit_id": "PRJ-006-U002", + "interest_level": "very_high", + "configuration": "Duplex", + "budget_range": "19.22 - 28.82", + "timeline": "immediate", + "financing": "cash", + "notes": "Needs proximity to school" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00069", + "text": "Send home loan documents checklist", + "due_at": "2024-09-17T00:00:00", + "status": "completed", + "assigned_to": "user_003" + } + ], + "qd_overview": { + "current_score": 74.5, + "score_type": "urgency", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 5 + }, + "risk_flags": [ + "price_sensitivity_high" + ], + "metadata": { + "total_interactions": 6, + "total_visits": 0, + "total_opportunities": 3, + "source_confidence": 0.78, + "last_updated": "2025-11-28T00:00:00" + } + }, + { + "client_ref": "PER-0028-CO", + "identity": { + "full_name": "Abhishek Sharma", + "email": "abhishek.sharma57@gmail.com", + "phone": "+91-81071-49722", + "linkedin": null, + "persona": [ + "co_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [ + { + "related_person_id": "PER-0028", + "type": "sibling", + "strength": 0.95 + } + ], + "active_opportunities": [], + "recent_interactions": [], + "property_interests": [], + "tasks_and_reminders": [], + "qd_overview": { + "current_score": 52.8, + "score_type": "engagement", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 2 + }, + "risk_flags": [ + "financing_not_finalized", + "timeline_unclear" + ], + "metadata": { + "total_interactions": 0, + "total_visits": 0, + "total_opportunities": 0, + "source_confidence": 0.85, + "last_updated": "2026-04-18T00:00:00" + } + }, + { + "client_ref": "PER-0029", + "identity": { + "full_name": "Swati Reddy", + "email": "swati.reddy85@hotmail.com", + "phone": "+91-81460-55121", + "linkedin": "https://linkedin.com/in/swati-reddy-267", + "persona": [ + "slow_burn_investor" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": "HH-0029", + "household_name": "Reddy Family", + "size": 2, + "decision_maker_id": "PER-0029" + }, + "relationships": [ + { + "related_person_id": "PER-0029-CO", + "type": "business_partner", + "strength": 0.85 + } + ], + "active_opportunities": [ + { + "opportunity_id": "OPP-29-1", + "project_id": "PRJ-004", + "unit_id": "PRJ-004-U010", + "stage": "negotiation", + "value_cr": 2.02, + "probability": 0.68, + "expected_close": "2026-08-27T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000185", + "channel": "whatsapp", + "type": "initial_enquiry", + "happened_at": "2025-07-02T00:00:00", + "summary": "Initial Enquiry via whatsapp regarding Atri Surya Toron" + }, + { + "interaction_id": "INT-000184", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2025-07-01T00:00:00", + "summary": "Site Visit via site_visit regarding Atri Surya Toron" + }, + { + "interaction_id": "INT-000183", + "channel": "whatsapp", + "type": "family_discussion", + "happened_at": "2025-06-24T00:00:00", + "summary": "Family Discussion via whatsapp regarding Atri Surya Toron" + }, + { + "interaction_id": "INT-000182", + "channel": "whatsapp", + "type": "price_discussion", + "happened_at": "2025-05-30T00:00:00", + "summary": "Price Discussion via whatsapp regarding Atri Surya Toron" + }, + { + "interaction_id": "INT-000181", + "channel": "referral", + "type": "initial_enquiry", + "happened_at": "2025-05-22T00:00:00", + "summary": "Initial Enquiry via referral regarding Atri Surya Toron" + } + ], + "property_interests": [ + { + "project_id": "PRJ-004", + "unit_id": "PRJ-004-U010", + "interest_level": "low", + "configuration": "Villa", + "budget_range": "1.62 - 2.42", + "timeline": "immediate", + "financing": "combined", + "notes": "Comparing with competitor projects" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00070", + "text": "Call back regarding east-facing unit availability", + "due_at": "2025-05-28T00:00:00", + "status": "pending", + "assigned_to": "user_003" + }, + { + "reminder_id": "REM-00071", + "text": "Follow up on Atri Surya Toron pricing discussion", + "due_at": "2025-06-01T00:00:00", + "status": "completed", + "assigned_to": "user_003" + }, + { + "reminder_id": "REM-00072", + "text": "Send revised payment plan", + "due_at": "2025-07-05T00:00:00", + "status": "pending", + "assigned_to": "user_003" + } + ], + "qd_overview": { + "current_score": 98, + "score_type": "overall", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 2 + }, + "risk_flags": [ + "slow_response_pattern" + ], + "metadata": { + "total_interactions": 5, + "total_visits": 1, + "total_opportunities": 1, + "source_confidence": 0.94, + "last_updated": "2026-02-05T00:00:00" + } + }, + { + "client_ref": "PER-0029-CO", + "identity": { + "full_name": "Nilesh Roy", + "email": "nilesh.roy38@yahoo.com", + "phone": "+91-92206-37096", + "linkedin": null, + "persona": [ + "co_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [ + { + "related_person_id": "PER-0029", + "type": "business_partner", + "strength": 0.85 + } + ], + "active_opportunities": [], + "recent_interactions": [], + "property_interests": [], + "tasks_and_reminders": [], + "qd_overview": { + "current_score": 77.2, + "score_type": "intent", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 4 + }, + "risk_flags": [ + "competitor_comparison_active" + ], + "metadata": { + "total_interactions": 0, + "total_visits": 0, + "total_opportunities": 0, + "source_confidence": 0.85, + "last_updated": "2026-04-18T00:00:00" + } + }, + { + "client_ref": "PER-0030", + "identity": { + "full_name": "Isha Sen", + "email": "isha.sen71@gmail.com", + "phone": "+91-81019-46239", + "linkedin": "https://linkedin.com/in/isha-sen-755", + "persona": [ + "family_decision_unit" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": "HH-0030", + "household_name": "Sen Family", + "size": 4, + "decision_maker_id": "PER-0030" + }, + "relationships": [ + { + "related_person_id": "PER-0030-CO", + "type": "parent", + "strength": 0.92 + } + ], + "active_opportunities": [ + { + "opportunity_id": "OPP-30-1", + "project_id": "PRJ-002", + "unit_id": "PRJ-002-U011", + "stage": "site_visit", + "value_cr": 3.87, + "probability": 0.73, + "expected_close": "2026-10-08T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000194", + "channel": "whatsapp", + "type": "family_discussion", + "happened_at": "2025-01-17T00:00:00", + "summary": "Family Discussion via whatsapp regarding Sugam Prakriti" + }, + { + "interaction_id": "INT-000193", + "channel": "whatsapp", + "type": "family_discussion", + "happened_at": "2025-01-16T00:00:00", + "summary": "Family Discussion via whatsapp regarding Sugam Prakriti" + }, + { + "interaction_id": "INT-000192", + "channel": "whatsapp", + "type": "site_visit", + "happened_at": "2025-01-05T00:00:00", + "summary": "Site Visit via whatsapp regarding Sugam Prakriti" + }, + { + "interaction_id": "INT-000191", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2024-12-23T00:00:00", + "summary": "Site Visit via site_visit regarding Sugam Prakriti" + }, + { + "interaction_id": "INT-000190", + "channel": "whatsapp", + "type": "family_discussion", + "happened_at": "2024-12-09T00:00:00", + "summary": "Family Discussion via whatsapp regarding Sugam Prakriti" + } + ], + "property_interests": [ + { + "project_id": "PRJ-002", + "unit_id": "PRJ-002-U011", + "interest_level": "high", + "configuration": "Penthouse", + "budget_range": "3.1 - 4.64", + "timeline": "immediate", + "financing": "home_loan", + "notes": "Prefers higher floor" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00073", + "text": "Send revised payment plan", + "due_at": "2024-12-11T00:00:00", + "status": "overdue", + "assigned_to": "user_005" + }, + { + "reminder_id": "REM-00074", + "text": "Update on road widening approval status", + "due_at": "2025-01-07T00:00:00", + "status": "overdue", + "assigned_to": "user_005" + } + ], + "qd_overview": { + "current_score": 98, + "score_type": "financial_qualification", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 3 + }, + "risk_flags": [ + "decision_maker_not_met" + ], + "metadata": { + "total_interactions": 9, + "total_visits": 1, + "total_opportunities": 1, + "source_confidence": 0.82, + "last_updated": "2024-09-24T00:00:00" + } + }, + { + "client_ref": "PER-0030-CO", + "identity": { + "full_name": "Deb Mukherjee", + "email": "deb.mukherjee86@rediffmail.com", + "phone": "+91-91644-51888", + "linkedin": null, + "persona": [ + "co_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [ + { + "related_person_id": "PER-0030", + "type": "parent", + "strength": 0.92 + } + ], + "active_opportunities": [], + "recent_interactions": [], + "property_interests": [], + "tasks_and_reminders": [], + "qd_overview": { + "current_score": 51.1, + "score_type": "financial_qualification", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 2 + }, + "risk_flags": [ + "price_sensitivity_high" + ], + "metadata": { + "total_interactions": 0, + "total_visits": 0, + "total_opportunities": 0, + "source_confidence": 0.85, + "last_updated": "2026-04-18T00:00:00" + } + }, + { + "client_ref": "PER-0031", + "identity": { + "full_name": "Kavita Agarwal", + "email": "kavita.agarwal57@outlook.com", + "phone": "+91-89187-48541", + "linkedin": "https://linkedin.com/in/kavita-agarwal-574", + "persona": [ + "slow_burn_investor" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-31-1", + "project_id": "PRJ-006", + "unit_id": "PRJ-006-U005", + "stage": "closed_lost", + "value_cr": 37.11, + "probability": 0.22, + "expected_close": "2026-07-03T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000197", + "channel": "whatsapp", + "type": "site_visit", + "happened_at": "2025-11-23T00:00:00", + "summary": "Site Visit via whatsapp regarding Merlin Avana" + }, + { + "interaction_id": "INT-000196", + "channel": "whatsapp", + "type": "price_discussion", + "happened_at": "2025-11-21T00:00:00", + "summary": "Price Discussion via whatsapp regarding Merlin Avana" + }, + { + "interaction_id": "INT-000195", + "channel": "walk_in", + "type": "initial_enquiry", + "happened_at": "2025-10-16T00:00:00", + "summary": "Initial Enquiry via walk_in regarding Merlin Avana" + } + ], + "property_interests": [ + { + "project_id": "PRJ-006", + "unit_id": "PRJ-006-U005", + "interest_level": "very_high", + "configuration": "Penthouse", + "budget_range": "29.69 - 44.53", + "timeline": "6_months", + "financing": "home_loan", + "notes": "Prefers higher floor" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00075", + "text": "Send revised payment plan", + "due_at": "2025-10-23T00:00:00", + "status": "completed", + "assigned_to": "user_004" + }, + { + "reminder_id": "REM-00076", + "text": "Follow up on Merlin Avana pricing discussion", + "due_at": "2025-11-22T00:00:00", + "status": "pending", + "assigned_to": "user_004" + } + ], + "qd_overview": { + "current_score": 65.9, + "score_type": "financial_qualification", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 2 + }, + "risk_flags": [ + "price_sensitivity_high" + ], + "metadata": { + "total_interactions": 3, + "total_visits": 0, + "total_opportunities": 1, + "source_confidence": 0.95, + "last_updated": "2024-02-24T00:00:00" + } + }, + { + "client_ref": "PER-0032", + "identity": { + "full_name": "Kunal Sharma", + "email": "kunal.sharma36@yahoo.com", + "phone": "+91-88883-30766", + "linkedin": "https://linkedin.com/in/kunal-sharma-601", + "persona": [ + "family_decision_unit" + ] + }, + "account_links": { + "account_id": "ACC-0032", + "account_name": "BYJU'S", + "account_type": "developer" + }, + "household": { + "household_id": "HH-0032", + "household_name": "Sharma Family", + "size": 2, + "decision_maker_id": "PER-0032" + }, + "relationships": [ + { + "related_person_id": "PER-0032-CO", + "type": "spouse", + "strength": 0.89 + } + ], + "active_opportunities": [ + { + "opportunity_id": "OPP-32-1", + "project_id": "PRJ-013", + "unit_id": "PRJ-013-U005", + "stage": "site_visit", + "value_cr": 10.37, + "probability": 0.91, + "expected_close": "2026-08-29T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000202", + "channel": "phone_call", + "type": "document_sharing", + "happened_at": "2024-11-16T00:00:00", + "summary": "Document Sharing via phone_call regarding Godrej Elevate" + }, + { + "interaction_id": "INT-000201", + "channel": "phone_call", + "type": "negotiation", + "happened_at": "2024-11-04T00:00:00", + "summary": "Negotiation via phone_call regarding Godrej Elevate" + }, + { + "interaction_id": "INT-000200", + "channel": "email", + "type": "family_discussion", + "happened_at": "2024-11-02T00:00:00", + "summary": "Family Discussion via email regarding Godrej Elevate" + }, + { + "interaction_id": "INT-000199", + "channel": "phone_call", + "type": "negotiation", + "happened_at": "2024-09-29T00:00:00", + "summary": "Negotiation via phone_call regarding Godrej Elevate" + }, + { + "interaction_id": "INT-000198", + "channel": "walk_in", + "type": "initial_enquiry", + "happened_at": "2024-08-25T00:00:00", + "summary": "Initial Enquiry via walk_in regarding Godrej Elevate" + } + ], + "property_interests": [ + { + "project_id": "PRJ-013", + "unit_id": "PRJ-013-U005", + "interest_level": "medium", + "configuration": "Villa", + "budget_range": "8.3 - 12.44", + "timeline": "3_months", + "financing": "home_loan", + "notes": "Needs proximity to school" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00077", + "text": "Schedule family meeting for final decision", + "due_at": "2024-08-28T00:00:00", + "status": "completed", + "assigned_to": "user_005" + }, + { + "reminder_id": "REM-00078", + "text": "Call back regarding east-facing unit availability", + "due_at": "2024-10-01T00:00:00", + "status": "completed", + "assigned_to": "user_005" + }, + { + "reminder_id": "REM-00079", + "text": "Update on road widening approval status", + "due_at": "2024-11-07T00:00:00", + "status": "pending", + "assigned_to": "user_005" + } + ], + "qd_overview": { + "current_score": 92.9, + "score_type": "financial_qualification", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 4 + }, + "risk_flags": [ + "decision_maker_not_met" + ], + "metadata": { + "total_interactions": 5, + "total_visits": 0, + "total_opportunities": 1, + "source_confidence": 0.93, + "last_updated": "2024-03-31T00:00:00" + } + }, + { + "client_ref": "PER-0032-CO", + "identity": { + "full_name": "Trisha Banerjee", + "email": "trisha.banerjee51@hotmail.com", + "phone": "+91-76244-12348", + "linkedin": null, + "persona": [ + "co_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [ + { + "related_person_id": "PER-0032", + "type": "spouse", + "strength": 0.89 + } + ], + "active_opportunities": [], + "recent_interactions": [], + "property_interests": [], + "tasks_and_reminders": [], + "qd_overview": { + "current_score": 43.2, + "score_type": "engagement", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 2 + }, + "risk_flags": [ + "competitor_comparison_active" + ], + "metadata": { + "total_interactions": 0, + "total_visits": 0, + "total_opportunities": 0, + "source_confidence": 0.85, + "last_updated": "2026-04-18T00:00:00" + } + }, + { + "client_ref": "PER-0033", + "identity": { + "full_name": "Vikram Jain", + "email": "vikram.jain93@gmail.com", + "phone": "+91-82294-93928", + "linkedin": "https://linkedin.com/in/vikram-jain-361", + "persona": [ + "price_sensitive_aspirational" + ] + }, + "account_links": { + "account_id": "ACC-0033", + "account_name": "Cognizant", + "account_type": "corporate" + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-33-1", + "project_id": "PRJ-010", + "unit_id": "PRJ-010-U009", + "stage": "negotiation", + "value_cr": 9.32, + "probability": 0.81, + "expected_close": "2026-07-08T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000211", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2025-05-18T00:00:00", + "summary": "Site Visit via site_visit regarding Godrej Blue" + }, + { + "interaction_id": "INT-000210", + "channel": "phone_call", + "type": "follow_up", + "happened_at": "2025-05-05T00:00:00", + "summary": "Follow Up via phone_call regarding Godrej Blue" + }, + { + "interaction_id": "INT-000209", + "channel": "phone_call", + "type": "follow_up", + "happened_at": "2025-04-29T00:00:00", + "summary": "Follow Up via phone_call regarding Godrej Blue" + }, + { + "interaction_id": "INT-000208", + "channel": "phone_call", + "type": "price_discussion", + "happened_at": "2025-04-25T00:00:00", + "summary": "Price Discussion via phone_call regarding Godrej Blue" + }, + { + "interaction_id": "INT-000207", + "channel": "whatsapp", + "type": "document_sharing", + "happened_at": "2025-04-12T00:00:00", + "summary": "Document Sharing via whatsapp regarding Godrej Blue" + } + ], + "property_interests": [ + { + "project_id": "PRJ-010", + "unit_id": "PRJ-010-U009", + "interest_level": "very_high", + "configuration": "Duplex", + "budget_range": "7.46 - 11.18", + "timeline": "6_months", + "financing": "home_loan", + "notes": "Looking for east facing unit" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00081", + "text": "Schedule family meeting for final decision", + "due_at": "2025-03-26T00:00:00", + "status": "pending", + "assigned_to": "user_004" + }, + { + "reminder_id": "REM-00082", + "text": "Call back regarding east-facing unit availability", + "due_at": "2025-04-05T00:00:00", + "status": "overdue", + "assigned_to": "user_004" + } + ], + "qd_overview": { + "current_score": 98, + "score_type": "intent", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 2 + }, + "risk_flags": [ + "competitor_comparison_active" + ], + "metadata": { + "total_interactions": 9, + "total_visits": 2, + "total_opportunities": 1, + "source_confidence": 0.93, + "last_updated": "2024-02-19T00:00:00" + } + }, + { + "client_ref": "PER-0034", + "identity": { + "full_name": "Abhishek Agarwal", + "email": "abhishek.agarwal40@gmail.com", + "phone": "+91-70417-98032", + "linkedin": "https://linkedin.com/in/abhishek-agarwal-191", + "persona": [ + "family_decision_unit" + ] + }, + "account_links": { + "account_id": "ACC-0034", + "account_name": "Deloitte India", + "account_type": "corporate" + }, + "household": { + "household_id": "HH-0034", + "household_name": "Agarwal Family", + "size": 3, + "decision_maker_id": "PER-0034" + }, + "relationships": [ + { + "related_person_id": "PER-0034-CO", + "type": "sibling", + "strength": 0.83 + } + ], + "active_opportunities": [ + { + "opportunity_id": "OPP-34-1", + "project_id": "PRJ-012", + "unit_id": "PRJ-012-U001", + "stage": "verbal_commitment", + "value_cr": 20.23, + "probability": 0.79, + "expected_close": "2026-07-03T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000214", + "channel": "whatsapp", + "type": "price_discussion", + "happened_at": "2024-06-24T00:00:00", + "summary": "Price Discussion via whatsapp regarding Shriram Grand City" + }, + { + "interaction_id": "INT-000213", + "channel": "whatsapp", + "type": "follow_up", + "happened_at": "2024-04-27T00:00:00", + "summary": "Follow Up via whatsapp regarding Shriram Grand City" + }, + { + "interaction_id": "INT-000212", + "channel": "referral", + "type": "initial_enquiry", + "happened_at": "2024-04-20T00:00:00", + "summary": "Initial Enquiry via referral regarding Shriram Grand City" + } + ], + "property_interests": [ + { + "project_id": "PRJ-012", + "unit_id": "PRJ-012-U001", + "interest_level": "very_high", + "configuration": "4 BHK", + "budget_range": "16.18 - 24.28", + "timeline": "flexible", + "financing": "undecided", + "notes": "Prefers higher floor" + } + ], + "tasks_and_reminders": [], + "qd_overview": { + "current_score": 76.9, + "score_type": "intent", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 3 + }, + "risk_flags": [ + "financing_not_finalized", + "timeline_unclear" + ], + "metadata": { + "total_interactions": 3, + "total_visits": 0, + "total_opportunities": 1, + "source_confidence": 0.96, + "last_updated": "2025-11-16T00:00:00" + } + }, + { + "client_ref": "PER-0034-CO", + "identity": { + "full_name": "Priya Sen", + "email": "priya.sen32@gmail.com", + "phone": "+91-97926-48085", + "linkedin": null, + "persona": [ + "co_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [ + { + "related_person_id": "PER-0034", + "type": "sibling", + "strength": 0.83 + } + ], + "active_opportunities": [], + "recent_interactions": [], + "property_interests": [], + "tasks_and_reminders": [], + "qd_overview": { + "current_score": 81.7, + "score_type": "urgency", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 4 + }, + "risk_flags": [ + "slow_response_pattern" + ], + "metadata": { + "total_interactions": 0, + "total_visits": 0, + "total_opportunities": 0, + "source_confidence": 0.85, + "last_updated": "2026-04-18T00:00:00" + } + }, + { + "client_ref": "PER-0035", + "identity": { + "full_name": "Kavita Ghosh", + "email": "kavita.ghosh24@yahoo.com", + "phone": "+91-92812-17686", + "linkedin": "https://linkedin.com/in/kavita-ghosh-964", + "persona": [ + "price_sensitive_aspirational" + ] + }, + "account_links": { + "account_id": "ACC-0035", + "account_name": "Unacademy", + "account_type": "individual_business" + }, + "household": { + "household_id": "HH-0035", + "household_name": "Ghosh Family", + "size": 3, + "decision_maker_id": "PER-0035" + }, + "relationships": [ + { + "related_person_id": "PER-0035-CO", + "type": "spouse", + "strength": 0.91 + } + ], + "active_opportunities": [ + { + "opportunity_id": "OPP-35-1", + "project_id": "PRJ-009", + "unit_id": "PRJ-009-U009", + "stage": "closed_won", + "value_cr": 5.32, + "probability": 0.44, + "expected_close": "2026-07-17T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000221", + "channel": "phone_call", + "type": "follow_up", + "happened_at": "2026-02-04T00:00:00", + "summary": "Follow Up via phone_call regarding Siddha Sky Waterfront" + }, + { + "interaction_id": "INT-000220", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2026-01-31T00:00:00", + "summary": "Site Visit via site_visit regarding Siddha Sky Waterfront" + }, + { + "interaction_id": "INT-000219", + "channel": "whatsapp", + "type": "site_visit", + "happened_at": "2026-01-10T00:00:00", + "summary": "Site Visit via whatsapp regarding Siddha Sky Waterfront" + }, + { + "interaction_id": "INT-000218", + "channel": "whatsapp", + "type": "family_discussion", + "happened_at": "2026-01-08T00:00:00", + "summary": "Family Discussion via whatsapp regarding Siddha Sky Waterfront" + }, + { + "interaction_id": "INT-000217", + "channel": "email", + "type": "negotiation", + "happened_at": "2025-12-25T00:00:00", + "summary": "Negotiation via email regarding Siddha Sky Waterfront" + } + ], + "property_interests": [ + { + "project_id": "PRJ-009", + "unit_id": "PRJ-009-U009", + "interest_level": "very_high", + "configuration": "2 BHK", + "budget_range": "4.26 - 6.38", + "timeline": "flexible", + "financing": "undecided", + "notes": "Looking for east facing unit" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00083", + "text": "Follow up on Siddha Sky Waterfront pricing discussion", + "due_at": "2025-11-26T00:00:00", + "status": "overdue", + "assigned_to": "user_004" + }, + { + "reminder_id": "REM-00084", + "text": "Schedule family meeting for final decision", + "due_at": "2025-12-06T00:00:00", + "status": "completed", + "assigned_to": "user_004" + }, + { + "reminder_id": "REM-00085", + "text": "Share competitor comparison sheet", + "due_at": "2025-12-26T00:00:00", + "status": "pending", + "assigned_to": "user_004" + } + ], + "qd_overview": { + "current_score": 98, + "score_type": "financial_qualification", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 3 + }, + "risk_flags": [ + "financing_not_finalized", + "timeline_unclear" + ], + "metadata": { + "total_interactions": 7, + "total_visits": 1, + "total_opportunities": 1, + "source_confidence": 0.79, + "last_updated": "2025-08-27T00:00:00" + } + }, + { + "client_ref": "PER-0035-CO", + "identity": { + "full_name": "Vivek Kumar", + "email": "vivek.kumar15@gmail.com", + "phone": "+91-78572-95848", + "linkedin": null, + "persona": [ + "co_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [ + { + "related_person_id": "PER-0035", + "type": "spouse", + "strength": 0.91 + } + ], + "active_opportunities": [], + "recent_interactions": [], + "property_interests": [], + "tasks_and_reminders": [], + "qd_overview": { + "current_score": 71.9, + "score_type": "intent", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 4 + }, + "risk_flags": [ + "price_sensitivity_high" + ], + "metadata": { + "total_interactions": 0, + "total_visits": 0, + "total_opportunities": 0, + "source_confidence": 0.85, + "last_updated": "2026-04-18T00:00:00" + } + } +] \ No newline at end of file diff --git a/db assets/synthetic_crm_v1/json/client_360_snapshots_batch_2.json b/db assets/synthetic_crm_v1/json/client_360_snapshots_batch_2.json new file mode 100644 index 00000000..d4003111 --- /dev/null +++ b/db assets/synthetic_crm_v1/json/client_360_snapshots_batch_2.json @@ -0,0 +1,5727 @@ +[ + { + "client_ref": "PER-0036", + "identity": { + "full_name": "Sonal Sen", + "email": "sonal.sen73@gmail.com", + "phone": "+91-73363-62879", + "linkedin": "https://linkedin.com/in/sonal-sen-522", + "persona": [ + "broker_referral_chain" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-36-1", + "project_id": "PRJ-004", + "unit_id": "PRJ-004-U001", + "stage": "verbal_commitment", + "value_cr": 6.2, + "probability": 0.4, + "expected_close": "2026-07-31T00:00:00" + }, + { + "opportunity_id": "OPP-36-2", + "project_id": "PRJ-008", + "unit_id": "PRJ-008-U003", + "stage": "closed_won", + "value_cr": 8.37, + "probability": 0.19, + "expected_close": "2026-07-07T00:00:00" + }, + { + "opportunity_id": "OPP-36-3", + "project_id": "PRJ-014", + "unit_id": "PRJ-014-U002", + "stage": "verbal_commitment", + "value_cr": 24.47, + "probability": 0.19, + "expected_close": "2026-09-01T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000231", + "channel": "whatsapp", + "type": "family_discussion", + "happened_at": "2025-12-17T00:00:00", + "summary": "Family Discussion via whatsapp regarding Siddha Serena" + }, + { + "interaction_id": "INT-000230", + "channel": "phone_call", + "type": "site_visit", + "happened_at": "2025-12-16T00:00:00", + "summary": "Site Visit via phone_call regarding Siddha Serena" + }, + { + "interaction_id": "INT-000229", + "channel": "whatsapp", + "type": "follow_up", + "happened_at": "2025-12-12T00:00:00", + "summary": "Follow Up via whatsapp regarding Siddha Serena" + }, + { + "interaction_id": "INT-000228", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2025-11-07T00:00:00", + "summary": "Site Visit via site_visit regarding Siddha Serena" + }, + { + "interaction_id": "INT-000227", + "channel": "whatsapp", + "type": "negotiation", + "happened_at": "2025-10-26T00:00:00", + "summary": "Negotiation via whatsapp regarding Siddha Serena" + } + ], + "property_interests": [ + { + "project_id": "PRJ-004", + "unit_id": "PRJ-004-U001", + "interest_level": "high", + "configuration": "5 BHK", + "budget_range": "4.96 - 7.44", + "timeline": "immediate", + "financing": "cash", + "notes": "Needs proximity to school" + }, + { + "project_id": "PRJ-008", + "unit_id": "PRJ-008-U003", + "interest_level": "low", + "configuration": "Penthouse", + "budget_range": "6.7 - 10.04", + "timeline": "flexible", + "financing": "home_loan", + "notes": "Wants ready to move in" + }, + { + "project_id": "PRJ-014", + "unit_id": "PRJ-014-U002", + "interest_level": "low", + "configuration": "Penthouse", + "budget_range": "19.58 - 29.36", + "timeline": "flexible", + "financing": "undecided", + "notes": "Waiting for festive season offer" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00088", + "text": "Update on road widening approval status", + "due_at": "2025-09-30T00:00:00", + "status": "completed", + "assigned_to": "user_003" + }, + { + "reminder_id": "REM-00089", + "text": "Confirm site visit for Saturday", + "due_at": "2025-10-24T00:00:00", + "status": "completed", + "assigned_to": "user_003" + }, + { + "reminder_id": "REM-00090", + "text": "Share competitor comparison sheet", + "due_at": "2025-10-23T00:00:00", + "status": "completed", + "assigned_to": "user_003" + } + ], + "qd_overview": { + "current_score": 98, + "score_type": "intent", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 5 + }, + "risk_flags": [], + "metadata": { + "total_interactions": 10, + "total_visits": 2, + "total_opportunities": 3, + "source_confidence": 0.76, + "last_updated": "2024-01-01T00:00:00" + } + }, + { + "client_ref": "PER-0037", + "identity": { + "full_name": "Abhishek Banerjee", + "email": "abhishek.banerjee77@gmail.com", + "phone": "+91-88128-66729", + "linkedin": "https://linkedin.com/in/abhishek-banerjee-958", + "persona": [ + "family_decision_unit" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": "HH-0037", + "household_name": "Banerjee Family", + "size": 3, + "decision_maker_id": "PER-0037" + }, + "relationships": [ + { + "related_person_id": "PER-0037-CO", + "type": "business_partner", + "strength": 0.83 + } + ], + "active_opportunities": [ + { + "opportunity_id": "OPP-37-1", + "project_id": "PRJ-003", + "unit_id": "PRJ-003-U008", + "stage": "discovery", + "value_cr": 5.39, + "probability": 0.75, + "expected_close": "2026-10-08T00:00:00" + }, + { + "opportunity_id": "OPP-37-2", + "project_id": "PRJ-009", + "unit_id": "PRJ-009-U004", + "stage": "prospecting", + "value_cr": 3.15, + "probability": 0.42, + "expected_close": "2026-05-31T00:00:00" + }, + { + "opportunity_id": "OPP-37-3", + "project_id": "PRJ-005", + "unit_id": "PRJ-005-U008", + "stage": "site_visit", + "value_cr": 3.88, + "probability": 0.81, + "expected_close": "2026-08-01T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000241", + "channel": "whatsapp", + "type": "initial_enquiry", + "happened_at": "2024-12-21T00:00:00", + "summary": "Initial Enquiry via whatsapp regarding Atri Aqua" + }, + { + "interaction_id": "INT-000240", + "channel": "whatsapp", + "type": "initial_enquiry", + "happened_at": "2024-12-20T00:00:00", + "summary": "Initial Enquiry via whatsapp regarding Atri Aqua" + }, + { + "interaction_id": "INT-000239", + "channel": "phone_call", + "type": "family_discussion", + "happened_at": "2024-12-18T00:00:00", + "summary": "Family Discussion via phone_call regarding Atri Aqua" + }, + { + "interaction_id": "INT-000237", + "channel": "phone_call", + "type": "site_visit", + "happened_at": "2024-12-01T00:00:00", + "summary": "Site Visit via phone_call regarding Atri Aqua" + }, + { + "interaction_id": "INT-000238", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2024-12-01T00:00:00", + "summary": "Site Visit via site_visit regarding Atri Aqua" + } + ], + "property_interests": [ + { + "project_id": "PRJ-003", + "unit_id": "PRJ-003-U008", + "interest_level": "very_high", + "configuration": "4 BHK", + "budget_range": "4.31 - 6.47", + "timeline": "6_months", + "financing": "undecided", + "notes": "Looking for east facing unit" + }, + { + "project_id": "PRJ-009", + "unit_id": "PRJ-009-U004", + "interest_level": "low", + "configuration": "2 BHK", + "budget_range": "2.52 - 3.78", + "timeline": "3_months", + "financing": "combined", + "notes": "Needs proximity to school" + }, + { + "project_id": "PRJ-005", + "unit_id": "PRJ-005-U008", + "interest_level": "low", + "configuration": "3 BHK", + "budget_range": "3.1 - 4.66", + "timeline": "6_months", + "financing": "undecided", + "notes": "Looking for east facing unit" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00093", + "text": "Call back regarding east-facing unit availability", + "due_at": "2024-11-01T00:00:00", + "status": "pending", + "assigned_to": "user_002" + }, + { + "reminder_id": "REM-00094", + "text": "Schedule family meeting for final decision", + "due_at": "2024-11-04T00:00:00", + "status": "completed", + "assigned_to": "user_002" + }, + { + "reminder_id": "REM-00095", + "text": "Send home loan documents checklist", + "due_at": "2024-11-21T00:00:00", + "status": "completed", + "assigned_to": "user_002" + } + ], + "qd_overview": { + "current_score": 98, + "score_type": "intent", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 4 + }, + "risk_flags": [ + "decision_maker_not_met" + ], + "metadata": { + "total_interactions": 10, + "total_visits": 1, + "total_opportunities": 3, + "source_confidence": 0.88, + "last_updated": "2026-03-10T00:00:00" + } + }, + { + "client_ref": "PER-0037-CO", + "identity": { + "full_name": "Debjani Sen", + "email": "debjani.sen59@hotmail.com", + "phone": "+91-89862-52184", + "linkedin": null, + "persona": [ + "co_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [ + { + "related_person_id": "PER-0037", + "type": "business_partner", + "strength": 0.83 + } + ], + "active_opportunities": [], + "recent_interactions": [], + "property_interests": [], + "tasks_and_reminders": [], + "qd_overview": { + "current_score": 52.9, + "score_type": "overall", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 2 + }, + "risk_flags": [ + "slow_response_pattern" + ], + "metadata": { + "total_interactions": 0, + "total_visits": 0, + "total_opportunities": 0, + "source_confidence": 0.85, + "last_updated": "2026-04-18T00:00:00" + } + }, + { + "client_ref": "PER-0038", + "identity": { + "full_name": "Manish Verma", + "email": "manish.verma40@hotmail.com", + "phone": "+91-95700-47701", + "linkedin": "https://linkedin.com/in/manish-verma-809", + "persona": [ + "family_decision_unit" + ] + }, + "account_links": { + "account_id": "ACC-0038", + "account_name": "IBM India", + "account_type": "corporate" + }, + "household": { + "household_id": "HH-0038", + "household_name": "Verma Family", + "size": 5, + "decision_maker_id": "PER-0038" + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-38-1", + "project_id": "PRJ-012", + "unit_id": "PRJ-012-U001", + "stage": "prospecting", + "value_cr": 20.23, + "probability": 0.23, + "expected_close": "2026-08-08T00:00:00" + }, + { + "opportunity_id": "OPP-38-2", + "project_id": "PRJ-009", + "unit_id": "PRJ-009-U011", + "stage": "discovery", + "value_cr": 2.2, + "probability": 0.77, + "expected_close": "2026-08-07T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000245", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2026-01-03T00:00:00", + "summary": "Site Visit via site_visit regarding Siddha Sky Waterfront" + }, + { + "interaction_id": "INT-000244", + "channel": "email", + "type": "follow_up", + "happened_at": "2025-12-24T00:00:00", + "summary": "Follow Up via email regarding Siddha Sky Waterfront" + }, + { + "interaction_id": "INT-000243", + "channel": "whatsapp", + "type": "site_visit", + "happened_at": "2025-11-30T00:00:00", + "summary": "Site Visit via whatsapp regarding Siddha Sky Waterfront" + }, + { + "interaction_id": "INT-000242", + "channel": "referral", + "type": "initial_enquiry", + "happened_at": "2025-11-13T00:00:00", + "summary": "Initial Enquiry via referral regarding Siddha Sky Waterfront" + } + ], + "property_interests": [ + { + "project_id": "PRJ-012", + "unit_id": "PRJ-012-U001", + "interest_level": "low", + "configuration": "4 BHK", + "budget_range": "16.18 - 24.28", + "timeline": "6_months", + "financing": "undecided", + "notes": "Comparing with competitor projects" + }, + { + "project_id": "PRJ-009", + "unit_id": "PRJ-009-U011", + "interest_level": "medium", + "configuration": "Duplex", + "budget_range": "1.76 - 2.64", + "timeline": "3_months", + "financing": "cash", + "notes": "Comparing with competitor projects" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00098", + "text": "Follow up on Siddha Sky Waterfront pricing discussion", + "due_at": "2025-12-26T00:00:00", + "status": "pending", + "assigned_to": "user_004" + }, + { + "reminder_id": "REM-00099", + "text": "Share competitor comparison sheet", + "due_at": "2026-01-06T00:00:00", + "status": "completed", + "assigned_to": "user_004" + } + ], + "qd_overview": { + "current_score": 92.2, + "score_type": "engagement", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 2 + }, + "risk_flags": [ + "price_sensitivity_high" + ], + "metadata": { + "total_interactions": 4, + "total_visits": 1, + "total_opportunities": 2, + "source_confidence": 0.9, + "last_updated": "2025-01-31T00:00:00" + } + }, + { + "client_ref": "PER-0039", + "identity": { + "full_name": "Riya Jain", + "email": "riya.jain38@yahoo.com", + "phone": "+91-91736-53500", + "linkedin": "https://linkedin.com/in/riya-jain-439", + "persona": [ + "high_intent_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-39-1", + "project_id": "PRJ-001", + "unit_id": "PRJ-001-U010", + "stage": "closed_won", + "value_cr": 38.51, + "probability": 0.88, + "expected_close": "2026-06-16T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000249", + "channel": "phone_call", + "type": "negotiation", + "happened_at": "2025-10-14T00:00:00", + "summary": "Negotiation via phone_call regarding Eden Devprayag" + }, + { + "interaction_id": "INT-000248", + "channel": "whatsapp", + "type": "document_sharing", + "happened_at": "2025-09-27T00:00:00", + "summary": "Document Sharing via whatsapp regarding Eden Devprayag" + }, + { + "interaction_id": "INT-000247", + "channel": "whatsapp", + "type": "initial_enquiry", + "happened_at": "2025-09-07T00:00:00", + "summary": "Initial Enquiry via whatsapp regarding Eden Devprayag" + }, + { + "interaction_id": "INT-000246", + "channel": "web_enquiry", + "type": "initial_enquiry", + "happened_at": "2025-08-01T00:00:00", + "summary": "Initial Enquiry via web_enquiry regarding Eden Devprayag" + } + ], + "property_interests": [ + { + "project_id": "PRJ-001", + "unit_id": "PRJ-001-U010", + "interest_level": "high", + "configuration": "Penthouse", + "budget_range": "30.81 - 46.21", + "timeline": "6_months", + "financing": "cash", + "notes": "Comparing with competitor projects" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00100", + "text": "Follow up on Eden Devprayag pricing discussion", + "due_at": "2025-08-08T00:00:00", + "status": "pending", + "assigned_to": "user_002" + }, + { + "reminder_id": "REM-00101", + "text": "Confirm site visit for Saturday", + "due_at": "2025-10-15T00:00:00", + "status": "completed", + "assigned_to": "user_002" + } + ], + "qd_overview": { + "current_score": 89.6, + "score_type": "financial_qualification", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 3 + }, + "risk_flags": [], + "metadata": { + "total_interactions": 4, + "total_visits": 0, + "total_opportunities": 1, + "source_confidence": 0.83, + "last_updated": "2026-02-09T00:00:00" + } + }, + { + "client_ref": "PER-0040", + "identity": { + "full_name": "Vidya Nair", + "email": "vidya.nair67@rediffmail.com", + "phone": "+91-71436-48854", + "linkedin": "https://linkedin.com/in/vidya-nair-767", + "persona": [ + "price_sensitive_aspirational" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": "HH-0040", + "household_name": "Nair Family", + "size": 2, + "decision_maker_id": "PER-0040" + }, + "relationships": [ + { + "related_person_id": "PER-0040-CO", + "type": "spouse", + "strength": 0.92 + } + ], + "active_opportunities": [ + { + "opportunity_id": "OPP-40-1", + "project_id": "PRJ-014", + "unit_id": "PRJ-014-U001", + "stage": "verbal_commitment", + "value_cr": 73.38, + "probability": 0.89, + "expected_close": "2026-06-14T00:00:00" + }, + { + "opportunity_id": "OPP-40-2", + "project_id": "PRJ-007", + "unit_id": "PRJ-007-U012", + "stage": "prospecting", + "value_cr": 13.22, + "probability": 0.5, + "expected_close": "2026-10-01T00:00:00" + }, + { + "opportunity_id": "OPP-40-3", + "project_id": "PRJ-003", + "unit_id": "PRJ-003-U005", + "stage": "verbal_commitment", + "value_cr": 23.58, + "probability": 0.91, + "expected_close": "2026-05-20T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000260", + "channel": "whatsapp", + "type": "site_visit", + "happened_at": "2024-04-19T00:00:00", + "summary": "Site Visit via whatsapp regarding Ambuja Utpaala" + }, + { + "interaction_id": "INT-000259", + "channel": "phone_call", + "type": "initial_enquiry", + "happened_at": "2024-04-14T00:00:00", + "summary": "Initial Enquiry via phone_call regarding Ambuja Utpaala" + }, + { + "interaction_id": "INT-000258", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2024-04-08T00:00:00", + "summary": "Site Visit via site_visit regarding Ambuja Utpaala" + }, + { + "interaction_id": "INT-000257", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2024-04-07T00:00:00", + "summary": "Site Visit via site_visit regarding Ambuja Utpaala" + }, + { + "interaction_id": "INT-000256", + "channel": "whatsapp", + "type": "follow_up", + "happened_at": "2024-04-06T00:00:00", + "summary": "Follow Up via whatsapp regarding Ambuja Utpaala" + } + ], + "property_interests": [ + { + "project_id": "PRJ-014", + "unit_id": "PRJ-014-U001", + "interest_level": "high", + "configuration": "5 BHK", + "budget_range": "58.7 - 88.06", + "timeline": "immediate", + "financing": "combined", + "notes": "Wants ready to move in" + }, + { + "project_id": "PRJ-007", + "unit_id": "PRJ-007-U012", + "interest_level": "medium", + "configuration": "4 BHK", + "budget_range": "10.58 - 15.86", + "timeline": "flexible", + "financing": "combined", + "notes": "Waiting for festive season offer" + }, + { + "project_id": "PRJ-003", + "unit_id": "PRJ-003-U005", + "interest_level": "medium", + "configuration": "Penthouse", + "budget_range": "18.86 - 28.3", + "timeline": "immediate", + "financing": "cash", + "notes": "Looking for east facing unit" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00102", + "text": "Follow up on Ambuja Utpaala pricing discussion", + "due_at": "2024-04-07T00:00:00", + "status": "pending", + "assigned_to": "user_001" + }, + { + "reminder_id": "REM-00103", + "text": "Send revised payment plan", + "due_at": "2024-04-19T00:00:00", + "status": "overdue", + "assigned_to": "user_001" + }, + { + "reminder_id": "REM-00104", + "text": "Call back regarding east-facing unit availability", + "due_at": "2024-04-25T00:00:00", + "status": "pending", + "assigned_to": "user_001" + } + ], + "qd_overview": { + "current_score": 98, + "score_type": "urgency", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 4 + }, + "risk_flags": [ + "decision_maker_not_met" + ], + "metadata": { + "total_interactions": 11, + "total_visits": 4, + "total_opportunities": 3, + "source_confidence": 0.79, + "last_updated": "2024-03-25T00:00:00" + } + }, + { + "client_ref": "PER-0040-CO", + "identity": { + "full_name": "Anirban Singh", + "email": "anirban.singh23@yahoo.com", + "phone": "+91-87621-67047", + "linkedin": null, + "persona": [ + "co_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [ + { + "related_person_id": "PER-0040", + "type": "spouse", + "strength": 0.92 + } + ], + "active_opportunities": [], + "recent_interactions": [], + "property_interests": [], + "tasks_and_reminders": [], + "qd_overview": { + "current_score": 36.5, + "score_type": "intent", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 2 + }, + "risk_flags": [ + "decision_maker_not_met" + ], + "metadata": { + "total_interactions": 0, + "total_visits": 0, + "total_opportunities": 0, + "source_confidence": 0.85, + "last_updated": "2026-04-18T00:00:00" + } + }, + { + "client_ref": "PER-0041", + "identity": { + "full_name": "Asha Pillai", + "email": "asha.pillai20@outlook.com", + "phone": "+91-76883-55069", + "linkedin": "https://linkedin.com/in/asha-pillai-316", + "persona": [ + "family_decision_unit" + ] + }, + "account_links": { + "account_id": "ACC-0041", + "account_name": "Axis Bank", + "account_type": "individual_business" + }, + "household": { + "household_id": "HH-0041", + "household_name": "Pillai Family", + "size": 2, + "decision_maker_id": "PER-0041" + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-41-1", + "project_id": "PRJ-003", + "unit_id": "PRJ-003-U008", + "stage": "verbal_commitment", + "value_cr": 5.39, + "probability": 0.91, + "expected_close": "2026-06-30T00:00:00" + }, + { + "opportunity_id": "OPP-41-2", + "project_id": "PRJ-012", + "unit_id": "PRJ-012-U007", + "stage": "closed_won", + "value_cr": 2.7, + "probability": 0.34, + "expected_close": "2026-08-18T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000272", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2024-05-07T00:00:00", + "summary": "Site Visit via site_visit regarding Shriram Grand City" + }, + { + "interaction_id": "INT-000271", + "channel": "phone_call", + "type": "document_sharing", + "happened_at": "2024-05-02T00:00:00", + "summary": "Document Sharing via phone_call regarding Shriram Grand City" + }, + { + "interaction_id": "INT-000270", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2024-04-20T00:00:00", + "summary": "Site Visit via site_visit regarding Shriram Grand City" + }, + { + "interaction_id": "INT-000269", + "channel": "phone_call", + "type": "family_discussion", + "happened_at": "2024-04-18T00:00:00", + "summary": "Family Discussion via phone_call regarding Shriram Grand City" + }, + { + "interaction_id": "INT-000268", + "channel": "phone_call", + "type": "document_sharing", + "happened_at": "2024-03-30T00:00:00", + "summary": "Document Sharing via phone_call regarding Shriram Grand City" + } + ], + "property_interests": [ + { + "project_id": "PRJ-003", + "unit_id": "PRJ-003-U008", + "interest_level": "high", + "configuration": "4 BHK", + "budget_range": "4.31 - 6.47", + "timeline": "3_months", + "financing": "home_loan", + "notes": "Waiting for festive season offer" + }, + { + "project_id": "PRJ-012", + "unit_id": "PRJ-012-U007", + "interest_level": "high", + "configuration": "Duplex", + "budget_range": "2.16 - 3.24", + "timeline": "flexible", + "financing": "undecided", + "notes": "Wants ready to move in" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00105", + "text": "Schedule family meeting for final decision", + "due_at": "2024-03-06T00:00:00", + "status": "completed", + "assigned_to": "user_003" + }, + { + "reminder_id": "REM-00106", + "text": "Send revised payment plan", + "due_at": "2024-04-22T00:00:00", + "status": "completed", + "assigned_to": "user_003" + }, + { + "reminder_id": "REM-00107", + "text": "Update on road widening approval status", + "due_at": "2024-05-04T00:00:00", + "status": "pending", + "assigned_to": "user_003" + } + ], + "qd_overview": { + "current_score": 98, + "score_type": "urgency", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 3 + }, + "risk_flags": [ + "price_sensitivity_high" + ], + "metadata": { + "total_interactions": 12, + "total_visits": 4, + "total_opportunities": 2, + "source_confidence": 0.84, + "last_updated": "2025-06-08T00:00:00" + } + }, + { + "client_ref": "PER-0042", + "identity": { + "full_name": "Tanvi Pillai", + "email": "tanvi.pillai23@yahoo.com", + "phone": "+91-91153-89511", + "linkedin": "https://linkedin.com/in/tanvi-pillai-183", + "persona": [ + "slow_burn_investor" + ] + }, + "account_links": { + "account_id": "ACC-0042", + "account_name": "Capgemini", + "account_type": "corporate" + }, + "household": { + "household_id": "HH-0042", + "household_name": "Pillai Family", + "size": 5, + "decision_maker_id": "PER-0042" + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-42-1", + "project_id": "PRJ-003", + "unit_id": "PRJ-003-U003", + "stage": "closed_lost", + "value_cr": 20.76, + "probability": 0.24, + "expected_close": "2026-10-09T00:00:00" + }, + { + "opportunity_id": "OPP-42-2", + "project_id": "PRJ-004", + "unit_id": "PRJ-004-U020", + "stage": "closed_lost", + "value_cr": 18.88, + "probability": 0.3, + "expected_close": "2026-07-24T00:00:00" + }, + { + "opportunity_id": "OPP-42-3", + "project_id": "PRJ-013", + "unit_id": "PRJ-013-U007", + "stage": "closed_won", + "value_cr": 38.85, + "probability": 0.5, + "expected_close": "2026-09-11T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000277", + "channel": "whatsapp", + "type": "document_sharing", + "happened_at": "2025-10-13T00:00:00", + "summary": "Document Sharing via whatsapp regarding Atri Surya Toron" + }, + { + "interaction_id": "INT-000276", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2025-10-08T00:00:00", + "summary": "Site Visit via site_visit regarding Atri Surya Toron" + }, + { + "interaction_id": "INT-000275", + "channel": "whatsapp", + "type": "site_visit", + "happened_at": "2025-10-03T00:00:00", + "summary": "Site Visit via whatsapp regarding Atri Surya Toron" + }, + { + "interaction_id": "INT-000274", + "channel": "phone_call", + "type": "negotiation", + "happened_at": "2025-10-02T00:00:00", + "summary": "Negotiation via phone_call regarding Atri Surya Toron" + }, + { + "interaction_id": "INT-000273", + "channel": "walk_in", + "type": "initial_enquiry", + "happened_at": "2025-08-13T00:00:00", + "summary": "Initial Enquiry via walk_in regarding Atri Surya Toron" + } + ], + "property_interests": [ + { + "project_id": "PRJ-003", + "unit_id": "PRJ-003-U003", + "interest_level": "medium", + "configuration": "Duplex", + "budget_range": "16.61 - 24.91", + "timeline": "flexible", + "financing": "combined", + "notes": "Looking for east facing unit" + }, + { + "project_id": "PRJ-004", + "unit_id": "PRJ-004-U020", + "interest_level": "medium", + "configuration": "5 BHK", + "budget_range": "15.1 - 22.66", + "timeline": "immediate", + "financing": "home_loan", + "notes": "Comparing with competitor projects" + }, + { + "project_id": "PRJ-013", + "unit_id": "PRJ-013-U007", + "interest_level": "low", + "configuration": "5 BHK", + "budget_range": "31.08 - 46.62", + "timeline": "6_months", + "financing": "cash", + "notes": "Waiting for festive season offer" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00108", + "text": "Send home loan documents checklist", + "due_at": "2025-10-11T00:00:00", + "status": "completed", + "assigned_to": "user_004" + }, + { + "reminder_id": "REM-00109", + "text": "Send home loan documents checklist", + "due_at": "2025-10-18T00:00:00", + "status": "completed", + "assigned_to": "user_004" + } + ], + "qd_overview": { + "current_score": 98, + "score_type": "engagement", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 5 + }, + "risk_flags": [ + "financing_not_finalized", + "timeline_unclear" + ], + "metadata": { + "total_interactions": 5, + "total_visits": 1, + "total_opportunities": 3, + "source_confidence": 0.94, + "last_updated": "2025-07-05T00:00:00" + } + }, + { + "client_ref": "PER-0043", + "identity": { + "full_name": "Neha Bose", + "email": "neha.bose79@hotmail.com", + "phone": "+91-75696-59369", + "linkedin": "https://linkedin.com/in/neha-bose-769", + "persona": [ + "repeat_visitor" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": "HH-0043", + "household_name": "Bose Family", + "size": 4, + "decision_maker_id": "PER-0043" + }, + "relationships": [ + { + "related_person_id": "PER-0043-CO", + "type": "parent", + "strength": 0.83 + } + ], + "active_opportunities": [ + { + "opportunity_id": "OPP-43-1", + "project_id": "PRJ-009", + "unit_id": "PRJ-009-U003", + "stage": "site_visit", + "value_cr": 6.82, + "probability": 0.15, + "expected_close": "2026-07-23T00:00:00" + }, + { + "opportunity_id": "OPP-43-2", + "project_id": "PRJ-004", + "unit_id": "PRJ-004-U010", + "stage": "closed_lost", + "value_cr": 2.02, + "probability": 0.84, + "expected_close": "2026-06-30T00:00:00" + }, + { + "opportunity_id": "OPP-43-3", + "project_id": "PRJ-011", + "unit_id": "PRJ-011-U010", + "stage": "negotiation", + "value_cr": 6.18, + "probability": 0.24, + "expected_close": "2026-08-13T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000282", + "channel": "phone_call", + "type": "negotiation", + "happened_at": "2024-06-03T00:00:00", + "summary": "Negotiation via phone_call regarding Siddha Sky Waterfront" + }, + { + "interaction_id": "INT-000281", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2024-05-31T00:00:00", + "summary": "Site Visit via site_visit regarding Siddha Sky Waterfront" + }, + { + "interaction_id": "INT-000280", + "channel": "email", + "type": "price_discussion", + "happened_at": "2024-05-23T00:00:00", + "summary": "Price Discussion via email regarding Siddha Sky Waterfront" + }, + { + "interaction_id": "INT-000279", + "channel": "whatsapp", + "type": "initial_enquiry", + "happened_at": "2024-05-22T00:00:00", + "summary": "Initial Enquiry via whatsapp regarding Siddha Sky Waterfront" + }, + { + "interaction_id": "INT-000278", + "channel": "walk_in", + "type": "initial_enquiry", + "happened_at": "2024-05-06T00:00:00", + "summary": "Initial Enquiry via walk_in regarding Siddha Sky Waterfront" + } + ], + "property_interests": [ + { + "project_id": "PRJ-009", + "unit_id": "PRJ-009-U003", + "interest_level": "very_high", + "configuration": "Villa", + "budget_range": "5.46 - 8.18", + "timeline": "immediate", + "financing": "combined", + "notes": "Looking for east facing unit" + }, + { + "project_id": "PRJ-004", + "unit_id": "PRJ-004-U010", + "interest_level": "very_high", + "configuration": "Villa", + "budget_range": "1.62 - 2.42", + "timeline": "3_months", + "financing": "home_loan", + "notes": "Comparing with competitor projects" + }, + { + "project_id": "PRJ-011", + "unit_id": "PRJ-011-U010", + "interest_level": "low", + "configuration": "4 BHK", + "budget_range": "4.94 - 7.42", + "timeline": "3_months", + "financing": "undecided", + "notes": "Wants ready to move in" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00110", + "text": "Follow up on Siddha Sky Waterfront pricing discussion", + "due_at": "2024-05-13T00:00:00", + "status": "overdue", + "assigned_to": "user_002" + }, + { + "reminder_id": "REM-00111", + "text": "Update on road widening approval status", + "due_at": "2024-05-24T00:00:00", + "status": "completed", + "assigned_to": "user_002" + }, + { + "reminder_id": "REM-00112", + "text": "Call back regarding east-facing unit availability", + "due_at": "2024-05-30T00:00:00", + "status": "overdue", + "assigned_to": "user_002" + } + ], + "qd_overview": { + "current_score": 97.2, + "score_type": "overall", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 5 + }, + "risk_flags": [ + "price_sensitivity_high" + ], + "metadata": { + "total_interactions": 5, + "total_visits": 1, + "total_opportunities": 3, + "source_confidence": 0.84, + "last_updated": "2025-10-31T00:00:00" + } + }, + { + "client_ref": "PER-0043-CO", + "identity": { + "full_name": "Rahul Jain", + "email": "rahul.jain72@rediffmail.com", + "phone": "+91-99070-89195", + "linkedin": null, + "persona": [ + "co_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [ + { + "related_person_id": "PER-0043", + "type": "parent", + "strength": 0.83 + } + ], + "active_opportunities": [], + "recent_interactions": [], + "property_interests": [], + "tasks_and_reminders": [], + "qd_overview": { + "current_score": 82.5, + "score_type": "engagement", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 4 + }, + "risk_flags": [ + "price_sensitivity_high" + ], + "metadata": { + "total_interactions": 0, + "total_visits": 0, + "total_opportunities": 0, + "source_confidence": 0.85, + "last_updated": "2026-04-18T00:00:00" + } + }, + { + "client_ref": "PER-0044", + "identity": { + "full_name": "Anirban Nair", + "email": "anirban.nair74@rediffmail.com", + "phone": "+91-97083-29603", + "linkedin": "https://linkedin.com/in/anirban-nair-720", + "persona": [ + "high_intent_buyer" + ] + }, + "account_links": { + "account_id": "ACC-0044", + "account_name": "Exide Industries", + "account_type": "corporate" + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-44-1", + "project_id": "PRJ-012", + "unit_id": "PRJ-012-U007", + "stage": "prospecting", + "value_cr": 2.7, + "probability": 0.59, + "expected_close": "2026-06-17T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000292", + "channel": "phone_call", + "type": "family_discussion", + "happened_at": "2024-03-31T00:00:00", + "summary": "Family Discussion via phone_call regarding Shriram Grand City" + }, + { + "interaction_id": "INT-000291", + "channel": "phone_call", + "type": "follow_up", + "happened_at": "2024-03-13T00:00:00", + "summary": "Follow Up via phone_call regarding Shriram Grand City" + }, + { + "interaction_id": "INT-000290", + "channel": "whatsapp", + "type": "price_discussion", + "happened_at": "2024-03-03T00:00:00", + "summary": "Price Discussion via whatsapp regarding Shriram Grand City" + }, + { + "interaction_id": "INT-000289", + "channel": "phone_call", + "type": "price_discussion", + "happened_at": "2024-02-25T00:00:00", + "summary": "Price Discussion via phone_call regarding Shriram Grand City" + }, + { + "interaction_id": "INT-000288", + "channel": "whatsapp", + "type": "follow_up", + "happened_at": "2024-02-23T00:00:00", + "summary": "Follow Up via whatsapp regarding Shriram Grand City" + } + ], + "property_interests": [ + { + "project_id": "PRJ-012", + "unit_id": "PRJ-012-U007", + "interest_level": "low", + "configuration": "Duplex", + "budget_range": "2.16 - 3.24", + "timeline": "flexible", + "financing": "home_loan", + "notes": "Waiting for festive season offer" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00113", + "text": "Update on road widening approval status", + "due_at": "2024-02-24T00:00:00", + "status": "completed", + "assigned_to": "user_004" + }, + { + "reminder_id": "REM-00114", + "text": "Confirm site visit for Saturday", + "due_at": "2024-02-24T00:00:00", + "status": "overdue", + "assigned_to": "user_004" + }, + { + "reminder_id": "REM-00115", + "text": "Follow up on Shriram Grand City pricing discussion", + "due_at": "2024-03-08T00:00:00", + "status": "overdue", + "assigned_to": "user_004" + } + ], + "qd_overview": { + "current_score": 98, + "score_type": "overall", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 2 + }, + "risk_flags": [ + "price_sensitivity_high" + ], + "metadata": { + "total_interactions": 10, + "total_visits": 1, + "total_opportunities": 1, + "source_confidence": 0.77, + "last_updated": "2025-09-21T00:00:00" + } + }, + { + "client_ref": "PER-0045", + "identity": { + "full_name": "Trisha Sen", + "email": "trisha.sen29@rediffmail.com", + "phone": "+91-91350-86725", + "linkedin": "https://linkedin.com/in/trisha-sen-359", + "persona": [ + "price_sensitive_aspirational" + ] + }, + "account_links": { + "account_id": "ACC-0045", + "account_name": "HCL Technologies", + "account_type": "developer" + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-45-1", + "project_id": "PRJ-008", + "unit_id": "PRJ-008-U018", + "stage": "site_visit", + "value_cr": 51.49, + "probability": 0.19, + "expected_close": "2026-09-25T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000296", + "channel": "email", + "type": "initial_enquiry", + "happened_at": "2025-07-12T00:00:00", + "summary": "Initial Enquiry via email regarding Siddha Serena" + }, + { + "interaction_id": "INT-000295", + "channel": "whatsapp", + "type": "negotiation", + "happened_at": "2025-06-30T00:00:00", + "summary": "Negotiation via whatsapp regarding Siddha Serena" + }, + { + "interaction_id": "INT-000294", + "channel": "phone_call", + "type": "initial_enquiry", + "happened_at": "2025-06-10T00:00:00", + "summary": "Initial Enquiry via phone_call regarding Siddha Serena" + }, + { + "interaction_id": "INT-000293", + "channel": "walk_in", + "type": "initial_enquiry", + "happened_at": "2025-06-04T00:00:00", + "summary": "Initial Enquiry via walk_in regarding Siddha Serena" + } + ], + "property_interests": [ + { + "project_id": "PRJ-008", + "unit_id": "PRJ-008-U018", + "interest_level": "high", + "configuration": "2 BHK", + "budget_range": "41.19 - 61.79", + "timeline": "immediate", + "financing": "home_loan", + "notes": "Wants ready to move in" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00116", + "text": "Send home loan documents checklist", + "due_at": "2025-07-15T00:00:00", + "status": "completed", + "assigned_to": "user_003" + } + ], + "qd_overview": { + "current_score": 55.3, + "score_type": "financial_qualification", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 5 + }, + "risk_flags": [ + "price_sensitivity_high" + ], + "metadata": { + "total_interactions": 4, + "total_visits": 0, + "total_opportunities": 1, + "source_confidence": 0.81, + "last_updated": "2025-03-09T00:00:00" + } + }, + { + "client_ref": "PER-0046", + "identity": { + "full_name": "Aditya Das", + "email": "aditya.das70@hotmail.com", + "phone": "+91-84266-21552", + "linkedin": "https://linkedin.com/in/aditya-das-165", + "persona": [ + "repeat_visitor" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-46-1", + "project_id": "PRJ-004", + "unit_id": "PRJ-004-U017", + "stage": "prospecting", + "value_cr": 5.05, + "probability": 0.73, + "expected_close": "2026-06-04T00:00:00" + }, + { + "opportunity_id": "OPP-46-2", + "project_id": "PRJ-004", + "unit_id": "PRJ-004-U017", + "stage": "proposal", + "value_cr": 5.05, + "probability": 0.49, + "expected_close": "2026-08-29T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000308", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2025-05-11T00:00:00", + "summary": "Site Visit via site_visit regarding Atri Surya Toron" + }, + { + "interaction_id": "INT-000307", + "channel": "phone_call", + "type": "negotiation", + "happened_at": "2025-05-07T00:00:00", + "summary": "Negotiation via phone_call regarding Atri Surya Toron" + }, + { + "interaction_id": "INT-000306", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2025-05-01T00:00:00", + "summary": "Site Visit via site_visit regarding Atri Surya Toron" + }, + { + "interaction_id": "INT-000305", + "channel": "phone_call", + "type": "negotiation", + "happened_at": "2025-04-22T00:00:00", + "summary": "Negotiation via phone_call regarding Atri Surya Toron" + }, + { + "interaction_id": "INT-000304", + "channel": "phone_call", + "type": "negotiation", + "happened_at": "2025-04-18T00:00:00", + "summary": "Negotiation via phone_call regarding Atri Surya Toron" + } + ], + "property_interests": [ + { + "project_id": "PRJ-004", + "unit_id": "PRJ-004-U017", + "interest_level": "high", + "configuration": "Duplex", + "budget_range": "4.04 - 6.06", + "timeline": "6_months", + "financing": "combined", + "notes": "Prefers higher floor" + }, + { + "project_id": "PRJ-004", + "unit_id": "PRJ-004-U017", + "interest_level": "low", + "configuration": "Duplex", + "budget_range": "4.04 - 6.06", + "timeline": "6_months", + "financing": "home_loan", + "notes": "Wants ready to move in" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00117", + "text": "Call back regarding east-facing unit availability", + "due_at": "2025-03-22T00:00:00", + "status": "completed", + "assigned_to": "user_002" + }, + { + "reminder_id": "REM-00118", + "text": "Share competitor comparison sheet", + "due_at": "2025-04-17T00:00:00", + "status": "completed", + "assigned_to": "user_002" + }, + { + "reminder_id": "REM-00119", + "text": "Confirm site visit for Saturday", + "due_at": "2025-05-18T00:00:00", + "status": "completed", + "assigned_to": "user_002" + } + ], + "qd_overview": { + "current_score": 98, + "score_type": "engagement", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 5 + }, + "risk_flags": [], + "metadata": { + "total_interactions": 12, + "total_visits": 5, + "total_opportunities": 2, + "source_confidence": 0.81, + "last_updated": "2024-03-22T00:00:00" + } + }, + { + "client_ref": "PER-0047", + "identity": { + "full_name": "Deepak Gupta", + "email": "deepak.gupta53@gmail.com", + "phone": "+91-96310-77277", + "linkedin": "https://linkedin.com/in/deepak-gupta-363", + "persona": [ + "family_decision_unit" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": "HH-0047", + "household_name": "Gupta Family", + "size": 5, + "decision_maker_id": "PER-0047" + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-47-1", + "project_id": "PRJ-004", + "unit_id": "PRJ-004-U008", + "stage": "discovery", + "value_cr": 31.98, + "probability": 0.44, + "expected_close": "2026-08-13T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000315", + "channel": "phone_call", + "type": "negotiation", + "happened_at": "2026-04-05T00:00:00", + "summary": "Negotiation via phone_call regarding Atri Surya Toron" + }, + { + "interaction_id": "INT-000314", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2026-03-31T00:00:00", + "summary": "Site Visit via site_visit regarding Atri Surya Toron" + }, + { + "interaction_id": "INT-000313", + "channel": "phone_call", + "type": "family_discussion", + "happened_at": "2026-03-23T00:00:00", + "summary": "Family Discussion via phone_call regarding Atri Surya Toron" + }, + { + "interaction_id": "INT-000312", + "channel": "phone_call", + "type": "follow_up", + "happened_at": "2026-03-22T00:00:00", + "summary": "Follow Up via phone_call regarding Atri Surya Toron" + }, + { + "interaction_id": "INT-000311", + "channel": "email", + "type": "document_sharing", + "happened_at": "2026-03-12T00:00:00", + "summary": "Document Sharing via email regarding Atri Surya Toron" + } + ], + "property_interests": [ + { + "project_id": "PRJ-004", + "unit_id": "PRJ-004-U008", + "interest_level": "medium", + "configuration": "Villa", + "budget_range": "25.58 - 38.38", + "timeline": "flexible", + "financing": "combined", + "notes": "Prefers higher floor" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00120", + "text": "Update on road widening approval status", + "due_at": "2026-03-14T00:00:00", + "status": "completed", + "assigned_to": "user_001" + } + ], + "qd_overview": { + "current_score": 98, + "score_type": "financial_qualification", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 2 + }, + "risk_flags": [ + "price_sensitivity_high" + ], + "metadata": { + "total_interactions": 7, + "total_visits": 1, + "total_opportunities": 1, + "source_confidence": 0.95, + "last_updated": "2024-09-13T00:00:00" + } + }, + { + "client_ref": "PER-0048", + "identity": { + "full_name": "Swati Roy", + "email": "swati.roy73@yahoo.com", + "phone": "+91-77695-41726", + "linkedin": "https://linkedin.com/in/swati-roy-993", + "persona": [ + "slow_burn_investor" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-48-1", + "project_id": "PRJ-008", + "unit_id": "PRJ-008-U003", + "stage": "negotiation", + "value_cr": 8.37, + "probability": 0.44, + "expected_close": "2026-10-12T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000321", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2025-03-29T00:00:00", + "summary": "Site Visit via site_visit regarding Siddha Serena" + }, + { + "interaction_id": "INT-000320", + "channel": "whatsapp", + "type": "document_sharing", + "happened_at": "2025-02-27T00:00:00", + "summary": "Document Sharing via whatsapp regarding Siddha Serena" + }, + { + "interaction_id": "INT-000319", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2025-02-02T00:00:00", + "summary": "Site Visit via site_visit regarding Siddha Serena" + }, + { + "interaction_id": "INT-000318", + "channel": "whatsapp", + "type": "family_discussion", + "happened_at": "2025-01-17T00:00:00", + "summary": "Family Discussion via whatsapp regarding Siddha Serena" + }, + { + "interaction_id": "INT-000317", + "channel": "whatsapp", + "type": "initial_enquiry", + "happened_at": "2025-01-15T00:00:00", + "summary": "Initial Enquiry via whatsapp regarding Siddha Serena" + } + ], + "property_interests": [ + { + "project_id": "PRJ-008", + "unit_id": "PRJ-008-U003", + "interest_level": "low", + "configuration": "Penthouse", + "budget_range": "6.7 - 10.04", + "timeline": "flexible", + "financing": "undecided", + "notes": "Comparing with competitor projects" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00121", + "text": "Confirm site visit for Saturday", + "due_at": "2025-04-02T00:00:00", + "status": "completed", + "assigned_to": "user_005" + } + ], + "qd_overview": { + "current_score": 98, + "score_type": "urgency", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 2 + }, + "risk_flags": [ + "slow_response_pattern" + ], + "metadata": { + "total_interactions": 6, + "total_visits": 2, + "total_opportunities": 1, + "source_confidence": 0.81, + "last_updated": "2024-07-26T00:00:00" + } + }, + { + "client_ref": "PER-0049", + "identity": { + "full_name": "Moumita Ghosh", + "email": "moumita.ghosh68@gmail.com", + "phone": "+91-92880-77922", + "linkedin": "https://linkedin.com/in/moumita-ghosh-571", + "persona": [ + "high_intent_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-49-1", + "project_id": "PRJ-010", + "unit_id": "PRJ-010-U009", + "stage": "proposal", + "value_cr": 9.32, + "probability": 0.79, + "expected_close": "2026-07-26T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000334", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2024-07-07T00:00:00", + "summary": "Site Visit via site_visit regarding Godrej Blue" + }, + { + "interaction_id": "INT-000332", + "channel": "whatsapp", + "type": "family_discussion", + "happened_at": "2024-07-06T00:00:00", + "summary": "Family Discussion via whatsapp regarding Godrej Blue" + }, + { + "interaction_id": "INT-000333", + "channel": "phone_call", + "type": "initial_enquiry", + "happened_at": "2024-07-06T00:00:00", + "summary": "Initial Enquiry via phone_call regarding Godrej Blue" + }, + { + "interaction_id": "INT-000330", + "channel": "whatsapp", + "type": "follow_up", + "happened_at": "2024-06-27T00:00:00", + "summary": "Follow Up via whatsapp regarding Godrej Blue" + }, + { + "interaction_id": "INT-000331", + "channel": "phone_call", + "type": "negotiation", + "happened_at": "2024-06-27T00:00:00", + "summary": "Negotiation via phone_call regarding Godrej Blue" + } + ], + "property_interests": [ + { + "project_id": "PRJ-010", + "unit_id": "PRJ-010-U009", + "interest_level": "very_high", + "configuration": "Duplex", + "budget_range": "7.46 - 11.18", + "timeline": "flexible", + "financing": "home_loan", + "notes": "Needs proximity to school" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00122", + "text": "Schedule family meeting for final decision", + "due_at": "2024-04-21T00:00:00", + "status": "completed", + "assigned_to": "user_005" + }, + { + "reminder_id": "REM-00123", + "text": "Share competitor comparison sheet", + "due_at": "2024-07-07T00:00:00", + "status": "completed", + "assigned_to": "user_005" + } + ], + "qd_overview": { + "current_score": 90.3, + "score_type": "urgency", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 4 + }, + "risk_flags": [], + "metadata": { + "total_interactions": 13, + "total_visits": 3, + "total_opportunities": 1, + "source_confidence": 0.82, + "last_updated": "2024-01-13T00:00:00" + } + }, + { + "client_ref": "PER-0050", + "identity": { + "full_name": "Abhishek Banerjee", + "email": "abhishek.banerjee32@rediffmail.com", + "phone": "+91-86370-27625", + "linkedin": "https://linkedin.com/in/abhishek-banerjee-969", + "persona": [ + "price_sensitive_aspirational" + ] + }, + "account_links": { + "account_id": "ACC-0050", + "account_name": "Britannia Industries", + "account_type": "referral_partner" + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-50-1", + "project_id": "PRJ-007", + "unit_id": "PRJ-007-U001", + "stage": "verbal_commitment", + "value_cr": 6.59, + "probability": 0.84, + "expected_close": "2026-07-07T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000338", + "channel": "whatsapp", + "type": "initial_enquiry", + "happened_at": "2026-03-07T00:00:00", + "summary": "Initial Enquiry via whatsapp regarding DTC Good Earth" + }, + { + "interaction_id": "INT-000337", + "channel": "email", + "type": "price_discussion", + "happened_at": "2026-03-03T00:00:00", + "summary": "Price Discussion via email regarding DTC Good Earth" + }, + { + "interaction_id": "INT-000336", + "channel": "phone_call", + "type": "document_sharing", + "happened_at": "2026-01-08T00:00:00", + "summary": "Document Sharing via phone_call regarding DTC Good Earth" + }, + { + "interaction_id": "INT-000335", + "channel": "referral", + "type": "initial_enquiry", + "happened_at": "2025-12-30T00:00:00", + "summary": "Initial Enquiry via referral regarding DTC Good Earth" + } + ], + "property_interests": [ + { + "project_id": "PRJ-007", + "unit_id": "PRJ-007-U001", + "interest_level": "medium", + "configuration": "Duplex", + "budget_range": "5.27 - 7.91", + "timeline": "6_months", + "financing": "combined", + "notes": "Prefers higher floor" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00124", + "text": "Call back regarding east-facing unit availability", + "due_at": "2026-01-02T00:00:00", + "status": "completed", + "assigned_to": "user_001" + }, + { + "reminder_id": "REM-00125", + "text": "Send home loan documents checklist", + "due_at": "2026-01-14T00:00:00", + "status": "completed", + "assigned_to": "user_001" + }, + { + "reminder_id": "REM-00126", + "text": "Follow up on DTC Good Earth pricing discussion", + "due_at": "2026-03-13T00:00:00", + "status": "completed", + "assigned_to": "user_001" + } + ], + "qd_overview": { + "current_score": 55.7, + "score_type": "overall", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 5 + }, + "risk_flags": [], + "metadata": { + "total_interactions": 4, + "total_visits": 0, + "total_opportunities": 1, + "source_confidence": 0.9, + "last_updated": "2026-01-07T00:00:00" + } + }, + { + "client_ref": "PER-0051", + "identity": { + "full_name": "Shreya Chatterjee", + "email": "shreya.chatterjee58@hotmail.com", + "phone": "+91-79388-70784", + "linkedin": "https://linkedin.com/in/shreya-chatterjee-746", + "persona": [ + "family_decision_unit" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": "HH-0051", + "household_name": "Chatterjee Family", + "size": 4, + "decision_maker_id": "PER-0051" + }, + "relationships": [ + { + "related_person_id": "PER-0051-CO", + "type": "sibling", + "strength": 0.9 + } + ], + "active_opportunities": [ + { + "opportunity_id": "OPP-51-1", + "project_id": "PRJ-009", + "unit_id": "PRJ-009-U004", + "stage": "discovery", + "value_cr": 3.15, + "probability": 0.32, + "expected_close": "2026-06-26T00:00:00" + }, + { + "opportunity_id": "OPP-51-2", + "project_id": "PRJ-012", + "unit_id": "PRJ-012-U004", + "stage": "closed_lost", + "value_cr": 10.9, + "probability": 0.63, + "expected_close": "2026-06-20T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000351", + "channel": "phone_call", + "type": "family_discussion", + "happened_at": "2025-12-09T00:00:00", + "summary": "Family Discussion via phone_call regarding Shriram Grand City" + }, + { + "interaction_id": "INT-000350", + "channel": "phone_call", + "type": "price_discussion", + "happened_at": "2025-12-05T00:00:00", + "summary": "Price Discussion via phone_call regarding Shriram Grand City" + }, + { + "interaction_id": "INT-000349", + "channel": "phone_call", + "type": "initial_enquiry", + "happened_at": "2025-12-01T00:00:00", + "summary": "Initial Enquiry via phone_call regarding Shriram Grand City" + }, + { + "interaction_id": "INT-000348", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2025-11-28T00:00:00", + "summary": "Site Visit via site_visit regarding Shriram Grand City" + }, + { + "interaction_id": "INT-000347", + "channel": "phone_call", + "type": "site_visit", + "happened_at": "2025-11-20T00:00:00", + "summary": "Site Visit via phone_call regarding Shriram Grand City" + } + ], + "property_interests": [ + { + "project_id": "PRJ-009", + "unit_id": "PRJ-009-U004", + "interest_level": "very_high", + "configuration": "2 BHK", + "budget_range": "2.52 - 3.78", + "timeline": "6_months", + "financing": "home_loan", + "notes": "Needs proximity to school" + }, + { + "project_id": "PRJ-012", + "unit_id": "PRJ-012-U004", + "interest_level": "medium", + "configuration": "Villa", + "budget_range": "8.72 - 13.08", + "timeline": "immediate", + "financing": "cash", + "notes": "Waiting for festive season offer" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00127", + "text": "Share competitor comparison sheet", + "due_at": "2025-09-17T00:00:00", + "status": "completed", + "assigned_to": "user_005" + }, + { + "reminder_id": "REM-00128", + "text": "Call back regarding east-facing unit availability", + "due_at": "2025-10-07T00:00:00", + "status": "pending", + "assigned_to": "user_005" + }, + { + "reminder_id": "REM-00129", + "text": "Call back regarding east-facing unit availability", + "due_at": "2025-10-25T00:00:00", + "status": "pending", + "assigned_to": "user_005" + } + ], + "qd_overview": { + "current_score": 98, + "score_type": "engagement", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 4 + }, + "risk_flags": [ + "financing_not_finalized", + "timeline_unclear" + ], + "metadata": { + "total_interactions": 13, + "total_visits": 3, + "total_opportunities": 2, + "source_confidence": 0.97, + "last_updated": "2025-10-17T00:00:00" + } + }, + { + "client_ref": "PER-0051-CO", + "identity": { + "full_name": "Sanjay Chatterjee", + "email": "sanjay.chatterjee20@yahoo.com", + "phone": "+91-81259-39912", + "linkedin": null, + "persona": [ + "co_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [ + { + "related_person_id": "PER-0051", + "type": "sibling", + "strength": 0.9 + } + ], + "active_opportunities": [], + "recent_interactions": [], + "property_interests": [], + "tasks_and_reminders": [], + "qd_overview": { + "current_score": 32.3, + "score_type": "intent", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 3 + }, + "risk_flags": [ + "price_sensitivity_high" + ], + "metadata": { + "total_interactions": 0, + "total_visits": 0, + "total_opportunities": 0, + "source_confidence": 0.85, + "last_updated": "2026-04-18T00:00:00" + } + }, + { + "client_ref": "PER-0052", + "identity": { + "full_name": "Tanvi Kumar", + "email": "tanvi.kumar79@outlook.com", + "phone": "+91-87974-68306", + "linkedin": "https://linkedin.com/in/tanvi-kumar-238", + "persona": [ + "slow_burn_investor" + ] + }, + "account_links": { + "account_id": "ACC-0052", + "account_name": "Bengal Chemicals", + "account_type": "developer" + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-52-1", + "project_id": "PRJ-007", + "unit_id": "PRJ-007-U012", + "stage": "proposal", + "value_cr": 13.22, + "probability": 0.24, + "expected_close": "2026-08-25T00:00:00" + }, + { + "opportunity_id": "OPP-52-2", + "project_id": "PRJ-011", + "unit_id": "PRJ-011-U004", + "stage": "negotiation", + "value_cr": 50.68, + "probability": 0.34, + "expected_close": "2026-10-01T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000366", + "channel": "phone_call", + "type": "negotiation", + "happened_at": "2025-08-01T00:00:00", + "summary": "Negotiation via phone_call regarding DTC Good Earth" + }, + { + "interaction_id": "INT-000364", + "channel": "whatsapp", + "type": "site_visit", + "happened_at": "2025-07-25T00:00:00", + "summary": "Site Visit via whatsapp regarding DTC Good Earth" + }, + { + "interaction_id": "INT-000365", + "channel": "phone_call", + "type": "family_discussion", + "happened_at": "2025-07-25T00:00:00", + "summary": "Family Discussion via phone_call regarding DTC Good Earth" + }, + { + "interaction_id": "INT-000363", + "channel": "phone_call", + "type": "family_discussion", + "happened_at": "2025-07-23T00:00:00", + "summary": "Family Discussion via phone_call regarding DTC Good Earth" + }, + { + "interaction_id": "INT-000362", + "channel": "phone_call", + "type": "negotiation", + "happened_at": "2025-07-15T00:00:00", + "summary": "Negotiation via phone_call regarding DTC Good Earth" + } + ], + "property_interests": [ + { + "project_id": "PRJ-007", + "unit_id": "PRJ-007-U012", + "interest_level": "medium", + "configuration": "4 BHK", + "budget_range": "10.58 - 15.86", + "timeline": "6_months", + "financing": "cash", + "notes": "Wants ready to move in" + }, + { + "project_id": "PRJ-011", + "unit_id": "PRJ-011-U004", + "interest_level": "very_high", + "configuration": "Penthouse", + "budget_range": "40.54 - 60.82", + "timeline": "3_months", + "financing": "cash", + "notes": "Needs proximity to school" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00134", + "text": "Confirm site visit for Saturday", + "due_at": "2025-05-24T00:00:00", + "status": "pending", + "assigned_to": "user_003" + }, + { + "reminder_id": "REM-00135", + "text": "Follow up on DTC Good Earth pricing discussion", + "due_at": "2025-07-19T00:00:00", + "status": "overdue", + "assigned_to": "user_003" + }, + { + "reminder_id": "REM-00136", + "text": "Call back regarding east-facing unit availability", + "due_at": "2025-07-19T00:00:00", + "status": "pending", + "assigned_to": "user_003" + } + ], + "qd_overview": { + "current_score": 98, + "score_type": "urgency", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 3 + }, + "risk_flags": [ + "financing_not_finalized", + "timeline_unclear" + ], + "metadata": { + "total_interactions": 15, + "total_visits": 1, + "total_opportunities": 2, + "source_confidence": 0.97, + "last_updated": "2025-07-06T00:00:00" + } + }, + { + "client_ref": "PER-0053", + "identity": { + "full_name": "Kunal Saha", + "email": "kunal.saha67@outlook.com", + "phone": "+91-92953-91625", + "linkedin": "https://linkedin.com/in/kunal-saha-603", + "persona": [ + "high_intent_buyer" + ] + }, + "account_links": { + "account_id": "ACC-0053", + "account_name": "Exide Industries", + "account_type": "corporate" + }, + "household": { + "household_id": "HH-0053", + "household_name": "Saha Family", + "size": 5, + "decision_maker_id": "PER-0053" + }, + "relationships": [ + { + "related_person_id": "PER-0053-CO", + "type": "business_partner", + "strength": 1.0 + } + ], + "active_opportunities": [ + { + "opportunity_id": "OPP-53-1", + "project_id": "PRJ-008", + "unit_id": "PRJ-008-U003", + "stage": "proposal", + "value_cr": 8.37, + "probability": 0.86, + "expected_close": "2026-07-21T00:00:00" + }, + { + "opportunity_id": "OPP-53-2", + "project_id": "PRJ-013", + "unit_id": "PRJ-013-U012", + "stage": "proposal", + "value_cr": 4.05, + "probability": 0.73, + "expected_close": "2026-05-26T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000370", + "channel": "phone_call", + "type": "negotiation", + "happened_at": "2026-03-03T00:00:00", + "summary": "Negotiation via phone_call regarding Siddha Serena" + }, + { + "interaction_id": "INT-000369", + "channel": "email", + "type": "initial_enquiry", + "happened_at": "2026-01-16T00:00:00", + "summary": "Initial Enquiry via email regarding Siddha Serena" + }, + { + "interaction_id": "INT-000368", + "channel": "whatsapp", + "type": "document_sharing", + "happened_at": "2026-01-05T00:00:00", + "summary": "Document Sharing via whatsapp regarding Siddha Serena" + }, + { + "interaction_id": "INT-000367", + "channel": "web_enquiry", + "type": "initial_enquiry", + "happened_at": "2025-12-15T00:00:00", + "summary": "Initial Enquiry via web_enquiry regarding Siddha Serena" + } + ], + "property_interests": [ + { + "project_id": "PRJ-008", + "unit_id": "PRJ-008-U003", + "interest_level": "low", + "configuration": "Penthouse", + "budget_range": "6.7 - 10.04", + "timeline": "immediate", + "financing": "home_loan", + "notes": "Wants ready to move in" + }, + { + "project_id": "PRJ-013", + "unit_id": "PRJ-013-U012", + "interest_level": "very_high", + "configuration": "2 BHK", + "budget_range": "3.24 - 4.86", + "timeline": "immediate", + "financing": "home_loan", + "notes": "Wants ready to move in" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00138", + "text": "Send revised payment plan", + "due_at": "2026-01-22T00:00:00", + "status": "overdue", + "assigned_to": "user_003" + } + ], + "qd_overview": { + "current_score": 62.9, + "score_type": "overall", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 2 + }, + "risk_flags": [ + "competitor_comparison_active" + ], + "metadata": { + "total_interactions": 4, + "total_visits": 0, + "total_opportunities": 2, + "source_confidence": 0.79, + "last_updated": "2024-06-04T00:00:00" + } + }, + { + "client_ref": "PER-0053-CO", + "identity": { + "full_name": "Debjani Banerjee", + "email": "debjani.banerjee73@yahoo.com", + "phone": "+91-81203-65082", + "linkedin": null, + "persona": [ + "co_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [ + { + "related_person_id": "PER-0053", + "type": "business_partner", + "strength": 1.0 + } + ], + "active_opportunities": [], + "recent_interactions": [], + "property_interests": [], + "tasks_and_reminders": [], + "qd_overview": { + "current_score": 30.3, + "score_type": "engagement", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 3 + }, + "risk_flags": [ + "slow_response_pattern" + ], + "metadata": { + "total_interactions": 0, + "total_visits": 0, + "total_opportunities": 0, + "source_confidence": 0.85, + "last_updated": "2026-04-18T00:00:00" + } + }, + { + "client_ref": "PER-0054", + "identity": { + "full_name": "Sonal Ghosh", + "email": "sonal.ghosh90@gmail.com", + "phone": "+91-94403-82034", + "linkedin": "https://linkedin.com/in/sonal-ghosh-633", + "persona": [ + "nri_buyer" + ] + }, + "account_links": { + "account_id": "ACC-0054", + "account_name": "Flipkart", + "account_type": "corporate" + }, + "household": { + "household_id": "HH-0054", + "household_name": "Ghosh Family", + "size": 5, + "decision_maker_id": "PER-0054" + }, + "relationships": [ + { + "related_person_id": "PER-0054-CO", + "type": "spouse", + "strength": 0.87 + } + ], + "active_opportunities": [ + { + "opportunity_id": "OPP-54-1", + "project_id": "PRJ-008", + "unit_id": "PRJ-008-U014", + "stage": "closed_lost", + "value_cr": 5.24, + "probability": 0.58, + "expected_close": "2026-10-03T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000377", + "channel": "phone_call", + "type": "family_discussion", + "happened_at": "2026-03-01T00:00:00", + "summary": "Family Discussion via phone_call regarding Siddha Serena" + }, + { + "interaction_id": "INT-000376", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2026-02-25T00:00:00", + "summary": "Site Visit via site_visit regarding Siddha Serena" + }, + { + "interaction_id": "INT-000375", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2026-02-24T00:00:00", + "summary": "Site Visit via site_visit regarding Siddha Serena" + }, + { + "interaction_id": "INT-000374", + "channel": "phone_call", + "type": "price_discussion", + "happened_at": "2026-02-14T00:00:00", + "summary": "Price Discussion via phone_call regarding Siddha Serena" + }, + { + "interaction_id": "INT-000373", + "channel": "whatsapp", + "type": "price_discussion", + "happened_at": "2026-02-01T00:00:00", + "summary": "Price Discussion via whatsapp regarding Siddha Serena" + } + ], + "property_interests": [ + { + "project_id": "PRJ-008", + "unit_id": "PRJ-008-U014", + "interest_level": "very_high", + "configuration": "Duplex", + "budget_range": "4.19 - 6.29", + "timeline": "3_months", + "financing": "home_loan", + "notes": "Comparing with competitor projects" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00139", + "text": "Send home loan documents checklist", + "due_at": "2025-12-16T00:00:00", + "status": "completed", + "assigned_to": "user_002" + }, + { + "reminder_id": "REM-00140", + "text": "Call back regarding east-facing unit availability", + "due_at": "2026-01-15T00:00:00", + "status": "pending", + "assigned_to": "user_002" + } + ], + "qd_overview": { + "current_score": 92.1, + "score_type": "intent", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 4 + }, + "risk_flags": [ + "financing_not_finalized", + "timeline_unclear" + ], + "metadata": { + "total_interactions": 7, + "total_visits": 2, + "total_opportunities": 1, + "source_confidence": 0.78, + "last_updated": "2025-10-15T00:00:00" + } + }, + { + "client_ref": "PER-0054-CO", + "identity": { + "full_name": "Sourav Bose", + "email": "sourav.bose25@rediffmail.com", + "phone": "+91-95858-41862", + "linkedin": null, + "persona": [ + "co_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [ + { + "related_person_id": "PER-0054", + "type": "spouse", + "strength": 0.87 + } + ], + "active_opportunities": [], + "recent_interactions": [], + "property_interests": [], + "tasks_and_reminders": [], + "qd_overview": { + "current_score": 45.3, + "score_type": "overall", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 3 + }, + "risk_flags": [ + "price_sensitivity_high" + ], + "metadata": { + "total_interactions": 0, + "total_visits": 0, + "total_opportunities": 0, + "source_confidence": 0.85, + "last_updated": "2026-04-18T00:00:00" + } + }, + { + "client_ref": "PER-0055", + "identity": { + "full_name": "Neha Saha", + "email": "neha.saha80@yahoo.com", + "phone": "+91-72256-79617", + "linkedin": "https://linkedin.com/in/neha-saha-258", + "persona": [ + "slow_burn_investor" + ] + }, + "account_links": { + "account_id": "ACC-0055", + "account_name": "Infosys Ltd", + "account_type": "developer" + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-55-1", + "project_id": "PRJ-009", + "unit_id": "PRJ-009-U004", + "stage": "prospecting", + "value_cr": 3.15, + "probability": 0.81, + "expected_close": "2026-06-20T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000385", + "channel": "web_enquiry", + "type": "family_discussion", + "happened_at": "2025-12-21T00:00:00", + "summary": "Family Discussion via web_enquiry regarding Siddha Sky Waterfront" + }, + { + "interaction_id": "INT-000384", + "channel": "whatsapp", + "type": "negotiation", + "happened_at": "2025-12-08T00:00:00", + "summary": "Negotiation via whatsapp regarding Siddha Sky Waterfront" + }, + { + "interaction_id": "INT-000383", + "channel": "whatsapp", + "type": "initial_enquiry", + "happened_at": "2025-12-02T00:00:00", + "summary": "Initial Enquiry via whatsapp regarding Siddha Sky Waterfront" + }, + { + "interaction_id": "INT-000382", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2025-11-23T00:00:00", + "summary": "Site Visit via site_visit regarding Siddha Sky Waterfront" + }, + { + "interaction_id": "INT-000381", + "channel": "whatsapp", + "type": "document_sharing", + "happened_at": "2025-11-17T00:00:00", + "summary": "Document Sharing via whatsapp regarding Siddha Sky Waterfront" + } + ], + "property_interests": [ + { + "project_id": "PRJ-009", + "unit_id": "PRJ-009-U004", + "interest_level": "low", + "configuration": "2 BHK", + "budget_range": "2.52 - 3.78", + "timeline": "3_months", + "financing": "cash", + "notes": "Wants ready to move in" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00141", + "text": "Send home loan documents checklist", + "due_at": "2025-10-30T00:00:00", + "status": "completed", + "assigned_to": "user_004" + }, + { + "reminder_id": "REM-00142", + "text": "Send revised payment plan", + "due_at": "2025-10-28T00:00:00", + "status": "pending", + "assigned_to": "user_004" + }, + { + "reminder_id": "REM-00143", + "text": "Call back regarding east-facing unit availability", + "due_at": "2025-11-23T00:00:00", + "status": "completed", + "assigned_to": "user_004" + } + ], + "qd_overview": { + "current_score": 85.4, + "score_type": "financial_qualification", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 5 + }, + "risk_flags": [ + "price_sensitivity_high" + ], + "metadata": { + "total_interactions": 8, + "total_visits": 1, + "total_opportunities": 1, + "source_confidence": 0.85, + "last_updated": "2025-07-08T00:00:00" + } + }, + { + "client_ref": "PER-0056", + "identity": { + "full_name": "Nilesh Verma", + "email": "nilesh.verma94@rediffmail.com", + "phone": "+91-87230-91785", + "linkedin": "https://linkedin.com/in/nilesh-verma-818", + "persona": [ + "high_intent_buyer" + ] + }, + "account_links": { + "account_id": "ACC-0056", + "account_name": "Capgemini", + "account_type": "corporate" + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-56-1", + "project_id": "PRJ-009", + "unit_id": "PRJ-009-U003", + "stage": "discovery", + "value_cr": 6.82, + "probability": 0.81, + "expected_close": "2026-06-06T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000388", + "channel": "email", + "type": "negotiation", + "happened_at": "2025-12-30T00:00:00", + "summary": "Negotiation via email regarding Siddha Sky Waterfront" + }, + { + "interaction_id": "INT-000387", + "channel": "phone_call", + "type": "family_discussion", + "happened_at": "2025-12-01T00:00:00", + "summary": "Family Discussion via phone_call regarding Siddha Sky Waterfront" + }, + { + "interaction_id": "INT-000386", + "channel": "web_enquiry", + "type": "initial_enquiry", + "happened_at": "2025-11-06T00:00:00", + "summary": "Initial Enquiry via web_enquiry regarding Siddha Sky Waterfront" + } + ], + "property_interests": [ + { + "project_id": "PRJ-009", + "unit_id": "PRJ-009-U003", + "interest_level": "low", + "configuration": "Villa", + "budget_range": "5.46 - 8.18", + "timeline": "immediate", + "financing": "home_loan", + "notes": "Comparing with competitor projects" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00145", + "text": "Send home loan documents checklist", + "due_at": "2025-11-09T00:00:00", + "status": "completed", + "assigned_to": "user_003" + }, + { + "reminder_id": "REM-00146", + "text": "Share competitor comparison sheet", + "due_at": "2025-12-02T00:00:00", + "status": "completed", + "assigned_to": "user_003" + } + ], + "qd_overview": { + "current_score": 62.3, + "score_type": "engagement", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 5 + }, + "risk_flags": [ + "competitor_comparison_active" + ], + "metadata": { + "total_interactions": 3, + "total_visits": 0, + "total_opportunities": 1, + "source_confidence": 0.89, + "last_updated": "2025-01-10T00:00:00" + } + }, + { + "client_ref": "PER-0057", + "identity": { + "full_name": "Deepak Patel", + "email": "deepak.patel82@yahoo.com", + "phone": "+91-88298-83156", + "linkedin": "https://linkedin.com/in/deepak-patel-525", + "persona": [ + "nri_buyer" + ] + }, + "account_links": { + "account_id": "ACC-0057", + "account_name": "Bengal Chemicals", + "account_type": "developer" + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-57-1", + "project_id": "PRJ-007", + "unit_id": "PRJ-007-U014", + "stage": "negotiation", + "value_cr": 6.92, + "probability": 0.41, + "expected_close": "2026-09-10T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000393", + "channel": "whatsapp", + "type": "price_discussion", + "happened_at": "2025-03-11T00:00:00", + "summary": "Price Discussion via whatsapp regarding DTC Good Earth" + }, + { + "interaction_id": "INT-000392", + "channel": "walk_in", + "type": "price_discussion", + "happened_at": "2025-01-29T00:00:00", + "summary": "Price Discussion via walk_in regarding DTC Good Earth" + }, + { + "interaction_id": "INT-000391", + "channel": "whatsapp", + "type": "price_discussion", + "happened_at": "2025-01-27T00:00:00", + "summary": "Price Discussion via whatsapp regarding DTC Good Earth" + }, + { + "interaction_id": "INT-000390", + "channel": "whatsapp", + "type": "price_discussion", + "happened_at": "2025-01-16T00:00:00", + "summary": "Price Discussion via whatsapp regarding DTC Good Earth" + }, + { + "interaction_id": "INT-000389", + "channel": "walk_in", + "type": "initial_enquiry", + "happened_at": "2025-01-13T00:00:00", + "summary": "Initial Enquiry via walk_in regarding DTC Good Earth" + } + ], + "property_interests": [ + { + "project_id": "PRJ-007", + "unit_id": "PRJ-007-U014", + "interest_level": "very_high", + "configuration": "4 BHK", + "budget_range": "5.54 - 8.3", + "timeline": "immediate", + "financing": "cash", + "notes": "Prefers higher floor" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00147", + "text": "Share competitor comparison sheet", + "due_at": "2025-01-20T00:00:00", + "status": "completed", + "assigned_to": "user_003" + } + ], + "qd_overview": { + "current_score": 53.2, + "score_type": "overall", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 4 + }, + "risk_flags": [ + "competitor_comparison_active" + ], + "metadata": { + "total_interactions": 5, + "total_visits": 0, + "total_opportunities": 1, + "source_confidence": 0.92, + "last_updated": "2025-10-15T00:00:00" + } + }, + { + "client_ref": "PER-0058", + "identity": { + "full_name": "Prasenjit Banerjee", + "email": "prasenjit.banerjee48@yahoo.com", + "phone": "+91-77039-51275", + "linkedin": "https://linkedin.com/in/prasenjit-banerjee-122", + "persona": [ + "family_decision_unit" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": "HH-0058", + "household_name": "Banerjee Family", + "size": 3, + "decision_maker_id": "PER-0058" + }, + "relationships": [ + { + "related_person_id": "PER-0058-CO", + "type": "parent", + "strength": 0.78 + } + ], + "active_opportunities": [ + { + "opportunity_id": "OPP-58-1", + "project_id": "PRJ-009", + "unit_id": "PRJ-009-U008", + "stage": "verbal_commitment", + "value_cr": 14.61, + "probability": 0.53, + "expected_close": "2026-07-13T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000405", + "channel": "phone_call", + "type": "price_discussion", + "happened_at": "2024-06-29T00:00:00", + "summary": "Price Discussion via phone_call regarding Siddha Sky Waterfront" + }, + { + "interaction_id": "INT-000404", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2024-06-28T00:00:00", + "summary": "Site Visit via site_visit regarding Siddha Sky Waterfront" + }, + { + "interaction_id": "INT-000403", + "channel": "whatsapp", + "type": "site_visit", + "happened_at": "2024-06-27T00:00:00", + "summary": "Site Visit via whatsapp regarding Siddha Sky Waterfront" + }, + { + "interaction_id": "INT-000402", + "channel": "phone_call", + "type": "initial_enquiry", + "happened_at": "2024-06-22T00:00:00", + "summary": "Initial Enquiry via phone_call regarding Siddha Sky Waterfront" + }, + { + "interaction_id": "INT-000401", + "channel": "phone_call", + "type": "follow_up", + "happened_at": "2024-05-23T00:00:00", + "summary": "Follow Up via phone_call regarding Siddha Sky Waterfront" + } + ], + "property_interests": [ + { + "project_id": "PRJ-009", + "unit_id": "PRJ-009-U008", + "interest_level": "low", + "configuration": "Duplex", + "budget_range": "11.69 - 17.53", + "timeline": "flexible", + "financing": "undecided", + "notes": "Comparing with competitor projects" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00148", + "text": "Confirm site visit for Saturday", + "due_at": "2024-04-10T00:00:00", + "status": "overdue", + "assigned_to": "user_003" + }, + { + "reminder_id": "REM-00149", + "text": "Share competitor comparison sheet", + "due_at": "2024-05-01T00:00:00", + "status": "completed", + "assigned_to": "user_003" + }, + { + "reminder_id": "REM-00150", + "text": "Share competitor comparison sheet", + "due_at": "2024-07-01T00:00:00", + "status": "completed", + "assigned_to": "user_003" + } + ], + "qd_overview": { + "current_score": 98, + "score_type": "overall", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 4 + }, + "risk_flags": [ + "price_sensitivity_high" + ], + "metadata": { + "total_interactions": 12, + "total_visits": 3, + "total_opportunities": 1, + "source_confidence": 0.93, + "last_updated": "2024-10-09T00:00:00" + } + }, + { + "client_ref": "PER-0058-CO", + "identity": { + "full_name": "Debjani Das", + "email": "debjani.das43@outlook.com", + "phone": "+91-99151-86304", + "linkedin": null, + "persona": [ + "co_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [ + { + "related_person_id": "PER-0058", + "type": "parent", + "strength": 0.78 + } + ], + "active_opportunities": [], + "recent_interactions": [], + "property_interests": [], + "tasks_and_reminders": [], + "qd_overview": { + "current_score": 44.5, + "score_type": "intent", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 4 + }, + "risk_flags": [ + "price_sensitivity_high" + ], + "metadata": { + "total_interactions": 0, + "total_visits": 0, + "total_opportunities": 0, + "source_confidence": 0.85, + "last_updated": "2026-04-18T00:00:00" + } + }, + { + "client_ref": "PER-0059", + "identity": { + "full_name": "Deb Singh", + "email": "deb.singh47@rediffmail.com", + "phone": "+91-74850-27326", + "linkedin": "https://linkedin.com/in/deb-singh-444", + "persona": [ + "family_decision_unit" + ] + }, + "account_links": { + "account_id": "ACC-0059", + "account_name": "Swiggy", + "account_type": "referral_partner" + }, + "household": { + "household_id": "HH-0059", + "household_name": "Singh Family", + "size": 3, + "decision_maker_id": "PER-0059" + }, + "relationships": [ + { + "related_person_id": "PER-0059-CO", + "type": "parent", + "strength": 0.77 + } + ], + "active_opportunities": [ + { + "opportunity_id": "OPP-59-1", + "project_id": "PRJ-004", + "unit_id": "PRJ-004-U019", + "stage": "verbal_commitment", + "value_cr": 22.28, + "probability": 0.23, + "expected_close": "2026-06-08T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000414", + "channel": "phone_call", + "type": "site_visit", + "happened_at": "2025-06-14T00:00:00", + "summary": "Site Visit via phone_call regarding Atri Surya Toron" + }, + { + "interaction_id": "INT-000413", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2025-06-10T00:00:00", + "summary": "Site Visit via site_visit regarding Atri Surya Toron" + }, + { + "interaction_id": "INT-000412", + "channel": "whatsapp", + "type": "site_visit", + "happened_at": "2025-05-31T00:00:00", + "summary": "Site Visit via whatsapp regarding Atri Surya Toron" + }, + { + "interaction_id": "INT-000411", + "channel": "phone_call", + "type": "family_discussion", + "happened_at": "2025-05-28T00:00:00", + "summary": "Family Discussion via phone_call regarding Atri Surya Toron" + }, + { + "interaction_id": "INT-000410", + "channel": "phone_call", + "type": "price_discussion", + "happened_at": "2025-05-18T00:00:00", + "summary": "Price Discussion via phone_call regarding Atri Surya Toron" + } + ], + "property_interests": [ + { + "project_id": "PRJ-004", + "unit_id": "PRJ-004-U019", + "interest_level": "low", + "configuration": "Penthouse", + "budget_range": "17.82 - 26.74", + "timeline": "3_months", + "financing": "home_loan", + "notes": "Prefers higher floor" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00152", + "text": "Send home loan documents checklist", + "due_at": "2025-04-02T00:00:00", + "status": "pending", + "assigned_to": "user_004" + }, + { + "reminder_id": "REM-00153", + "text": "Update on road widening approval status", + "due_at": "2025-04-14T00:00:00", + "status": "completed", + "assigned_to": "user_004" + }, + { + "reminder_id": "REM-00154", + "text": "Send revised payment plan", + "due_at": "2025-05-20T00:00:00", + "status": "completed", + "assigned_to": "user_004" + } + ], + "qd_overview": { + "current_score": 98, + "score_type": "financial_qualification", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 5 + }, + "risk_flags": [ + "decision_maker_not_met" + ], + "metadata": { + "total_interactions": 9, + "total_visits": 1, + "total_opportunities": 1, + "source_confidence": 0.77, + "last_updated": "2026-02-02T00:00:00" + } + }, + { + "client_ref": "PER-0059-CO", + "identity": { + "full_name": "Tanvi Verma", + "email": "tanvi.verma93@hotmail.com", + "phone": "+91-76425-83553", + "linkedin": null, + "persona": [ + "co_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [ + { + "related_person_id": "PER-0059", + "type": "parent", + "strength": 0.77 + } + ], + "active_opportunities": [], + "recent_interactions": [], + "property_interests": [], + "tasks_and_reminders": [], + "qd_overview": { + "current_score": 62.1, + "score_type": "overall", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 2 + }, + "risk_flags": [ + "competitor_comparison_active" + ], + "metadata": { + "total_interactions": 0, + "total_visits": 0, + "total_opportunities": 0, + "source_confidence": 0.85, + "last_updated": "2026-04-18T00:00:00" + } + }, + { + "client_ref": "PER-0060", + "identity": { + "full_name": "Prasenjit Kumar", + "email": "prasenjit.kumar70@gmail.com", + "phone": "+91-80874-37395", + "linkedin": "https://linkedin.com/in/prasenjit-kumar-857", + "persona": [ + "high_intent_buyer" + ] + }, + "account_links": { + "account_id": "ACC-0060", + "account_name": "Larsen & Toubro", + "account_type": "developer" + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-60-1", + "project_id": "PRJ-012", + "unit_id": "PRJ-012-U001", + "stage": "verbal_commitment", + "value_cr": 20.23, + "probability": 0.51, + "expected_close": "2026-10-01T00:00:00" + }, + { + "opportunity_id": "OPP-60-2", + "project_id": "PRJ-012", + "unit_id": "PRJ-012-U001", + "stage": "prospecting", + "value_cr": 20.23, + "probability": 0.31, + "expected_close": "2026-09-30T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000425", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2024-04-08T00:00:00", + "summary": "Site Visit via site_visit regarding Shriram Grand City" + }, + { + "interaction_id": "INT-000424", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2024-04-07T00:00:00", + "summary": "Site Visit via site_visit regarding Shriram Grand City" + }, + { + "interaction_id": "INT-000423", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2024-03-02T00:00:00", + "summary": "Site Visit via site_visit regarding Shriram Grand City" + }, + { + "interaction_id": "INT-000421", + "channel": "phone_call", + "type": "price_discussion", + "happened_at": "2024-02-27T00:00:00", + "summary": "Price Discussion via phone_call regarding Shriram Grand City" + }, + { + "interaction_id": "INT-000422", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2024-02-27T00:00:00", + "summary": "Site Visit via site_visit regarding Shriram Grand City" + } + ], + "property_interests": [ + { + "project_id": "PRJ-012", + "unit_id": "PRJ-012-U001", + "interest_level": "medium", + "configuration": "4 BHK", + "budget_range": "16.18 - 24.28", + "timeline": "3_months", + "financing": "undecided", + "notes": "Comparing with competitor projects" + }, + { + "project_id": "PRJ-012", + "unit_id": "PRJ-012-U001", + "interest_level": "high", + "configuration": "4 BHK", + "budget_range": "16.18 - 24.28", + "timeline": "flexible", + "financing": "undecided", + "notes": "Waiting for festive season offer" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00156", + "text": "Call back regarding east-facing unit availability", + "due_at": "2024-01-31T00:00:00", + "status": "overdue", + "assigned_to": "user_003" + }, + { + "reminder_id": "REM-00157", + "text": "Update on road widening approval status", + "due_at": "2024-03-01T00:00:00", + "status": "completed", + "assigned_to": "user_003" + }, + { + "reminder_id": "REM-00158", + "text": "Confirm site visit for Saturday", + "due_at": "2024-02-29T00:00:00", + "status": "completed", + "assigned_to": "user_003" + } + ], + "qd_overview": { + "current_score": 87.7, + "score_type": "overall", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 4 + }, + "risk_flags": [], + "metadata": { + "total_interactions": 11, + "total_visits": 6, + "total_opportunities": 2, + "source_confidence": 0.87, + "last_updated": "2025-07-13T00:00:00" + } + }, + { + "client_ref": "PER-0061", + "identity": { + "full_name": "Trisha Jain", + "email": "trisha.jain90@outlook.com", + "phone": "+91-77739-75700", + "linkedin": "https://linkedin.com/in/trisha-jain-382", + "persona": [ + "high_intent_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-61-1", + "project_id": "PRJ-013", + "unit_id": "PRJ-013-U005", + "stage": "site_visit", + "value_cr": 10.37, + "probability": 0.36, + "expected_close": "2026-09-29T00:00:00" + }, + { + "opportunity_id": "OPP-61-2", + "project_id": "PRJ-002", + "unit_id": "PRJ-002-U012", + "stage": "discovery", + "value_cr": 13.96, + "probability": 0.26, + "expected_close": "2026-06-24T00:00:00" + }, + { + "opportunity_id": "OPP-61-3", + "project_id": "PRJ-005", + "unit_id": "PRJ-005-U009", + "stage": "negotiation", + "value_cr": 2.39, + "probability": 0.23, + "expected_close": "2026-07-05T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000440", + "channel": "phone_call", + "type": "price_discussion", + "happened_at": "2024-04-27T00:00:00", + "summary": "Price Discussion via phone_call regarding Godrej Elevate" + }, + { + "interaction_id": "INT-000439", + "channel": "whatsapp", + "type": "initial_enquiry", + "happened_at": "2024-04-25T00:00:00", + "summary": "Initial Enquiry via whatsapp regarding Godrej Elevate" + }, + { + "interaction_id": "INT-000438", + "channel": "phone_call", + "type": "initial_enquiry", + "happened_at": "2024-04-22T00:00:00", + "summary": "Initial Enquiry via phone_call regarding Godrej Elevate" + }, + { + "interaction_id": "INT-000437", + "channel": "whatsapp", + "type": "follow_up", + "happened_at": "2024-04-20T00:00:00", + "summary": "Follow Up via whatsapp regarding Godrej Elevate" + }, + { + "interaction_id": "INT-000436", + "channel": "whatsapp", + "type": "negotiation", + "happened_at": "2024-04-17T00:00:00", + "summary": "Negotiation via whatsapp regarding Godrej Elevate" + } + ], + "property_interests": [ + { + "project_id": "PRJ-013", + "unit_id": "PRJ-013-U005", + "interest_level": "very_high", + "configuration": "Villa", + "budget_range": "8.3 - 12.44", + "timeline": "3_months", + "financing": "home_loan", + "notes": "Prefers higher floor" + }, + { + "project_id": "PRJ-002", + "unit_id": "PRJ-002-U012", + "interest_level": "low", + "configuration": "Villa", + "budget_range": "11.17 - 16.75", + "timeline": "6_months", + "financing": "undecided", + "notes": "Wants ready to move in" + }, + { + "project_id": "PRJ-005", + "unit_id": "PRJ-005-U009", + "interest_level": "medium", + "configuration": "Villa", + "budget_range": "1.91 - 2.87", + "timeline": "3_months", + "financing": "cash", + "notes": "Comparing with competitor projects" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00162", + "text": "Follow up on Godrej Elevate pricing discussion", + "due_at": "2024-02-14T00:00:00", + "status": "completed", + "assigned_to": "user_004" + }, + { + "reminder_id": "REM-00163", + "text": "Schedule family meeting for final decision", + "due_at": "2024-02-20T00:00:00", + "status": "overdue", + "assigned_to": "user_004" + }, + { + "reminder_id": "REM-00164", + "text": "Confirm site visit for Saturday", + "due_at": "2024-02-28T00:00:00", + "status": "completed", + "assigned_to": "user_004" + } + ], + "qd_overview": { + "current_score": 98, + "score_type": "engagement", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 3 + }, + "risk_flags": [], + "metadata": { + "total_interactions": 15, + "total_visits": 1, + "total_opportunities": 3, + "source_confidence": 0.94, + "last_updated": "2024-09-20T00:00:00" + } + }, + { + "client_ref": "PER-0062", + "identity": { + "full_name": "Parth Patel", + "email": "parth.patel39@gmail.com", + "phone": "+91-81772-20417", + "linkedin": "https://linkedin.com/in/parth-patel-804", + "persona": [ + "family_decision_unit" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": "HH-0062", + "household_name": "Patel Family", + "size": 5, + "decision_maker_id": "PER-0062" + }, + "relationships": [ + { + "related_person_id": "PER-0062-CO", + "type": "spouse", + "strength": 0.82 + } + ], + "active_opportunities": [ + { + "opportunity_id": "OPP-62-1", + "project_id": "PRJ-009", + "unit_id": "PRJ-009-U003", + "stage": "discovery", + "value_cr": 6.82, + "probability": 0.48, + "expected_close": "2026-05-28T00:00:00" + }, + { + "opportunity_id": "OPP-62-2", + "project_id": "PRJ-013", + "unit_id": "PRJ-013-U015", + "stage": "prospecting", + "value_cr": 26.57, + "probability": 0.26, + "expected_close": "2026-09-07T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000447", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2025-01-01T00:00:00", + "summary": "Site Visit via site_visit regarding Siddha Sky Waterfront" + }, + { + "interaction_id": "INT-000446", + "channel": "whatsapp", + "type": "price_discussion", + "happened_at": "2024-12-27T00:00:00", + "summary": "Price Discussion via whatsapp regarding Siddha Sky Waterfront" + }, + { + "interaction_id": "INT-000445", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2024-12-02T00:00:00", + "summary": "Site Visit via site_visit regarding Siddha Sky Waterfront" + }, + { + "interaction_id": "INT-000444", + "channel": "whatsapp", + "type": "family_discussion", + "happened_at": "2024-11-24T00:00:00", + "summary": "Family Discussion via whatsapp regarding Siddha Sky Waterfront" + }, + { + "interaction_id": "INT-000443", + "channel": "whatsapp", + "type": "initial_enquiry", + "happened_at": "2024-11-22T00:00:00", + "summary": "Initial Enquiry via whatsapp regarding Siddha Sky Waterfront" + } + ], + "property_interests": [ + { + "project_id": "PRJ-009", + "unit_id": "PRJ-009-U003", + "interest_level": "very_high", + "configuration": "Villa", + "budget_range": "5.46 - 8.18", + "timeline": "immediate", + "financing": "undecided", + "notes": "Comparing with competitor projects" + }, + { + "project_id": "PRJ-013", + "unit_id": "PRJ-013-U015", + "interest_level": "high", + "configuration": "4 BHK", + "budget_range": "21.26 - 31.88", + "timeline": "6_months", + "financing": "undecided", + "notes": "Needs proximity to school" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00171", + "text": "Confirm site visit for Saturday", + "due_at": "2024-10-19T00:00:00", + "status": "completed", + "assigned_to": "user_002" + }, + { + "reminder_id": "REM-00172", + "text": "Update on road widening approval status", + "due_at": "2024-10-28T00:00:00", + "status": "overdue", + "assigned_to": "user_002" + } + ], + "qd_overview": { + "current_score": 98, + "score_type": "intent", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 5 + }, + "risk_flags": [ + "financing_not_finalized", + "timeline_unclear" + ], + "metadata": { + "total_interactions": 7, + "total_visits": 2, + "total_opportunities": 2, + "source_confidence": 0.93, + "last_updated": "2025-05-29T00:00:00" + } + }, + { + "client_ref": "PER-0062-CO", + "identity": { + "full_name": "Moumita Reddy", + "email": "moumita.reddy70@yahoo.com", + "phone": "+91-75366-35330", + "linkedin": null, + "persona": [ + "co_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [ + { + "related_person_id": "PER-0062", + "type": "spouse", + "strength": 0.82 + } + ], + "active_opportunities": [], + "recent_interactions": [], + "property_interests": [], + "tasks_and_reminders": [], + "qd_overview": { + "current_score": 51.2, + "score_type": "overall", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 5 + }, + "risk_flags": [ + "decision_maker_not_met" + ], + "metadata": { + "total_interactions": 0, + "total_visits": 0, + "total_opportunities": 0, + "source_confidence": 0.85, + "last_updated": "2026-04-18T00:00:00" + } + }, + { + "client_ref": "PER-0063", + "identity": { + "full_name": "Deepak Das", + "email": "deepak.das69@rediffmail.com", + "phone": "+91-72963-75622", + "linkedin": "https://linkedin.com/in/deepak-das-215", + "persona": [ + "nri_buyer" + ] + }, + "account_links": { + "account_id": "ACC-0063", + "account_name": "Swiggy", + "account_type": "developer" + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-63-1", + "project_id": "PRJ-010", + "unit_id": "PRJ-010-U009", + "stage": "closed_won", + "value_cr": 9.32, + "probability": 0.57, + "expected_close": "2026-05-29T00:00:00" + }, + { + "opportunity_id": "OPP-63-2", + "project_id": "PRJ-003", + "unit_id": "PRJ-003-U001", + "stage": "closed_won", + "value_cr": 69.0, + "probability": 0.36, + "expected_close": "2026-09-09T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000454", + "channel": "walk_in", + "type": "price_discussion", + "happened_at": "2026-03-05T00:00:00", + "summary": "Price Discussion via walk_in regarding Atri Aqua" + }, + { + "interaction_id": "INT-000455", + "channel": "email", + "type": "negotiation", + "happened_at": "2026-03-05T00:00:00", + "summary": "Negotiation via email regarding Atri Aqua" + }, + { + "interaction_id": "INT-000453", + "channel": "email", + "type": "follow_up", + "happened_at": "2026-03-03T00:00:00", + "summary": "Follow Up via email regarding Atri Aqua" + }, + { + "interaction_id": "INT-000452", + "channel": "referral", + "type": "initial_enquiry", + "happened_at": "2026-02-14T00:00:00", + "summary": "Initial Enquiry via referral regarding Atri Aqua" + }, + { + "interaction_id": "INT-000451", + "channel": "walk_in", + "type": "initial_enquiry", + "happened_at": "2026-02-09T00:00:00", + "summary": "Initial Enquiry via walk_in regarding Atri Aqua" + } + ], + "property_interests": [ + { + "project_id": "PRJ-010", + "unit_id": "PRJ-010-U009", + "interest_level": "high", + "configuration": "Duplex", + "budget_range": "7.46 - 11.18", + "timeline": "3_months", + "financing": "home_loan", + "notes": "Needs proximity to school" + }, + { + "project_id": "PRJ-003", + "unit_id": "PRJ-003-U001", + "interest_level": "medium", + "configuration": "Duplex", + "budget_range": "55.2 - 82.8", + "timeline": "immediate", + "financing": "home_loan", + "notes": "Needs proximity to school" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00173", + "text": "Update on road widening approval status", + "due_at": "2026-01-30T00:00:00", + "status": "overdue", + "assigned_to": "user_002" + }, + { + "reminder_id": "REM-00174", + "text": "Follow up on Atri Aqua pricing discussion", + "due_at": "2026-01-30T00:00:00", + "status": "completed", + "assigned_to": "user_002" + }, + { + "reminder_id": "REM-00175", + "text": "Call back regarding east-facing unit availability", + "due_at": "2026-02-15T00:00:00", + "status": "pending", + "assigned_to": "user_002" + } + ], + "qd_overview": { + "current_score": 98, + "score_type": "engagement", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 3 + }, + "risk_flags": [ + "price_sensitivity_high" + ], + "metadata": { + "total_interactions": 8, + "total_visits": 0, + "total_opportunities": 2, + "source_confidence": 0.79, + "last_updated": "2025-12-13T00:00:00" + } + }, + { + "client_ref": "PER-0064", + "identity": { + "full_name": "Ananya Kumar", + "email": "ananya.kumar73@rediffmail.com", + "phone": "+91-87809-10753", + "linkedin": "https://linkedin.com/in/ananya-kumar-722", + "persona": [ + "high_intent_buyer" + ] + }, + "account_links": { + "account_id": "ACC-0064", + "account_name": "ITC Limited", + "account_type": "developer" + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-64-1", + "project_id": "PRJ-012", + "unit_id": "PRJ-012-U007", + "stage": "verbal_commitment", + "value_cr": 2.7, + "probability": 0.89, + "expected_close": "2026-06-10T00:00:00" + }, + { + "opportunity_id": "OPP-64-2", + "project_id": "PRJ-013", + "unit_id": "PRJ-013-U008", + "stage": "discovery", + "value_cr": 35.4, + "probability": 0.35, + "expected_close": "2026-06-21T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000469", + "channel": "phone_call", + "type": "family_discussion", + "happened_at": "2024-11-23T00:00:00", + "summary": "Family Discussion via phone_call regarding Shriram Grand City" + }, + { + "interaction_id": "INT-000467", + "channel": "whatsapp", + "type": "site_visit", + "happened_at": "2024-11-22T00:00:00", + "summary": "Site Visit via whatsapp regarding Shriram Grand City" + }, + { + "interaction_id": "INT-000468", + "channel": "whatsapp", + "type": "family_discussion", + "happened_at": "2024-11-22T00:00:00", + "summary": "Family Discussion via whatsapp regarding Shriram Grand City" + }, + { + "interaction_id": "INT-000466", + "channel": "phone_call", + "type": "follow_up", + "happened_at": "2024-11-17T00:00:00", + "summary": "Follow Up via phone_call regarding Shriram Grand City" + }, + { + "interaction_id": "INT-000465", + "channel": "whatsapp", + "type": "document_sharing", + "happened_at": "2024-11-15T00:00:00", + "summary": "Document Sharing via whatsapp regarding Shriram Grand City" + } + ], + "property_interests": [ + { + "project_id": "PRJ-012", + "unit_id": "PRJ-012-U007", + "interest_level": "high", + "configuration": "Duplex", + "budget_range": "2.16 - 3.24", + "timeline": "6_months", + "financing": "undecided", + "notes": "Looking for east facing unit" + }, + { + "project_id": "PRJ-013", + "unit_id": "PRJ-013-U008", + "interest_level": "high", + "configuration": "5 BHK", + "budget_range": "28.32 - 42.48", + "timeline": "6_months", + "financing": "undecided", + "notes": "Comparing with competitor projects" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00176", + "text": "Send home loan documents checklist", + "due_at": "2024-09-11T00:00:00", + "status": "completed", + "assigned_to": "user_002" + }, + { + "reminder_id": "REM-00177", + "text": "Send home loan documents checklist", + "due_at": "2024-09-18T00:00:00", + "status": "overdue", + "assigned_to": "user_002" + }, + { + "reminder_id": "REM-00178", + "text": "Follow up on Shriram Grand City pricing discussion", + "due_at": "2024-09-28T00:00:00", + "status": "completed", + "assigned_to": "user_002" + } + ], + "qd_overview": { + "current_score": 98, + "score_type": "financial_qualification", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 3 + }, + "risk_flags": [ + "competitor_comparison_active" + ], + "metadata": { + "total_interactions": 14, + "total_visits": 1, + "total_opportunities": 2, + "source_confidence": 0.95, + "last_updated": "2024-08-10T00:00:00" + } + }, + { + "client_ref": "PER-0065", + "identity": { + "full_name": "Parth Mukherjee", + "email": "parth.mukherjee23@hotmail.com", + "phone": "+91-93911-92441", + "linkedin": "https://linkedin.com/in/parth-mukherjee-641", + "persona": [ + "slow_burn_investor" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-65-1", + "project_id": "PRJ-012", + "unit_id": "PRJ-012-U004", + "stage": "proposal", + "value_cr": 10.9, + "probability": 0.1, + "expected_close": "2026-05-24T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000478", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2026-03-12T00:00:00", + "summary": "Site Visit via site_visit regarding Shriram Grand City" + }, + { + "interaction_id": "INT-000477", + "channel": "phone_call", + "type": "site_visit", + "happened_at": "2026-03-07T00:00:00", + "summary": "Site Visit via phone_call regarding Shriram Grand City" + }, + { + "interaction_id": "INT-000476", + "channel": "whatsapp", + "type": "family_discussion", + "happened_at": "2026-02-21T00:00:00", + "summary": "Family Discussion via whatsapp regarding Shriram Grand City" + }, + { + "interaction_id": "INT-000475", + "channel": "whatsapp", + "type": "negotiation", + "happened_at": "2026-01-29T00:00:00", + "summary": "Negotiation via whatsapp regarding Shriram Grand City" + }, + { + "interaction_id": "INT-000473", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2026-01-19T00:00:00", + "summary": "Site Visit via site_visit regarding Shriram Grand City" + } + ], + "property_interests": [ + { + "project_id": "PRJ-012", + "unit_id": "PRJ-012-U004", + "interest_level": "low", + "configuration": "Villa", + "budget_range": "8.72 - 13.08", + "timeline": "3_months", + "financing": "undecided", + "notes": "Wants ready to move in" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00183", + "text": "Confirm site visit for Saturday", + "due_at": "2026-01-23T00:00:00", + "status": "completed", + "assigned_to": "user_005" + }, + { + "reminder_id": "REM-00184", + "text": "Send revised payment plan", + "due_at": "2026-02-25T00:00:00", + "status": "completed", + "assigned_to": "user_005" + } + ], + "qd_overview": { + "current_score": 92.2, + "score_type": "financial_qualification", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 5 + }, + "risk_flags": [], + "metadata": { + "total_interactions": 9, + "total_visits": 3, + "total_opportunities": 1, + "source_confidence": 0.98, + "last_updated": "2026-01-11T00:00:00" + } + }, + { + "client_ref": "PER-0066", + "identity": { + "full_name": "Asha Roy", + "email": "asha.roy11@yahoo.com", + "phone": "+91-92610-46913", + "linkedin": "https://linkedin.com/in/asha-roy-360", + "persona": [ + "high_intent_buyer" + ] + }, + "account_links": { + "account_id": "ACC-0066", + "account_name": "IBM India", + "account_type": "corporate" + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-66-1", + "project_id": "PRJ-003", + "unit_id": "PRJ-003-U005", + "stage": "prospecting", + "value_cr": 23.58, + "probability": 0.39, + "expected_close": "2026-08-22T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000481", + "channel": "email", + "type": "family_discussion", + "happened_at": "2025-10-15T00:00:00", + "summary": "Family Discussion via email regarding Atri Aqua" + }, + { + "interaction_id": "INT-000480", + "channel": "whatsapp", + "type": "negotiation", + "happened_at": "2025-09-05T00:00:00", + "summary": "Negotiation via whatsapp regarding Atri Aqua" + }, + { + "interaction_id": "INT-000479", + "channel": "web_enquiry", + "type": "initial_enquiry", + "happened_at": "2025-08-28T00:00:00", + "summary": "Initial Enquiry via web_enquiry regarding Atri Aqua" + } + ], + "property_interests": [ + { + "project_id": "PRJ-003", + "unit_id": "PRJ-003-U005", + "interest_level": "medium", + "configuration": "Penthouse", + "budget_range": "18.86 - 28.3", + "timeline": "flexible", + "financing": "home_loan", + "notes": "Comparing with competitor projects" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00185", + "text": "Send home loan documents checklist", + "due_at": "2025-10-20T00:00:00", + "status": "pending", + "assigned_to": "user_003" + } + ], + "qd_overview": { + "current_score": 98, + "score_type": "financial_qualification", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 2 + }, + "risk_flags": [ + "decision_maker_not_met" + ], + "metadata": { + "total_interactions": 3, + "total_visits": 0, + "total_opportunities": 1, + "source_confidence": 0.93, + "last_updated": "2024-11-03T00:00:00" + } + }, + { + "client_ref": "PER-0067", + "identity": { + "full_name": "Sonal Mukherjee", + "email": "sonal.mukherjee44@rediffmail.com", + "phone": "+91-72844-75149", + "linkedin": "https://linkedin.com/in/sonal-mukherjee-998", + "persona": [ + "high_intent_buyer" + ] + }, + "account_links": { + "account_id": "ACC-0067", + "account_name": "Accenture India", + "account_type": "individual_business" + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-67-1", + "project_id": "PRJ-009", + "unit_id": "PRJ-009-U010", + "stage": "prospecting", + "value_cr": 14.67, + "probability": 0.59, + "expected_close": "2026-08-05T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000493", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2025-06-25T00:00:00", + "summary": "Site Visit via site_visit regarding Siddha Sky Waterfront" + }, + { + "interaction_id": "INT-000492", + "channel": "whatsapp", + "type": "document_sharing", + "happened_at": "2025-06-14T00:00:00", + "summary": "Document Sharing via whatsapp regarding Siddha Sky Waterfront" + }, + { + "interaction_id": "INT-000491", + "channel": "phone_call", + "type": "document_sharing", + "happened_at": "2025-06-11T00:00:00", + "summary": "Document Sharing via phone_call regarding Siddha Sky Waterfront" + }, + { + "interaction_id": "INT-000490", + "channel": "phone_call", + "type": "negotiation", + "happened_at": "2025-06-09T00:00:00", + "summary": "Negotiation via phone_call regarding Siddha Sky Waterfront" + }, + { + "interaction_id": "INT-000489", + "channel": "whatsapp", + "type": "negotiation", + "happened_at": "2025-05-26T00:00:00", + "summary": "Negotiation via whatsapp regarding Siddha Sky Waterfront" + } + ], + "property_interests": [ + { + "project_id": "PRJ-009", + "unit_id": "PRJ-009-U010", + "interest_level": "medium", + "configuration": "Penthouse", + "budget_range": "11.74 - 17.6", + "timeline": "6_months", + "financing": "home_loan", + "notes": "Needs proximity to school" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00186", + "text": "Send revised payment plan", + "due_at": "2025-04-10T00:00:00", + "status": "completed", + "assigned_to": "user_002" + }, + { + "reminder_id": "REM-00187", + "text": "Send home loan documents checklist", + "due_at": "2025-04-14T00:00:00", + "status": "pending", + "assigned_to": "user_002" + }, + { + "reminder_id": "REM-00188", + "text": "Update on road widening approval status", + "due_at": "2025-05-08T00:00:00", + "status": "overdue", + "assigned_to": "user_002" + } + ], + "qd_overview": { + "current_score": 98, + "score_type": "urgency", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 5 + }, + "risk_flags": [ + "competitor_comparison_active" + ], + "metadata": { + "total_interactions": 12, + "total_visits": 1, + "total_opportunities": 1, + "source_confidence": 0.8, + "last_updated": "2024-11-05T00:00:00" + } + }, + { + "client_ref": "PER-0068", + "identity": { + "full_name": "Shreya Sen", + "email": "shreya.sen44@yahoo.com", + "phone": "+91-75160-45866", + "linkedin": "https://linkedin.com/in/shreya-sen-217", + "persona": [ + "slow_burn_investor" + ] + }, + "account_links": { + "account_id": "ACC-0068", + "account_name": "Reliance Industries", + "account_type": "referral_partner" + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-68-1", + "project_id": "PRJ-002", + "unit_id": "PRJ-002-U017", + "stage": "closed_lost", + "value_cr": 1.95, + "probability": 0.18, + "expected_close": "2026-08-05T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000501", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2025-01-03T00:00:00", + "summary": "Site Visit via site_visit regarding Sugam Prakriti" + }, + { + "interaction_id": "INT-000500", + "channel": "phone_call", + "type": "follow_up", + "happened_at": "2025-01-02T00:00:00", + "summary": "Follow Up via phone_call regarding Sugam Prakriti" + }, + { + "interaction_id": "INT-000498", + "channel": "phone_call", + "type": "price_discussion", + "happened_at": "2024-12-10T00:00:00", + "summary": "Price Discussion via phone_call regarding Sugam Prakriti" + }, + { + "interaction_id": "INT-000499", + "channel": "whatsapp", + "type": "document_sharing", + "happened_at": "2024-12-10T00:00:00", + "summary": "Document Sharing via whatsapp regarding Sugam Prakriti" + }, + { + "interaction_id": "INT-000497", + "channel": "whatsapp", + "type": "initial_enquiry", + "happened_at": "2024-12-09T00:00:00", + "summary": "Initial Enquiry via whatsapp regarding Sugam Prakriti" + } + ], + "property_interests": [ + { + "project_id": "PRJ-002", + "unit_id": "PRJ-002-U017", + "interest_level": "very_high", + "configuration": "4 BHK", + "budget_range": "1.56 - 2.34", + "timeline": "flexible", + "financing": "home_loan", + "notes": "Needs proximity to school" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00190", + "text": "Share competitor comparison sheet", + "due_at": "2024-11-05T00:00:00", + "status": "overdue", + "assigned_to": "user_005" + }, + { + "reminder_id": "REM-00191", + "text": "Send revised payment plan", + "due_at": "2024-11-12T00:00:00", + "status": "pending", + "assigned_to": "user_005" + }, + { + "reminder_id": "REM-00192", + "text": "Update on road widening approval status", + "due_at": "2024-12-13T00:00:00", + "status": "pending", + "assigned_to": "user_005" + } + ], + "qd_overview": { + "current_score": 91.7, + "score_type": "overall", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 4 + }, + "risk_flags": [ + "decision_maker_not_met" + ], + "metadata": { + "total_interactions": 8, + "total_visits": 1, + "total_opportunities": 1, + "source_confidence": 0.75, + "last_updated": "2025-07-27T00:00:00" + } + }, + { + "client_ref": "PER-0069", + "identity": { + "full_name": "Trisha Verma", + "email": "trisha.verma33@outlook.com", + "phone": "+91-95846-52567", + "linkedin": "https://linkedin.com/in/trisha-verma-564", + "persona": [ + "high_intent_buyer" + ] + }, + "account_links": { + "account_id": "ACC-0069", + "account_name": "ITC Limited", + "account_type": "developer" + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-69-1", + "project_id": "PRJ-004", + "unit_id": "PRJ-004-U004", + "stage": "discovery", + "value_cr": 22.05, + "probability": 0.73, + "expected_close": "2026-10-11T00:00:00" + }, + { + "opportunity_id": "OPP-69-2", + "project_id": "PRJ-002", + "unit_id": "PRJ-002-U017", + "stage": "closed_lost", + "value_cr": 1.95, + "probability": 0.25, + "expected_close": "2026-08-29T00:00:00" + }, + { + "opportunity_id": "OPP-69-3", + "project_id": "PRJ-011", + "unit_id": "PRJ-011-U014", + "stage": "prospecting", + "value_cr": 10.7, + "probability": 0.18, + "expected_close": "2026-06-22T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000510", + "channel": "phone_call", + "type": "family_discussion", + "happened_at": "2024-07-28T00:00:00", + "summary": "Family Discussion via phone_call regarding Sugam Prakriti" + }, + { + "interaction_id": "INT-000509", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2024-07-23T00:00:00", + "summary": "Site Visit via site_visit regarding Sugam Prakriti" + }, + { + "interaction_id": "INT-000508", + "channel": "phone_call", + "type": "price_discussion", + "happened_at": "2024-07-13T00:00:00", + "summary": "Price Discussion via phone_call regarding Sugam Prakriti" + }, + { + "interaction_id": "INT-000507", + "channel": "whatsapp", + "type": "site_visit", + "happened_at": "2024-06-24T00:00:00", + "summary": "Site Visit via whatsapp regarding Sugam Prakriti" + }, + { + "interaction_id": "INT-000506", + "channel": "phone_call", + "type": "family_discussion", + "happened_at": "2024-06-19T00:00:00", + "summary": "Family Discussion via phone_call regarding Sugam Prakriti" + } + ], + "property_interests": [ + { + "project_id": "PRJ-004", + "unit_id": "PRJ-004-U004", + "interest_level": "low", + "configuration": "3 BHK", + "budget_range": "17.64 - 26.46", + "timeline": "flexible", + "financing": "combined", + "notes": "Comparing with competitor projects" + }, + { + "project_id": "PRJ-002", + "unit_id": "PRJ-002-U017", + "interest_level": "low", + "configuration": "4 BHK", + "budget_range": "1.56 - 2.34", + "timeline": "flexible", + "financing": "combined", + "notes": "Wants ready to move in" + }, + { + "project_id": "PRJ-011", + "unit_id": "PRJ-011-U014", + "interest_level": "low", + "configuration": "5 BHK", + "budget_range": "8.56 - 12.84", + "timeline": "3_months", + "financing": "home_loan", + "notes": "Wants ready to move in" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00195", + "text": "Schedule family meeting for final decision", + "due_at": "2024-05-30T00:00:00", + "status": "completed", + "assigned_to": "user_003" + }, + { + "reminder_id": "REM-00196", + "text": "Send revised payment plan", + "due_at": "2024-06-19T00:00:00", + "status": "pending", + "assigned_to": "user_003" + }, + { + "reminder_id": "REM-00197", + "text": "Confirm site visit for Saturday", + "due_at": "2024-07-30T00:00:00", + "status": "completed", + "assigned_to": "user_003" + } + ], + "qd_overview": { + "current_score": 91.6, + "score_type": "financial_qualification", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 3 + }, + "risk_flags": [ + "competitor_comparison_active" + ], + "metadata": { + "total_interactions": 9, + "total_visits": 1, + "total_opportunities": 3, + "source_confidence": 0.86, + "last_updated": "2025-05-01T00:00:00" + } + }, + { + "client_ref": "PER-0070", + "identity": { + "full_name": "Divya Bose", + "email": "divya.bose67@yahoo.com", + "phone": "+91-76739-99327", + "linkedin": "https://linkedin.com/in/divya-bose-998", + "persona": [ + "family_decision_unit" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": "HH-0070", + "household_name": "Bose Family", + "size": 4, + "decision_maker_id": "PER-0070" + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-70-1", + "project_id": "PRJ-009", + "unit_id": "PRJ-009-U011", + "stage": "discovery", + "value_cr": 2.2, + "probability": 0.83, + "expected_close": "2026-05-25T00:00:00" + }, + { + "opportunity_id": "OPP-70-2", + "project_id": "PRJ-007", + "unit_id": "PRJ-007-U012", + "stage": "closed_won", + "value_cr": 13.22, + "probability": 0.47, + "expected_close": "2026-07-11T00:00:00" + }, + { + "opportunity_id": "OPP-70-3", + "project_id": "PRJ-009", + "unit_id": "PRJ-009-U012", + "stage": "verbal_commitment", + "value_cr": 52.97, + "probability": 0.81, + "expected_close": "2026-06-26T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000516", + "channel": "walk_in", + "type": "follow_up", + "happened_at": "2025-02-22T00:00:00", + "summary": "Follow Up via walk_in regarding Siddha Sky Waterfront" + }, + { + "interaction_id": "INT-000515", + "channel": "referral", + "type": "negotiation", + "happened_at": "2025-02-11T00:00:00", + "summary": "Negotiation via referral regarding Siddha Sky Waterfront" + }, + { + "interaction_id": "INT-000514", + "channel": "referral", + "type": "document_sharing", + "happened_at": "2025-02-05T00:00:00", + "summary": "Document Sharing via referral regarding Siddha Sky Waterfront" + }, + { + "interaction_id": "INT-000513", + "channel": "whatsapp", + "type": "follow_up", + "happened_at": "2025-01-26T00:00:00", + "summary": "Follow Up via whatsapp regarding Siddha Sky Waterfront" + }, + { + "interaction_id": "INT-000512", + "channel": "phone_call", + "type": "family_discussion", + "happened_at": "2025-01-10T00:00:00", + "summary": "Family Discussion via phone_call regarding Siddha Sky Waterfront" + } + ], + "property_interests": [ + { + "project_id": "PRJ-009", + "unit_id": "PRJ-009-U011", + "interest_level": "very_high", + "configuration": "Duplex", + "budget_range": "1.76 - 2.64", + "timeline": "flexible", + "financing": "combined", + "notes": "Waiting for festive season offer" + }, + { + "project_id": "PRJ-007", + "unit_id": "PRJ-007-U012", + "interest_level": "medium", + "configuration": "4 BHK", + "budget_range": "10.58 - 15.86", + "timeline": "flexible", + "financing": "home_loan", + "notes": "Needs proximity to school" + }, + { + "project_id": "PRJ-009", + "unit_id": "PRJ-009-U012", + "interest_level": "medium", + "configuration": "5 BHK", + "budget_range": "42.38 - 63.56", + "timeline": "3_months", + "financing": "cash", + "notes": "Looking for east facing unit" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00199", + "text": "Update on road widening approval status", + "due_at": "2025-01-30T00:00:00", + "status": "overdue", + "assigned_to": "user_002" + }, + { + "reminder_id": "REM-00200", + "text": "Send revised payment plan", + "due_at": "2025-02-15T00:00:00", + "status": "overdue", + "assigned_to": "user_002" + } + ], + "qd_overview": { + "current_score": 89.2, + "score_type": "urgency", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 5 + }, + "risk_flags": [ + "price_sensitivity_high" + ], + "metadata": { + "total_interactions": 6, + "total_visits": 0, + "total_opportunities": 3, + "source_confidence": 0.82, + "last_updated": "2026-03-24T00:00:00" + } + }, + { + "client_ref": "PER-0071", + "identity": { + "full_name": "Abhishek Singh", + "email": "abhishek.singh27@gmail.com", + "phone": "+91-74496-94180", + "linkedin": "https://linkedin.com/in/abhishek-singh-925", + "persona": [ + "family_decision_unit" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": "HH-0071", + "household_name": "Singh Family", + "size": 5, + "decision_maker_id": "PER-0071" + }, + "relationships": [ + { + "related_person_id": "PER-0071-CO", + "type": "business_partner", + "strength": 0.88 + } + ], + "active_opportunities": [ + { + "opportunity_id": "OPP-71-1", + "project_id": "PRJ-009", + "unit_id": "PRJ-009-U010", + "stage": "closed_lost", + "value_cr": 14.67, + "probability": 0.54, + "expected_close": "2026-09-28T00:00:00" + }, + { + "opportunity_id": "OPP-71-2", + "project_id": "PRJ-012", + "unit_id": "PRJ-012-U007", + "stage": "discovery", + "value_cr": 2.7, + "probability": 0.68, + "expected_close": "2026-10-03T00:00:00" + }, + { + "opportunity_id": "OPP-71-3", + "project_id": "PRJ-013", + "unit_id": "PRJ-013-U001", + "stage": "closed_lost", + "value_cr": 47.88, + "probability": 0.49, + "expected_close": "2026-09-15T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000524", + "channel": "phone_call", + "type": "follow_up", + "happened_at": "2026-04-04T00:00:00", + "summary": "Follow Up via phone_call regarding Godrej Elevate" + }, + { + "interaction_id": "INT-000523", + "channel": "web_enquiry", + "type": "initial_enquiry", + "happened_at": "2026-03-18T00:00:00", + "summary": "Initial Enquiry via web_enquiry regarding Godrej Elevate" + }, + { + "interaction_id": "INT-000522", + "channel": "walk_in", + "type": "follow_up", + "happened_at": "2026-03-17T00:00:00", + "summary": "Follow Up via walk_in regarding Godrej Elevate" + }, + { + "interaction_id": "INT-000521", + "channel": "referral", + "type": "initial_enquiry", + "happened_at": "2026-03-05T00:00:00", + "summary": "Initial Enquiry via referral regarding Godrej Elevate" + }, + { + "interaction_id": "INT-000520", + "channel": "whatsapp", + "type": "document_sharing", + "happened_at": "2026-02-20T00:00:00", + "summary": "Document Sharing via whatsapp regarding Godrej Elevate" + } + ], + "property_interests": [ + { + "project_id": "PRJ-009", + "unit_id": "PRJ-009-U010", + "interest_level": "low", + "configuration": "Penthouse", + "budget_range": "11.74 - 17.6", + "timeline": "3_months", + "financing": "undecided", + "notes": "Waiting for festive season offer" + }, + { + "project_id": "PRJ-012", + "unit_id": "PRJ-012-U007", + "interest_level": "high", + "configuration": "Duplex", + "budget_range": "2.16 - 3.24", + "timeline": "immediate", + "financing": "combined", + "notes": "Comparing with competitor projects" + }, + { + "project_id": "PRJ-013", + "unit_id": "PRJ-013-U001", + "interest_level": "high", + "configuration": "3 BHK", + "budget_range": "38.3 - 57.46", + "timeline": "flexible", + "financing": "combined", + "notes": "Prefers higher floor" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00201", + "text": "Send home loan documents checklist", + "due_at": "2026-02-17T00:00:00", + "status": "pending", + "assigned_to": "user_003" + }, + { + "reminder_id": "REM-00202", + "text": "Schedule family meeting for final decision", + "due_at": "2026-03-19T00:00:00", + "status": "completed", + "assigned_to": "user_003" + }, + { + "reminder_id": "REM-00203", + "text": "Share competitor comparison sheet", + "due_at": "2026-03-22T00:00:00", + "status": "overdue", + "assigned_to": "user_003" + } + ], + "qd_overview": { + "current_score": 98, + "score_type": "urgency", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 5 + }, + "risk_flags": [ + "financing_not_finalized", + "timeline_unclear" + ], + "metadata": { + "total_interactions": 8, + "total_visits": 0, + "total_opportunities": 3, + "source_confidence": 0.85, + "last_updated": "2026-03-18T00:00:00" + } + }, + { + "client_ref": "PER-0071-CO", + "identity": { + "full_name": "Kavita Pillai", + "email": "kavita.pillai67@rediffmail.com", + "phone": "+91-81642-39588", + "linkedin": null, + "persona": [ + "co_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [ + { + "related_person_id": "PER-0071", + "type": "business_partner", + "strength": 0.88 + } + ], + "active_opportunities": [], + "recent_interactions": [], + "property_interests": [], + "tasks_and_reminders": [], + "qd_overview": { + "current_score": 71.4, + "score_type": "urgency", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 5 + }, + "risk_flags": [ + "competitor_comparison_active" + ], + "metadata": { + "total_interactions": 0, + "total_visits": 0, + "total_opportunities": 0, + "source_confidence": 0.85, + "last_updated": "2026-04-18T00:00:00" + } + }, + { + "client_ref": "PER-0072", + "identity": { + "full_name": "Parth Gupta", + "email": "parth.gupta82@outlook.com", + "phone": "+91-72012-92483", + "linkedin": "https://linkedin.com/in/parth-gupta-584", + "persona": [ + "slow_burn_investor" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": "HH-0072", + "household_name": "Gupta Family", + "size": 2, + "decision_maker_id": "PER-0072" + }, + "relationships": [ + { + "related_person_id": "PER-0072-CO", + "type": "sibling", + "strength": 0.96 + } + ], + "active_opportunities": [ + { + "opportunity_id": "OPP-72-1", + "project_id": "PRJ-013", + "unit_id": "PRJ-013-U013", + "stage": "prospecting", + "value_cr": 11.61, + "probability": 0.39, + "expected_close": "2026-06-08T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000529", + "channel": "walk_in", + "type": "initial_enquiry", + "happened_at": "2026-04-08T00:00:00", + "summary": "Initial Enquiry via walk_in regarding Godrej Elevate" + }, + { + "interaction_id": "INT-000528", + "channel": "web_enquiry", + "type": "initial_enquiry", + "happened_at": "2026-03-24T00:00:00", + "summary": "Initial Enquiry via web_enquiry regarding Godrej Elevate" + }, + { + "interaction_id": "INT-000527", + "channel": "email", + "type": "site_visit", + "happened_at": "2026-03-15T00:00:00", + "summary": "Site Visit via email regarding Godrej Elevate" + }, + { + "interaction_id": "INT-000526", + "channel": "phone_call", + "type": "family_discussion", + "happened_at": "2026-03-11T00:00:00", + "summary": "Family Discussion via phone_call regarding Godrej Elevate" + }, + { + "interaction_id": "INT-000525", + "channel": "referral", + "type": "initial_enquiry", + "happened_at": "2026-02-09T00:00:00", + "summary": "Initial Enquiry via referral regarding Godrej Elevate" + } + ], + "property_interests": [ + { + "project_id": "PRJ-013", + "unit_id": "PRJ-013-U013", + "interest_level": "medium", + "configuration": "Penthouse", + "budget_range": "9.29 - 13.93", + "timeline": "flexible", + "financing": "undecided", + "notes": "Wants ready to move in" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00205", + "text": "Send home loan documents checklist", + "due_at": "2026-02-11T00:00:00", + "status": "completed", + "assigned_to": "user_004" + }, + { + "reminder_id": "REM-00206", + "text": "Send home loan documents checklist", + "due_at": "2026-03-29T00:00:00", + "status": "overdue", + "assigned_to": "user_004" + } + ], + "qd_overview": { + "current_score": 66.7, + "score_type": "engagement", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 3 + }, + "risk_flags": [ + "financing_not_finalized", + "timeline_unclear" + ], + "metadata": { + "total_interactions": 5, + "total_visits": 0, + "total_opportunities": 1, + "source_confidence": 0.88, + "last_updated": "2024-02-22T00:00:00" + } + }, + { + "client_ref": "PER-0072-CO", + "identity": { + "full_name": "Vidya Chatterjee", + "email": "vidya.chatterjee45@outlook.com", + "phone": "+91-74343-90713", + "linkedin": null, + "persona": [ + "co_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [ + { + "related_person_id": "PER-0072", + "type": "sibling", + "strength": 0.96 + } + ], + "active_opportunities": [], + "recent_interactions": [], + "property_interests": [], + "tasks_and_reminders": [], + "qd_overview": { + "current_score": 77.1, + "score_type": "overall", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 2 + }, + "risk_flags": [ + "financing_not_finalized", + "timeline_unclear" + ], + "metadata": { + "total_interactions": 0, + "total_visits": 0, + "total_opportunities": 0, + "source_confidence": 0.85, + "last_updated": "2026-04-18T00:00:00" + } + }, + { + "client_ref": "PER-0073", + "identity": { + "full_name": "Swati Roy", + "email": "swati.roy83@outlook.com", + "phone": "+91-71780-94182", + "linkedin": "https://linkedin.com/in/swati-roy-370", + "persona": [ + "slow_burn_investor" + ] + }, + "account_links": { + "account_id": "ACC-0073", + "account_name": "Swiggy", + "account_type": "developer" + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-73-1", + "project_id": "PRJ-013", + "unit_id": "PRJ-013-U015", + "stage": "proposal", + "value_cr": 26.57, + "probability": 0.72, + "expected_close": "2026-10-15T00:00:00" + }, + { + "opportunity_id": "OPP-73-2", + "project_id": "PRJ-001", + "unit_id": "PRJ-001-U001", + "stage": "discovery", + "value_cr": 19.84, + "probability": 0.11, + "expected_close": "2026-06-12T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000536", + "channel": "phone_call", + "type": "family_discussion", + "happened_at": "2026-03-11T00:00:00", + "summary": "Family Discussion via phone_call regarding Godrej Elevate" + }, + { + "interaction_id": "INT-000535", + "channel": "phone_call", + "type": "initial_enquiry", + "happened_at": "2026-02-01T00:00:00", + "summary": "Initial Enquiry via phone_call regarding Godrej Elevate" + }, + { + "interaction_id": "INT-000534", + "channel": "whatsapp", + "type": "document_sharing", + "happened_at": "2026-01-26T00:00:00", + "summary": "Document Sharing via whatsapp regarding Godrej Elevate" + }, + { + "interaction_id": "INT-000533", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2026-01-17T00:00:00", + "summary": "Site Visit via site_visit regarding Godrej Elevate" + }, + { + "interaction_id": "INT-000532", + "channel": "email", + "type": "initial_enquiry", + "happened_at": "2026-01-15T00:00:00", + "summary": "Initial Enquiry via email regarding Godrej Elevate" + } + ], + "property_interests": [ + { + "project_id": "PRJ-013", + "unit_id": "PRJ-013-U015", + "interest_level": "high", + "configuration": "4 BHK", + "budget_range": "21.26 - 31.88", + "timeline": "3_months", + "financing": "combined", + "notes": "Comparing with competitor projects" + }, + { + "project_id": "PRJ-001", + "unit_id": "PRJ-001-U001", + "interest_level": "low", + "configuration": "Villa", + "budget_range": "15.87 - 23.81", + "timeline": "flexible", + "financing": "combined", + "notes": "Needs proximity to school" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00207", + "text": "Confirm site visit for Saturday", + "due_at": "2026-01-15T00:00:00", + "status": "pending", + "assigned_to": "user_004" + }, + { + "reminder_id": "REM-00208", + "text": "Send home loan documents checklist", + "due_at": "2026-01-16T00:00:00", + "status": "completed", + "assigned_to": "user_004" + }, + { + "reminder_id": "REM-00209", + "text": "Send home loan documents checklist", + "due_at": "2026-01-21T00:00:00", + "status": "pending", + "assigned_to": "user_004" + } + ], + "qd_overview": { + "current_score": 98, + "score_type": "urgency", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 5 + }, + "risk_flags": [ + "price_sensitivity_high" + ], + "metadata": { + "total_interactions": 7, + "total_visits": 1, + "total_opportunities": 2, + "source_confidence": 0.92, + "last_updated": "2024-02-23T00:00:00" + } + }, + { + "client_ref": "PER-0074", + "identity": { + "full_name": "Pallavi Mukherjee", + "email": "pallavi.mukherjee13@hotmail.com", + "phone": "+91-73012-17455", + "linkedin": "https://linkedin.com/in/pallavi-mukherjee-708", + "persona": [ + "price_sensitive_aspirational" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-74-1", + "project_id": "PRJ-011", + "unit_id": "PRJ-011-U009", + "stage": "negotiation", + "value_cr": 3.92, + "probability": 0.75, + "expected_close": "2026-08-08T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000541", + "channel": "referral", + "type": "negotiation", + "happened_at": "2024-07-28T00:00:00", + "summary": "Negotiation via referral regarding DTC Sojon" + }, + { + "interaction_id": "INT-000540", + "channel": "phone_call", + "type": "family_discussion", + "happened_at": "2024-07-07T00:00:00", + "summary": "Family Discussion via phone_call regarding DTC Sojon" + }, + { + "interaction_id": "INT-000539", + "channel": "email", + "type": "price_discussion", + "happened_at": "2024-06-14T00:00:00", + "summary": "Price Discussion via email regarding DTC Sojon" + }, + { + "interaction_id": "INT-000538", + "channel": "whatsapp", + "type": "initial_enquiry", + "happened_at": "2024-05-26T00:00:00", + "summary": "Initial Enquiry via whatsapp regarding DTC Sojon" + }, + { + "interaction_id": "INT-000537", + "channel": "referral", + "type": "initial_enquiry", + "happened_at": "2024-05-08T00:00:00", + "summary": "Initial Enquiry via referral regarding DTC Sojon" + } + ], + "property_interests": [ + { + "project_id": "PRJ-011", + "unit_id": "PRJ-011-U009", + "interest_level": "medium", + "configuration": "3 BHK", + "budget_range": "3.14 - 4.7", + "timeline": "immediate", + "financing": "combined", + "notes": "Looking for east facing unit" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00211", + "text": "Follow up on DTC Sojon pricing discussion", + "due_at": "2024-06-20T00:00:00", + "status": "completed", + "assigned_to": "user_002" + } + ], + "qd_overview": { + "current_score": 47.0, + "score_type": "financial_qualification", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 2 + }, + "risk_flags": [ + "price_sensitivity_high" + ], + "metadata": { + "total_interactions": 5, + "total_visits": 0, + "total_opportunities": 1, + "source_confidence": 0.9, + "last_updated": "2025-09-05T00:00:00" + } + } +] \ No newline at end of file diff --git a/db assets/synthetic_crm_v1/json/client_360_snapshots_batch_3.json b/db assets/synthetic_crm_v1/json/client_360_snapshots_batch_3.json new file mode 100644 index 00000000..788895b1 --- /dev/null +++ b/db assets/synthetic_crm_v1/json/client_360_snapshots_batch_3.json @@ -0,0 +1,5160 @@ +[ + { + "client_ref": "PER-0075", + "identity": { + "full_name": "Priya Sharma", + "email": "priya.sharma43@yahoo.com", + "phone": "+91-84436-19096", + "linkedin": "https://linkedin.com/in/priya-sharma-603", + "persona": [ + "nri_buyer" + ] + }, + "account_links": { + "account_id": "ACC-0075", + "account_name": "Britannia Industries", + "account_type": "corporate" + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-75-1", + "project_id": "PRJ-009", + "unit_id": "PRJ-009-U009", + "stage": "prospecting", + "value_cr": 5.32, + "probability": 0.43, + "expected_close": "2026-09-18T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000553", + "channel": "phone_call", + "type": "negotiation", + "happened_at": "2024-07-13T00:00:00", + "summary": "Negotiation via phone_call regarding Siddha Sky Waterfront" + }, + { + "interaction_id": "INT-000552", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2024-07-06T00:00:00", + "summary": "Site Visit via site_visit regarding Siddha Sky Waterfront" + }, + { + "interaction_id": "INT-000551", + "channel": "whatsapp", + "type": "family_discussion", + "happened_at": "2024-07-01T00:00:00", + "summary": "Family Discussion via whatsapp regarding Siddha Sky Waterfront" + }, + { + "interaction_id": "INT-000550", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2024-06-23T00:00:00", + "summary": "Site Visit via site_visit regarding Siddha Sky Waterfront" + }, + { + "interaction_id": "INT-000549", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2024-06-15T00:00:00", + "summary": "Site Visit via site_visit regarding Siddha Sky Waterfront" + } + ], + "property_interests": [ + { + "project_id": "PRJ-009", + "unit_id": "PRJ-009-U009", + "interest_level": "high", + "configuration": "2 BHK", + "budget_range": "4.26 - 6.38", + "timeline": "6_months", + "financing": "combined", + "notes": "Wants ready to move in" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00212", + "text": "Share competitor comparison sheet", + "due_at": "2024-05-09T00:00:00", + "status": "completed", + "assigned_to": "user_001" + } + ], + "qd_overview": { + "current_score": 98, + "score_type": "urgency", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 4 + }, + "risk_flags": [ + "decision_maker_not_met" + ], + "metadata": { + "total_interactions": 12, + "total_visits": 6, + "total_opportunities": 1, + "source_confidence": 0.98, + "last_updated": "2025-09-16T00:00:00" + } + }, + { + "client_ref": "PER-0076", + "identity": { + "full_name": "Rahul Pillai", + "email": "rahul.pillai53@gmail.com", + "phone": "+91-97563-70245", + "linkedin": "https://linkedin.com/in/rahul-pillai-878", + "persona": [ + "high_intent_buyer" + ] + }, + "account_links": { + "account_id": "ACC-0076", + "account_name": "Wipro", + "account_type": "developer" + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-76-1", + "project_id": "PRJ-006", + "unit_id": "PRJ-006-U001", + "stage": "verbal_commitment", + "value_cr": 5.95, + "probability": 0.77, + "expected_close": "2026-05-28T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000561", + "channel": "whatsapp", + "type": "follow_up", + "happened_at": "2024-06-12T00:00:00", + "summary": "Follow Up via whatsapp regarding Merlin Avana" + }, + { + "interaction_id": "INT-000560", + "channel": "whatsapp", + "type": "initial_enquiry", + "happened_at": "2024-06-08T00:00:00", + "summary": "Initial Enquiry via whatsapp regarding Merlin Avana" + }, + { + "interaction_id": "INT-000559", + "channel": "whatsapp", + "type": "site_visit", + "happened_at": "2024-05-23T00:00:00", + "summary": "Site Visit via whatsapp regarding Merlin Avana" + }, + { + "interaction_id": "INT-000558", + "channel": "whatsapp", + "type": "negotiation", + "happened_at": "2024-05-17T00:00:00", + "summary": "Negotiation via whatsapp regarding Merlin Avana" + }, + { + "interaction_id": "INT-000557", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2024-05-13T00:00:00", + "summary": "Site Visit via site_visit regarding Merlin Avana" + } + ], + "property_interests": [ + { + "project_id": "PRJ-006", + "unit_id": "PRJ-006-U001", + "interest_level": "low", + "configuration": "Penthouse", + "budget_range": "4.76 - 7.14", + "timeline": "3_months", + "financing": "undecided", + "notes": "Waiting for festive season offer" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00213", + "text": "Update on road widening approval status", + "due_at": "2024-05-12T00:00:00", + "status": "completed", + "assigned_to": "user_002" + }, + { + "reminder_id": "REM-00214", + "text": "Schedule family meeting for final decision", + "due_at": "2024-05-30T00:00:00", + "status": "overdue", + "assigned_to": "user_002" + }, + { + "reminder_id": "REM-00215", + "text": "Update on road widening approval status", + "due_at": "2024-06-16T00:00:00", + "status": "overdue", + "assigned_to": "user_002" + } + ], + "qd_overview": { + "current_score": 89.2, + "score_type": "engagement", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 4 + }, + "risk_flags": [ + "decision_maker_not_met" + ], + "metadata": { + "total_interactions": 8, + "total_visits": 1, + "total_opportunities": 1, + "source_confidence": 0.93, + "last_updated": "2024-07-26T00:00:00" + } + }, + { + "client_ref": "PER-0077", + "identity": { + "full_name": "Nilesh Patel", + "email": "nilesh.patel19@gmail.com", + "phone": "+91-94099-28558", + "linkedin": "https://linkedin.com/in/nilesh-patel-600", + "persona": [ + "broker_referral_chain" + ] + }, + "account_links": { + "account_id": "ACC-0077", + "account_name": "EY India", + "account_type": "corporate" + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-77-1", + "project_id": "PRJ-005", + "unit_id": "PRJ-005-U006", + "stage": "closed_won", + "value_cr": 10.06, + "probability": 0.24, + "expected_close": "2026-08-20T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000571", + "channel": "phone_call", + "type": "initial_enquiry", + "happened_at": "2024-07-08T00:00:00", + "summary": "Initial Enquiry via phone_call regarding Siddha Suburbia Bungalow" + }, + { + "interaction_id": "INT-000570", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2024-07-06T00:00:00", + "summary": "Site Visit via site_visit regarding Siddha Suburbia Bungalow" + }, + { + "interaction_id": "INT-000569", + "channel": "whatsapp", + "type": "follow_up", + "happened_at": "2024-06-25T00:00:00", + "summary": "Follow Up via whatsapp regarding Siddha Suburbia Bungalow" + }, + { + "interaction_id": "INT-000568", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2024-06-16T00:00:00", + "summary": "Site Visit via site_visit regarding Siddha Suburbia Bungalow" + }, + { + "interaction_id": "INT-000567", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2024-06-04T00:00:00", + "summary": "Site Visit via site_visit regarding Siddha Suburbia Bungalow" + } + ], + "property_interests": [ + { + "project_id": "PRJ-005", + "unit_id": "PRJ-005-U006", + "interest_level": "medium", + "configuration": "3 BHK", + "budget_range": "8.05 - 12.07", + "timeline": "flexible", + "financing": "home_loan", + "notes": "Comparing with competitor projects" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00216", + "text": "Call back regarding east-facing unit availability", + "due_at": "2024-05-04T00:00:00", + "status": "completed", + "assigned_to": "user_001" + }, + { + "reminder_id": "REM-00217", + "text": "Confirm site visit for Saturday", + "due_at": "2024-06-03T00:00:00", + "status": "completed", + "assigned_to": "user_001" + }, + { + "reminder_id": "REM-00218", + "text": "Call back regarding east-facing unit availability", + "due_at": "2024-06-10T00:00:00", + "status": "completed", + "assigned_to": "user_001" + } + ], + "qd_overview": { + "current_score": 98, + "score_type": "overall", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 5 + }, + "risk_flags": [ + "price_sensitivity_high" + ], + "metadata": { + "total_interactions": 10, + "total_visits": 4, + "total_opportunities": 1, + "source_confidence": 0.9, + "last_updated": "2025-09-25T00:00:00" + } + }, + { + "client_ref": "PER-0078", + "identity": { + "full_name": "Parth Verma", + "email": "parth.verma30@gmail.com", + "phone": "+91-98823-73827", + "linkedin": "https://linkedin.com/in/parth-verma-182", + "persona": [ + "high_intent_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-78-1", + "project_id": "PRJ-004", + "unit_id": "PRJ-004-U001", + "stage": "discovery", + "value_cr": 6.2, + "probability": 0.63, + "expected_close": "2026-10-03T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000578", + "channel": "whatsapp", + "type": "price_discussion", + "happened_at": "2025-01-06T00:00:00", + "summary": "Price Discussion via whatsapp regarding Atri Surya Toron" + }, + { + "interaction_id": "INT-000579", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2025-01-06T00:00:00", + "summary": "Site Visit via site_visit regarding Atri Surya Toron" + }, + { + "interaction_id": "INT-000577", + "channel": "whatsapp", + "type": "initial_enquiry", + "happened_at": "2024-12-14T00:00:00", + "summary": "Initial Enquiry via whatsapp regarding Atri Surya Toron" + }, + { + "interaction_id": "INT-000576", + "channel": "whatsapp", + "type": "negotiation", + "happened_at": "2024-12-07T00:00:00", + "summary": "Negotiation via whatsapp regarding Atri Surya Toron" + }, + { + "interaction_id": "INT-000575", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2024-11-27T00:00:00", + "summary": "Site Visit via site_visit regarding Atri Surya Toron" + } + ], + "property_interests": [ + { + "project_id": "PRJ-004", + "unit_id": "PRJ-004-U001", + "interest_level": "medium", + "configuration": "5 BHK", + "budget_range": "4.96 - 7.44", + "timeline": "flexible", + "financing": "home_loan", + "notes": "Prefers higher floor" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00219", + "text": "Send revised payment plan", + "due_at": "2024-11-26T00:00:00", + "status": "completed", + "assigned_to": "user_002" + }, + { + "reminder_id": "REM-00220", + "text": "Update on road widening approval status", + "due_at": "2024-11-25T00:00:00", + "status": "completed", + "assigned_to": "user_002" + }, + { + "reminder_id": "REM-00221", + "text": "Call back regarding east-facing unit availability", + "due_at": "2024-12-02T00:00:00", + "status": "overdue", + "assigned_to": "user_002" + } + ], + "qd_overview": { + "current_score": 92.1, + "score_type": "intent", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 5 + }, + "risk_flags": [], + "metadata": { + "total_interactions": 8, + "total_visits": 2, + "total_opportunities": 1, + "source_confidence": 0.75, + "last_updated": "2024-04-01T00:00:00" + } + }, + { + "client_ref": "PER-0079", + "identity": { + "full_name": "Raj Reddy", + "email": "raj.reddy73@yahoo.com", + "phone": "+91-75235-97836", + "linkedin": "https://linkedin.com/in/raj-reddy-144", + "persona": [ + "high_intent_buyer" + ] + }, + "account_links": { + "account_id": "ACC-0079", + "account_name": "Larsen & Toubro", + "account_type": "referral_partner" + }, + "household": { + "household_id": "HH-0079", + "household_name": "Reddy Family", + "size": 2, + "decision_maker_id": "PER-0079" + }, + "relationships": [ + { + "related_person_id": "PER-0079-CO", + "type": "business_partner", + "strength": 0.88 + } + ], + "active_opportunities": [ + { + "opportunity_id": "OPP-79-1", + "project_id": "PRJ-003", + "unit_id": "PRJ-003-U004", + "stage": "closed_lost", + "value_cr": 17.22, + "probability": 0.25, + "expected_close": "2026-08-21T00:00:00" + }, + { + "opportunity_id": "OPP-79-2", + "project_id": "PRJ-004", + "unit_id": "PRJ-004-U008", + "stage": "site_visit", + "value_cr": 31.98, + "probability": 0.13, + "expected_close": "2026-10-10T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000583", + "channel": "web_enquiry", + "type": "follow_up", + "happened_at": "2025-05-26T00:00:00", + "summary": "Follow Up via web_enquiry regarding Atri Aqua" + }, + { + "interaction_id": "INT-000582", + "channel": "email", + "type": "negotiation", + "happened_at": "2025-05-10T00:00:00", + "summary": "Negotiation via email regarding Atri Aqua" + }, + { + "interaction_id": "INT-000581", + "channel": "whatsapp", + "type": "family_discussion", + "happened_at": "2025-04-22T00:00:00", + "summary": "Family Discussion via whatsapp regarding Atri Aqua" + }, + { + "interaction_id": "INT-000580", + "channel": "referral", + "type": "initial_enquiry", + "happened_at": "2025-04-17T00:00:00", + "summary": "Initial Enquiry via referral regarding Atri Aqua" + } + ], + "property_interests": [ + { + "project_id": "PRJ-003", + "unit_id": "PRJ-003-U004", + "interest_level": "very_high", + "configuration": "Villa", + "budget_range": "13.78 - 20.66", + "timeline": "3_months", + "financing": "combined", + "notes": "Prefers higher floor" + }, + { + "project_id": "PRJ-004", + "unit_id": "PRJ-004-U008", + "interest_level": "high", + "configuration": "Villa", + "budget_range": "25.58 - 38.38", + "timeline": "3_months", + "financing": "cash", + "notes": "Wants ready to move in" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00223", + "text": "Update on road widening approval status", + "due_at": "2025-05-16T00:00:00", + "status": "completed", + "assigned_to": "user_002" + }, + { + "reminder_id": "REM-00224", + "text": "Confirm site visit for Saturday", + "due_at": "2025-05-28T00:00:00", + "status": "overdue", + "assigned_to": "user_002" + } + ], + "qd_overview": { + "current_score": 91.8, + "score_type": "intent", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 5 + }, + "risk_flags": [ + "financing_not_finalized", + "timeline_unclear" + ], + "metadata": { + "total_interactions": 4, + "total_visits": 0, + "total_opportunities": 2, + "source_confidence": 0.76, + "last_updated": "2024-10-18T00:00:00" + } + }, + { + "client_ref": "PER-0079-CO", + "identity": { + "full_name": "Ananya Reddy", + "email": "ananya.reddy75@gmail.com", + "phone": "+91-72321-40841", + "linkedin": null, + "persona": [ + "co_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [ + { + "related_person_id": "PER-0079", + "type": "business_partner", + "strength": 0.88 + } + ], + "active_opportunities": [], + "recent_interactions": [], + "property_interests": [], + "tasks_and_reminders": [], + "qd_overview": { + "current_score": 32.7, + "score_type": "engagement", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 5 + }, + "risk_flags": [ + "slow_response_pattern" + ], + "metadata": { + "total_interactions": 0, + "total_visits": 0, + "total_opportunities": 0, + "source_confidence": 0.85, + "last_updated": "2026-04-18T00:00:00" + } + }, + { + "client_ref": "PER-0080", + "identity": { + "full_name": "Amit Patel", + "email": "amit.patel47@hotmail.com", + "phone": "+91-75137-93623", + "linkedin": "https://linkedin.com/in/amit-patel-726", + "persona": [ + "nri_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": "HH-0080", + "household_name": "Patel Family", + "size": 5, + "decision_maker_id": "PER-0080" + }, + "relationships": [ + { + "related_person_id": "PER-0080-CO", + "type": "sibling", + "strength": 0.83 + } + ], + "active_opportunities": [ + { + "opportunity_id": "OPP-80-1", + "project_id": "PRJ-004", + "unit_id": "PRJ-004-U001", + "stage": "prospecting", + "value_cr": 6.2, + "probability": 0.69, + "expected_close": "2026-08-30T00:00:00" + }, + { + "opportunity_id": "OPP-80-2", + "project_id": "PRJ-011", + "unit_id": "PRJ-011-U003", + "stage": "prospecting", + "value_cr": 23.35, + "probability": 0.51, + "expected_close": "2026-08-04T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000591", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2025-11-06T00:00:00", + "summary": "Site Visit via site_visit regarding DTC Sojon" + }, + { + "interaction_id": "INT-000590", + "channel": "phone_call", + "type": "document_sharing", + "happened_at": "2025-11-05T00:00:00", + "summary": "Document Sharing via phone_call regarding DTC Sojon" + }, + { + "interaction_id": "INT-000589", + "channel": "whatsapp", + "type": "site_visit", + "happened_at": "2025-10-11T00:00:00", + "summary": "Site Visit via whatsapp regarding DTC Sojon" + }, + { + "interaction_id": "INT-000588", + "channel": "phone_call", + "type": "document_sharing", + "happened_at": "2025-10-06T00:00:00", + "summary": "Document Sharing via phone_call regarding DTC Sojon" + }, + { + "interaction_id": "INT-000587", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2025-10-03T00:00:00", + "summary": "Site Visit via site_visit regarding DTC Sojon" + } + ], + "property_interests": [ + { + "project_id": "PRJ-004", + "unit_id": "PRJ-004-U001", + "interest_level": "medium", + "configuration": "5 BHK", + "budget_range": "4.96 - 7.44", + "timeline": "6_months", + "financing": "combined", + "notes": "Needs proximity to school" + }, + { + "project_id": "PRJ-011", + "unit_id": "PRJ-011-U003", + "interest_level": "very_high", + "configuration": "Villa", + "budget_range": "18.68 - 28.02", + "timeline": "immediate", + "financing": "undecided", + "notes": "Wants ready to move in" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00225", + "text": "Share competitor comparison sheet", + "due_at": "2025-10-05T00:00:00", + "status": "completed", + "assigned_to": "user_004" + }, + { + "reminder_id": "REM-00226", + "text": "Send home loan documents checklist", + "due_at": "2025-11-12T00:00:00", + "status": "pending", + "assigned_to": "user_004" + } + ], + "qd_overview": { + "current_score": 57.0, + "score_type": "financial_qualification", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 3 + }, + "risk_flags": [ + "slow_response_pattern" + ], + "metadata": { + "total_interactions": 8, + "total_visits": 2, + "total_opportunities": 2, + "source_confidence": 0.96, + "last_updated": "2025-07-20T00:00:00" + } + }, + { + "client_ref": "PER-0080-CO", + "identity": { + "full_name": "Shreya Sharma", + "email": "shreya.sharma11@rediffmail.com", + "phone": "+91-94123-42329", + "linkedin": null, + "persona": [ + "co_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [ + { + "related_person_id": "PER-0080", + "type": "sibling", + "strength": 0.83 + } + ], + "active_opportunities": [], + "recent_interactions": [], + "property_interests": [], + "tasks_and_reminders": [], + "qd_overview": { + "current_score": 65.9, + "score_type": "engagement", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 5 + }, + "risk_flags": [ + "slow_response_pattern" + ], + "metadata": { + "total_interactions": 0, + "total_visits": 0, + "total_opportunities": 0, + "source_confidence": 0.85, + "last_updated": "2026-04-18T00:00:00" + } + }, + { + "client_ref": "PER-0081", + "identity": { + "full_name": "Swati Jain", + "email": "swati.jain90@rediffmail.com", + "phone": "+91-93065-93021", + "linkedin": "https://linkedin.com/in/swati-jain-101", + "persona": [ + "price_sensitive_aspirational" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-81-1", + "project_id": "PRJ-010", + "unit_id": "PRJ-010-U004", + "stage": "verbal_commitment", + "value_cr": 4.99, + "probability": 0.41, + "expected_close": "2026-10-08T00:00:00" + }, + { + "opportunity_id": "OPP-81-2", + "project_id": "PRJ-004", + "unit_id": "PRJ-004-U017", + "stage": "discovery", + "value_cr": 5.05, + "probability": 0.65, + "expected_close": "2026-10-13T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000599", + "channel": "phone_call", + "type": "negotiation", + "happened_at": "2024-05-01T00:00:00", + "summary": "Negotiation via phone_call regarding Godrej Blue" + }, + { + "interaction_id": "INT-000600", + "channel": "whatsapp", + "type": "initial_enquiry", + "happened_at": "2024-05-01T00:00:00", + "summary": "Initial Enquiry via whatsapp regarding Godrej Blue" + }, + { + "interaction_id": "INT-000598", + "channel": "whatsapp", + "type": "family_discussion", + "happened_at": "2024-04-17T00:00:00", + "summary": "Family Discussion via whatsapp regarding Godrej Blue" + }, + { + "interaction_id": "INT-000597", + "channel": "whatsapp", + "type": "family_discussion", + "happened_at": "2024-04-01T00:00:00", + "summary": "Family Discussion via whatsapp regarding Godrej Blue" + }, + { + "interaction_id": "INT-000596", + "channel": "phone_call", + "type": "site_visit", + "happened_at": "2024-03-26T00:00:00", + "summary": "Site Visit via phone_call regarding Godrej Blue" + } + ], + "property_interests": [ + { + "project_id": "PRJ-010", + "unit_id": "PRJ-010-U004", + "interest_level": "low", + "configuration": "Penthouse", + "budget_range": "3.99 - 5.99", + "timeline": "3_months", + "financing": "home_loan", + "notes": "Prefers higher floor" + }, + { + "project_id": "PRJ-004", + "unit_id": "PRJ-004-U017", + "interest_level": "medium", + "configuration": "Duplex", + "budget_range": "4.04 - 6.06", + "timeline": "3_months", + "financing": "combined", + "notes": "Prefers higher floor" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00227", + "text": "Send revised payment plan", + "due_at": "2024-03-01T00:00:00", + "status": "completed", + "assigned_to": "user_005" + }, + { + "reminder_id": "REM-00228", + "text": "Call back regarding east-facing unit availability", + "due_at": "2024-05-03T00:00:00", + "status": "completed", + "assigned_to": "user_005" + } + ], + "qd_overview": { + "current_score": 98, + "score_type": "intent", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 4 + }, + "risk_flags": [ + "decision_maker_not_met" + ], + "metadata": { + "total_interactions": 9, + "total_visits": 0, + "total_opportunities": 2, + "source_confidence": 0.95, + "last_updated": "2025-01-29T00:00:00" + } + }, + { + "client_ref": "PER-0082", + "identity": { + "full_name": "Neha Mukherjee", + "email": "neha.mukherjee18@outlook.com", + "phone": "+91-81312-69298", + "linkedin": "https://linkedin.com/in/neha-mukherjee-597", + "persona": [ + "broker_referral_chain" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-82-1", + "project_id": "PRJ-009", + "unit_id": "PRJ-009-U003", + "stage": "negotiation", + "value_cr": 6.82, + "probability": 0.45, + "expected_close": "2026-10-03T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000608", + "channel": "phone_call", + "type": "family_discussion", + "happened_at": "2025-09-19T00:00:00", + "summary": "Family Discussion via phone_call regarding Siddha Sky Waterfront" + }, + { + "interaction_id": "INT-000607", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2025-09-11T00:00:00", + "summary": "Site Visit via site_visit regarding Siddha Sky Waterfront" + }, + { + "interaction_id": "INT-000606", + "channel": "whatsapp", + "type": "initial_enquiry", + "happened_at": "2025-09-04T00:00:00", + "summary": "Initial Enquiry via whatsapp regarding Siddha Sky Waterfront" + }, + { + "interaction_id": "INT-000605", + "channel": "whatsapp", + "type": "initial_enquiry", + "happened_at": "2025-08-03T00:00:00", + "summary": "Initial Enquiry via whatsapp regarding Siddha Sky Waterfront" + }, + { + "interaction_id": "INT-000604", + "channel": "phone_call", + "type": "family_discussion", + "happened_at": "2025-07-16T00:00:00", + "summary": "Family Discussion via phone_call regarding Siddha Sky Waterfront" + } + ], + "property_interests": [ + { + "project_id": "PRJ-009", + "unit_id": "PRJ-009-U003", + "interest_level": "very_high", + "configuration": "Villa", + "budget_range": "5.46 - 8.18", + "timeline": "6_months", + "financing": "undecided", + "notes": "Wants ready to move in" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00229", + "text": "Share competitor comparison sheet", + "due_at": "2025-07-20T00:00:00", + "status": "completed", + "assigned_to": "user_002" + }, + { + "reminder_id": "REM-00230", + "text": "Send revised payment plan", + "due_at": "2025-09-15T00:00:00", + "status": "completed", + "assigned_to": "user_002" + } + ], + "qd_overview": { + "current_score": 94.1, + "score_type": "intent", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 5 + }, + "risk_flags": [ + "decision_maker_not_met" + ], + "metadata": { + "total_interactions": 8, + "total_visits": 1, + "total_opportunities": 1, + "source_confidence": 0.87, + "last_updated": "2025-04-26T00:00:00" + } + }, + { + "client_ref": "PER-0083", + "identity": { + "full_name": "Prasenjit Roy", + "email": "prasenjit.roy18@gmail.com", + "phone": "+91-98566-40451", + "linkedin": "https://linkedin.com/in/prasenjit-roy-954", + "persona": [ + "price_sensitive_aspirational" + ] + }, + "account_links": { + "account_id": "ACC-0083", + "account_name": "Microsoft India", + "account_type": "referral_partner" + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-83-1", + "project_id": "PRJ-004", + "unit_id": "PRJ-004-U017", + "stage": "prospecting", + "value_cr": 5.05, + "probability": 0.67, + "expected_close": "2026-08-14T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000619", + "channel": "whatsapp", + "type": "price_discussion", + "happened_at": "2025-01-31T00:00:00", + "summary": "Price Discussion via whatsapp regarding Atri Surya Toron" + }, + { + "interaction_id": "INT-000618", + "channel": "phone_call", + "type": "follow_up", + "happened_at": "2025-01-23T00:00:00", + "summary": "Follow Up via phone_call regarding Atri Surya Toron" + }, + { + "interaction_id": "INT-000617", + "channel": "phone_call", + "type": "negotiation", + "happened_at": "2025-01-18T00:00:00", + "summary": "Negotiation via phone_call regarding Atri Surya Toron" + }, + { + "interaction_id": "INT-000616", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2025-01-15T00:00:00", + "summary": "Site Visit via site_visit regarding Atri Surya Toron" + }, + { + "interaction_id": "INT-000615", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2025-01-11T00:00:00", + "summary": "Site Visit via site_visit regarding Atri Surya Toron" + } + ], + "property_interests": [ + { + "project_id": "PRJ-004", + "unit_id": "PRJ-004-U017", + "interest_level": "high", + "configuration": "Duplex", + "budget_range": "4.04 - 6.06", + "timeline": "flexible", + "financing": "home_loan", + "notes": "Comparing with competitor projects" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00231", + "text": "Update on road widening approval status", + "due_at": "2024-11-17T00:00:00", + "status": "overdue", + "assigned_to": "user_002" + }, + { + "reminder_id": "REM-00232", + "text": "Schedule family meeting for final decision", + "due_at": "2024-12-08T00:00:00", + "status": "pending", + "assigned_to": "user_002" + }, + { + "reminder_id": "REM-00233", + "text": "Confirm site visit for Saturday", + "due_at": "2024-12-20T00:00:00", + "status": "completed", + "assigned_to": "user_002" + } + ], + "qd_overview": { + "current_score": 98, + "score_type": "overall", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 3 + }, + "risk_flags": [ + "decision_maker_not_met" + ], + "metadata": { + "total_interactions": 11, + "total_visits": 2, + "total_opportunities": 1, + "source_confidence": 0.97, + "last_updated": "2024-12-09T00:00:00" + } + }, + { + "client_ref": "PER-0084", + "identity": { + "full_name": "Sanjay Reddy", + "email": "sanjay.reddy28@rediffmail.com", + "phone": "+91-80492-30454", + "linkedin": "https://linkedin.com/in/sanjay-reddy-104", + "persona": [ + "slow_burn_investor" + ] + }, + "account_links": { + "account_id": "ACC-0084", + "account_name": "Tech Mahindra", + "account_type": "developer" + }, + "household": { + "household_id": "HH-0084", + "household_name": "Reddy Family", + "size": 5, + "decision_maker_id": "PER-0084" + }, + "relationships": [ + { + "related_person_id": "PER-0084-CO", + "type": "business_partner", + "strength": 0.89 + } + ], + "active_opportunities": [ + { + "opportunity_id": "OPP-84-1", + "project_id": "PRJ-001", + "unit_id": "PRJ-001-U010", + "stage": "closed_won", + "value_cr": 38.51, + "probability": 0.23, + "expected_close": "2026-09-04T00:00:00" + }, + { + "opportunity_id": "OPP-84-2", + "project_id": "PRJ-006", + "unit_id": "PRJ-006-U003", + "stage": "negotiation", + "value_cr": 14.7, + "probability": 0.93, + "expected_close": "2026-10-08T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000627", + "channel": "phone_call", + "type": "price_discussion", + "happened_at": "2025-06-25T00:00:00", + "summary": "Price Discussion via phone_call regarding Merlin Avana" + }, + { + "interaction_id": "INT-000626", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2025-06-17T00:00:00", + "summary": "Site Visit via site_visit regarding Merlin Avana" + }, + { + "interaction_id": "INT-000625", + "channel": "phone_call", + "type": "site_visit", + "happened_at": "2025-06-01T00:00:00", + "summary": "Site Visit via phone_call regarding Merlin Avana" + }, + { + "interaction_id": "INT-000624", + "channel": "phone_call", + "type": "family_discussion", + "happened_at": "2025-05-30T00:00:00", + "summary": "Family Discussion via phone_call regarding Merlin Avana" + }, + { + "interaction_id": "INT-000623", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2025-05-13T00:00:00", + "summary": "Site Visit via site_visit regarding Merlin Avana" + } + ], + "property_interests": [ + { + "project_id": "PRJ-001", + "unit_id": "PRJ-001-U010", + "interest_level": "very_high", + "configuration": "Penthouse", + "budget_range": "30.81 - 46.21", + "timeline": "6_months", + "financing": "cash", + "notes": "Prefers higher floor" + }, + { + "project_id": "PRJ-006", + "unit_id": "PRJ-006-U003", + "interest_level": "medium", + "configuration": "5 BHK", + "budget_range": "11.76 - 17.64", + "timeline": "flexible", + "financing": "undecided", + "notes": "Wants ready to move in" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00238", + "text": "Update on road widening approval status", + "due_at": "2025-04-20T00:00:00", + "status": "completed", + "assigned_to": "user_002" + }, + { + "reminder_id": "REM-00239", + "text": "Confirm site visit for Saturday", + "due_at": "2025-05-31T00:00:00", + "status": "overdue", + "assigned_to": "user_002" + } + ], + "qd_overview": { + "current_score": 94.9, + "score_type": "overall", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 3 + }, + "risk_flags": [ + "slow_response_pattern" + ], + "metadata": { + "total_interactions": 8, + "total_visits": 2, + "total_opportunities": 2, + "source_confidence": 0.97, + "last_updated": "2025-06-03T00:00:00" + } + }, + { + "client_ref": "PER-0084-CO", + "identity": { + "full_name": "Tanvi Mukherjee", + "email": "tanvi.mukherjee27@hotmail.com", + "phone": "+91-73829-50380", + "linkedin": null, + "persona": [ + "co_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [ + { + "related_person_id": "PER-0084", + "type": "business_partner", + "strength": 0.89 + } + ], + "active_opportunities": [], + "recent_interactions": [], + "property_interests": [], + "tasks_and_reminders": [], + "qd_overview": { + "current_score": 50.0, + "score_type": "engagement", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 3 + }, + "risk_flags": [ + "competitor_comparison_active" + ], + "metadata": { + "total_interactions": 0, + "total_visits": 0, + "total_opportunities": 0, + "source_confidence": 0.85, + "last_updated": "2026-04-18T00:00:00" + } + }, + { + "client_ref": "PER-0085", + "identity": { + "full_name": "Kavita Das", + "email": "kavita.das85@hotmail.com", + "phone": "+91-72820-28827", + "linkedin": "https://linkedin.com/in/kavita-das-312", + "persona": [ + "slow_burn_investor" + ] + }, + "account_links": { + "account_id": "ACC-0085", + "account_name": "Ola", + "account_type": "corporate" + }, + "household": { + "household_id": "HH-0085", + "household_name": "Das Family", + "size": 5, + "decision_maker_id": "PER-0085" + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-85-1", + "project_id": "PRJ-005", + "unit_id": "PRJ-005-U009", + "stage": "discovery", + "value_cr": 2.39, + "probability": 0.66, + "expected_close": "2026-07-30T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000633", + "channel": "referral", + "type": "follow_up", + "happened_at": "2024-08-08T00:00:00", + "summary": "Follow Up via referral regarding Siddha Suburbia Bungalow" + }, + { + "interaction_id": "INT-000632", + "channel": "email", + "type": "price_discussion", + "happened_at": "2024-07-06T00:00:00", + "summary": "Price Discussion via email regarding Siddha Suburbia Bungalow" + }, + { + "interaction_id": "INT-000631", + "channel": "phone_call", + "type": "family_discussion", + "happened_at": "2024-06-29T00:00:00", + "summary": "Family Discussion via phone_call regarding Siddha Suburbia Bungalow" + }, + { + "interaction_id": "INT-000630", + "channel": "email", + "type": "price_discussion", + "happened_at": "2024-06-21T00:00:00", + "summary": "Price Discussion via email regarding Siddha Suburbia Bungalow" + }, + { + "interaction_id": "INT-000629", + "channel": "phone_call", + "type": "price_discussion", + "happened_at": "2024-05-28T00:00:00", + "summary": "Price Discussion via phone_call regarding Siddha Suburbia Bungalow" + } + ], + "property_interests": [ + { + "project_id": "PRJ-005", + "unit_id": "PRJ-005-U009", + "interest_level": "medium", + "configuration": "Villa", + "budget_range": "1.91 - 2.87", + "timeline": "flexible", + "financing": "home_loan", + "notes": "Looking for east facing unit" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00240", + "text": "Send revised payment plan", + "due_at": "2024-05-25T00:00:00", + "status": "completed", + "assigned_to": "user_004" + }, + { + "reminder_id": "REM-00241", + "text": "Confirm site visit for Saturday", + "due_at": "2024-06-02T00:00:00", + "status": "completed", + "assigned_to": "user_004" + }, + { + "reminder_id": "REM-00242", + "text": "Share competitor comparison sheet", + "due_at": "2024-07-06T00:00:00", + "status": "overdue", + "assigned_to": "user_004" + } + ], + "qd_overview": { + "current_score": 66.1, + "score_type": "financial_qualification", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 2 + }, + "risk_flags": [ + "financing_not_finalized", + "timeline_unclear" + ], + "metadata": { + "total_interactions": 6, + "total_visits": 0, + "total_opportunities": 1, + "source_confidence": 0.82, + "last_updated": "2024-12-09T00:00:00" + } + }, + { + "client_ref": "PER-0086", + "identity": { + "full_name": "Tanvi Chatterjee", + "email": "tanvi.chatterjee86@outlook.com", + "phone": "+91-89040-72978", + "linkedin": "https://linkedin.com/in/tanvi-chatterjee-679", + "persona": [ + "high_intent_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-86-1", + "project_id": "PRJ-009", + "unit_id": "PRJ-009-U009", + "stage": "site_visit", + "value_cr": 5.32, + "probability": 0.75, + "expected_close": "2026-06-29T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000636", + "channel": "whatsapp", + "type": "follow_up", + "happened_at": "2024-07-27T00:00:00", + "summary": "Follow Up via whatsapp regarding Siddha Sky Waterfront" + }, + { + "interaction_id": "INT-000635", + "channel": "whatsapp", + "type": "follow_up", + "happened_at": "2024-05-13T00:00:00", + "summary": "Follow Up via whatsapp regarding Siddha Sky Waterfront" + }, + { + "interaction_id": "INT-000634", + "channel": "web_enquiry", + "type": "initial_enquiry", + "happened_at": "2024-05-09T00:00:00", + "summary": "Initial Enquiry via web_enquiry regarding Siddha Sky Waterfront" + } + ], + "property_interests": [ + { + "project_id": "PRJ-009", + "unit_id": "PRJ-009-U009", + "interest_level": "high", + "configuration": "2 BHK", + "budget_range": "4.26 - 6.38", + "timeline": "6_months", + "financing": "combined", + "notes": "Prefers higher floor" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00244", + "text": "Call back regarding east-facing unit availability", + "due_at": "2024-05-12T00:00:00", + "status": "pending", + "assigned_to": "user_001" + } + ], + "qd_overview": { + "current_score": 98, + "score_type": "financial_qualification", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 4 + }, + "risk_flags": [], + "metadata": { + "total_interactions": 3, + "total_visits": 0, + "total_opportunities": 1, + "source_confidence": 0.85, + "last_updated": "2025-10-05T00:00:00" + } + }, + { + "client_ref": "PER-0087", + "identity": { + "full_name": "Sneha Pillai", + "email": "sneha.pillai84@outlook.com", + "phone": "+91-96978-28837", + "linkedin": "https://linkedin.com/in/sneha-pillai-113", + "persona": [ + "family_decision_unit" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": "HH-0087", + "household_name": "Pillai Family", + "size": 5, + "decision_maker_id": "PER-0087" + }, + "relationships": [ + { + "related_person_id": "PER-0087-CO", + "type": "spouse", + "strength": 0.83 + } + ], + "active_opportunities": [ + { + "opportunity_id": "OPP-87-1", + "project_id": "PRJ-014", + "unit_id": "PRJ-014-U001", + "stage": "proposal", + "value_cr": 73.38, + "probability": 0.21, + "expected_close": "2026-06-23T00:00:00" + }, + { + "opportunity_id": "OPP-87-2", + "project_id": "PRJ-003", + "unit_id": "PRJ-003-U002", + "stage": "closed_won", + "value_cr": 27.76, + "probability": 0.69, + "expected_close": "2026-06-15T00:00:00" + }, + { + "opportunity_id": "OPP-87-3", + "project_id": "PRJ-004", + "unit_id": "PRJ-004-U001", + "stage": "prospecting", + "value_cr": 6.2, + "probability": 0.77, + "expected_close": "2026-09-26T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000642", + "channel": "email", + "type": "follow_up", + "happened_at": "2024-07-19T00:00:00", + "summary": "Follow Up via email regarding Atri Aqua" + }, + { + "interaction_id": "INT-000641", + "channel": "web_enquiry", + "type": "family_discussion", + "happened_at": "2024-07-17T00:00:00", + "summary": "Family Discussion via web_enquiry regarding Atri Aqua" + }, + { + "interaction_id": "INT-000640", + "channel": "referral", + "type": "family_discussion", + "happened_at": "2024-07-14T00:00:00", + "summary": "Family Discussion via referral regarding Atri Aqua" + }, + { + "interaction_id": "INT-000639", + "channel": "email", + "type": "family_discussion", + "happened_at": "2024-06-21T00:00:00", + "summary": "Family Discussion via email regarding Atri Aqua" + }, + { + "interaction_id": "INT-000638", + "channel": "phone_call", + "type": "price_discussion", + "happened_at": "2024-06-09T00:00:00", + "summary": "Price Discussion via phone_call regarding Atri Aqua" + } + ], + "property_interests": [ + { + "project_id": "PRJ-014", + "unit_id": "PRJ-014-U001", + "interest_level": "medium", + "configuration": "5 BHK", + "budget_range": "58.7 - 88.06", + "timeline": "6_months", + "financing": "home_loan", + "notes": "Needs proximity to school" + }, + { + "project_id": "PRJ-003", + "unit_id": "PRJ-003-U002", + "interest_level": "low", + "configuration": "3 BHK", + "budget_range": "22.21 - 33.31", + "timeline": "flexible", + "financing": "undecided", + "notes": "Looking for east facing unit" + }, + { + "project_id": "PRJ-004", + "unit_id": "PRJ-004-U001", + "interest_level": "low", + "configuration": "5 BHK", + "budget_range": "4.96 - 7.44", + "timeline": "flexible", + "financing": "cash", + "notes": "Prefers higher floor" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00245", + "text": "Schedule family meeting for final decision", + "due_at": "2024-05-10T00:00:00", + "status": "completed", + "assigned_to": "user_003" + } + ], + "qd_overview": { + "current_score": 69.6, + "score_type": "intent", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 5 + }, + "risk_flags": [ + "decision_maker_not_met" + ], + "metadata": { + "total_interactions": 6, + "total_visits": 0, + "total_opportunities": 3, + "source_confidence": 0.78, + "last_updated": "2025-01-16T00:00:00" + } + }, + { + "client_ref": "PER-0087-CO", + "identity": { + "full_name": "Raj Nair", + "email": "raj.nair38@yahoo.com", + "phone": "+91-96054-83224", + "linkedin": null, + "persona": [ + "co_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [ + { + "related_person_id": "PER-0087", + "type": "spouse", + "strength": 0.83 + } + ], + "active_opportunities": [], + "recent_interactions": [], + "property_interests": [], + "tasks_and_reminders": [], + "qd_overview": { + "current_score": 71.0, + "score_type": "intent", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 4 + }, + "risk_flags": [ + "financing_not_finalized", + "timeline_unclear" + ], + "metadata": { + "total_interactions": 0, + "total_visits": 0, + "total_opportunities": 0, + "source_confidence": 0.85, + "last_updated": "2026-04-18T00:00:00" + } + }, + { + "client_ref": "PER-0088", + "identity": { + "full_name": "Ananya Sen", + "email": "ananya.sen25@hotmail.com", + "phone": "+91-76730-87018", + "linkedin": "https://linkedin.com/in/ananya-sen-304", + "persona": [ + "high_intent_buyer" + ] + }, + "account_links": { + "account_id": "ACC-0088", + "account_name": "HCL Technologies", + "account_type": "referral_partner" + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-88-1", + "project_id": "PRJ-003", + "unit_id": "PRJ-003-U011", + "stage": "verbal_commitment", + "value_cr": 3.86, + "probability": 0.7, + "expected_close": "2026-10-07T00:00:00" + }, + { + "opportunity_id": "OPP-88-2", + "project_id": "PRJ-002", + "unit_id": "PRJ-002-U010", + "stage": "negotiation", + "value_cr": 3.75, + "probability": 0.49, + "expected_close": "2026-08-05T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000657", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2025-08-18T00:00:00", + "summary": "Site Visit via site_visit regarding Sugam Prakriti" + }, + { + "interaction_id": "INT-000656", + "channel": "phone_call", + "type": "initial_enquiry", + "happened_at": "2025-08-07T00:00:00", + "summary": "Initial Enquiry via phone_call regarding Sugam Prakriti" + }, + { + "interaction_id": "INT-000655", + "channel": "whatsapp", + "type": "family_discussion", + "happened_at": "2025-08-05T00:00:00", + "summary": "Family Discussion via whatsapp regarding Sugam Prakriti" + }, + { + "interaction_id": "INT-000654", + "channel": "phone_call", + "type": "price_discussion", + "happened_at": "2025-07-27T00:00:00", + "summary": "Price Discussion via phone_call regarding Sugam Prakriti" + }, + { + "interaction_id": "INT-000653", + "channel": "phone_call", + "type": "document_sharing", + "happened_at": "2025-07-26T00:00:00", + "summary": "Document Sharing via phone_call regarding Sugam Prakriti" + } + ], + "property_interests": [ + { + "project_id": "PRJ-003", + "unit_id": "PRJ-003-U011", + "interest_level": "low", + "configuration": "Duplex", + "budget_range": "3.09 - 4.63", + "timeline": "immediate", + "financing": "combined", + "notes": "Wants ready to move in" + }, + { + "project_id": "PRJ-002", + "unit_id": "PRJ-002-U010", + "interest_level": "very_high", + "configuration": "Penthouse", + "budget_range": "3.0 - 4.5", + "timeline": "3_months", + "financing": "undecided", + "notes": "Prefers higher floor" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00246", + "text": "Send revised payment plan", + "due_at": "2025-06-08T00:00:00", + "status": "completed", + "assigned_to": "user_005" + }, + { + "reminder_id": "REM-00247", + "text": "Schedule family meeting for final decision", + "due_at": "2025-06-13T00:00:00", + "status": "completed", + "assigned_to": "user_005" + }, + { + "reminder_id": "REM-00248", + "text": "Schedule family meeting for final decision", + "due_at": "2025-06-20T00:00:00", + "status": "completed", + "assigned_to": "user_005" + } + ], + "qd_overview": { + "current_score": 98, + "score_type": "engagement", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 5 + }, + "risk_flags": [ + "financing_not_finalized", + "timeline_unclear" + ], + "metadata": { + "total_interactions": 15, + "total_visits": 2, + "total_opportunities": 2, + "source_confidence": 0.79, + "last_updated": "2024-01-30T00:00:00" + } + }, + { + "client_ref": "PER-0089", + "identity": { + "full_name": "Pallavi Chatterjee", + "email": "pallavi.chatterjee70@outlook.com", + "phone": "+91-75875-11675", + "linkedin": "https://linkedin.com/in/pallavi-chatterjee-790", + "persona": [ + "repeat_visitor" + ] + }, + "account_links": { + "account_id": "ACC-0089", + "account_name": "Deloitte India", + "account_type": "corporate" + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-89-1", + "project_id": "PRJ-010", + "unit_id": "PRJ-010-U010", + "stage": "closed_won", + "value_cr": 10.62, + "probability": 0.4, + "expected_close": "2026-08-29T00:00:00" + }, + { + "opportunity_id": "OPP-89-2", + "project_id": "PRJ-002", + "unit_id": "PRJ-002-U005", + "stage": "closed_lost", + "value_cr": 14.03, + "probability": 0.52, + "expected_close": "2026-06-21T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000664", + "channel": "web_enquiry", + "type": "document_sharing", + "happened_at": "2024-07-11T00:00:00", + "summary": "Document Sharing via web_enquiry regarding Sugam Prakriti" + }, + { + "interaction_id": "INT-000663", + "channel": "walk_in", + "type": "negotiation", + "happened_at": "2024-07-08T00:00:00", + "summary": "Negotiation via walk_in regarding Sugam Prakriti" + }, + { + "interaction_id": "INT-000662", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2024-07-06T00:00:00", + "summary": "Site Visit via site_visit regarding Sugam Prakriti" + }, + { + "interaction_id": "INT-000661", + "channel": "walk_in", + "type": "price_discussion", + "happened_at": "2024-06-13T00:00:00", + "summary": "Price Discussion via walk_in regarding Sugam Prakriti" + }, + { + "interaction_id": "INT-000660", + "channel": "email", + "type": "initial_enquiry", + "happened_at": "2024-05-25T00:00:00", + "summary": "Initial Enquiry via email regarding Sugam Prakriti" + } + ], + "property_interests": [ + { + "project_id": "PRJ-010", + "unit_id": "PRJ-010-U010", + "interest_level": "high", + "configuration": "Duplex", + "budget_range": "8.5 - 12.74", + "timeline": "3_months", + "financing": "undecided", + "notes": "Looking for east facing unit" + }, + { + "project_id": "PRJ-002", + "unit_id": "PRJ-002-U005", + "interest_level": "low", + "configuration": "3 BHK", + "budget_range": "11.22 - 16.84", + "timeline": "immediate", + "financing": "cash", + "notes": "Wants ready to move in" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00254", + "text": "Confirm site visit for Saturday", + "due_at": "2024-05-26T00:00:00", + "status": "completed", + "assigned_to": "user_002" + }, + { + "reminder_id": "REM-00255", + "text": "Send revised payment plan", + "due_at": "2024-07-13T00:00:00", + "status": "completed", + "assigned_to": "user_002" + }, + { + "reminder_id": "REM-00256", + "text": "Confirm site visit for Saturday", + "due_at": "2024-07-16T00:00:00", + "status": "completed", + "assigned_to": "user_002" + } + ], + "qd_overview": { + "current_score": 58.2, + "score_type": "overall", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 2 + }, + "risk_flags": [ + "price_sensitivity_high" + ], + "metadata": { + "total_interactions": 7, + "total_visits": 1, + "total_opportunities": 2, + "source_confidence": 0.86, + "last_updated": "2025-02-09T00:00:00" + } + }, + { + "client_ref": "PER-0090", + "identity": { + "full_name": "Sanjay Saha", + "email": "sanjay.saha96@outlook.com", + "phone": "+91-75004-49682", + "linkedin": "https://linkedin.com/in/sanjay-saha-736", + "persona": [ + "family_decision_unit" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": "HH-0090", + "household_name": "Saha Family", + "size": 5, + "decision_maker_id": "PER-0090" + }, + "relationships": [ + { + "related_person_id": "PER-0090-CO", + "type": "spouse", + "strength": 0.99 + } + ], + "active_opportunities": [ + { + "opportunity_id": "OPP-90-1", + "project_id": "PRJ-012", + "unit_id": "PRJ-012-U001", + "stage": "closed_lost", + "value_cr": 20.23, + "probability": 0.47, + "expected_close": "2026-08-05T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000668", + "channel": "web_enquiry", + "type": "negotiation", + "happened_at": "2025-06-10T00:00:00", + "summary": "Negotiation via web_enquiry regarding Shriram Grand City" + }, + { + "interaction_id": "INT-000667", + "channel": "whatsapp", + "type": "negotiation", + "happened_at": "2025-06-08T00:00:00", + "summary": "Negotiation via whatsapp regarding Shriram Grand City" + }, + { + "interaction_id": "INT-000666", + "channel": "phone_call", + "type": "price_discussion", + "happened_at": "2025-05-12T00:00:00", + "summary": "Price Discussion via phone_call regarding Shriram Grand City" + }, + { + "interaction_id": "INT-000665", + "channel": "referral", + "type": "initial_enquiry", + "happened_at": "2025-03-24T00:00:00", + "summary": "Initial Enquiry via referral regarding Shriram Grand City" + } + ], + "property_interests": [ + { + "project_id": "PRJ-012", + "unit_id": "PRJ-012-U001", + "interest_level": "very_high", + "configuration": "4 BHK", + "budget_range": "16.18 - 24.28", + "timeline": "flexible", + "financing": "cash", + "notes": "Comparing with competitor projects" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00257", + "text": "Send revised payment plan", + "due_at": "2025-05-15T00:00:00", + "status": "completed", + "assigned_to": "user_004" + }, + { + "reminder_id": "REM-00258", + "text": "Schedule family meeting for final decision", + "due_at": "2025-06-14T00:00:00", + "status": "completed", + "assigned_to": "user_004" + }, + { + "reminder_id": "REM-00259", + "text": "Call back regarding east-facing unit availability", + "due_at": "2025-06-16T00:00:00", + "status": "pending", + "assigned_to": "user_004" + } + ], + "qd_overview": { + "current_score": 60.1, + "score_type": "intent", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 4 + }, + "risk_flags": [ + "decision_maker_not_met" + ], + "metadata": { + "total_interactions": 4, + "total_visits": 0, + "total_opportunities": 1, + "source_confidence": 0.89, + "last_updated": "2024-03-19T00:00:00" + } + }, + { + "client_ref": "PER-0090-CO", + "identity": { + "full_name": "Tanvi Reddy", + "email": "tanvi.reddy74@outlook.com", + "phone": "+91-87774-55038", + "linkedin": null, + "persona": [ + "co_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [ + { + "related_person_id": "PER-0090", + "type": "spouse", + "strength": 0.99 + } + ], + "active_opportunities": [], + "recent_interactions": [], + "property_interests": [], + "tasks_and_reminders": [], + "qd_overview": { + "current_score": 33.1, + "score_type": "intent", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 5 + }, + "risk_flags": [ + "competitor_comparison_active" + ], + "metadata": { + "total_interactions": 0, + "total_visits": 0, + "total_opportunities": 0, + "source_confidence": 0.85, + "last_updated": "2026-04-18T00:00:00" + } + }, + { + "client_ref": "PER-0091", + "identity": { + "full_name": "Tanvi Pillai", + "email": "tanvi.pillai30@hotmail.com", + "phone": "+91-71826-61299", + "linkedin": "https://linkedin.com/in/tanvi-pillai-369", + "persona": [ + "family_decision_unit" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": "HH-0091", + "household_name": "Pillai Family", + "size": 4, + "decision_maker_id": "PER-0091" + }, + "relationships": [ + { + "related_person_id": "PER-0091-CO", + "type": "sibling", + "strength": 0.81 + } + ], + "active_opportunities": [ + { + "opportunity_id": "OPP-91-1", + "project_id": "PRJ-005", + "unit_id": "PRJ-005-U005", + "stage": "closed_lost", + "value_cr": 19.27, + "probability": 0.6, + "expected_close": "2026-08-07T00:00:00" + }, + { + "opportunity_id": "OPP-91-2", + "project_id": "PRJ-002", + "unit_id": "PRJ-002-U015", + "stage": "proposal", + "value_cr": 4.45, + "probability": 0.39, + "expected_close": "2026-09-23T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000679", + "channel": "whatsapp", + "type": "family_discussion", + "happened_at": "2025-03-18T00:00:00", + "summary": "Family Discussion via whatsapp regarding Siddha Suburbia Bungalow" + }, + { + "interaction_id": "INT-000678", + "channel": "whatsapp", + "type": "initial_enquiry", + "happened_at": "2025-03-13T00:00:00", + "summary": "Initial Enquiry via whatsapp regarding Siddha Suburbia Bungalow" + }, + { + "interaction_id": "INT-000677", + "channel": "whatsapp", + "type": "site_visit", + "happened_at": "2025-03-10T00:00:00", + "summary": "Site Visit via whatsapp regarding Siddha Suburbia Bungalow" + }, + { + "interaction_id": "INT-000676", + "channel": "whatsapp", + "type": "price_discussion", + "happened_at": "2025-03-01T00:00:00", + "summary": "Price Discussion via whatsapp regarding Siddha Suburbia Bungalow" + }, + { + "interaction_id": "INT-000675", + "channel": "whatsapp", + "type": "follow_up", + "happened_at": "2025-02-11T00:00:00", + "summary": "Follow Up via whatsapp regarding Siddha Suburbia Bungalow" + } + ], + "property_interests": [ + { + "project_id": "PRJ-005", + "unit_id": "PRJ-005-U005", + "interest_level": "very_high", + "configuration": "3 BHK", + "budget_range": "15.42 - 23.12", + "timeline": "6_months", + "financing": "cash", + "notes": "Wants ready to move in" + }, + { + "project_id": "PRJ-002", + "unit_id": "PRJ-002-U015", + "interest_level": "high", + "configuration": "Villa", + "budget_range": "3.56 - 5.34", + "timeline": "3_months", + "financing": "combined", + "notes": "Prefers higher floor" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00260", + "text": "Send revised payment plan", + "due_at": "2024-12-26T00:00:00", + "status": "overdue", + "assigned_to": "user_002" + }, + { + "reminder_id": "REM-00261", + "text": "Schedule family meeting for final decision", + "due_at": "2025-01-31T00:00:00", + "status": "completed", + "assigned_to": "user_002" + }, + { + "reminder_id": "REM-00262", + "text": "Follow up on Siddha Suburbia Bungalow pricing discussion", + "due_at": "2025-02-09T00:00:00", + "status": "completed", + "assigned_to": "user_002" + } + ], + "qd_overview": { + "current_score": 98, + "score_type": "urgency", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 5 + }, + "risk_flags": [ + "price_sensitivity_high" + ], + "metadata": { + "total_interactions": 11, + "total_visits": 3, + "total_opportunities": 2, + "source_confidence": 0.86, + "last_updated": "2025-09-23T00:00:00" + } + }, + { + "client_ref": "PER-0091-CO", + "identity": { + "full_name": "Rohan Das", + "email": "rohan.das56@outlook.com", + "phone": "+91-96527-86541", + "linkedin": null, + "persona": [ + "co_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [ + { + "related_person_id": "PER-0091", + "type": "sibling", + "strength": 0.81 + } + ], + "active_opportunities": [], + "recent_interactions": [], + "property_interests": [], + "tasks_and_reminders": [], + "qd_overview": { + "current_score": 61.1, + "score_type": "engagement", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 5 + }, + "risk_flags": [ + "decision_maker_not_met" + ], + "metadata": { + "total_interactions": 0, + "total_visits": 0, + "total_opportunities": 0, + "source_confidence": 0.85, + "last_updated": "2026-04-18T00:00:00" + } + }, + { + "client_ref": "PER-0092", + "identity": { + "full_name": "Abhishek Chatterjee", + "email": "abhishek.chatterjee78@yahoo.com", + "phone": "+91-79416-44754", + "linkedin": "https://linkedin.com/in/abhishek-chatterjee-148", + "persona": [ + "repeat_visitor" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-92-1", + "project_id": "PRJ-014", + "unit_id": "PRJ-014-U005", + "stage": "negotiation", + "value_cr": 4.25, + "probability": 0.9, + "expected_close": "2026-10-01T00:00:00" + }, + { + "opportunity_id": "OPP-92-2", + "project_id": "PRJ-008", + "unit_id": "PRJ-008-U003", + "stage": "proposal", + "value_cr": 8.37, + "probability": 0.23, + "expected_close": "2026-08-02T00:00:00" + }, + { + "opportunity_id": "OPP-92-3", + "project_id": "PRJ-004", + "unit_id": "PRJ-004-U020", + "stage": "closed_won", + "value_cr": 18.88, + "probability": 0.33, + "expected_close": "2026-07-30T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000683", + "channel": "whatsapp", + "type": "price_discussion", + "happened_at": "2024-06-15T00:00:00", + "summary": "Price Discussion via whatsapp regarding Ambuja Utpaala" + }, + { + "interaction_id": "INT-000682", + "channel": "email", + "type": "price_discussion", + "happened_at": "2024-05-21T00:00:00", + "summary": "Price Discussion via email regarding Ambuja Utpaala" + }, + { + "interaction_id": "INT-000681", + "channel": "phone_call", + "type": "initial_enquiry", + "happened_at": "2024-04-27T00:00:00", + "summary": "Initial Enquiry via phone_call regarding Ambuja Utpaala" + }, + { + "interaction_id": "INT-000680", + "channel": "walk_in", + "type": "initial_enquiry", + "happened_at": "2024-04-08T00:00:00", + "summary": "Initial Enquiry via walk_in regarding Ambuja Utpaala" + } + ], + "property_interests": [ + { + "project_id": "PRJ-014", + "unit_id": "PRJ-014-U005", + "interest_level": "very_high", + "configuration": "2 BHK", + "budget_range": "3.4 - 5.1", + "timeline": "immediate", + "financing": "home_loan", + "notes": "Prefers higher floor" + }, + { + "project_id": "PRJ-008", + "unit_id": "PRJ-008-U003", + "interest_level": "very_high", + "configuration": "Penthouse", + "budget_range": "6.7 - 10.04", + "timeline": "6_months", + "financing": "cash", + "notes": "Waiting for festive season offer" + }, + { + "project_id": "PRJ-004", + "unit_id": "PRJ-004-U020", + "interest_level": "medium", + "configuration": "5 BHK", + "budget_range": "15.1 - 22.66", + "timeline": "6_months", + "financing": "home_loan", + "notes": "Wants ready to move in" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00265", + "text": "Update on road widening approval status", + "due_at": "2024-04-11T00:00:00", + "status": "completed", + "assigned_to": "user_001" + }, + { + "reminder_id": "REM-00266", + "text": "Update on road widening approval status", + "due_at": "2024-05-02T00:00:00", + "status": "completed", + "assigned_to": "user_001" + }, + { + "reminder_id": "REM-00267", + "text": "Schedule family meeting for final decision", + "due_at": "2024-05-28T00:00:00", + "status": "completed", + "assigned_to": "user_001" + } + ], + "qd_overview": { + "current_score": 85.7, + "score_type": "urgency", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 3 + }, + "risk_flags": [ + "competitor_comparison_active" + ], + "metadata": { + "total_interactions": 4, + "total_visits": 0, + "total_opportunities": 3, + "source_confidence": 0.82, + "last_updated": "2025-02-15T00:00:00" + } + }, + { + "client_ref": "PER-0093", + "identity": { + "full_name": "Anirban Banerjee", + "email": "anirban.banerjee41@outlook.com", + "phone": "+91-85209-73620", + "linkedin": "https://linkedin.com/in/anirban-banerjee-673", + "persona": [ + "slow_burn_investor" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": "HH-0093", + "household_name": "Banerjee Family", + "size": 4, + "decision_maker_id": "PER-0093" + }, + "relationships": [ + { + "related_person_id": "PER-0093-CO", + "type": "spouse", + "strength": 0.72 + } + ], + "active_opportunities": [ + { + "opportunity_id": "OPP-93-1", + "project_id": "PRJ-004", + "unit_id": "PRJ-004-U008", + "stage": "closed_lost", + "value_cr": 31.98, + "probability": 0.45, + "expected_close": "2026-10-15T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000693", + "channel": "phone_call", + "type": "initial_enquiry", + "happened_at": "2025-02-04T00:00:00", + "summary": "Initial Enquiry via phone_call regarding Atri Surya Toron" + }, + { + "interaction_id": "INT-000694", + "channel": "whatsapp", + "type": "price_discussion", + "happened_at": "2025-02-04T00:00:00", + "summary": "Price Discussion via whatsapp regarding Atri Surya Toron" + }, + { + "interaction_id": "INT-000692", + "channel": "phone_call", + "type": "initial_enquiry", + "happened_at": "2025-02-01T00:00:00", + "summary": "Initial Enquiry via phone_call regarding Atri Surya Toron" + }, + { + "interaction_id": "INT-000691", + "channel": "phone_call", + "type": "site_visit", + "happened_at": "2025-01-23T00:00:00", + "summary": "Site Visit via phone_call regarding Atri Surya Toron" + }, + { + "interaction_id": "INT-000689", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2025-01-22T00:00:00", + "summary": "Site Visit via site_visit regarding Atri Surya Toron" + } + ], + "property_interests": [ + { + "project_id": "PRJ-004", + "unit_id": "PRJ-004-U008", + "interest_level": "very_high", + "configuration": "Villa", + "budget_range": "25.58 - 38.38", + "timeline": "6_months", + "financing": "cash", + "notes": "Prefers higher floor" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00268", + "text": "Confirm site visit for Saturday", + "due_at": "2024-12-25T00:00:00", + "status": "overdue", + "assigned_to": "user_001" + }, + { + "reminder_id": "REM-00269", + "text": "Call back regarding east-facing unit availability", + "due_at": "2025-02-07T00:00:00", + "status": "completed", + "assigned_to": "user_001" + } + ], + "qd_overview": { + "current_score": 98, + "score_type": "financial_qualification", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 3 + }, + "risk_flags": [], + "metadata": { + "total_interactions": 11, + "total_visits": 1, + "total_opportunities": 1, + "source_confidence": 0.98, + "last_updated": "2025-10-24T00:00:00" + } + }, + { + "client_ref": "PER-0093-CO", + "identity": { + "full_name": "Neha Pillai", + "email": "neha.pillai32@gmail.com", + "phone": "+91-93674-73680", + "linkedin": null, + "persona": [ + "co_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [ + { + "related_person_id": "PER-0093", + "type": "spouse", + "strength": 0.72 + } + ], + "active_opportunities": [], + "recent_interactions": [], + "property_interests": [], + "tasks_and_reminders": [], + "qd_overview": { + "current_score": 83.0, + "score_type": "engagement", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 5 + }, + "risk_flags": [ + "competitor_comparison_active" + ], + "metadata": { + "total_interactions": 0, + "total_visits": 0, + "total_opportunities": 0, + "source_confidence": 0.85, + "last_updated": "2026-04-18T00:00:00" + } + }, + { + "client_ref": "PER-0094", + "identity": { + "full_name": "Ritu Sharma", + "email": "ritu.sharma28@outlook.com", + "phone": "+91-85572-58200", + "linkedin": "https://linkedin.com/in/ritu-sharma-941", + "persona": [ + "family_decision_unit" + ] + }, + "account_links": { + "account_id": "ACC-0094", + "account_name": "Cognizant", + "account_type": "individual_business" + }, + "household": { + "household_id": "HH-0094", + "household_name": "Sharma Family", + "size": 4, + "decision_maker_id": "PER-0094" + }, + "relationships": [ + { + "related_person_id": "PER-0094-CO", + "type": "sibling", + "strength": 0.73 + } + ], + "active_opportunities": [ + { + "opportunity_id": "OPP-94-1", + "project_id": "PRJ-012", + "unit_id": "PRJ-012-U004", + "stage": "discovery", + "value_cr": 10.9, + "probability": 0.4, + "expected_close": "2026-10-05T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000701", + "channel": "phone_call", + "type": "document_sharing", + "happened_at": "2025-01-27T00:00:00", + "summary": "Document Sharing via phone_call regarding Shriram Grand City" + }, + { + "interaction_id": "INT-000700", + "channel": "walk_in", + "type": "document_sharing", + "happened_at": "2025-01-20T00:00:00", + "summary": "Document Sharing via walk_in regarding Shriram Grand City" + }, + { + "interaction_id": "INT-000699", + "channel": "email", + "type": "negotiation", + "happened_at": "2025-01-10T00:00:00", + "summary": "Negotiation via email regarding Shriram Grand City" + }, + { + "interaction_id": "INT-000698", + "channel": "web_enquiry", + "type": "family_discussion", + "happened_at": "2025-01-06T00:00:00", + "summary": "Family Discussion via web_enquiry regarding Shriram Grand City" + }, + { + "interaction_id": "INT-000697", + "channel": "whatsapp", + "type": "price_discussion", + "happened_at": "2024-12-14T00:00:00", + "summary": "Price Discussion via whatsapp regarding Shriram Grand City" + } + ], + "property_interests": [ + { + "project_id": "PRJ-012", + "unit_id": "PRJ-012-U004", + "interest_level": "high", + "configuration": "Villa", + "budget_range": "8.72 - 13.08", + "timeline": "flexible", + "financing": "cash", + "notes": "Looking for east facing unit" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00270", + "text": "Share competitor comparison sheet", + "due_at": "2024-12-19T00:00:00", + "status": "completed", + "assigned_to": "user_004" + }, + { + "reminder_id": "REM-00271", + "text": "Share competitor comparison sheet", + "due_at": "2025-01-13T00:00:00", + "status": "completed", + "assigned_to": "user_004" + }, + { + "reminder_id": "REM-00272", + "text": "Update on road widening approval status", + "due_at": "2025-01-22T00:00:00", + "status": "completed", + "assigned_to": "user_004" + } + ], + "qd_overview": { + "current_score": 98, + "score_type": "urgency", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 2 + }, + "risk_flags": [ + "financing_not_finalized", + "timeline_unclear" + ], + "metadata": { + "total_interactions": 7, + "total_visits": 0, + "total_opportunities": 1, + "source_confidence": 0.82, + "last_updated": "2025-09-12T00:00:00" + } + }, + { + "client_ref": "PER-0094-CO", + "identity": { + "full_name": "Deb Kumar", + "email": "deb.kumar59@gmail.com", + "phone": "+91-99811-61508", + "linkedin": null, + "persona": [ + "co_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [ + { + "related_person_id": "PER-0094", + "type": "sibling", + "strength": 0.73 + } + ], + "active_opportunities": [], + "recent_interactions": [], + "property_interests": [], + "tasks_and_reminders": [], + "qd_overview": { + "current_score": 54.8, + "score_type": "urgency", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 4 + }, + "risk_flags": [ + "slow_response_pattern" + ], + "metadata": { + "total_interactions": 0, + "total_visits": 0, + "total_opportunities": 0, + "source_confidence": 0.85, + "last_updated": "2026-04-18T00:00:00" + } + }, + { + "client_ref": "PER-0095", + "identity": { + "full_name": "Kunal Das", + "email": "kunal.das10@rediffmail.com", + "phone": "+91-76556-92352", + "linkedin": "https://linkedin.com/in/kunal-das-412", + "persona": [ + "family_decision_unit" + ] + }, + "account_links": { + "account_id": "ACC-0095", + "account_name": "SRF Limited", + "account_type": "individual_business" + }, + "household": { + "household_id": "HH-0095", + "household_name": "Das Family", + "size": 5, + "decision_maker_id": "PER-0095" + }, + "relationships": [ + { + "related_person_id": "PER-0095-CO", + "type": "sibling", + "strength": 0.75 + } + ], + "active_opportunities": [ + { + "opportunity_id": "OPP-95-1", + "project_id": "PRJ-006", + "unit_id": "PRJ-006-U002", + "stage": "discovery", + "value_cr": 24.02, + "probability": 0.11, + "expected_close": "2026-09-29T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000711", + "channel": "phone_call", + "type": "site_visit", + "happened_at": "2025-11-04T00:00:00", + "summary": "Site Visit via phone_call regarding Merlin Avana" + }, + { + "interaction_id": "INT-000710", + "channel": "whatsapp", + "type": "negotiation", + "happened_at": "2025-11-02T00:00:00", + "summary": "Negotiation via whatsapp regarding Merlin Avana" + }, + { + "interaction_id": "INT-000709", + "channel": "walk_in", + "type": "document_sharing", + "happened_at": "2025-10-31T00:00:00", + "summary": "Document Sharing via walk_in regarding Merlin Avana" + }, + { + "interaction_id": "INT-000708", + "channel": "phone_call", + "type": "price_discussion", + "happened_at": "2025-10-25T00:00:00", + "summary": "Price Discussion via phone_call regarding Merlin Avana" + }, + { + "interaction_id": "INT-000707", + "channel": "referral", + "type": "site_visit", + "happened_at": "2025-10-03T00:00:00", + "summary": "Site Visit via referral regarding Merlin Avana" + } + ], + "property_interests": [ + { + "project_id": "PRJ-006", + "unit_id": "PRJ-006-U002", + "interest_level": "very_high", + "configuration": "Duplex", + "budget_range": "19.22 - 28.82", + "timeline": "flexible", + "financing": "cash", + "notes": "Needs proximity to school" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00274", + "text": "Send revised payment plan", + "due_at": "2025-09-12T00:00:00", + "status": "completed", + "assigned_to": "user_002" + }, + { + "reminder_id": "REM-00275", + "text": "Send revised payment plan", + "due_at": "2025-10-06T00:00:00", + "status": "completed", + "assigned_to": "user_002" + }, + { + "reminder_id": "REM-00276", + "text": "Schedule family meeting for final decision", + "due_at": "2025-11-08T00:00:00", + "status": "overdue", + "assigned_to": "user_002" + } + ], + "qd_overview": { + "current_score": 72.7, + "score_type": "overall", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 4 + }, + "risk_flags": [ + "financing_not_finalized", + "timeline_unclear" + ], + "metadata": { + "total_interactions": 10, + "total_visits": 0, + "total_opportunities": 1, + "source_confidence": 0.82, + "last_updated": "2024-04-23T00:00:00" + } + }, + { + "client_ref": "PER-0095-CO", + "identity": { + "full_name": "Swati Bose", + "email": "swati.bose51@outlook.com", + "phone": "+91-76509-21062", + "linkedin": null, + "persona": [ + "co_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [ + { + "related_person_id": "PER-0095", + "type": "sibling", + "strength": 0.75 + } + ], + "active_opportunities": [], + "recent_interactions": [], + "property_interests": [], + "tasks_and_reminders": [], + "qd_overview": { + "current_score": 33.0, + "score_type": "financial_qualification", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 3 + }, + "risk_flags": [], + "metadata": { + "total_interactions": 0, + "total_visits": 0, + "total_opportunities": 0, + "source_confidence": 0.85, + "last_updated": "2026-04-18T00:00:00" + } + }, + { + "client_ref": "PER-0096", + "identity": { + "full_name": "Sourav Gupta", + "email": "sourav.gupta73@rediffmail.com", + "phone": "+91-74266-66532", + "linkedin": "https://linkedin.com/in/sourav-gupta-976", + "persona": [ + "price_sensitive_aspirational" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": "HH-0096", + "household_name": "Gupta Family", + "size": 3, + "decision_maker_id": "PER-0096" + }, + "relationships": [ + { + "related_person_id": "PER-0096-CO", + "type": "business_partner", + "strength": 0.73 + } + ], + "active_opportunities": [ + { + "opportunity_id": "OPP-96-1", + "project_id": "PRJ-009", + "unit_id": "PRJ-009-U012", + "stage": "negotiation", + "value_cr": 52.97, + "probability": 0.93, + "expected_close": "2026-08-20T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000721", + "channel": "phone_call", + "type": "document_sharing", + "happened_at": "2024-08-02T00:00:00", + "summary": "Document Sharing via phone_call regarding Siddha Sky Waterfront" + }, + { + "interaction_id": "INT-000720", + "channel": "phone_call", + "type": "price_discussion", + "happened_at": "2024-07-30T00:00:00", + "summary": "Price Discussion via phone_call regarding Siddha Sky Waterfront" + }, + { + "interaction_id": "INT-000719", + "channel": "whatsapp", + "type": "family_discussion", + "happened_at": "2024-07-28T00:00:00", + "summary": "Family Discussion via whatsapp regarding Siddha Sky Waterfront" + }, + { + "interaction_id": "INT-000718", + "channel": "whatsapp", + "type": "negotiation", + "happened_at": "2024-07-17T00:00:00", + "summary": "Negotiation via whatsapp regarding Siddha Sky Waterfront" + }, + { + "interaction_id": "INT-000717", + "channel": "whatsapp", + "type": "negotiation", + "happened_at": "2024-06-26T00:00:00", + "summary": "Negotiation via whatsapp regarding Siddha Sky Waterfront" + } + ], + "property_interests": [ + { + "project_id": "PRJ-009", + "unit_id": "PRJ-009-U012", + "interest_level": "low", + "configuration": "5 BHK", + "budget_range": "42.38 - 63.56", + "timeline": "3_months", + "financing": "combined", + "notes": "Needs proximity to school" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00278", + "text": "Follow up on Siddha Sky Waterfront pricing discussion", + "due_at": "2024-05-24T00:00:00", + "status": "pending", + "assigned_to": "user_004" + }, + { + "reminder_id": "REM-00279", + "text": "Share competitor comparison sheet", + "due_at": "2024-05-25T00:00:00", + "status": "completed", + "assigned_to": "user_004" + }, + { + "reminder_id": "REM-00280", + "text": "Confirm site visit for Saturday", + "due_at": "2024-06-04T00:00:00", + "status": "overdue", + "assigned_to": "user_004" + } + ], + "qd_overview": { + "current_score": 98, + "score_type": "engagement", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 4 + }, + "risk_flags": [], + "metadata": { + "total_interactions": 10, + "total_visits": 0, + "total_opportunities": 1, + "source_confidence": 0.8, + "last_updated": "2024-10-16T00:00:00" + } + }, + { + "client_ref": "PER-0096-CO", + "identity": { + "full_name": "Neha Patel", + "email": "neha.patel89@rediffmail.com", + "phone": "+91-99731-42547", + "linkedin": null, + "persona": [ + "co_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [ + { + "related_person_id": "PER-0096", + "type": "business_partner", + "strength": 0.73 + } + ], + "active_opportunities": [], + "recent_interactions": [], + "property_interests": [], + "tasks_and_reminders": [], + "qd_overview": { + "current_score": 68.0, + "score_type": "urgency", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 3 + }, + "risk_flags": [ + "competitor_comparison_active" + ], + "metadata": { + "total_interactions": 0, + "total_visits": 0, + "total_opportunities": 0, + "source_confidence": 0.85, + "last_updated": "2026-04-18T00:00:00" + } + }, + { + "client_ref": "PER-0097", + "identity": { + "full_name": "Shreya Das", + "email": "shreya.das21@outlook.com", + "phone": "+91-93273-79523", + "linkedin": "https://linkedin.com/in/shreya-das-543", + "persona": [ + "family_decision_unit" + ] + }, + "account_links": { + "account_id": "ACC-0097", + "account_name": "EY India", + "account_type": "developer" + }, + "household": { + "household_id": "HH-0097", + "household_name": "Das Family", + "size": 4, + "decision_maker_id": "PER-0097" + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-97-1", + "project_id": "PRJ-002", + "unit_id": "PRJ-002-U008", + "stage": "discovery", + "value_cr": 71.33, + "probability": 0.27, + "expected_close": "2026-07-29T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000730", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2024-11-29T00:00:00", + "summary": "Site Visit via site_visit regarding Sugam Prakriti" + }, + { + "interaction_id": "INT-000729", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2024-11-23T00:00:00", + "summary": "Site Visit via site_visit regarding Sugam Prakriti" + }, + { + "interaction_id": "INT-000728", + "channel": "phone_call", + "type": "price_discussion", + "happened_at": "2024-11-03T00:00:00", + "summary": "Price Discussion via phone_call regarding Sugam Prakriti" + }, + { + "interaction_id": "INT-000727", + "channel": "phone_call", + "type": "price_discussion", + "happened_at": "2024-10-31T00:00:00", + "summary": "Price Discussion via phone_call regarding Sugam Prakriti" + }, + { + "interaction_id": "INT-000726", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2024-10-29T00:00:00", + "summary": "Site Visit via site_visit regarding Sugam Prakriti" + } + ], + "property_interests": [ + { + "project_id": "PRJ-002", + "unit_id": "PRJ-002-U008", + "interest_level": "medium", + "configuration": "Villa", + "budget_range": "57.06 - 85.6", + "timeline": "6_months", + "financing": "home_loan", + "notes": "Comparing with competitor projects" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00285", + "text": "Send revised payment plan", + "due_at": "2024-10-03T00:00:00", + "status": "completed", + "assigned_to": "user_002" + }, + { + "reminder_id": "REM-00286", + "text": "Confirm site visit for Saturday", + "due_at": "2024-11-02T00:00:00", + "status": "completed", + "assigned_to": "user_002" + } + ], + "qd_overview": { + "current_score": 98, + "score_type": "engagement", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 2 + }, + "risk_flags": [ + "competitor_comparison_active" + ], + "metadata": { + "total_interactions": 9, + "total_visits": 3, + "total_opportunities": 1, + "source_confidence": 0.78, + "last_updated": "2024-11-16T00:00:00" + } + }, + { + "client_ref": "PER-0098", + "identity": { + "full_name": "Deepak Bose", + "email": "deepak.bose33@rediffmail.com", + "phone": "+91-72517-42264", + "linkedin": "https://linkedin.com/in/deepak-bose-886", + "persona": [ + "repeat_visitor" + ] + }, + "account_links": { + "account_id": "ACC-0098", + "account_name": "PwC India", + "account_type": "developer" + }, + "household": { + "household_id": "HH-0098", + "household_name": "Bose Family", + "size": 2, + "decision_maker_id": "PER-0098" + }, + "relationships": [ + { + "related_person_id": "PER-0098-CO", + "type": "business_partner", + "strength": 0.8 + } + ], + "active_opportunities": [ + { + "opportunity_id": "OPP-98-1", + "project_id": "PRJ-005", + "unit_id": "PRJ-005-U006", + "stage": "proposal", + "value_cr": 10.06, + "probability": 0.92, + "expected_close": "2026-08-28T00:00:00" + }, + { + "opportunity_id": "OPP-98-2", + "project_id": "PRJ-013", + "unit_id": "PRJ-013-U008", + "stage": "negotiation", + "value_cr": 35.4, + "probability": 0.65, + "expected_close": "2026-06-26T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000734", + "channel": "phone_call", + "type": "follow_up", + "happened_at": "2024-09-08T00:00:00", + "summary": "Follow Up via phone_call regarding Godrej Elevate" + }, + { + "interaction_id": "INT-000733", + "channel": "whatsapp", + "type": "initial_enquiry", + "happened_at": "2024-09-04T00:00:00", + "summary": "Initial Enquiry via whatsapp regarding Godrej Elevate" + }, + { + "interaction_id": "INT-000732", + "channel": "whatsapp", + "type": "family_discussion", + "happened_at": "2024-08-14T00:00:00", + "summary": "Family Discussion via whatsapp regarding Godrej Elevate" + }, + { + "interaction_id": "INT-000731", + "channel": "referral", + "type": "initial_enquiry", + "happened_at": "2024-08-10T00:00:00", + "summary": "Initial Enquiry via referral regarding Godrej Elevate" + } + ], + "property_interests": [ + { + "project_id": "PRJ-005", + "unit_id": "PRJ-005-U006", + "interest_level": "low", + "configuration": "3 BHK", + "budget_range": "8.05 - 12.07", + "timeline": "3_months", + "financing": "home_loan", + "notes": "Wants ready to move in" + }, + { + "project_id": "PRJ-013", + "unit_id": "PRJ-013-U008", + "interest_level": "high", + "configuration": "5 BHK", + "budget_range": "28.32 - 42.48", + "timeline": "flexible", + "financing": "undecided", + "notes": "Waiting for festive season offer" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00287", + "text": "Confirm site visit for Saturday", + "due_at": "2024-08-16T00:00:00", + "status": "completed", + "assigned_to": "user_005" + }, + { + "reminder_id": "REM-00288", + "text": "Call back regarding east-facing unit availability", + "due_at": "2024-08-17T00:00:00", + "status": "completed", + "assigned_to": "user_005" + } + ], + "qd_overview": { + "current_score": 79.6, + "score_type": "urgency", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 3 + }, + "risk_flags": [], + "metadata": { + "total_interactions": 4, + "total_visits": 0, + "total_opportunities": 2, + "source_confidence": 0.86, + "last_updated": "2024-12-02T00:00:00" + } + }, + { + "client_ref": "PER-0098-CO", + "identity": { + "full_name": "Shreya Sharma", + "email": "shreya.sharma86@gmail.com", + "phone": "+91-80794-15747", + "linkedin": null, + "persona": [ + "co_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [ + { + "related_person_id": "PER-0098", + "type": "business_partner", + "strength": 0.8 + } + ], + "active_opportunities": [], + "recent_interactions": [], + "property_interests": [], + "tasks_and_reminders": [], + "qd_overview": { + "current_score": 42.3, + "score_type": "financial_qualification", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 3 + }, + "risk_flags": [], + "metadata": { + "total_interactions": 0, + "total_visits": 0, + "total_opportunities": 0, + "source_confidence": 0.85, + "last_updated": "2026-04-18T00:00:00" + } + }, + { + "client_ref": "PER-0099", + "identity": { + "full_name": "Divya Das", + "email": "divya.das55@gmail.com", + "phone": "+91-97264-58163", + "linkedin": "https://linkedin.com/in/divya-das-624", + "persona": [ + "price_sensitive_aspirational" + ] + }, + "account_links": { + "account_id": "ACC-0099", + "account_name": "BYJU'S", + "account_type": "corporate" + }, + "household": { + "household_id": "HH-0099", + "household_name": "Das Family", + "size": 5, + "decision_maker_id": "PER-0099" + }, + "relationships": [ + { + "related_person_id": "PER-0099-CO", + "type": "spouse", + "strength": 0.79 + } + ], + "active_opportunities": [ + { + "opportunity_id": "OPP-99-1", + "project_id": "PRJ-012", + "unit_id": "PRJ-012-U007", + "stage": "closed_lost", + "value_cr": 2.7, + "probability": 0.25, + "expected_close": "2026-07-03T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000744", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2024-06-11T00:00:00", + "summary": "Site Visit via site_visit regarding Shriram Grand City" + }, + { + "interaction_id": "INT-000742", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2024-06-02T00:00:00", + "summary": "Site Visit via site_visit regarding Shriram Grand City" + }, + { + "interaction_id": "INT-000743", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2024-06-02T00:00:00", + "summary": "Site Visit via site_visit regarding Shriram Grand City" + }, + { + "interaction_id": "INT-000741", + "channel": "whatsapp", + "type": "document_sharing", + "happened_at": "2024-05-22T00:00:00", + "summary": "Document Sharing via whatsapp regarding Shriram Grand City" + }, + { + "interaction_id": "INT-000740", + "channel": "phone_call", + "type": "price_discussion", + "happened_at": "2024-05-05T00:00:00", + "summary": "Price Discussion via phone_call regarding Shriram Grand City" + } + ], + "property_interests": [ + { + "project_id": "PRJ-012", + "unit_id": "PRJ-012-U007", + "interest_level": "low", + "configuration": "Duplex", + "budget_range": "2.16 - 3.24", + "timeline": "immediate", + "financing": "undecided", + "notes": "Waiting for festive season offer" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00289", + "text": "Update on road widening approval status", + "due_at": "2024-04-26T00:00:00", + "status": "completed", + "assigned_to": "user_002" + }, + { + "reminder_id": "REM-00290", + "text": "Share competitor comparison sheet", + "due_at": "2024-06-07T00:00:00", + "status": "pending", + "assigned_to": "user_002" + }, + { + "reminder_id": "REM-00291", + "text": "Confirm site visit for Saturday", + "due_at": "2024-06-08T00:00:00", + "status": "completed", + "assigned_to": "user_002" + } + ], + "qd_overview": { + "current_score": 98, + "score_type": "urgency", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 3 + }, + "risk_flags": [ + "financing_not_finalized", + "timeline_unclear" + ], + "metadata": { + "total_interactions": 10, + "total_visits": 4, + "total_opportunities": 1, + "source_confidence": 0.8, + "last_updated": "2025-02-01T00:00:00" + } + }, + { + "client_ref": "PER-0099-CO", + "identity": { + "full_name": "Kunal Patel", + "email": "kunal.patel92@yahoo.com", + "phone": "+91-86230-79111", + "linkedin": null, + "persona": [ + "co_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [ + { + "related_person_id": "PER-0099", + "type": "spouse", + "strength": 0.79 + } + ], + "active_opportunities": [], + "recent_interactions": [], + "property_interests": [], + "tasks_and_reminders": [], + "qd_overview": { + "current_score": 77.6, + "score_type": "overall", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 3 + }, + "risk_flags": [ + "slow_response_pattern" + ], + "metadata": { + "total_interactions": 0, + "total_visits": 0, + "total_opportunities": 0, + "source_confidence": 0.85, + "last_updated": "2026-04-18T00:00:00" + } + }, + { + "client_ref": "PER-0100", + "identity": { + "full_name": "Shreya Saha", + "email": "shreya.saha43@outlook.com", + "phone": "+91-98552-34535", + "linkedin": "https://linkedin.com/in/shreya-saha-316", + "persona": [ + "slow_burn_investor" + ] + }, + "account_links": { + "account_id": "ACC-0100", + "account_name": "KPMG", + "account_type": "developer" + }, + "household": { + "household_id": "HH-0100", + "household_name": "Saha Family", + "size": 3, + "decision_maker_id": "PER-0100" + }, + "relationships": [ + { + "related_person_id": "PER-0100-CO", + "type": "business_partner", + "strength": 0.94 + } + ], + "active_opportunities": [ + { + "opportunity_id": "OPP-100-1", + "project_id": "PRJ-004", + "unit_id": "PRJ-004-U001", + "stage": "negotiation", + "value_cr": 6.2, + "probability": 0.75, + "expected_close": "2026-06-24T00:00:00" + }, + { + "opportunity_id": "OPP-100-2", + "project_id": "PRJ-003", + "unit_id": "PRJ-003-U011", + "stage": "closed_lost", + "value_cr": 3.86, + "probability": 0.5, + "expected_close": "2026-09-10T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000751", + "channel": "referral", + "type": "negotiation", + "happened_at": "2024-07-30T00:00:00", + "summary": "Negotiation via referral regarding Atri Surya Toron" + }, + { + "interaction_id": "INT-000750", + "channel": "email", + "type": "price_discussion", + "happened_at": "2024-07-29T00:00:00", + "summary": "Price Discussion via email regarding Atri Surya Toron" + }, + { + "interaction_id": "INT-000749", + "channel": "referral", + "type": "document_sharing", + "happened_at": "2024-06-29T00:00:00", + "summary": "Document Sharing via referral regarding Atri Surya Toron" + }, + { + "interaction_id": "INT-000747", + "channel": "email", + "type": "site_visit", + "happened_at": "2024-06-24T00:00:00", + "summary": "Site Visit via email regarding Atri Surya Toron" + }, + { + "interaction_id": "INT-000748", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2024-06-24T00:00:00", + "summary": "Site Visit via site_visit regarding Atri Surya Toron" + } + ], + "property_interests": [ + { + "project_id": "PRJ-004", + "unit_id": "PRJ-004-U001", + "interest_level": "very_high", + "configuration": "5 BHK", + "budget_range": "4.96 - 7.44", + "timeline": "immediate", + "financing": "cash", + "notes": "Needs proximity to school" + }, + { + "project_id": "PRJ-003", + "unit_id": "PRJ-003-U011", + "interest_level": "medium", + "configuration": "Duplex", + "budget_range": "3.09 - 4.63", + "timeline": "3_months", + "financing": "combined", + "notes": "Comparing with competitor projects" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00293", + "text": "Update on road widening approval status", + "due_at": "2024-05-21T00:00:00", + "status": "pending", + "assigned_to": "user_002" + }, + { + "reminder_id": "REM-00294", + "text": "Share competitor comparison sheet", + "due_at": "2024-06-30T00:00:00", + "status": "completed", + "assigned_to": "user_002" + }, + { + "reminder_id": "REM-00295", + "text": "Update on road widening approval status", + "due_at": "2024-06-26T00:00:00", + "status": "completed", + "assigned_to": "user_002" + } + ], + "qd_overview": { + "current_score": 82.1, + "score_type": "intent", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 3 + }, + "risk_flags": [ + "competitor_comparison_active" + ], + "metadata": { + "total_interactions": 7, + "total_visits": 1, + "total_opportunities": 2, + "source_confidence": 0.79, + "last_updated": "2025-09-10T00:00:00" + } + }, + { + "client_ref": "PER-0100-CO", + "identity": { + "full_name": "Sanjay Saha", + "email": "sanjay.saha72@outlook.com", + "phone": "+91-90266-90837", + "linkedin": null, + "persona": [ + "co_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [ + { + "related_person_id": "PER-0100", + "type": "business_partner", + "strength": 0.94 + } + ], + "active_opportunities": [], + "recent_interactions": [], + "property_interests": [], + "tasks_and_reminders": [], + "qd_overview": { + "current_score": 35.9, + "score_type": "financial_qualification", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 4 + }, + "risk_flags": [ + "financing_not_finalized", + "timeline_unclear" + ], + "metadata": { + "total_interactions": 0, + "total_visits": 0, + "total_opportunities": 0, + "source_confidence": 0.85, + "last_updated": "2026-04-18T00:00:00" + } + }, + { + "client_ref": "PER-0101", + "identity": { + "full_name": "Priya Agarwal", + "email": "priya.agarwal11@gmail.com", + "phone": "+91-90657-66595", + "linkedin": "https://linkedin.com/in/priya-agarwal-525", + "persona": [ + "price_sensitive_aspirational" + ] + }, + "account_links": { + "account_id": "ACC-0101", + "account_name": "Tech Mahindra", + "account_type": "corporate" + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-101-1", + "project_id": "PRJ-004", + "unit_id": "PRJ-004-U017", + "stage": "proposal", + "value_cr": 5.05, + "probability": 0.6, + "expected_close": "2026-08-12T00:00:00" + }, + { + "opportunity_id": "OPP-101-2", + "project_id": "PRJ-012", + "unit_id": "PRJ-012-U004", + "stage": "closed_won", + "value_cr": 10.9, + "probability": 0.81, + "expected_close": "2026-08-18T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000755", + "channel": "phone_call", + "type": "site_visit", + "happened_at": "2025-10-19T00:00:00", + "summary": "Site Visit via phone_call regarding Atri Surya Toron" + }, + { + "interaction_id": "INT-000754", + "channel": "email", + "type": "price_discussion", + "happened_at": "2025-10-10T00:00:00", + "summary": "Price Discussion via email regarding Atri Surya Toron" + }, + { + "interaction_id": "INT-000753", + "channel": "whatsapp", + "type": "family_discussion", + "happened_at": "2025-10-01T00:00:00", + "summary": "Family Discussion via whatsapp regarding Atri Surya Toron" + }, + { + "interaction_id": "INT-000752", + "channel": "referral", + "type": "initial_enquiry", + "happened_at": "2025-09-21T00:00:00", + "summary": "Initial Enquiry via referral regarding Atri Surya Toron" + } + ], + "property_interests": [ + { + "project_id": "PRJ-004", + "unit_id": "PRJ-004-U017", + "interest_level": "very_high", + "configuration": "Duplex", + "budget_range": "4.04 - 6.06", + "timeline": "3_months", + "financing": "combined", + "notes": "Waiting for festive season offer" + }, + { + "project_id": "PRJ-012", + "unit_id": "PRJ-012-U004", + "interest_level": "medium", + "configuration": "Villa", + "budget_range": "8.72 - 13.08", + "timeline": "3_months", + "financing": "combined", + "notes": "Waiting for festive season offer" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00296", + "text": "Update on road widening approval status", + "due_at": "2025-10-17T00:00:00", + "status": "completed", + "assigned_to": "user_001" + }, + { + "reminder_id": "REM-00297", + "text": "Call back regarding east-facing unit availability", + "due_at": "2025-10-24T00:00:00", + "status": "completed", + "assigned_to": "user_001" + } + ], + "qd_overview": { + "current_score": 80.4, + "score_type": "urgency", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 2 + }, + "risk_flags": [ + "competitor_comparison_active" + ], + "metadata": { + "total_interactions": 4, + "total_visits": 0, + "total_opportunities": 2, + "source_confidence": 0.95, + "last_updated": "2025-08-15T00:00:00" + } + }, + { + "client_ref": "PER-0102", + "identity": { + "full_name": "Debjani Ghosh", + "email": "debjani.ghosh35@yahoo.com", + "phone": "+91-89849-74511", + "linkedin": "https://linkedin.com/in/debjani-ghosh-203", + "persona": [ + "price_sensitive_aspirational" + ] + }, + "account_links": { + "account_id": "ACC-0102", + "account_name": "Cognizant", + "account_type": "corporate" + }, + "household": { + "household_id": "HH-0102", + "household_name": "Ghosh Family", + "size": 2, + "decision_maker_id": "PER-0102" + }, + "relationships": [ + { + "related_person_id": "PER-0102-CO", + "type": "sibling", + "strength": 0.94 + } + ], + "active_opportunities": [ + { + "opportunity_id": "OPP-102-1", + "project_id": "PRJ-011", + "unit_id": "PRJ-011-U003", + "stage": "proposal", + "value_cr": 23.35, + "probability": 0.87, + "expected_close": "2026-06-27T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000766", + "channel": "phone_call", + "type": "price_discussion", + "happened_at": "2025-10-17T00:00:00", + "summary": "Price Discussion via phone_call regarding DTC Sojon" + }, + { + "interaction_id": "INT-000765", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2025-10-05T00:00:00", + "summary": "Site Visit via site_visit regarding DTC Sojon" + }, + { + "interaction_id": "INT-000764", + "channel": "phone_call", + "type": "follow_up", + "happened_at": "2025-10-04T00:00:00", + "summary": "Follow Up via phone_call regarding DTC Sojon" + }, + { + "interaction_id": "INT-000763", + "channel": "whatsapp", + "type": "document_sharing", + "happened_at": "2025-09-18T00:00:00", + "summary": "Document Sharing via whatsapp regarding DTC Sojon" + }, + { + "interaction_id": "INT-000762", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2025-09-16T00:00:00", + "summary": "Site Visit via site_visit regarding DTC Sojon" + } + ], + "property_interests": [ + { + "project_id": "PRJ-011", + "unit_id": "PRJ-011-U003", + "interest_level": "high", + "configuration": "Villa", + "budget_range": "18.68 - 28.02", + "timeline": "flexible", + "financing": "undecided", + "notes": "Waiting for festive season offer" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00298", + "text": "Share competitor comparison sheet", + "due_at": "2025-08-23T00:00:00", + "status": "completed", + "assigned_to": "user_001" + }, + { + "reminder_id": "REM-00299", + "text": "Follow up on DTC Sojon pricing discussion", + "due_at": "2025-09-03T00:00:00", + "status": "overdue", + "assigned_to": "user_001" + }, + { + "reminder_id": "REM-00300", + "text": "Send revised payment plan", + "due_at": "2025-09-11T00:00:00", + "status": "overdue", + "assigned_to": "user_001" + } + ], + "qd_overview": { + "current_score": 98, + "score_type": "overall", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 5 + }, + "risk_flags": [ + "decision_maker_not_met" + ], + "metadata": { + "total_interactions": 11, + "total_visits": 3, + "total_opportunities": 1, + "source_confidence": 0.93, + "last_updated": "2024-11-06T00:00:00" + } + }, + { + "client_ref": "PER-0102-CO", + "identity": { + "full_name": "Parth Patel", + "email": "parth.patel25@hotmail.com", + "phone": "+91-77343-73748", + "linkedin": null, + "persona": [ + "co_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [ + { + "related_person_id": "PER-0102", + "type": "sibling", + "strength": 0.94 + } + ], + "active_opportunities": [], + "recent_interactions": [], + "property_interests": [], + "tasks_and_reminders": [], + "qd_overview": { + "current_score": 55.1, + "score_type": "overall", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 4 + }, + "risk_flags": [ + "decision_maker_not_met" + ], + "metadata": { + "total_interactions": 0, + "total_visits": 0, + "total_opportunities": 0, + "source_confidence": 0.85, + "last_updated": "2026-04-18T00:00:00" + } + }, + { + "client_ref": "PER-0103", + "identity": { + "full_name": "Rahul Agarwal", + "email": "rahul.agarwal27@gmail.com", + "phone": "+91-97806-36462", + "linkedin": "https://linkedin.com/in/rahul-agarwal-549", + "persona": [ + "broker_referral_chain" + ] + }, + "account_links": { + "account_id": "ACC-0103", + "account_name": "ITC Limited", + "account_type": "referral_partner" + }, + "household": { + "household_id": "HH-0103", + "household_name": "Agarwal Family", + "size": 5, + "decision_maker_id": "PER-0103" + }, + "relationships": [ + { + "related_person_id": "PER-0103-CO", + "type": "business_partner", + "strength": 0.97 + } + ], + "active_opportunities": [ + { + "opportunity_id": "OPP-103-1", + "project_id": "PRJ-014", + "unit_id": "PRJ-014-U003", + "stage": "site_visit", + "value_cr": 25.55, + "probability": 0.7, + "expected_close": "2026-09-09T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000778", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2024-04-25T00:00:00", + "summary": "Site Visit via site_visit regarding Ambuja Utpaala" + }, + { + "interaction_id": "INT-000776", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2024-04-09T00:00:00", + "summary": "Site Visit via site_visit regarding Ambuja Utpaala" + }, + { + "interaction_id": "INT-000777", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2024-04-09T00:00:00", + "summary": "Site Visit via site_visit regarding Ambuja Utpaala" + }, + { + "interaction_id": "INT-000775", + "channel": "whatsapp", + "type": "follow_up", + "happened_at": "2024-04-05T00:00:00", + "summary": "Follow Up via whatsapp regarding Ambuja Utpaala" + }, + { + "interaction_id": "INT-000774", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2024-04-04T00:00:00", + "summary": "Site Visit via site_visit regarding Ambuja Utpaala" + } + ], + "property_interests": [ + { + "project_id": "PRJ-014", + "unit_id": "PRJ-014-U003", + "interest_level": "medium", + "configuration": "Duplex", + "budget_range": "20.44 - 30.66", + "timeline": "flexible", + "financing": "combined", + "notes": "Waiting for festive season offer" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00305", + "text": "Share competitor comparison sheet", + "due_at": "2024-02-12T00:00:00", + "status": "completed", + "assigned_to": "user_001" + }, + { + "reminder_id": "REM-00306", + "text": "Call back regarding east-facing unit availability", + "due_at": "2024-03-28T00:00:00", + "status": "completed", + "assigned_to": "user_001" + }, + { + "reminder_id": "REM-00307", + "text": "Call back regarding east-facing unit availability", + "due_at": "2024-04-03T00:00:00", + "status": "pending", + "assigned_to": "user_001" + } + ], + "qd_overview": { + "current_score": 98, + "score_type": "overall", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 3 + }, + "risk_flags": [], + "metadata": { + "total_interactions": 12, + "total_visits": 6, + "total_opportunities": 1, + "source_confidence": 0.97, + "last_updated": "2026-02-26T00:00:00" + } + }, + { + "client_ref": "PER-0103-CO", + "identity": { + "full_name": "Debjani Nair", + "email": "debjani.nair63@yahoo.com", + "phone": "+91-74521-66206", + "linkedin": null, + "persona": [ + "co_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [ + { + "related_person_id": "PER-0103", + "type": "business_partner", + "strength": 0.97 + } + ], + "active_opportunities": [], + "recent_interactions": [], + "property_interests": [], + "tasks_and_reminders": [], + "qd_overview": { + "current_score": 78.1, + "score_type": "engagement", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 4 + }, + "risk_flags": [ + "competitor_comparison_active" + ], + "metadata": { + "total_interactions": 0, + "total_visits": 0, + "total_opportunities": 0, + "source_confidence": 0.85, + "last_updated": "2026-04-18T00:00:00" + } + }, + { + "client_ref": "PER-0104", + "identity": { + "full_name": "Prasenjit Chatterjee", + "email": "prasenjit.chatterjee14@hotmail.com", + "phone": "+91-80960-61117", + "linkedin": "https://linkedin.com/in/prasenjit-chatterjee-842", + "persona": [ + "nri_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": "HH-0104", + "household_name": "Chatterjee Family", + "size": 2, + "decision_maker_id": "PER-0104" + }, + "relationships": [ + { + "related_person_id": "PER-0104-CO", + "type": "sibling", + "strength": 0.77 + } + ], + "active_opportunities": [ + { + "opportunity_id": "OPP-104-1", + "project_id": "PRJ-006", + "unit_id": "PRJ-006-U003", + "stage": "negotiation", + "value_cr": 14.7, + "probability": 0.67, + "expected_close": "2026-10-11T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000791", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2026-03-27T00:00:00", + "summary": "Site Visit via site_visit regarding Merlin Avana" + }, + { + "interaction_id": "INT-000792", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2026-03-27T00:00:00", + "summary": "Site Visit via site_visit regarding Merlin Avana" + }, + { + "interaction_id": "INT-000790", + "channel": "whatsapp", + "type": "negotiation", + "happened_at": "2026-03-25T00:00:00", + "summary": "Negotiation via whatsapp regarding Merlin Avana" + }, + { + "interaction_id": "INT-000789", + "channel": "phone_call", + "type": "family_discussion", + "happened_at": "2026-03-18T00:00:00", + "summary": "Family Discussion via phone_call regarding Merlin Avana" + }, + { + "interaction_id": "INT-000788", + "channel": "whatsapp", + "type": "family_discussion", + "happened_at": "2026-03-09T00:00:00", + "summary": "Family Discussion via whatsapp regarding Merlin Avana" + } + ], + "property_interests": [ + { + "project_id": "PRJ-006", + "unit_id": "PRJ-006-U003", + "interest_level": "medium", + "configuration": "5 BHK", + "budget_range": "11.76 - 17.64", + "timeline": "flexible", + "financing": "home_loan", + "notes": "Looking for east facing unit" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00310", + "text": "Call back regarding east-facing unit availability", + "due_at": "2026-02-22T00:00:00", + "status": "completed", + "assigned_to": "user_003" + }, + { + "reminder_id": "REM-00311", + "text": "Follow up on Merlin Avana pricing discussion", + "due_at": "2026-02-19T00:00:00", + "status": "completed", + "assigned_to": "user_003" + }, + { + "reminder_id": "REM-00312", + "text": "Schedule family meeting for final decision", + "due_at": "2026-03-02T00:00:00", + "status": "completed", + "assigned_to": "user_003" + } + ], + "qd_overview": { + "current_score": 86.9, + "score_type": "overall", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 4 + }, + "risk_flags": [ + "decision_maker_not_met" + ], + "metadata": { + "total_interactions": 14, + "total_visits": 3, + "total_opportunities": 1, + "source_confidence": 0.92, + "last_updated": "2025-06-16T00:00:00" + } + }, + { + "client_ref": "PER-0104-CO", + "identity": { + "full_name": "Sonal Ghosh", + "email": "sonal.ghosh12@gmail.com", + "phone": "+91-99173-80770", + "linkedin": null, + "persona": [ + "co_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [ + { + "related_person_id": "PER-0104", + "type": "sibling", + "strength": 0.77 + } + ], + "active_opportunities": [], + "recent_interactions": [], + "property_interests": [], + "tasks_and_reminders": [], + "qd_overview": { + "current_score": 73.9, + "score_type": "intent", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 4 + }, + "risk_flags": [], + "metadata": { + "total_interactions": 0, + "total_visits": 0, + "total_opportunities": 0, + "source_confidence": 0.85, + "last_updated": "2026-04-18T00:00:00" + } + }, + { + "client_ref": "PER-0105", + "identity": { + "full_name": "Rahul Kumar", + "email": "rahul.kumar22@yahoo.com", + "phone": "+91-93319-65796", + "linkedin": "https://linkedin.com/in/rahul-kumar-948", + "persona": [ + "slow_burn_investor" + ] + }, + "account_links": { + "account_id": "ACC-0105", + "account_name": "EY India", + "account_type": "developer" + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-105-1", + "project_id": "PRJ-005", + "unit_id": "PRJ-005-U005", + "stage": "site_visit", + "value_cr": 19.27, + "probability": 0.2, + "expected_close": "2026-08-04T00:00:00" + }, + { + "opportunity_id": "OPP-105-2", + "project_id": "PRJ-013", + "unit_id": "PRJ-013-U004", + "stage": "site_visit", + "value_cr": 20.12, + "probability": 0.77, + "expected_close": "2026-09-02T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000799", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2025-05-17T00:00:00", + "summary": "Site Visit via site_visit regarding Siddha Suburbia Bungalow" + }, + { + "interaction_id": "INT-000797", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2025-05-04T00:00:00", + "summary": "Site Visit via site_visit regarding Siddha Suburbia Bungalow" + }, + { + "interaction_id": "INT-000798", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2025-05-04T00:00:00", + "summary": "Site Visit via site_visit regarding Siddha Suburbia Bungalow" + }, + { + "interaction_id": "INT-000796", + "channel": "phone_call", + "type": "negotiation", + "happened_at": "2025-04-27T00:00:00", + "summary": "Negotiation via phone_call regarding Siddha Suburbia Bungalow" + }, + { + "interaction_id": "INT-000795", + "channel": "whatsapp", + "type": "site_visit", + "happened_at": "2025-04-21T00:00:00", + "summary": "Site Visit via whatsapp regarding Siddha Suburbia Bungalow" + } + ], + "property_interests": [ + { + "project_id": "PRJ-005", + "unit_id": "PRJ-005-U005", + "interest_level": "high", + "configuration": "3 BHK", + "budget_range": "15.42 - 23.12", + "timeline": "6_months", + "financing": "undecided", + "notes": "Looking for east facing unit" + }, + { + "project_id": "PRJ-013", + "unit_id": "PRJ-013-U004", + "interest_level": "high", + "configuration": "Duplex", + "budget_range": "16.1 - 24.14", + "timeline": "6_months", + "financing": "home_loan", + "notes": "Needs proximity to school" + } + ], + "tasks_and_reminders": [], + "qd_overview": { + "current_score": 98, + "score_type": "overall", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 5 + }, + "risk_flags": [], + "metadata": { + "total_interactions": 7, + "total_visits": 3, + "total_opportunities": 2, + "source_confidence": 0.84, + "last_updated": "2024-03-04T00:00:00" + } + }, + { + "client_ref": "PER-0106", + "identity": { + "full_name": "Ananya Sen", + "email": "ananya.sen80@outlook.com", + "phone": "+91-72213-15856", + "linkedin": "https://linkedin.com/in/ananya-sen-527", + "persona": [ + "price_sensitive_aspirational" + ] + }, + "account_links": { + "account_id": "ACC-0106", + "account_name": "Microsoft India", + "account_type": "developer" + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-106-1", + "project_id": "PRJ-002", + "unit_id": "PRJ-002-U014", + "stage": "discovery", + "value_cr": 7.77, + "probability": 0.26, + "expected_close": "2026-10-03T00:00:00" + }, + { + "opportunity_id": "OPP-106-2", + "project_id": "PRJ-001", + "unit_id": "PRJ-001-U002", + "stage": "site_visit", + "value_cr": 32.98, + "probability": 0.92, + "expected_close": "2026-07-27T00:00:00" + }, + { + "opportunity_id": "OPP-106-3", + "project_id": "PRJ-010", + "unit_id": "PRJ-010-U010", + "stage": "closed_won", + "value_cr": 10.62, + "probability": 0.6, + "expected_close": "2026-09-20T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000807", + "channel": "whatsapp", + "type": "site_visit", + "happened_at": "2025-07-30T00:00:00", + "summary": "Site Visit via whatsapp regarding Eden Devprayag" + }, + { + "interaction_id": "INT-000806", + "channel": "phone_call", + "type": "negotiation", + "happened_at": "2025-07-20T00:00:00", + "summary": "Negotiation via phone_call regarding Eden Devprayag" + }, + { + "interaction_id": "INT-000805", + "channel": "whatsapp", + "type": "initial_enquiry", + "happened_at": "2025-07-04T00:00:00", + "summary": "Initial Enquiry via whatsapp regarding Eden Devprayag" + }, + { + "interaction_id": "INT-000804", + "channel": "phone_call", + "type": "family_discussion", + "happened_at": "2025-07-01T00:00:00", + "summary": "Family Discussion via phone_call regarding Eden Devprayag" + }, + { + "interaction_id": "INT-000803", + "channel": "whatsapp", + "type": "initial_enquiry", + "happened_at": "2025-06-24T00:00:00", + "summary": "Initial Enquiry via whatsapp regarding Eden Devprayag" + } + ], + "property_interests": [ + { + "project_id": "PRJ-002", + "unit_id": "PRJ-002-U014", + "interest_level": "low", + "configuration": "Penthouse", + "budget_range": "6.22 - 9.32", + "timeline": "3_months", + "financing": "undecided", + "notes": "Comparing with competitor projects" + }, + { + "project_id": "PRJ-001", + "unit_id": "PRJ-001-U002", + "interest_level": "medium", + "configuration": "2 BHK", + "budget_range": "26.38 - 39.58", + "timeline": "flexible", + "financing": "cash", + "notes": "Comparing with competitor projects" + }, + { + "project_id": "PRJ-010", + "unit_id": "PRJ-010-U010", + "interest_level": "high", + "configuration": "Duplex", + "budget_range": "8.5 - 12.74", + "timeline": "flexible", + "financing": "home_loan", + "notes": "Wants ready to move in" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00315", + "text": "Update on road widening approval status", + "due_at": "2025-06-27T00:00:00", + "status": "completed", + "assigned_to": "user_003" + }, + { + "reminder_id": "REM-00316", + "text": "Update on road widening approval status", + "due_at": "2025-07-10T00:00:00", + "status": "overdue", + "assigned_to": "user_003" + } + ], + "qd_overview": { + "current_score": 98, + "score_type": "overall", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 4 + }, + "risk_flags": [ + "price_sensitivity_high" + ], + "metadata": { + "total_interactions": 8, + "total_visits": 0, + "total_opportunities": 3, + "source_confidence": 0.86, + "last_updated": "2025-08-02T00:00:00" + } + }, + { + "client_ref": "PER-0107", + "identity": { + "full_name": "Moumita Sharma", + "email": "moumita.sharma21@gmail.com", + "phone": "+91-73254-81012", + "linkedin": "https://linkedin.com/in/moumita-sharma-272", + "persona": [ + "high_intent_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": "HH-0107", + "household_name": "Sharma Family", + "size": 5, + "decision_maker_id": "PER-0107" + }, + "relationships": [ + { + "related_person_id": "PER-0107-CO", + "type": "sibling", + "strength": 0.74 + } + ], + "active_opportunities": [ + { + "opportunity_id": "OPP-107-1", + "project_id": "PRJ-010", + "unit_id": "PRJ-010-U013", + "stage": "discovery", + "value_cr": 19.77, + "probability": 0.31, + "expected_close": "2026-10-07T00:00:00" + }, + { + "opportunity_id": "OPP-107-2", + "project_id": "PRJ-002", + "unit_id": "PRJ-002-U017", + "stage": "proposal", + "value_cr": 1.95, + "probability": 0.77, + "expected_close": "2026-06-23T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000813", + "channel": "whatsapp", + "type": "negotiation", + "happened_at": "2024-11-17T00:00:00", + "summary": "Negotiation via whatsapp regarding Sugam Prakriti" + }, + { + "interaction_id": "INT-000812", + "channel": "whatsapp", + "type": "negotiation", + "happened_at": "2024-11-05T00:00:00", + "summary": "Negotiation via whatsapp regarding Sugam Prakriti" + }, + { + "interaction_id": "INT-000811", + "channel": "whatsapp", + "type": "document_sharing", + "happened_at": "2024-11-03T00:00:00", + "summary": "Document Sharing via whatsapp regarding Sugam Prakriti" + }, + { + "interaction_id": "INT-000810", + "channel": "whatsapp", + "type": "follow_up", + "happened_at": "2024-10-25T00:00:00", + "summary": "Follow Up via whatsapp regarding Sugam Prakriti" + }, + { + "interaction_id": "INT-000809", + "channel": "phone_call", + "type": "site_visit", + "happened_at": "2024-10-22T00:00:00", + "summary": "Site Visit via phone_call regarding Sugam Prakriti" + } + ], + "property_interests": [ + { + "project_id": "PRJ-010", + "unit_id": "PRJ-010-U013", + "interest_level": "medium", + "configuration": "4 BHK", + "budget_range": "15.82 - 23.72", + "timeline": "6_months", + "financing": "undecided", + "notes": "Wants ready to move in" + }, + { + "project_id": "PRJ-002", + "unit_id": "PRJ-002-U017", + "interest_level": "medium", + "configuration": "4 BHK", + "budget_range": "1.56 - 2.34", + "timeline": "3_months", + "financing": "undecided", + "notes": "Comparing with competitor projects" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00317", + "text": "Send home loan documents checklist", + "due_at": "2024-11-10T00:00:00", + "status": "pending", + "assigned_to": "user_005" + }, + { + "reminder_id": "REM-00318", + "text": "Update on road widening approval status", + "due_at": "2024-11-12T00:00:00", + "status": "pending", + "assigned_to": "user_005" + }, + { + "reminder_id": "REM-00319", + "text": "Confirm site visit for Saturday", + "due_at": "2024-11-22T00:00:00", + "status": "pending", + "assigned_to": "user_005" + } + ], + "qd_overview": { + "current_score": 98, + "score_type": "urgency", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 2 + }, + "risk_flags": [ + "price_sensitivity_high" + ], + "metadata": { + "total_interactions": 6, + "total_visits": 0, + "total_opportunities": 2, + "source_confidence": 0.82, + "last_updated": "2024-09-18T00:00:00" + } + }, + { + "client_ref": "PER-0107-CO", + "identity": { + "full_name": "Amit Ghosh", + "email": "amit.ghosh13@gmail.com", + "phone": "+91-79765-61110", + "linkedin": null, + "persona": [ + "co_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [ + { + "related_person_id": "PER-0107", + "type": "sibling", + "strength": 0.74 + } + ], + "active_opportunities": [], + "recent_interactions": [], + "property_interests": [], + "tasks_and_reminders": [], + "qd_overview": { + "current_score": 33.3, + "score_type": "engagement", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 3 + }, + "risk_flags": [ + "decision_maker_not_met" + ], + "metadata": { + "total_interactions": 0, + "total_visits": 0, + "total_opportunities": 0, + "source_confidence": 0.85, + "last_updated": "2026-04-18T00:00:00" + } + } +] \ No newline at end of file diff --git a/db assets/synthetic_crm_v1/json/client_360_snapshots_batch_4.json b/db assets/synthetic_crm_v1/json/client_360_snapshots_batch_4.json new file mode 100644 index 00000000..1346865e --- /dev/null +++ b/db assets/synthetic_crm_v1/json/client_360_snapshots_batch_4.json @@ -0,0 +1,5413 @@ +[ + { + "client_ref": "PER-0108", + "identity": { + "full_name": "Kunal Saha", + "email": "kunal.saha47@yahoo.com", + "phone": "+91-70017-17887", + "linkedin": "https://linkedin.com/in/kunal-saha-593", + "persona": [ + "nri_buyer" + ] + }, + "account_links": { + "account_id": "ACC-0108", + "account_name": "Amazon India", + "account_type": "individual_business" + }, + "household": { + "household_id": "HH-0108", + "household_name": "Saha Family", + "size": 2, + "decision_maker_id": "PER-0108" + }, + "relationships": [ + { + "related_person_id": "PER-0108-CO", + "type": "sibling", + "strength": 0.97 + } + ], + "active_opportunities": [ + { + "opportunity_id": "OPP-108-1", + "project_id": "PRJ-012", + "unit_id": "PRJ-012-U007", + "stage": "closed_lost", + "value_cr": 2.7, + "probability": 0.75, + "expected_close": "2026-10-02T00:00:00" + }, + { + "opportunity_id": "OPP-108-2", + "project_id": "PRJ-002", + "unit_id": "PRJ-002-U008", + "stage": "closed_won", + "value_cr": 71.33, + "probability": 0.8, + "expected_close": "2026-08-17T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000823", + "channel": "phone_call", + "type": "site_visit", + "happened_at": "2026-01-09T00:00:00", + "summary": "Site Visit via phone_call regarding Shriram Grand City" + }, + { + "interaction_id": "INT-000822", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2025-12-26T00:00:00", + "summary": "Site Visit via site_visit regarding Shriram Grand City" + }, + { + "interaction_id": "INT-000820", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2025-12-16T00:00:00", + "summary": "Site Visit via site_visit regarding Shriram Grand City" + }, + { + "interaction_id": "INT-000821", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2025-12-16T00:00:00", + "summary": "Site Visit via site_visit regarding Shriram Grand City" + }, + { + "interaction_id": "INT-000819", + "channel": "phone_call", + "type": "site_visit", + "happened_at": "2025-12-14T00:00:00", + "summary": "Site Visit via phone_call regarding Shriram Grand City" + } + ], + "property_interests": [ + { + "project_id": "PRJ-012", + "unit_id": "PRJ-012-U007", + "interest_level": "low", + "configuration": "Duplex", + "budget_range": "2.16 - 3.24", + "timeline": "immediate", + "financing": "undecided", + "notes": "Waiting for festive season offer" + }, + { + "project_id": "PRJ-002", + "unit_id": "PRJ-002-U008", + "interest_level": "medium", + "configuration": "Villa", + "budget_range": "57.06 - 85.6", + "timeline": "immediate", + "financing": "cash", + "notes": "Wants ready to move in" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00320", + "text": "Confirm site visit for Saturday", + "due_at": "2025-11-27T00:00:00", + "status": "overdue", + "assigned_to": "user_003" + }, + { + "reminder_id": "REM-00321", + "text": "Follow up on Shriram Grand City pricing discussion", + "due_at": "2025-12-16T00:00:00", + "status": "completed", + "assigned_to": "user_003" + }, + { + "reminder_id": "REM-00322", + "text": "Follow up on Shriram Grand City pricing discussion", + "due_at": "2025-12-22T00:00:00", + "status": "completed", + "assigned_to": "user_003" + } + ], + "qd_overview": { + "current_score": 70.6, + "score_type": "engagement", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 4 + }, + "risk_flags": [ + "competitor_comparison_active" + ], + "metadata": { + "total_interactions": 10, + "total_visits": 3, + "total_opportunities": 2, + "source_confidence": 0.81, + "last_updated": "2025-11-27T00:00:00" + } + }, + { + "client_ref": "PER-0108-CO", + "identity": { + "full_name": "Sneha Das", + "email": "sneha.das81@outlook.com", + "phone": "+91-98779-66618", + "linkedin": null, + "persona": [ + "co_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [ + { + "related_person_id": "PER-0108", + "type": "sibling", + "strength": 0.97 + } + ], + "active_opportunities": [], + "recent_interactions": [], + "property_interests": [], + "tasks_and_reminders": [], + "qd_overview": { + "current_score": 56.0, + "score_type": "urgency", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 4 + }, + "risk_flags": [ + "slow_response_pattern" + ], + "metadata": { + "total_interactions": 0, + "total_visits": 0, + "total_opportunities": 0, + "source_confidence": 0.85, + "last_updated": "2026-04-18T00:00:00" + } + }, + { + "client_ref": "PER-0109", + "identity": { + "full_name": "Kunal Banerjee", + "email": "kunal.banerjee38@gmail.com", + "phone": "+91-94851-46848", + "linkedin": "https://linkedin.com/in/kunal-banerjee-796", + "persona": [ + "slow_burn_investor" + ] + }, + "account_links": { + "account_id": "ACC-0109", + "account_name": "Accenture India", + "account_type": "individual_business" + }, + "household": { + "household_id": "HH-0109", + "household_name": "Banerjee Family", + "size": 3, + "decision_maker_id": "PER-0109" + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-109-1", + "project_id": "PRJ-001", + "unit_id": "PRJ-001-U016", + "stage": "negotiation", + "value_cr": 15.69, + "probability": 0.68, + "expected_close": "2026-09-11T00:00:00" + }, + { + "opportunity_id": "OPP-109-2", + "project_id": "PRJ-014", + "unit_id": "PRJ-014-U005", + "stage": "negotiation", + "value_cr": 4.25, + "probability": 0.2, + "expected_close": "2026-09-27T00:00:00" + }, + { + "opportunity_id": "OPP-109-3", + "project_id": "PRJ-004", + "unit_id": "PRJ-004-U001", + "stage": "negotiation", + "value_cr": 6.2, + "probability": 0.88, + "expected_close": "2026-10-01T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000830", + "channel": "whatsapp", + "type": "family_discussion", + "happened_at": "2026-01-11T00:00:00", + "summary": "Family Discussion via whatsapp regarding Ambuja Utpaala" + }, + { + "interaction_id": "INT-000829", + "channel": "phone_call", + "type": "site_visit", + "happened_at": "2025-12-14T00:00:00", + "summary": "Site Visit via phone_call regarding Ambuja Utpaala" + }, + { + "interaction_id": "INT-000828", + "channel": "phone_call", + "type": "site_visit", + "happened_at": "2025-11-11T00:00:00", + "summary": "Site Visit via phone_call regarding Ambuja Utpaala" + }, + { + "interaction_id": "INT-000827", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2025-11-08T00:00:00", + "summary": "Site Visit via site_visit regarding Ambuja Utpaala" + }, + { + "interaction_id": "INT-000826", + "channel": "whatsapp", + "type": "document_sharing", + "happened_at": "2025-11-05T00:00:00", + "summary": "Document Sharing via whatsapp regarding Ambuja Utpaala" + } + ], + "property_interests": [ + { + "project_id": "PRJ-001", + "unit_id": "PRJ-001-U016", + "interest_level": "very_high", + "configuration": "2 BHK", + "budget_range": "12.55 - 18.83", + "timeline": "immediate", + "financing": "combined", + "notes": "Wants ready to move in" + }, + { + "project_id": "PRJ-014", + "unit_id": "PRJ-014-U005", + "interest_level": "very_high", + "configuration": "2 BHK", + "budget_range": "3.4 - 5.1", + "timeline": "6_months", + "financing": "cash", + "notes": "Waiting for festive season offer" + }, + { + "project_id": "PRJ-004", + "unit_id": "PRJ-004-U001", + "interest_level": "high", + "configuration": "5 BHK", + "budget_range": "4.96 - 7.44", + "timeline": "immediate", + "financing": "undecided", + "notes": "Needs proximity to school" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00323", + "text": "Send revised payment plan", + "due_at": "2025-10-24T00:00:00", + "status": "pending", + "assigned_to": "user_004" + }, + { + "reminder_id": "REM-00324", + "text": "Schedule family meeting for final decision", + "due_at": "2025-11-05T00:00:00", + "status": "pending", + "assigned_to": "user_004" + }, + { + "reminder_id": "REM-00325", + "text": "Share competitor comparison sheet", + "due_at": "2025-11-11T00:00:00", + "status": "overdue", + "assigned_to": "user_004" + } + ], + "qd_overview": { + "current_score": 98, + "score_type": "intent", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 2 + }, + "risk_flags": [ + "decision_maker_not_met" + ], + "metadata": { + "total_interactions": 7, + "total_visits": 1, + "total_opportunities": 3, + "source_confidence": 0.96, + "last_updated": "2024-07-15T00:00:00" + } + }, + { + "client_ref": "PER-0110", + "identity": { + "full_name": "Deb Singh", + "email": "deb.singh19@yahoo.com", + "phone": "+91-76451-31558", + "linkedin": "https://linkedin.com/in/deb-singh-437", + "persona": [ + "slow_burn_investor" + ] + }, + "account_links": { + "account_id": "ACC-0110", + "account_name": "ITC Limited", + "account_type": "developer" + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-110-1", + "project_id": "PRJ-001", + "unit_id": "PRJ-001-U001", + "stage": "closed_won", + "value_cr": 19.84, + "probability": 0.37, + "expected_close": "2026-06-03T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000839", + "channel": "web_enquiry", + "type": "follow_up", + "happened_at": "2024-12-12T00:00:00", + "summary": "Follow Up via web_enquiry regarding Eden Devprayag" + }, + { + "interaction_id": "INT-000838", + "channel": "email", + "type": "site_visit", + "happened_at": "2024-11-29T00:00:00", + "summary": "Site Visit via email regarding Eden Devprayag" + }, + { + "interaction_id": "INT-000836", + "channel": "walk_in", + "type": "negotiation", + "happened_at": "2024-11-18T00:00:00", + "summary": "Negotiation via walk_in regarding Eden Devprayag" + }, + { + "interaction_id": "INT-000837", + "channel": "walk_in", + "type": "price_discussion", + "happened_at": "2024-11-18T00:00:00", + "summary": "Price Discussion via walk_in regarding Eden Devprayag" + }, + { + "interaction_id": "INT-000835", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2024-10-31T00:00:00", + "summary": "Site Visit via site_visit regarding Eden Devprayag" + } + ], + "property_interests": [ + { + "project_id": "PRJ-001", + "unit_id": "PRJ-001-U001", + "interest_level": "low", + "configuration": "Villa", + "budget_range": "15.87 - 23.81", + "timeline": "flexible", + "financing": "cash", + "notes": "Prefers higher floor" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00326", + "text": "Send revised payment plan", + "due_at": "2024-10-31T00:00:00", + "status": "pending", + "assigned_to": "user_001" + }, + { + "reminder_id": "REM-00327", + "text": "Schedule family meeting for final decision", + "due_at": "2024-11-01T00:00:00", + "status": "completed", + "assigned_to": "user_001" + }, + { + "reminder_id": "REM-00328", + "text": "Send home loan documents checklist", + "due_at": "2024-11-25T00:00:00", + "status": "completed", + "assigned_to": "user_001" + } + ], + "qd_overview": { + "current_score": 83.9, + "score_type": "overall", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 2 + }, + "risk_flags": [], + "metadata": { + "total_interactions": 9, + "total_visits": 2, + "total_opportunities": 1, + "source_confidence": 0.82, + "last_updated": "2025-10-02T00:00:00" + } + }, + { + "client_ref": "PER-0111", + "identity": { + "full_name": "Riya Sen", + "email": "riya.sen96@gmail.com", + "phone": "+91-88325-16842", + "linkedin": "https://linkedin.com/in/riya-sen-401", + "persona": [ + "family_decision_unit" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": "HH-0111", + "household_name": "Sen Family", + "size": 5, + "decision_maker_id": "PER-0111" + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-111-1", + "project_id": "PRJ-011", + "unit_id": "PRJ-011-U003", + "stage": "closed_lost", + "value_cr": 23.35, + "probability": 0.54, + "expected_close": "2026-10-15T00:00:00" + }, + { + "opportunity_id": "OPP-111-2", + "project_id": "PRJ-012", + "unit_id": "PRJ-012-U001", + "stage": "proposal", + "value_cr": 20.23, + "probability": 0.87, + "expected_close": "2026-06-19T00:00:00" + }, + { + "opportunity_id": "OPP-111-3", + "project_id": "PRJ-012", + "unit_id": "PRJ-012-U007", + "stage": "closed_lost", + "value_cr": 2.7, + "probability": 0.26, + "expected_close": "2026-06-22T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000842", + "channel": "whatsapp", + "type": "follow_up", + "happened_at": "2025-12-24T00:00:00", + "summary": "Follow Up via whatsapp regarding Shriram Grand City" + }, + { + "interaction_id": "INT-000841", + "channel": "whatsapp", + "type": "family_discussion", + "happened_at": "2025-11-17T00:00:00", + "summary": "Family Discussion via whatsapp regarding Shriram Grand City" + }, + { + "interaction_id": "INT-000840", + "channel": "referral", + "type": "initial_enquiry", + "happened_at": "2025-10-27T00:00:00", + "summary": "Initial Enquiry via referral regarding Shriram Grand City" + } + ], + "property_interests": [ + { + "project_id": "PRJ-011", + "unit_id": "PRJ-011-U003", + "interest_level": "low", + "configuration": "Villa", + "budget_range": "18.68 - 28.02", + "timeline": "immediate", + "financing": "cash", + "notes": "Comparing with competitor projects" + }, + { + "project_id": "PRJ-012", + "unit_id": "PRJ-012-U001", + "interest_level": "high", + "configuration": "4 BHK", + "budget_range": "16.18 - 24.28", + "timeline": "6_months", + "financing": "undecided", + "notes": "Wants ready to move in" + }, + { + "project_id": "PRJ-012", + "unit_id": "PRJ-012-U007", + "interest_level": "low", + "configuration": "Duplex", + "budget_range": "2.16 - 3.24", + "timeline": "3_months", + "financing": "combined", + "notes": "Comparing with competitor projects" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00330", + "text": "Share competitor comparison sheet", + "due_at": "2025-12-31T00:00:00", + "status": "overdue", + "assigned_to": "user_005" + } + ], + "qd_overview": { + "current_score": 53.0, + "score_type": "financial_qualification", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 4 + }, + "risk_flags": [ + "decision_maker_not_met" + ], + "metadata": { + "total_interactions": 3, + "total_visits": 0, + "total_opportunities": 3, + "source_confidence": 0.95, + "last_updated": "2024-04-08T00:00:00" + } + }, + { + "client_ref": "PER-0112", + "identity": { + "full_name": "Isha Bose", + "email": "isha.bose79@yahoo.com", + "phone": "+91-74830-71541", + "linkedin": "https://linkedin.com/in/isha-bose-416", + "persona": [ + "nri_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-112-1", + "project_id": "PRJ-012", + "unit_id": "PRJ-012-U007", + "stage": "closed_lost", + "value_cr": 2.7, + "probability": 0.61, + "expected_close": "2026-08-10T00:00:00" + }, + { + "opportunity_id": "OPP-112-2", + "project_id": "PRJ-003", + "unit_id": "PRJ-003-U002", + "stage": "closed_lost", + "value_cr": 27.76, + "probability": 0.84, + "expected_close": "2026-05-28T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000848", + "channel": "walk_in", + "type": "site_visit", + "happened_at": "2025-12-26T00:00:00", + "summary": "Site Visit via walk_in regarding Shriram Grand City" + }, + { + "interaction_id": "INT-000847", + "channel": "phone_call", + "type": "price_discussion", + "happened_at": "2025-12-11T00:00:00", + "summary": "Price Discussion via phone_call regarding Shriram Grand City" + }, + { + "interaction_id": "INT-000846", + "channel": "phone_call", + "type": "family_discussion", + "happened_at": "2025-11-27T00:00:00", + "summary": "Family Discussion via phone_call regarding Shriram Grand City" + }, + { + "interaction_id": "INT-000845", + "channel": "whatsapp", + "type": "price_discussion", + "happened_at": "2025-11-25T00:00:00", + "summary": "Price Discussion via whatsapp regarding Shriram Grand City" + }, + { + "interaction_id": "INT-000844", + "channel": "phone_call", + "type": "price_discussion", + "happened_at": "2025-11-11T00:00:00", + "summary": "Price Discussion via phone_call regarding Shriram Grand City" + } + ], + "property_interests": [ + { + "project_id": "PRJ-012", + "unit_id": "PRJ-012-U007", + "interest_level": "high", + "configuration": "Duplex", + "budget_range": "2.16 - 3.24", + "timeline": "6_months", + "financing": "undecided", + "notes": "Prefers higher floor" + }, + { + "project_id": "PRJ-003", + "unit_id": "PRJ-003-U002", + "interest_level": "medium", + "configuration": "3 BHK", + "budget_range": "22.21 - 33.31", + "timeline": "immediate", + "financing": "home_loan", + "notes": "Waiting for festive season offer" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00331", + "text": "Share competitor comparison sheet", + "due_at": "2025-11-12T00:00:00", + "status": "overdue", + "assigned_to": "user_001" + }, + { + "reminder_id": "REM-00332", + "text": "Schedule family meeting for final decision", + "due_at": "2025-12-02T00:00:00", + "status": "completed", + "assigned_to": "user_001" + }, + { + "reminder_id": "REM-00333", + "text": "Share competitor comparison sheet", + "due_at": "2025-12-30T00:00:00", + "status": "completed", + "assigned_to": "user_001" + } + ], + "qd_overview": { + "current_score": 60.6, + "score_type": "intent", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 4 + }, + "risk_flags": [], + "metadata": { + "total_interactions": 6, + "total_visits": 0, + "total_opportunities": 2, + "source_confidence": 0.89, + "last_updated": "2025-01-12T00:00:00" + } + }, + { + "client_ref": "PER-0113", + "identity": { + "full_name": "Deb Reddy", + "email": "deb.reddy52@rediffmail.com", + "phone": "+91-76727-62469", + "linkedin": "https://linkedin.com/in/deb-reddy-288", + "persona": [ + "slow_burn_investor" + ] + }, + "account_links": { + "account_id": "ACC-0113", + "account_name": "Amazon India", + "account_type": "corporate" + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-113-1", + "project_id": "PRJ-007", + "unit_id": "PRJ-007-U017", + "stage": "discovery", + "value_cr": 7.14, + "probability": 0.2, + "expected_close": "2026-06-20T00:00:00" + }, + { + "opportunity_id": "OPP-113-2", + "project_id": "PRJ-010", + "unit_id": "PRJ-010-U011", + "stage": "proposal", + "value_cr": 12.73, + "probability": 0.88, + "expected_close": "2026-10-15T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000857", + "channel": "whatsapp", + "type": "initial_enquiry", + "happened_at": "2025-12-03T00:00:00", + "summary": "Initial Enquiry via whatsapp regarding Godrej Blue" + }, + { + "interaction_id": "INT-000856", + "channel": "phone_call", + "type": "follow_up", + "happened_at": "2025-11-23T00:00:00", + "summary": "Follow Up via phone_call regarding Godrej Blue" + }, + { + "interaction_id": "INT-000853", + "channel": "whatsapp", + "type": "site_visit", + "happened_at": "2025-11-10T00:00:00", + "summary": "Site Visit via whatsapp regarding Godrej Blue" + }, + { + "interaction_id": "INT-000854", + "channel": "phone_call", + "type": "site_visit", + "happened_at": "2025-11-10T00:00:00", + "summary": "Site Visit via phone_call regarding Godrej Blue" + }, + { + "interaction_id": "INT-000855", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2025-11-10T00:00:00", + "summary": "Site Visit via site_visit regarding Godrej Blue" + } + ], + "property_interests": [ + { + "project_id": "PRJ-007", + "unit_id": "PRJ-007-U017", + "interest_level": "medium", + "configuration": "Villa", + "budget_range": "5.71 - 8.57", + "timeline": "flexible", + "financing": "combined", + "notes": "Prefers higher floor" + }, + { + "project_id": "PRJ-010", + "unit_id": "PRJ-010-U011", + "interest_level": "high", + "configuration": "Villa", + "budget_range": "10.18 - 15.28", + "timeline": "3_months", + "financing": "combined", + "notes": "Needs proximity to school" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00334", + "text": "Send revised payment plan", + "due_at": "2025-11-15T00:00:00", + "status": "pending", + "assigned_to": "user_002" + }, + { + "reminder_id": "REM-00335", + "text": "Send home loan documents checklist", + "due_at": "2025-11-17T00:00:00", + "status": "overdue", + "assigned_to": "user_002" + }, + { + "reminder_id": "REM-00336", + "text": "Send revised payment plan", + "due_at": "2025-11-29T00:00:00", + "status": "pending", + "assigned_to": "user_002" + } + ], + "qd_overview": { + "current_score": 98, + "score_type": "financial_qualification", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 5 + }, + "risk_flags": [ + "competitor_comparison_active" + ], + "metadata": { + "total_interactions": 9, + "total_visits": 1, + "total_opportunities": 2, + "source_confidence": 0.94, + "last_updated": "2025-01-06T00:00:00" + } + }, + { + "client_ref": "PER-0114", + "identity": { + "full_name": "Debjani Nair", + "email": "debjani.nair84@rediffmail.com", + "phone": "+91-76856-20670", + "linkedin": "https://linkedin.com/in/debjani-nair-903", + "persona": [ + "high_intent_buyer" + ] + }, + "account_links": { + "account_id": "ACC-0114", + "account_name": "Emami", + "account_type": "developer" + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-114-1", + "project_id": "PRJ-004", + "unit_id": "PRJ-004-U004", + "stage": "proposal", + "value_cr": 22.05, + "probability": 0.48, + "expected_close": "2026-07-17T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000865", + "channel": "referral", + "type": "follow_up", + "happened_at": "2025-07-12T00:00:00", + "summary": "Follow Up via referral regarding Atri Surya Toron" + }, + { + "interaction_id": "INT-000864", + "channel": "walk_in", + "type": "site_visit", + "happened_at": "2025-07-11T00:00:00", + "summary": "Site Visit via walk_in regarding Atri Surya Toron" + }, + { + "interaction_id": "INT-000863", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2025-06-19T00:00:00", + "summary": "Site Visit via site_visit regarding Atri Surya Toron" + }, + { + "interaction_id": "INT-000862", + "channel": "walk_in", + "type": "site_visit", + "happened_at": "2025-05-25T00:00:00", + "summary": "Site Visit via walk_in regarding Atri Surya Toron" + }, + { + "interaction_id": "INT-000861", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2025-05-09T00:00:00", + "summary": "Site Visit via site_visit regarding Atri Surya Toron" + } + ], + "property_interests": [ + { + "project_id": "PRJ-004", + "unit_id": "PRJ-004-U004", + "interest_level": "medium", + "configuration": "3 BHK", + "budget_range": "17.64 - 26.46", + "timeline": "6_months", + "financing": "undecided", + "notes": "Wants ready to move in" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00338", + "text": "Schedule family meeting for final decision", + "due_at": "2025-04-28T00:00:00", + "status": "overdue", + "assigned_to": "user_004" + }, + { + "reminder_id": "REM-00339", + "text": "Send home loan documents checklist", + "due_at": "2025-05-15T00:00:00", + "status": "pending", + "assigned_to": "user_004" + }, + { + "reminder_id": "REM-00340", + "text": "Share competitor comparison sheet", + "due_at": "2025-05-29T00:00:00", + "status": "completed", + "assigned_to": "user_004" + } + ], + "qd_overview": { + "current_score": 98, + "score_type": "engagement", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 5 + }, + "risk_flags": [ + "competitor_comparison_active" + ], + "metadata": { + "total_interactions": 8, + "total_visits": 2, + "total_opportunities": 1, + "source_confidence": 0.86, + "last_updated": "2025-09-21T00:00:00" + } + }, + { + "client_ref": "PER-0115", + "identity": { + "full_name": "Neha Pillai", + "email": "neha.pillai20@yahoo.com", + "phone": "+91-94629-21013", + "linkedin": "https://linkedin.com/in/neha-pillai-402", + "persona": [ + "family_decision_unit" + ] + }, + "account_links": { + "account_id": "ACC-0115", + "account_name": "Bengal Chemicals", + "account_type": "referral_partner" + }, + "household": { + "household_id": "HH-0115", + "household_name": "Pillai Family", + "size": 5, + "decision_maker_id": "PER-0115" + }, + "relationships": [ + { + "related_person_id": "PER-0115-CO", + "type": "spouse", + "strength": 0.81 + } + ], + "active_opportunities": [ + { + "opportunity_id": "OPP-115-1", + "project_id": "PRJ-009", + "unit_id": "PRJ-009-U008", + "stage": "closed_won", + "value_cr": 14.61, + "probability": 0.29, + "expected_close": "2026-07-10T00:00:00" + }, + { + "opportunity_id": "OPP-115-2", + "project_id": "PRJ-013", + "unit_id": "PRJ-013-U002", + "stage": "verbal_commitment", + "value_cr": 43.71, + "probability": 0.82, + "expected_close": "2026-09-04T00:00:00" + }, + { + "opportunity_id": "OPP-115-3", + "project_id": "PRJ-014", + "unit_id": "PRJ-014-U006", + "stage": "prospecting", + "value_cr": 58.43, + "probability": 0.42, + "expected_close": "2026-10-12T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000875", + "channel": "whatsapp", + "type": "negotiation", + "happened_at": "2025-01-19T00:00:00", + "summary": "Negotiation via whatsapp regarding Ambuja Utpaala" + }, + { + "interaction_id": "INT-000874", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2025-01-10T00:00:00", + "summary": "Site Visit via site_visit regarding Ambuja Utpaala" + }, + { + "interaction_id": "INT-000873", + "channel": "phone_call", + "type": "document_sharing", + "happened_at": "2025-01-05T00:00:00", + "summary": "Document Sharing via phone_call regarding Ambuja Utpaala" + }, + { + "interaction_id": "INT-000872", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2024-12-28T00:00:00", + "summary": "Site Visit via site_visit regarding Ambuja Utpaala" + }, + { + "interaction_id": "INT-000871", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2024-12-18T00:00:00", + "summary": "Site Visit via site_visit regarding Ambuja Utpaala" + } + ], + "property_interests": [ + { + "project_id": "PRJ-009", + "unit_id": "PRJ-009-U008", + "interest_level": "medium", + "configuration": "Duplex", + "budget_range": "11.69 - 17.53", + "timeline": "flexible", + "financing": "undecided", + "notes": "Prefers higher floor" + }, + { + "project_id": "PRJ-013", + "unit_id": "PRJ-013-U002", + "interest_level": "very_high", + "configuration": "3 BHK", + "budget_range": "34.97 - 52.45", + "timeline": "3_months", + "financing": "undecided", + "notes": "Wants ready to move in" + }, + { + "project_id": "PRJ-014", + "unit_id": "PRJ-014-U006", + "interest_level": "high", + "configuration": "Penthouse", + "budget_range": "46.74 - 70.12", + "timeline": "immediate", + "financing": "undecided", + "notes": "Waiting for festive season offer" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00343", + "text": "Share competitor comparison sheet", + "due_at": "2024-11-28T00:00:00", + "status": "completed", + "assigned_to": "user_001" + }, + { + "reminder_id": "REM-00344", + "text": "Update on road widening approval status", + "due_at": "2024-12-20T00:00:00", + "status": "completed", + "assigned_to": "user_001" + }, + { + "reminder_id": "REM-00345", + "text": "Confirm site visit for Saturday", + "due_at": "2025-01-01T00:00:00", + "status": "overdue", + "assigned_to": "user_001" + } + ], + "qd_overview": { + "current_score": 98, + "score_type": "engagement", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 3 + }, + "risk_flags": [], + "metadata": { + "total_interactions": 10, + "total_visits": 4, + "total_opportunities": 3, + "source_confidence": 0.85, + "last_updated": "2024-08-23T00:00:00" + } + }, + { + "client_ref": "PER-0115-CO", + "identity": { + "full_name": "Sanjay Banerjee", + "email": "sanjay.banerjee32@rediffmail.com", + "phone": "+91-77660-44815", + "linkedin": null, + "persona": [ + "co_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [ + { + "related_person_id": "PER-0115", + "type": "spouse", + "strength": 0.81 + } + ], + "active_opportunities": [], + "recent_interactions": [], + "property_interests": [], + "tasks_and_reminders": [], + "qd_overview": { + "current_score": 39.4, + "score_type": "urgency", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 4 + }, + "risk_flags": [ + "decision_maker_not_met" + ], + "metadata": { + "total_interactions": 0, + "total_visits": 0, + "total_opportunities": 0, + "source_confidence": 0.85, + "last_updated": "2026-04-18T00:00:00" + } + }, + { + "client_ref": "PER-0116", + "identity": { + "full_name": "Ritu Singh", + "email": "ritu.singh64@rediffmail.com", + "phone": "+91-94996-80464", + "linkedin": "https://linkedin.com/in/ritu-singh-406", + "persona": [ + "price_sensitive_aspirational" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-116-1", + "project_id": "PRJ-003", + "unit_id": "PRJ-003-U004", + "stage": "discovery", + "value_cr": 17.22, + "probability": 0.87, + "expected_close": "2026-08-24T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000887", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2024-09-02T00:00:00", + "summary": "Site Visit via site_visit regarding Atri Aqua" + }, + { + "interaction_id": "INT-000886", + "channel": "phone_call", + "type": "site_visit", + "happened_at": "2024-08-29T00:00:00", + "summary": "Site Visit via phone_call regarding Atri Aqua" + }, + { + "interaction_id": "INT-000884", + "channel": "whatsapp", + "type": "initial_enquiry", + "happened_at": "2024-08-28T00:00:00", + "summary": "Initial Enquiry via whatsapp regarding Atri Aqua" + }, + { + "interaction_id": "INT-000885", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2024-08-28T00:00:00", + "summary": "Site Visit via site_visit regarding Atri Aqua" + }, + { + "interaction_id": "INT-000883", + "channel": "phone_call", + "type": "initial_enquiry", + "happened_at": "2024-08-18T00:00:00", + "summary": "Initial Enquiry via phone_call regarding Atri Aqua" + } + ], + "property_interests": [ + { + "project_id": "PRJ-003", + "unit_id": "PRJ-003-U004", + "interest_level": "medium", + "configuration": "Villa", + "budget_range": "13.78 - 20.66", + "timeline": "3_months", + "financing": "combined", + "notes": "Waiting for festive season offer" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00349", + "text": "Send revised payment plan", + "due_at": "2024-07-18T00:00:00", + "status": "completed", + "assigned_to": "user_001" + }, + { + "reminder_id": "REM-00350", + "text": "Confirm site visit for Saturday", + "due_at": "2024-07-22T00:00:00", + "status": "completed", + "assigned_to": "user_001" + }, + { + "reminder_id": "REM-00351", + "text": "Share competitor comparison sheet", + "due_at": "2024-07-20T00:00:00", + "status": "completed", + "assigned_to": "user_001" + } + ], + "qd_overview": { + "current_score": 81.8, + "score_type": "financial_qualification", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 3 + }, + "risk_flags": [ + "price_sensitivity_high" + ], + "metadata": { + "total_interactions": 12, + "total_visits": 3, + "total_opportunities": 1, + "source_confidence": 0.82, + "last_updated": "2025-08-04T00:00:00" + } + }, + { + "client_ref": "PER-0117", + "identity": { + "full_name": "Priya Jain", + "email": "priya.jain76@gmail.com", + "phone": "+91-75630-52830", + "linkedin": "https://linkedin.com/in/priya-jain-980", + "persona": [ + "family_decision_unit" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": "HH-0117", + "household_name": "Jain Family", + "size": 3, + "decision_maker_id": "PER-0117" + }, + "relationships": [ + { + "related_person_id": "PER-0117-CO", + "type": "business_partner", + "strength": 0.95 + } + ], + "active_opportunities": [ + { + "opportunity_id": "OPP-117-1", + "project_id": "PRJ-003", + "unit_id": "PRJ-003-U010", + "stage": "closed_lost", + "value_cr": 15.57, + "probability": 0.43, + "expected_close": "2026-07-03T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000901", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2024-09-09T00:00:00", + "summary": "Site Visit via site_visit regarding Atri Aqua" + }, + { + "interaction_id": "INT-000900", + "channel": "whatsapp", + "type": "follow_up", + "happened_at": "2024-09-03T00:00:00", + "summary": "Follow Up via whatsapp regarding Atri Aqua" + }, + { + "interaction_id": "INT-000899", + "channel": "whatsapp", + "type": "initial_enquiry", + "happened_at": "2024-08-20T00:00:00", + "summary": "Initial Enquiry via whatsapp regarding Atri Aqua" + }, + { + "interaction_id": "INT-000898", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2024-08-14T00:00:00", + "summary": "Site Visit via site_visit regarding Atri Aqua" + }, + { + "interaction_id": "INT-000897", + "channel": "phone_call", + "type": "price_discussion", + "happened_at": "2024-08-13T00:00:00", + "summary": "Price Discussion via phone_call regarding Atri Aqua" + } + ], + "property_interests": [ + { + "project_id": "PRJ-003", + "unit_id": "PRJ-003-U010", + "interest_level": "low", + "configuration": "4 BHK", + "budget_range": "12.46 - 18.68", + "timeline": "flexible", + "financing": "cash", + "notes": "Needs proximity to school" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00355", + "text": "Share competitor comparison sheet", + "due_at": "2024-06-24T00:00:00", + "status": "pending", + "assigned_to": "user_004" + }, + { + "reminder_id": "REM-00356", + "text": "Update on road widening approval status", + "due_at": "2024-06-22T00:00:00", + "status": "pending", + "assigned_to": "user_004" + }, + { + "reminder_id": "REM-00357", + "text": "Send home loan documents checklist", + "due_at": "2024-07-07T00:00:00", + "status": "completed", + "assigned_to": "user_004" + } + ], + "qd_overview": { + "current_score": 98, + "score_type": "engagement", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 4 + }, + "risk_flags": [], + "metadata": { + "total_interactions": 14, + "total_visits": 5, + "total_opportunities": 1, + "source_confidence": 0.96, + "last_updated": "2024-06-09T00:00:00" + } + }, + { + "client_ref": "PER-0117-CO", + "identity": { + "full_name": "Aditya Verma", + "email": "aditya.verma36@yahoo.com", + "phone": "+91-98522-36958", + "linkedin": null, + "persona": [ + "co_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [ + { + "related_person_id": "PER-0117", + "type": "business_partner", + "strength": 0.95 + } + ], + "active_opportunities": [], + "recent_interactions": [], + "property_interests": [], + "tasks_and_reminders": [], + "qd_overview": { + "current_score": 60.2, + "score_type": "financial_qualification", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 3 + }, + "risk_flags": [ + "slow_response_pattern" + ], + "metadata": { + "total_interactions": 0, + "total_visits": 0, + "total_opportunities": 0, + "source_confidence": 0.85, + "last_updated": "2026-04-18T00:00:00" + } + }, + { + "client_ref": "PER-0118", + "identity": { + "full_name": "Sourav Pillai", + "email": "sourav.pillai47@gmail.com", + "phone": "+91-92873-38476", + "linkedin": "https://linkedin.com/in/sourav-pillai-605", + "persona": [ + "broker_referral_chain" + ] + }, + "account_links": { + "account_id": "ACC-0118", + "account_name": "Flipkart", + "account_type": "corporate" + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-118-1", + "project_id": "PRJ-008", + "unit_id": "PRJ-008-U009", + "stage": "closed_lost", + "value_cr": 13.33, + "probability": 0.16, + "expected_close": "2026-10-05T00:00:00" + }, + { + "opportunity_id": "OPP-118-2", + "project_id": "PRJ-014", + "unit_id": "PRJ-014-U003", + "stage": "site_visit", + "value_cr": 25.55, + "probability": 0.25, + "expected_close": "2026-05-22T00:00:00" + }, + { + "opportunity_id": "OPP-118-3", + "project_id": "PRJ-009", + "unit_id": "PRJ-009-U012", + "stage": "site_visit", + "value_cr": 52.97, + "probability": 0.17, + "expected_close": "2026-05-20T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000911", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2024-09-10T00:00:00", + "summary": "Site Visit via site_visit regarding Siddha Sky Waterfront" + }, + { + "interaction_id": "INT-000910", + "channel": "whatsapp", + "type": "negotiation", + "happened_at": "2024-09-02T00:00:00", + "summary": "Negotiation via whatsapp regarding Siddha Sky Waterfront" + }, + { + "interaction_id": "INT-000909", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2024-08-31T00:00:00", + "summary": "Site Visit via site_visit regarding Siddha Sky Waterfront" + }, + { + "interaction_id": "INT-000908", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2024-08-28T00:00:00", + "summary": "Site Visit via site_visit regarding Siddha Sky Waterfront" + }, + { + "interaction_id": "INT-000907", + "channel": "phone_call", + "type": "price_discussion", + "happened_at": "2024-08-27T00:00:00", + "summary": "Price Discussion via phone_call regarding Siddha Sky Waterfront" + } + ], + "property_interests": [ + { + "project_id": "PRJ-008", + "unit_id": "PRJ-008-U009", + "interest_level": "medium", + "configuration": "5 BHK", + "budget_range": "10.66 - 16.0", + "timeline": "flexible", + "financing": "home_loan", + "notes": "Wants ready to move in" + }, + { + "project_id": "PRJ-014", + "unit_id": "PRJ-014-U003", + "interest_level": "low", + "configuration": "Duplex", + "budget_range": "20.44 - 30.66", + "timeline": "3_months", + "financing": "combined", + "notes": "Looking for east facing unit" + }, + { + "project_id": "PRJ-009", + "unit_id": "PRJ-009-U012", + "interest_level": "high", + "configuration": "5 BHK", + "budget_range": "42.38 - 63.56", + "timeline": "3_months", + "financing": "undecided", + "notes": "Prefers higher floor" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00361", + "text": "Send home loan documents checklist", + "due_at": "2024-09-03T00:00:00", + "status": "pending", + "assigned_to": "user_001" + }, + { + "reminder_id": "REM-00362", + "text": "Confirm site visit for Saturday", + "due_at": "2024-09-04T00:00:00", + "status": "completed", + "assigned_to": "user_001" + }, + { + "reminder_id": "REM-00363", + "text": "Update on road widening approval status", + "due_at": "2024-09-03T00:00:00", + "status": "completed", + "assigned_to": "user_001" + } + ], + "qd_overview": { + "current_score": 98, + "score_type": "overall", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 5 + }, + "risk_flags": [], + "metadata": { + "total_interactions": 10, + "total_visits": 4, + "total_opportunities": 3, + "source_confidence": 0.84, + "last_updated": "2025-07-20T00:00:00" + } + }, + { + "client_ref": "PER-0119", + "identity": { + "full_name": "Manish Roy", + "email": "manish.roy66@gmail.com", + "phone": "+91-97410-93203", + "linkedin": "https://linkedin.com/in/manish-roy-930", + "persona": [ + "high_intent_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": "HH-0119", + "household_name": "Roy Family", + "size": 4, + "decision_maker_id": "PER-0119" + }, + "relationships": [ + { + "related_person_id": "PER-0119-CO", + "type": "spouse", + "strength": 0.7 + } + ], + "active_opportunities": [ + { + "opportunity_id": "OPP-119-1", + "project_id": "PRJ-004", + "unit_id": "PRJ-004-U004", + "stage": "discovery", + "value_cr": 22.05, + "probability": 0.4, + "expected_close": "2026-07-01T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000917", + "channel": "phone_call", + "type": "price_discussion", + "happened_at": "2024-04-09T00:00:00", + "summary": "Price Discussion via phone_call regarding Atri Surya Toron" + }, + { + "interaction_id": "INT-000916", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2024-03-15T00:00:00", + "summary": "Site Visit via site_visit regarding Atri Surya Toron" + }, + { + "interaction_id": "INT-000915", + "channel": "whatsapp", + "type": "family_discussion", + "happened_at": "2024-03-04T00:00:00", + "summary": "Family Discussion via whatsapp regarding Atri Surya Toron" + }, + { + "interaction_id": "INT-000914", + "channel": "email", + "type": "initial_enquiry", + "happened_at": "2024-02-24T00:00:00", + "summary": "Initial Enquiry via email regarding Atri Surya Toron" + }, + { + "interaction_id": "INT-000913", + "channel": "whatsapp", + "type": "document_sharing", + "happened_at": "2024-02-16T00:00:00", + "summary": "Document Sharing via whatsapp regarding Atri Surya Toron" + } + ], + "property_interests": [ + { + "project_id": "PRJ-004", + "unit_id": "PRJ-004-U004", + "interest_level": "very_high", + "configuration": "3 BHK", + "budget_range": "17.64 - 26.46", + "timeline": "6_months", + "financing": "cash", + "notes": "Wants ready to move in" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00364", + "text": "Send home loan documents checklist", + "due_at": "2024-02-18T00:00:00", + "status": "completed", + "assigned_to": "user_002" + }, + { + "reminder_id": "REM-00365", + "text": "Confirm site visit for Saturday", + "due_at": "2024-02-26T00:00:00", + "status": "completed", + "assigned_to": "user_002" + }, + { + "reminder_id": "REM-00366", + "text": "Send home loan documents checklist", + "due_at": "2024-03-19T00:00:00", + "status": "pending", + "assigned_to": "user_002" + } + ], + "qd_overview": { + "current_score": 98, + "score_type": "intent", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 2 + }, + "risk_flags": [ + "decision_maker_not_met" + ], + "metadata": { + "total_interactions": 6, + "total_visits": 1, + "total_opportunities": 1, + "source_confidence": 0.87, + "last_updated": "2026-01-03T00:00:00" + } + }, + { + "client_ref": "PER-0119-CO", + "identity": { + "full_name": "Priya Verma", + "email": "priya.verma35@yahoo.com", + "phone": "+91-82276-41265", + "linkedin": null, + "persona": [ + "co_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [ + { + "related_person_id": "PER-0119", + "type": "spouse", + "strength": 0.7 + } + ], + "active_opportunities": [], + "recent_interactions": [], + "property_interests": [], + "tasks_and_reminders": [], + "qd_overview": { + "current_score": 34.1, + "score_type": "overall", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 5 + }, + "risk_flags": [ + "decision_maker_not_met" + ], + "metadata": { + "total_interactions": 0, + "total_visits": 0, + "total_opportunities": 0, + "source_confidence": 0.85, + "last_updated": "2026-04-18T00:00:00" + } + }, + { + "client_ref": "PER-0120", + "identity": { + "full_name": "Aditya Sharma", + "email": "aditya.sharma93@hotmail.com", + "phone": "+91-82090-15759", + "linkedin": "https://linkedin.com/in/aditya-sharma-168", + "persona": [ + "slow_burn_investor" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-120-1", + "project_id": "PRJ-004", + "unit_id": "PRJ-004-U019", + "stage": "closed_won", + "value_cr": 22.28, + "probability": 0.74, + "expected_close": "2026-06-07T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000932", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2024-07-13T00:00:00", + "summary": "Site Visit via site_visit regarding Atri Surya Toron" + }, + { + "interaction_id": "INT-000931", + "channel": "phone_call", + "type": "price_discussion", + "happened_at": "2024-06-17T00:00:00", + "summary": "Price Discussion via phone_call regarding Atri Surya Toron" + }, + { + "interaction_id": "INT-000930", + "channel": "whatsapp", + "type": "price_discussion", + "happened_at": "2024-06-16T00:00:00", + "summary": "Price Discussion via whatsapp regarding Atri Surya Toron" + }, + { + "interaction_id": "INT-000929", + "channel": "whatsapp", + "type": "family_discussion", + "happened_at": "2024-06-15T00:00:00", + "summary": "Family Discussion via whatsapp regarding Atri Surya Toron" + }, + { + "interaction_id": "INT-000928", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2024-06-14T00:00:00", + "summary": "Site Visit via site_visit regarding Atri Surya Toron" + } + ], + "property_interests": [ + { + "project_id": "PRJ-004", + "unit_id": "PRJ-004-U019", + "interest_level": "medium", + "configuration": "Penthouse", + "budget_range": "17.82 - 26.74", + "timeline": "6_months", + "financing": "undecided", + "notes": "Prefers higher floor" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00367", + "text": "Call back regarding east-facing unit availability", + "due_at": "2024-05-04T00:00:00", + "status": "completed", + "assigned_to": "user_003" + }, + { + "reminder_id": "REM-00368", + "text": "Update on road widening approval status", + "due_at": "2024-05-14T00:00:00", + "status": "completed", + "assigned_to": "user_003" + }, + { + "reminder_id": "REM-00369", + "text": "Share competitor comparison sheet", + "due_at": "2024-05-23T00:00:00", + "status": "pending", + "assigned_to": "user_003" + } + ], + "qd_overview": { + "current_score": 98, + "score_type": "urgency", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 5 + }, + "risk_flags": [ + "price_sensitivity_high" + ], + "metadata": { + "total_interactions": 15, + "total_visits": 5, + "total_opportunities": 1, + "source_confidence": 0.95, + "last_updated": "2024-11-04T00:00:00" + } + }, + { + "client_ref": "PER-0121", + "identity": { + "full_name": "Pallavi Mukherjee", + "email": "pallavi.mukherjee40@hotmail.com", + "phone": "+91-84540-53082", + "linkedin": "https://linkedin.com/in/pallavi-mukherjee-237", + "persona": [ + "slow_burn_investor" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-121-1", + "project_id": "PRJ-002", + "unit_id": "PRJ-002-U017", + "stage": "closed_lost", + "value_cr": 1.95, + "probability": 0.16, + "expected_close": "2026-07-06T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000942", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2025-05-28T00:00:00", + "summary": "Site Visit via site_visit regarding Sugam Prakriti" + }, + { + "interaction_id": "INT-000941", + "channel": "whatsapp", + "type": "negotiation", + "happened_at": "2025-05-09T00:00:00", + "summary": "Negotiation via whatsapp regarding Sugam Prakriti" + }, + { + "interaction_id": "INT-000940", + "channel": "phone_call", + "type": "follow_up", + "happened_at": "2025-05-04T00:00:00", + "summary": "Follow Up via phone_call regarding Sugam Prakriti" + }, + { + "interaction_id": "INT-000939", + "channel": "phone_call", + "type": "negotiation", + "happened_at": "2025-04-24T00:00:00", + "summary": "Negotiation via phone_call regarding Sugam Prakriti" + }, + { + "interaction_id": "INT-000938", + "channel": "whatsapp", + "type": "family_discussion", + "happened_at": "2025-04-13T00:00:00", + "summary": "Family Discussion via whatsapp regarding Sugam Prakriti" + } + ], + "property_interests": [ + { + "project_id": "PRJ-002", + "unit_id": "PRJ-002-U017", + "interest_level": "medium", + "configuration": "4 BHK", + "budget_range": "1.56 - 2.34", + "timeline": "3_months", + "financing": "home_loan", + "notes": "Looking for east facing unit" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00373", + "text": "Send revised payment plan", + "due_at": "2025-03-12T00:00:00", + "status": "pending", + "assigned_to": "user_003" + }, + { + "reminder_id": "REM-00374", + "text": "Schedule family meeting for final decision", + "due_at": "2025-03-24T00:00:00", + "status": "completed", + "assigned_to": "user_003" + }, + { + "reminder_id": "REM-00375", + "text": "Share competitor comparison sheet", + "due_at": "2025-04-10T00:00:00", + "status": "completed", + "assigned_to": "user_003" + } + ], + "qd_overview": { + "current_score": 94.5, + "score_type": "engagement", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 3 + }, + "risk_flags": [ + "decision_maker_not_met" + ], + "metadata": { + "total_interactions": 10, + "total_visits": 2, + "total_opportunities": 1, + "source_confidence": 0.81, + "last_updated": "2026-03-16T00:00:00" + } + }, + { + "client_ref": "PER-0122", + "identity": { + "full_name": "Deb Nair", + "email": "deb.nair20@rediffmail.com", + "phone": "+91-93756-71220", + "linkedin": "https://linkedin.com/in/deb-nair-418", + "persona": [ + "high_intent_buyer" + ] + }, + "account_links": { + "account_id": "ACC-0122", + "account_name": "JSW Steel", + "account_type": "referral_partner" + }, + "household": { + "household_id": "HH-0122", + "household_name": "Nair Family", + "size": 5, + "decision_maker_id": "PER-0122" + }, + "relationships": [ + { + "related_person_id": "PER-0122-CO", + "type": "business_partner", + "strength": 0.93 + } + ], + "active_opportunities": [ + { + "opportunity_id": "OPP-122-1", + "project_id": "PRJ-001", + "unit_id": "PRJ-001-U001", + "stage": "verbal_commitment", + "value_cr": 19.84, + "probability": 0.52, + "expected_close": "2026-09-01T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000947", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2024-03-27T00:00:00", + "summary": "Site Visit via site_visit regarding Eden Devprayag" + }, + { + "interaction_id": "INT-000946", + "channel": "whatsapp", + "type": "negotiation", + "happened_at": "2024-03-06T00:00:00", + "summary": "Negotiation via whatsapp regarding Eden Devprayag" + }, + { + "interaction_id": "INT-000945", + "channel": "email", + "type": "site_visit", + "happened_at": "2024-02-28T00:00:00", + "summary": "Site Visit via email regarding Eden Devprayag" + }, + { + "interaction_id": "INT-000944", + "channel": "whatsapp", + "type": "negotiation", + "happened_at": "2024-02-25T00:00:00", + "summary": "Negotiation via whatsapp regarding Eden Devprayag" + }, + { + "interaction_id": "INT-000943", + "channel": "walk_in", + "type": "initial_enquiry", + "happened_at": "2024-02-24T00:00:00", + "summary": "Initial Enquiry via walk_in regarding Eden Devprayag" + } + ], + "property_interests": [ + { + "project_id": "PRJ-001", + "unit_id": "PRJ-001-U001", + "interest_level": "high", + "configuration": "Villa", + "budget_range": "15.87 - 23.81", + "timeline": "flexible", + "financing": "undecided", + "notes": "Prefers higher floor" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00379", + "text": "Confirm site visit for Saturday", + "due_at": "2024-03-02T00:00:00", + "status": "pending", + "assigned_to": "user_005" + } + ], + "qd_overview": { + "current_score": 86.5, + "score_type": "engagement", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 3 + }, + "risk_flags": [ + "slow_response_pattern" + ], + "metadata": { + "total_interactions": 5, + "total_visits": 1, + "total_opportunities": 1, + "source_confidence": 0.79, + "last_updated": "2024-09-07T00:00:00" + } + }, + { + "client_ref": "PER-0122-CO", + "identity": { + "full_name": "Swati Reddy", + "email": "swati.reddy66@rediffmail.com", + "phone": "+91-86557-89874", + "linkedin": null, + "persona": [ + "co_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [ + { + "related_person_id": "PER-0122", + "type": "business_partner", + "strength": 0.93 + } + ], + "active_opportunities": [], + "recent_interactions": [], + "property_interests": [], + "tasks_and_reminders": [], + "qd_overview": { + "current_score": 84.8, + "score_type": "urgency", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 4 + }, + "risk_flags": [], + "metadata": { + "total_interactions": 0, + "total_visits": 0, + "total_opportunities": 0, + "source_confidence": 0.85, + "last_updated": "2026-04-18T00:00:00" + } + }, + { + "client_ref": "PER-0123", + "identity": { + "full_name": "Vivek Mukherjee", + "email": "vivek.mukherjee25@rediffmail.com", + "phone": "+91-88533-31281", + "linkedin": "https://linkedin.com/in/vivek-mukherjee-298", + "persona": [ + "family_decision_unit" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": "HH-0123", + "household_name": "Mukherjee Family", + "size": 4, + "decision_maker_id": "PER-0123" + }, + "relationships": [ + { + "related_person_id": "PER-0123-CO", + "type": "business_partner", + "strength": 0.71 + } + ], + "active_opportunities": [ + { + "opportunity_id": "OPP-123-1", + "project_id": "PRJ-011", + "unit_id": "PRJ-011-U004", + "stage": "prospecting", + "value_cr": 50.68, + "probability": 0.2, + "expected_close": "2026-06-10T00:00:00" + }, + { + "opportunity_id": "OPP-123-2", + "project_id": "PRJ-004", + "unit_id": "PRJ-004-U010", + "stage": "site_visit", + "value_cr": 2.02, + "probability": 0.81, + "expected_close": "2026-07-21T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000950", + "channel": "email", + "type": "follow_up", + "happened_at": "2025-11-08T00:00:00", + "summary": "Follow Up via email regarding DTC Sojon" + }, + { + "interaction_id": "INT-000949", + "channel": "whatsapp", + "type": "site_visit", + "happened_at": "2025-10-19T00:00:00", + "summary": "Site Visit via whatsapp regarding DTC Sojon" + }, + { + "interaction_id": "INT-000948", + "channel": "web_enquiry", + "type": "initial_enquiry", + "happened_at": "2025-10-11T00:00:00", + "summary": "Initial Enquiry via web_enquiry regarding DTC Sojon" + } + ], + "property_interests": [ + { + "project_id": "PRJ-011", + "unit_id": "PRJ-011-U004", + "interest_level": "very_high", + "configuration": "Penthouse", + "budget_range": "40.54 - 60.82", + "timeline": "flexible", + "financing": "cash", + "notes": "Comparing with competitor projects" + }, + { + "project_id": "PRJ-004", + "unit_id": "PRJ-004-U010", + "interest_level": "high", + "configuration": "Villa", + "budget_range": "1.62 - 2.42", + "timeline": "flexible", + "financing": "combined", + "notes": "Waiting for festive season offer" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00380", + "text": "Call back regarding east-facing unit availability", + "due_at": "2025-10-12T00:00:00", + "status": "completed", + "assigned_to": "user_002" + }, + { + "reminder_id": "REM-00381", + "text": "Schedule family meeting for final decision", + "due_at": "2025-11-14T00:00:00", + "status": "completed", + "assigned_to": "user_002" + } + ], + "qd_overview": { + "current_score": 46.0, + "score_type": "urgency", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 2 + }, + "risk_flags": [ + "price_sensitivity_high" + ], + "metadata": { + "total_interactions": 3, + "total_visits": 0, + "total_opportunities": 2, + "source_confidence": 0.93, + "last_updated": "2026-02-28T00:00:00" + } + }, + { + "client_ref": "PER-0123-CO", + "identity": { + "full_name": "Trisha Mukherjee", + "email": "trisha.mukherjee93@rediffmail.com", + "phone": "+91-83894-42347", + "linkedin": null, + "persona": [ + "co_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [ + { + "related_person_id": "PER-0123", + "type": "business_partner", + "strength": 0.71 + } + ], + "active_opportunities": [], + "recent_interactions": [], + "property_interests": [], + "tasks_and_reminders": [], + "qd_overview": { + "current_score": 79.6, + "score_type": "engagement", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 3 + }, + "risk_flags": [ + "competitor_comparison_active" + ], + "metadata": { + "total_interactions": 0, + "total_visits": 0, + "total_opportunities": 0, + "source_confidence": 0.85, + "last_updated": "2026-04-18T00:00:00" + } + }, + { + "client_ref": "PER-0124", + "identity": { + "full_name": "Vikram Bose", + "email": "vikram.bose54@yahoo.com", + "phone": "+91-78815-37462", + "linkedin": "https://linkedin.com/in/vikram-bose-866", + "persona": [ + "nri_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-124-1", + "project_id": "PRJ-003", + "unit_id": "PRJ-003-U003", + "stage": "proposal", + "value_cr": 20.76, + "probability": 0.51, + "expected_close": "2026-09-23T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000953", + "channel": "email", + "type": "follow_up", + "happened_at": "2024-03-21T00:00:00", + "summary": "Follow Up via email regarding Atri Aqua" + }, + { + "interaction_id": "INT-000952", + "channel": "phone_call", + "type": "negotiation", + "happened_at": "2024-03-19T00:00:00", + "summary": "Negotiation via phone_call regarding Atri Aqua" + }, + { + "interaction_id": "INT-000951", + "channel": "referral", + "type": "initial_enquiry", + "happened_at": "2024-03-17T00:00:00", + "summary": "Initial Enquiry via referral regarding Atri Aqua" + } + ], + "property_interests": [ + { + "project_id": "PRJ-003", + "unit_id": "PRJ-003-U003", + "interest_level": "very_high", + "configuration": "Duplex", + "budget_range": "16.61 - 24.91", + "timeline": "3_months", + "financing": "home_loan", + "notes": "Needs proximity to school" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00382", + "text": "Confirm site visit for Saturday", + "due_at": "2024-03-21T00:00:00", + "status": "completed", + "assigned_to": "user_004" + } + ], + "qd_overview": { + "current_score": 57.5, + "score_type": "engagement", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 2 + }, + "risk_flags": [], + "metadata": { + "total_interactions": 3, + "total_visits": 0, + "total_opportunities": 1, + "source_confidence": 0.84, + "last_updated": "2024-01-07T00:00:00" + } + }, + { + "client_ref": "PER-0125", + "identity": { + "full_name": "Anirban Sharma", + "email": "anirban.sharma62@rediffmail.com", + "phone": "+91-90540-91844", + "linkedin": "https://linkedin.com/in/anirban-sharma-211", + "persona": [ + "high_intent_buyer" + ] + }, + "account_links": { + "account_id": "ACC-0125", + "account_name": "Ola", + "account_type": "corporate" + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-125-1", + "project_id": "PRJ-007", + "unit_id": "PRJ-007-U014", + "stage": "prospecting", + "value_cr": 6.92, + "probability": 0.93, + "expected_close": "2026-08-10T00:00:00" + }, + { + "opportunity_id": "OPP-125-2", + "project_id": "PRJ-014", + "unit_id": "PRJ-014-U002", + "stage": "prospecting", + "value_cr": 24.47, + "probability": 0.61, + "expected_close": "2026-09-30T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000958", + "channel": "whatsapp", + "type": "initial_enquiry", + "happened_at": "2025-07-30T00:00:00", + "summary": "Initial Enquiry via whatsapp regarding DTC Good Earth" + }, + { + "interaction_id": "INT-000957", + "channel": "whatsapp", + "type": "follow_up", + "happened_at": "2025-07-23T00:00:00", + "summary": "Follow Up via whatsapp regarding DTC Good Earth" + }, + { + "interaction_id": "INT-000956", + "channel": "whatsapp", + "type": "site_visit", + "happened_at": "2025-07-21T00:00:00", + "summary": "Site Visit via whatsapp regarding DTC Good Earth" + }, + { + "interaction_id": "INT-000955", + "channel": "whatsapp", + "type": "follow_up", + "happened_at": "2025-05-14T00:00:00", + "summary": "Follow Up via whatsapp regarding DTC Good Earth" + }, + { + "interaction_id": "INT-000954", + "channel": "referral", + "type": "initial_enquiry", + "happened_at": "2025-05-12T00:00:00", + "summary": "Initial Enquiry via referral regarding DTC Good Earth" + } + ], + "property_interests": [ + { + "project_id": "PRJ-007", + "unit_id": "PRJ-007-U014", + "interest_level": "low", + "configuration": "4 BHK", + "budget_range": "5.54 - 8.3", + "timeline": "flexible", + "financing": "undecided", + "notes": "Waiting for festive season offer" + }, + { + "project_id": "PRJ-014", + "unit_id": "PRJ-014-U002", + "interest_level": "medium", + "configuration": "Penthouse", + "budget_range": "19.58 - 29.36", + "timeline": "6_months", + "financing": "undecided", + "notes": "Comparing with competitor projects" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00383", + "text": "Schedule family meeting for final decision", + "due_at": "2025-05-16T00:00:00", + "status": "completed", + "assigned_to": "user_001" + }, + { + "reminder_id": "REM-00384", + "text": "Share competitor comparison sheet", + "due_at": "2025-07-24T00:00:00", + "status": "completed", + "assigned_to": "user_001" + }, + { + "reminder_id": "REM-00385", + "text": "Follow up on DTC Good Earth pricing discussion", + "due_at": "2025-07-27T00:00:00", + "status": "completed", + "assigned_to": "user_001" + } + ], + "qd_overview": { + "current_score": 93.8, + "score_type": "intent", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 4 + }, + "risk_flags": [ + "financing_not_finalized", + "timeline_unclear" + ], + "metadata": { + "total_interactions": 5, + "total_visits": 0, + "total_opportunities": 2, + "source_confidence": 0.95, + "last_updated": "2024-03-22T00:00:00" + } + }, + { + "client_ref": "PER-0126", + "identity": { + "full_name": "Vidya Singh", + "email": "vidya.singh94@yahoo.com", + "phone": "+91-70102-93633", + "linkedin": "https://linkedin.com/in/vidya-singh-932", + "persona": [ + "family_decision_unit" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": "HH-0126", + "household_name": "Singh Family", + "size": 4, + "decision_maker_id": "PER-0126" + }, + "relationships": [ + { + "related_person_id": "PER-0126-CO", + "type": "spouse", + "strength": 0.92 + } + ], + "active_opportunities": [ + { + "opportunity_id": "OPP-126-1", + "project_id": "PRJ-004", + "unit_id": "PRJ-004-U004", + "stage": "discovery", + "value_cr": 22.05, + "probability": 0.19, + "expected_close": "2026-05-25T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000965", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2025-11-03T00:00:00", + "summary": "Site Visit via site_visit regarding Atri Surya Toron" + }, + { + "interaction_id": "INT-000964", + "channel": "walk_in", + "type": "family_discussion", + "happened_at": "2025-10-19T00:00:00", + "summary": "Family Discussion via walk_in regarding Atri Surya Toron" + }, + { + "interaction_id": "INT-000962", + "channel": "web_enquiry", + "type": "document_sharing", + "happened_at": "2025-10-16T00:00:00", + "summary": "Document Sharing via web_enquiry regarding Atri Surya Toron" + }, + { + "interaction_id": "INT-000963", + "channel": "email", + "type": "price_discussion", + "happened_at": "2025-10-16T00:00:00", + "summary": "Price Discussion via email regarding Atri Surya Toron" + }, + { + "interaction_id": "INT-000961", + "channel": "email", + "type": "family_discussion", + "happened_at": "2025-10-08T00:00:00", + "summary": "Family Discussion via email regarding Atri Surya Toron" + } + ], + "property_interests": [ + { + "project_id": "PRJ-004", + "unit_id": "PRJ-004-U004", + "interest_level": "high", + "configuration": "3 BHK", + "budget_range": "17.64 - 26.46", + "timeline": "flexible", + "financing": "combined", + "notes": "Needs proximity to school" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00387", + "text": "Schedule family meeting for final decision", + "due_at": "2025-09-21T00:00:00", + "status": "overdue", + "assigned_to": "user_001" + }, + { + "reminder_id": "REM-00388", + "text": "Call back regarding east-facing unit availability", + "due_at": "2025-09-22T00:00:00", + "status": "completed", + "assigned_to": "user_001" + }, + { + "reminder_id": "REM-00389", + "text": "Update on road widening approval status", + "due_at": "2025-10-11T00:00:00", + "status": "completed", + "assigned_to": "user_001" + } + ], + "qd_overview": { + "current_score": 63.4, + "score_type": "urgency", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 4 + }, + "risk_flags": [ + "price_sensitivity_high" + ], + "metadata": { + "total_interactions": 7, + "total_visits": 1, + "total_opportunities": 1, + "source_confidence": 0.82, + "last_updated": "2025-01-03T00:00:00" + } + }, + { + "client_ref": "PER-0126-CO", + "identity": { + "full_name": "Abhishek Verma", + "email": "abhishek.verma88@gmail.com", + "phone": "+91-81414-66087", + "linkedin": null, + "persona": [ + "co_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [ + { + "related_person_id": "PER-0126", + "type": "spouse", + "strength": 0.92 + } + ], + "active_opportunities": [], + "recent_interactions": [], + "property_interests": [], + "tasks_and_reminders": [], + "qd_overview": { + "current_score": 35.5, + "score_type": "overall", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 2 + }, + "risk_flags": [ + "slow_response_pattern" + ], + "metadata": { + "total_interactions": 0, + "total_visits": 0, + "total_opportunities": 0, + "source_confidence": 0.85, + "last_updated": "2026-04-18T00:00:00" + } + }, + { + "client_ref": "PER-0127", + "identity": { + "full_name": "Sneha Das", + "email": "sneha.das78@rediffmail.com", + "phone": "+91-72963-53620", + "linkedin": "https://linkedin.com/in/sneha-das-992", + "persona": [ + "price_sensitive_aspirational" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": "HH-0127", + "household_name": "Das Family", + "size": 4, + "decision_maker_id": "PER-0127" + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-127-1", + "project_id": "PRJ-014", + "unit_id": "PRJ-014-U005", + "stage": "closed_won", + "value_cr": 4.25, + "probability": 0.37, + "expected_close": "2026-08-19T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000969", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2026-03-26T00:00:00", + "summary": "Site Visit via site_visit regarding Ambuja Utpaala" + }, + { + "interaction_id": "INT-000968", + "channel": "whatsapp", + "type": "document_sharing", + "happened_at": "2026-02-05T00:00:00", + "summary": "Document Sharing via whatsapp regarding Ambuja Utpaala" + }, + { + "interaction_id": "INT-000967", + "channel": "whatsapp", + "type": "negotiation", + "happened_at": "2026-02-02T00:00:00", + "summary": "Negotiation via whatsapp regarding Ambuja Utpaala" + }, + { + "interaction_id": "INT-000966", + "channel": "web_enquiry", + "type": "initial_enquiry", + "happened_at": "2026-01-29T00:00:00", + "summary": "Initial Enquiry via web_enquiry regarding Ambuja Utpaala" + } + ], + "property_interests": [ + { + "project_id": "PRJ-014", + "unit_id": "PRJ-014-U005", + "interest_level": "medium", + "configuration": "2 BHK", + "budget_range": "3.4 - 5.1", + "timeline": "3_months", + "financing": "cash", + "notes": "Wants ready to move in" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00392", + "text": "Send revised payment plan", + "due_at": "2026-02-02T00:00:00", + "status": "completed", + "assigned_to": "user_001" + }, + { + "reminder_id": "REM-00393", + "text": "Share competitor comparison sheet", + "due_at": "2026-02-03T00:00:00", + "status": "completed", + "assigned_to": "user_001" + }, + { + "reminder_id": "REM-00394", + "text": "Schedule family meeting for final decision", + "due_at": "2026-03-30T00:00:00", + "status": "completed", + "assigned_to": "user_001" + } + ], + "qd_overview": { + "current_score": 98, + "score_type": "engagement", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 5 + }, + "risk_flags": [ + "decision_maker_not_met" + ], + "metadata": { + "total_interactions": 4, + "total_visits": 1, + "total_opportunities": 1, + "source_confidence": 0.8, + "last_updated": "2026-02-23T00:00:00" + } + }, + { + "client_ref": "PER-0128", + "identity": { + "full_name": "Sonal Das", + "email": "sonal.das47@yahoo.com", + "phone": "+91-86378-99126", + "linkedin": "https://linkedin.com/in/sonal-das-566", + "persona": [ + "high_intent_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-128-1", + "project_id": "PRJ-014", + "unit_id": "PRJ-014-U002", + "stage": "closed_lost", + "value_cr": 24.47, + "probability": 0.35, + "expected_close": "2026-08-22T00:00:00" + }, + { + "opportunity_id": "OPP-128-2", + "project_id": "PRJ-013", + "unit_id": "PRJ-013-U005", + "stage": "prospecting", + "value_cr": 10.37, + "probability": 0.88, + "expected_close": "2026-07-02T00:00:00" + }, + { + "opportunity_id": "OPP-128-3", + "project_id": "PRJ-009", + "unit_id": "PRJ-009-U012", + "stage": "verbal_commitment", + "value_cr": 52.97, + "probability": 0.46, + "expected_close": "2026-09-16T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000972", + "channel": "email", + "type": "document_sharing", + "happened_at": "2026-03-05T00:00:00", + "summary": "Document Sharing via email regarding Siddha Sky Waterfront" + }, + { + "interaction_id": "INT-000971", + "channel": "phone_call", + "type": "negotiation", + "happened_at": "2026-02-01T00:00:00", + "summary": "Negotiation via phone_call regarding Siddha Sky Waterfront" + }, + { + "interaction_id": "INT-000970", + "channel": "referral", + "type": "initial_enquiry", + "happened_at": "2026-01-13T00:00:00", + "summary": "Initial Enquiry via referral regarding Siddha Sky Waterfront" + } + ], + "property_interests": [ + { + "project_id": "PRJ-014", + "unit_id": "PRJ-014-U002", + "interest_level": "high", + "configuration": "Penthouse", + "budget_range": "19.58 - 29.36", + "timeline": "3_months", + "financing": "home_loan", + "notes": "Waiting for festive season offer" + }, + { + "project_id": "PRJ-013", + "unit_id": "PRJ-013-U005", + "interest_level": "very_high", + "configuration": "Villa", + "budget_range": "8.3 - 12.44", + "timeline": "6_months", + "financing": "home_loan", + "notes": "Looking for east facing unit" + }, + { + "project_id": "PRJ-009", + "unit_id": "PRJ-009-U012", + "interest_level": "very_high", + "configuration": "5 BHK", + "budget_range": "42.38 - 63.56", + "timeline": "flexible", + "financing": "cash", + "notes": "Comparing with competitor projects" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00395", + "text": "Schedule family meeting for final decision", + "due_at": "2026-02-05T00:00:00", + "status": "completed", + "assigned_to": "user_003" + }, + { + "reminder_id": "REM-00396", + "text": "Share competitor comparison sheet", + "due_at": "2026-03-12T00:00:00", + "status": "completed", + "assigned_to": "user_003" + } + ], + "qd_overview": { + "current_score": 65.4, + "score_type": "urgency", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 2 + }, + "risk_flags": [ + "financing_not_finalized", + "timeline_unclear" + ], + "metadata": { + "total_interactions": 3, + "total_visits": 0, + "total_opportunities": 3, + "source_confidence": 0.78, + "last_updated": "2024-05-29T00:00:00" + } + }, + { + "client_ref": "PER-0129", + "identity": { + "full_name": "Pallavi Pillai", + "email": "pallavi.pillai60@gmail.com", + "phone": "+91-74289-52391", + "linkedin": "https://linkedin.com/in/pallavi-pillai-870", + "persona": [ + "price_sensitive_aspirational" + ] + }, + "account_links": { + "account_id": "ACC-0129", + "account_name": "ICICI Bank", + "account_type": "individual_business" + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-129-1", + "project_id": "PRJ-001", + "unit_id": "PRJ-001-U002", + "stage": "verbal_commitment", + "value_cr": 32.98, + "probability": 0.6, + "expected_close": "2026-06-25T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000981", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2024-10-18T00:00:00", + "summary": "Site Visit via site_visit regarding Eden Devprayag" + }, + { + "interaction_id": "INT-000980", + "channel": "referral", + "type": "document_sharing", + "happened_at": "2024-10-11T00:00:00", + "summary": "Document Sharing via referral regarding Eden Devprayag" + }, + { + "interaction_id": "INT-000979", + "channel": "referral", + "type": "family_discussion", + "happened_at": "2024-09-21T00:00:00", + "summary": "Family Discussion via referral regarding Eden Devprayag" + }, + { + "interaction_id": "INT-000978", + "channel": "web_enquiry", + "type": "follow_up", + "happened_at": "2024-09-17T00:00:00", + "summary": "Follow Up via web_enquiry regarding Eden Devprayag" + }, + { + "interaction_id": "INT-000977", + "channel": "referral", + "type": "initial_enquiry", + "happened_at": "2024-09-10T00:00:00", + "summary": "Initial Enquiry via referral regarding Eden Devprayag" + } + ], + "property_interests": [ + { + "project_id": "PRJ-001", + "unit_id": "PRJ-001-U002", + "interest_level": "very_high", + "configuration": "2 BHK", + "budget_range": "26.38 - 39.58", + "timeline": "3_months", + "financing": "cash", + "notes": "Looking for east facing unit" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00397", + "text": "Call back regarding east-facing unit availability", + "due_at": "2024-08-13T00:00:00", + "status": "overdue", + "assigned_to": "user_003" + }, + { + "reminder_id": "REM-00398", + "text": "Share competitor comparison sheet", + "due_at": "2024-08-21T00:00:00", + "status": "completed", + "assigned_to": "user_003" + }, + { + "reminder_id": "REM-00399", + "text": "Schedule family meeting for final decision", + "due_at": "2024-10-17T00:00:00", + "status": "completed", + "assigned_to": "user_003" + } + ], + "qd_overview": { + "current_score": 98, + "score_type": "overall", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 4 + }, + "risk_flags": [ + "slow_response_pattern" + ], + "metadata": { + "total_interactions": 9, + "total_visits": 1, + "total_opportunities": 1, + "source_confidence": 0.93, + "last_updated": "2025-12-27T00:00:00" + } + }, + { + "client_ref": "PER-0130", + "identity": { + "full_name": "Isha Saha", + "email": "isha.saha32@rediffmail.com", + "phone": "+91-95423-97914", + "linkedin": "https://linkedin.com/in/isha-saha-774", + "persona": [ + "slow_burn_investor" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": "HH-0130", + "household_name": "Saha Family", + "size": 5, + "decision_maker_id": "PER-0130" + }, + "relationships": [ + { + "related_person_id": "PER-0130-CO", + "type": "business_partner", + "strength": 0.78 + } + ], + "active_opportunities": [ + { + "opportunity_id": "OPP-130-1", + "project_id": "PRJ-014", + "unit_id": "PRJ-014-U001", + "stage": "closed_won", + "value_cr": 73.38, + "probability": 0.57, + "expected_close": "2026-10-02T00:00:00" + }, + { + "opportunity_id": "OPP-130-2", + "project_id": "PRJ-011", + "unit_id": "PRJ-011-U003", + "stage": "site_visit", + "value_cr": 23.35, + "probability": 0.83, + "expected_close": "2026-07-03T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000986", + "channel": "referral", + "type": "initial_enquiry", + "happened_at": "2025-11-20T00:00:00", + "summary": "Initial Enquiry via referral regarding DTC Sojon" + }, + { + "interaction_id": "INT-000985", + "channel": "whatsapp", + "type": "negotiation", + "happened_at": "2025-10-20T00:00:00", + "summary": "Negotiation via whatsapp regarding DTC Sojon" + }, + { + "interaction_id": "INT-000984", + "channel": "email", + "type": "initial_enquiry", + "happened_at": "2025-10-01T00:00:00", + "summary": "Initial Enquiry via email regarding DTC Sojon" + }, + { + "interaction_id": "INT-000983", + "channel": "phone_call", + "type": "follow_up", + "happened_at": "2025-09-24T00:00:00", + "summary": "Follow Up via phone_call regarding DTC Sojon" + }, + { + "interaction_id": "INT-000982", + "channel": "referral", + "type": "initial_enquiry", + "happened_at": "2025-09-09T00:00:00", + "summary": "Initial Enquiry via referral regarding DTC Sojon" + } + ], + "property_interests": [ + { + "project_id": "PRJ-014", + "unit_id": "PRJ-014-U001", + "interest_level": "very_high", + "configuration": "5 BHK", + "budget_range": "58.7 - 88.06", + "timeline": "immediate", + "financing": "cash", + "notes": "Needs proximity to school" + }, + { + "project_id": "PRJ-011", + "unit_id": "PRJ-011-U003", + "interest_level": "very_high", + "configuration": "Villa", + "budget_range": "18.68 - 28.02", + "timeline": "6_months", + "financing": "cash", + "notes": "Looking for east facing unit" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00401", + "text": "Schedule family meeting for final decision", + "due_at": "2025-09-10T00:00:00", + "status": "pending", + "assigned_to": "user_003" + }, + { + "reminder_id": "REM-00402", + "text": "Schedule family meeting for final decision", + "due_at": "2025-09-28T00:00:00", + "status": "overdue", + "assigned_to": "user_003" + }, + { + "reminder_id": "REM-00403", + "text": "Send home loan documents checklist", + "due_at": "2025-10-07T00:00:00", + "status": "completed", + "assigned_to": "user_003" + } + ], + "qd_overview": { + "current_score": 89.1, + "score_type": "overall", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 5 + }, + "risk_flags": [ + "competitor_comparison_active" + ], + "metadata": { + "total_interactions": 5, + "total_visits": 0, + "total_opportunities": 2, + "source_confidence": 0.77, + "last_updated": "2026-04-17T00:00:00" + } + }, + { + "client_ref": "PER-0130-CO", + "identity": { + "full_name": "Aditya Sen", + "email": "aditya.sen72@hotmail.com", + "phone": "+91-77370-13018", + "linkedin": null, + "persona": [ + "co_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [ + { + "related_person_id": "PER-0130", + "type": "business_partner", + "strength": 0.78 + } + ], + "active_opportunities": [], + "recent_interactions": [], + "property_interests": [], + "tasks_and_reminders": [], + "qd_overview": { + "current_score": 61.5, + "score_type": "intent", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 3 + }, + "risk_flags": [ + "slow_response_pattern" + ], + "metadata": { + "total_interactions": 0, + "total_visits": 0, + "total_opportunities": 0, + "source_confidence": 0.85, + "last_updated": "2026-04-18T00:00:00" + } + }, + { + "client_ref": "PER-0131", + "identity": { + "full_name": "Siddharth Chatterjee", + "email": "siddharth.chatterjee81@outlook.com", + "phone": "+91-97900-14588", + "linkedin": "https://linkedin.com/in/siddharth-chatterjee-186", + "persona": [ + "high_intent_buyer" + ] + }, + "account_links": { + "account_id": "ACC-0131", + "account_name": "Exide Industries", + "account_type": "individual_business" + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-131-1", + "project_id": "PRJ-003", + "unit_id": "PRJ-003-U004", + "stage": "verbal_commitment", + "value_cr": 17.22, + "probability": 0.34, + "expected_close": "2026-09-03T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-000999", + "channel": "phone_call", + "type": "site_visit", + "happened_at": "2025-08-31T00:00:00", + "summary": "Site Visit via phone_call regarding Atri Aqua" + }, + { + "interaction_id": "INT-000998", + "channel": "phone_call", + "type": "family_discussion", + "happened_at": "2025-08-19T00:00:00", + "summary": "Family Discussion via phone_call regarding Atri Aqua" + }, + { + "interaction_id": "INT-000997", + "channel": "whatsapp", + "type": "follow_up", + "happened_at": "2025-08-07T00:00:00", + "summary": "Follow Up via whatsapp regarding Atri Aqua" + }, + { + "interaction_id": "INT-000996", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2025-08-05T00:00:00", + "summary": "Site Visit via site_visit regarding Atri Aqua" + }, + { + "interaction_id": "INT-000995", + "channel": "whatsapp", + "type": "document_sharing", + "happened_at": "2025-07-28T00:00:00", + "summary": "Document Sharing via whatsapp regarding Atri Aqua" + } + ], + "property_interests": [ + { + "project_id": "PRJ-003", + "unit_id": "PRJ-003-U004", + "interest_level": "high", + "configuration": "Villa", + "budget_range": "13.78 - 20.66", + "timeline": "6_months", + "financing": "undecided", + "notes": "Waiting for festive season offer" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00404", + "text": "Confirm site visit for Saturday", + "due_at": "2025-06-17T00:00:00", + "status": "pending", + "assigned_to": "user_003" + }, + { + "reminder_id": "REM-00405", + "text": "Send home loan documents checklist", + "due_at": "2025-07-10T00:00:00", + "status": "pending", + "assigned_to": "user_003" + } + ], + "qd_overview": { + "current_score": 98, + "score_type": "financial_qualification", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 3 + }, + "risk_flags": [ + "financing_not_finalized", + "timeline_unclear" + ], + "metadata": { + "total_interactions": 13, + "total_visits": 2, + "total_opportunities": 1, + "source_confidence": 0.98, + "last_updated": "2024-11-01T00:00:00" + } + }, + { + "client_ref": "PER-0132", + "identity": { + "full_name": "Shreya Chatterjee", + "email": "shreya.chatterjee42@rediffmail.com", + "phone": "+91-92757-28775", + "linkedin": "https://linkedin.com/in/shreya-chatterjee-648", + "persona": [ + "broker_referral_chain" + ] + }, + "account_links": { + "account_id": "ACC-0132", + "account_name": "State Bank of India", + "account_type": "referral_partner" + }, + "household": { + "household_id": "HH-0132", + "household_name": "Chatterjee Family", + "size": 3, + "decision_maker_id": "PER-0132" + }, + "relationships": [ + { + "related_person_id": "PER-0132-CO", + "type": "business_partner", + "strength": 0.72 + } + ], + "active_opportunities": [ + { + "opportunity_id": "OPP-132-1", + "project_id": "PRJ-005", + "unit_id": "PRJ-005-U011", + "stage": "discovery", + "value_cr": 2.23, + "probability": 0.86, + "expected_close": "2026-06-30T00:00:00" + }, + { + "opportunity_id": "OPP-132-2", + "project_id": "PRJ-011", + "unit_id": "PRJ-011-U010", + "stage": "closed_won", + "value_cr": 6.18, + "probability": 0.51, + "expected_close": "2026-06-19T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-001006", + "channel": "whatsapp", + "type": "negotiation", + "happened_at": "2025-04-04T00:00:00", + "summary": "Negotiation via whatsapp regarding Siddha Suburbia Bungalow" + }, + { + "interaction_id": "INT-001005", + "channel": "whatsapp", + "type": "price_discussion", + "happened_at": "2025-03-20T00:00:00", + "summary": "Price Discussion via whatsapp regarding Siddha Suburbia Bungalow" + }, + { + "interaction_id": "INT-001004", + "channel": "whatsapp", + "type": "site_visit", + "happened_at": "2025-03-07T00:00:00", + "summary": "Site Visit via whatsapp regarding Siddha Suburbia Bungalow" + }, + { + "interaction_id": "INT-001003", + "channel": "whatsapp", + "type": "follow_up", + "happened_at": "2025-02-19T00:00:00", + "summary": "Follow Up via whatsapp regarding Siddha Suburbia Bungalow" + }, + { + "interaction_id": "INT-001002", + "channel": "whatsapp", + "type": "initial_enquiry", + "happened_at": "2025-02-06T00:00:00", + "summary": "Initial Enquiry via whatsapp regarding Siddha Suburbia Bungalow" + } + ], + "property_interests": [ + { + "project_id": "PRJ-005", + "unit_id": "PRJ-005-U011", + "interest_level": "very_high", + "configuration": "Penthouse", + "budget_range": "1.78 - 2.68", + "timeline": "3_months", + "financing": "combined", + "notes": "Waiting for festive season offer" + }, + { + "project_id": "PRJ-011", + "unit_id": "PRJ-011-U010", + "interest_level": "low", + "configuration": "4 BHK", + "budget_range": "4.94 - 7.42", + "timeline": "3_months", + "financing": "home_loan", + "notes": "Needs proximity to school" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00406", + "text": "Send home loan documents checklist", + "due_at": "2025-01-15T00:00:00", + "status": "pending", + "assigned_to": "user_001" + }, + { + "reminder_id": "REM-00407", + "text": "Confirm site visit for Saturday", + "due_at": "2025-01-30T00:00:00", + "status": "completed", + "assigned_to": "user_001" + }, + { + "reminder_id": "REM-00408", + "text": "Call back regarding east-facing unit availability", + "due_at": "2025-04-08T00:00:00", + "status": "completed", + "assigned_to": "user_001" + } + ], + "qd_overview": { + "current_score": 69.9, + "score_type": "intent", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 5 + }, + "risk_flags": [ + "financing_not_finalized", + "timeline_unclear" + ], + "metadata": { + "total_interactions": 7, + "total_visits": 0, + "total_opportunities": 2, + "source_confidence": 0.8, + "last_updated": "2026-01-20T00:00:00" + } + }, + { + "client_ref": "PER-0132-CO", + "identity": { + "full_name": "Parth Patel", + "email": "parth.patel19@outlook.com", + "phone": "+91-74083-79660", + "linkedin": null, + "persona": [ + "co_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [ + { + "related_person_id": "PER-0132", + "type": "business_partner", + "strength": 0.72 + } + ], + "active_opportunities": [], + "recent_interactions": [], + "property_interests": [], + "tasks_and_reminders": [], + "qd_overview": { + "current_score": 42.0, + "score_type": "urgency", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 2 + }, + "risk_flags": [ + "price_sensitivity_high" + ], + "metadata": { + "total_interactions": 0, + "total_visits": 0, + "total_opportunities": 0, + "source_confidence": 0.85, + "last_updated": "2026-04-18T00:00:00" + } + }, + { + "client_ref": "PER-0133", + "identity": { + "full_name": "Priya Jain", + "email": "priya.jain41@hotmail.com", + "phone": "+91-83705-70003", + "linkedin": "https://linkedin.com/in/priya-jain-287", + "persona": [ + "slow_burn_investor" + ] + }, + "account_links": { + "account_id": "ACC-0133", + "account_name": "Tech Mahindra", + "account_type": "referral_partner" + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-133-1", + "project_id": "PRJ-008", + "unit_id": "PRJ-008-U009", + "stage": "discovery", + "value_cr": 13.33, + "probability": 0.44, + "expected_close": "2026-07-05T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-001016", + "channel": "phone_call", + "type": "family_discussion", + "happened_at": "2024-06-10T00:00:00", + "summary": "Family Discussion via phone_call regarding Siddha Serena" + }, + { + "interaction_id": "INT-001015", + "channel": "phone_call", + "type": "document_sharing", + "happened_at": "2024-06-09T00:00:00", + "summary": "Document Sharing via phone_call regarding Siddha Serena" + }, + { + "interaction_id": "INT-001014", + "channel": "phone_call", + "type": "site_visit", + "happened_at": "2024-05-15T00:00:00", + "summary": "Site Visit via phone_call regarding Siddha Serena" + }, + { + "interaction_id": "INT-001012", + "channel": "phone_call", + "type": "site_visit", + "happened_at": "2024-05-12T00:00:00", + "summary": "Site Visit via phone_call regarding Siddha Serena" + }, + { + "interaction_id": "INT-001013", + "channel": "whatsapp", + "type": "follow_up", + "happened_at": "2024-05-12T00:00:00", + "summary": "Follow Up via whatsapp regarding Siddha Serena" + } + ], + "property_interests": [ + { + "project_id": "PRJ-008", + "unit_id": "PRJ-008-U009", + "interest_level": "low", + "configuration": "5 BHK", + "budget_range": "10.66 - 16.0", + "timeline": "flexible", + "financing": "combined", + "notes": "Needs proximity to school" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00409", + "text": "Send revised payment plan", + "due_at": "2024-04-26T00:00:00", + "status": "completed", + "assigned_to": "user_001" + }, + { + "reminder_id": "REM-00410", + "text": "Send home loan documents checklist", + "due_at": "2024-04-26T00:00:00", + "status": "completed", + "assigned_to": "user_001" + }, + { + "reminder_id": "REM-00411", + "text": "Update on road widening approval status", + "due_at": "2024-05-20T00:00:00", + "status": "completed", + "assigned_to": "user_001" + } + ], + "qd_overview": { + "current_score": 83.2, + "score_type": "engagement", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 5 + }, + "risk_flags": [ + "price_sensitivity_high" + ], + "metadata": { + "total_interactions": 10, + "total_visits": 1, + "total_opportunities": 1, + "source_confidence": 0.85, + "last_updated": "2026-03-28T00:00:00" + } + }, + { + "client_ref": "PER-0134", + "identity": { + "full_name": "Parth Kumar", + "email": "parth.kumar31@hotmail.com", + "phone": "+91-99615-39500", + "linkedin": "https://linkedin.com/in/parth-kumar-279", + "persona": [ + "repeat_visitor" + ] + }, + "account_links": { + "account_id": "ACC-0134", + "account_name": "Cognizant", + "account_type": "developer" + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-134-1", + "project_id": "PRJ-014", + "unit_id": "PRJ-014-U005", + "stage": "prospecting", + "value_cr": 4.25, + "probability": 0.4, + "expected_close": "2026-09-12T00:00:00" + }, + { + "opportunity_id": "OPP-134-2", + "project_id": "PRJ-006", + "unit_id": "PRJ-006-U002", + "stage": "closed_won", + "value_cr": 24.02, + "probability": 0.4, + "expected_close": "2026-06-12T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-001019", + "channel": "whatsapp", + "type": "follow_up", + "happened_at": "2025-02-03T00:00:00", + "summary": "Follow Up via whatsapp regarding Merlin Avana" + }, + { + "interaction_id": "INT-001018", + "channel": "phone_call", + "type": "family_discussion", + "happened_at": "2024-12-26T00:00:00", + "summary": "Family Discussion via phone_call regarding Merlin Avana" + }, + { + "interaction_id": "INT-001017", + "channel": "referral", + "type": "initial_enquiry", + "happened_at": "2024-12-25T00:00:00", + "summary": "Initial Enquiry via referral regarding Merlin Avana" + } + ], + "property_interests": [ + { + "project_id": "PRJ-014", + "unit_id": "PRJ-014-U005", + "interest_level": "high", + "configuration": "2 BHK", + "budget_range": "3.4 - 5.1", + "timeline": "6_months", + "financing": "cash", + "notes": "Looking for east facing unit" + }, + { + "project_id": "PRJ-006", + "unit_id": "PRJ-006-U002", + "interest_level": "very_high", + "configuration": "Duplex", + "budget_range": "19.22 - 28.82", + "timeline": "3_months", + "financing": "cash", + "notes": "Comparing with competitor projects" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00412", + "text": "Share competitor comparison sheet", + "due_at": "2024-12-27T00:00:00", + "status": "completed", + "assigned_to": "user_003" + } + ], + "qd_overview": { + "current_score": 78.8, + "score_type": "urgency", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 3 + }, + "risk_flags": [ + "financing_not_finalized", + "timeline_unclear" + ], + "metadata": { + "total_interactions": 3, + "total_visits": 0, + "total_opportunities": 2, + "source_confidence": 0.77, + "last_updated": "2025-06-10T00:00:00" + } + }, + { + "client_ref": "PER-0135", + "identity": { + "full_name": "Vivek Sen", + "email": "vivek.sen72@gmail.com", + "phone": "+91-75099-96066", + "linkedin": "https://linkedin.com/in/vivek-sen-356", + "persona": [ + "family_decision_unit" + ] + }, + "account_links": { + "account_id": "ACC-0135", + "account_name": "BYJU'S", + "account_type": "individual_business" + }, + "household": { + "household_id": "HH-0135", + "household_name": "Sen Family", + "size": 5, + "decision_maker_id": "PER-0135" + }, + "relationships": [ + { + "related_person_id": "PER-0135-CO", + "type": "parent", + "strength": 0.79 + } + ], + "active_opportunities": [ + { + "opportunity_id": "OPP-135-1", + "project_id": "PRJ-001", + "unit_id": "PRJ-001-U008", + "stage": "prospecting", + "value_cr": 6.25, + "probability": 0.68, + "expected_close": "2026-08-13T00:00:00" + }, + { + "opportunity_id": "OPP-135-2", + "project_id": "PRJ-005", + "unit_id": "PRJ-005-U009", + "stage": "discovery", + "value_cr": 2.39, + "probability": 0.75, + "expected_close": "2026-07-20T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-001031", + "channel": "whatsapp", + "type": "family_discussion", + "happened_at": "2025-04-30T00:00:00", + "summary": "Family Discussion via whatsapp regarding Siddha Suburbia Bungalow" + }, + { + "interaction_id": "INT-001030", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2025-04-27T00:00:00", + "summary": "Site Visit via site_visit regarding Siddha Suburbia Bungalow" + }, + { + "interaction_id": "INT-001028", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2025-04-23T00:00:00", + "summary": "Site Visit via site_visit regarding Siddha Suburbia Bungalow" + }, + { + "interaction_id": "INT-001029", + "channel": "whatsapp", + "type": "price_discussion", + "happened_at": "2025-04-23T00:00:00", + "summary": "Price Discussion via whatsapp regarding Siddha Suburbia Bungalow" + }, + { + "interaction_id": "INT-001027", + "channel": "phone_call", + "type": "negotiation", + "happened_at": "2025-04-20T00:00:00", + "summary": "Negotiation via phone_call regarding Siddha Suburbia Bungalow" + } + ], + "property_interests": [ + { + "project_id": "PRJ-001", + "unit_id": "PRJ-001-U008", + "interest_level": "low", + "configuration": "3 BHK", + "budget_range": "5.0 - 7.5", + "timeline": "flexible", + "financing": "undecided", + "notes": "Prefers higher floor" + }, + { + "project_id": "PRJ-005", + "unit_id": "PRJ-005-U009", + "interest_level": "medium", + "configuration": "Villa", + "budget_range": "1.91 - 2.87", + "timeline": "3_months", + "financing": "home_loan", + "notes": "Prefers higher floor" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00413", + "text": "Follow up on Siddha Suburbia Bungalow pricing discussion", + "due_at": "2025-02-25T00:00:00", + "status": "completed", + "assigned_to": "user_004" + }, + { + "reminder_id": "REM-00414", + "text": "Schedule family meeting for final decision", + "due_at": "2025-03-13T00:00:00", + "status": "completed", + "assigned_to": "user_004" + }, + { + "reminder_id": "REM-00415", + "text": "Share competitor comparison sheet", + "due_at": "2025-03-22T00:00:00", + "status": "pending", + "assigned_to": "user_004" + } + ], + "qd_overview": { + "current_score": 98, + "score_type": "financial_qualification", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 2 + }, + "risk_flags": [], + "metadata": { + "total_interactions": 12, + "total_visits": 4, + "total_opportunities": 2, + "source_confidence": 0.8, + "last_updated": "2025-01-18T00:00:00" + } + }, + { + "client_ref": "PER-0135-CO", + "identity": { + "full_name": "Trisha Singh", + "email": "trisha.singh10@outlook.com", + "phone": "+91-98953-36013", + "linkedin": null, + "persona": [ + "co_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [ + { + "related_person_id": "PER-0135", + "type": "parent", + "strength": 0.79 + } + ], + "active_opportunities": [], + "recent_interactions": [], + "property_interests": [], + "tasks_and_reminders": [], + "qd_overview": { + "current_score": 84.3, + "score_type": "overall", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 3 + }, + "risk_flags": [], + "metadata": { + "total_interactions": 0, + "total_visits": 0, + "total_opportunities": 0, + "source_confidence": 0.85, + "last_updated": "2026-04-18T00:00:00" + } + }, + { + "client_ref": "PER-0136", + "identity": { + "full_name": "Ritu Singh", + "email": "ritu.singh35@rediffmail.com", + "phone": "+91-93149-23508", + "linkedin": "https://linkedin.com/in/ritu-singh-817", + "persona": [ + "price_sensitive_aspirational" + ] + }, + "account_links": { + "account_id": "ACC-0136", + "account_name": "HDFC Bank", + "account_type": "individual_business" + }, + "household": { + "household_id": "HH-0136", + "household_name": "Singh Family", + "size": 3, + "decision_maker_id": "PER-0136" + }, + "relationships": [ + { + "related_person_id": "PER-0136-CO", + "type": "parent", + "strength": 0.77 + } + ], + "active_opportunities": [ + { + "opportunity_id": "OPP-136-1", + "project_id": "PRJ-012", + "unit_id": "PRJ-012-U004", + "stage": "proposal", + "value_cr": 10.9, + "probability": 0.37, + "expected_close": "2026-05-30T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-001034", + "channel": "whatsapp", + "type": "initial_enquiry", + "happened_at": "2025-07-30T00:00:00", + "summary": "Initial Enquiry via whatsapp regarding Shriram Grand City" + }, + { + "interaction_id": "INT-001033", + "channel": "phone_call", + "type": "initial_enquiry", + "happened_at": "2025-05-23T00:00:00", + "summary": "Initial Enquiry via phone_call regarding Shriram Grand City" + }, + { + "interaction_id": "INT-001032", + "channel": "web_enquiry", + "type": "initial_enquiry", + "happened_at": "2025-05-09T00:00:00", + "summary": "Initial Enquiry via web_enquiry regarding Shriram Grand City" + } + ], + "property_interests": [ + { + "project_id": "PRJ-012", + "unit_id": "PRJ-012-U004", + "interest_level": "low", + "configuration": "Villa", + "budget_range": "8.72 - 13.08", + "timeline": "immediate", + "financing": "cash", + "notes": "Waiting for festive season offer" + } + ], + "tasks_and_reminders": [], + "qd_overview": { + "current_score": 84.5, + "score_type": "engagement", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 2 + }, + "risk_flags": [ + "slow_response_pattern" + ], + "metadata": { + "total_interactions": 3, + "total_visits": 0, + "total_opportunities": 1, + "source_confidence": 0.92, + "last_updated": "2024-07-04T00:00:00" + } + }, + { + "client_ref": "PER-0136-CO", + "identity": { + "full_name": "Anirban Chatterjee", + "email": "anirban.chatterjee16@rediffmail.com", + "phone": "+91-83346-78809", + "linkedin": null, + "persona": [ + "co_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [ + { + "related_person_id": "PER-0136", + "type": "parent", + "strength": 0.77 + } + ], + "active_opportunities": [], + "recent_interactions": [], + "property_interests": [], + "tasks_and_reminders": [], + "qd_overview": { + "current_score": 54.7, + "score_type": "engagement", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 5 + }, + "risk_flags": [ + "financing_not_finalized", + "timeline_unclear" + ], + "metadata": { + "total_interactions": 0, + "total_visits": 0, + "total_opportunities": 0, + "source_confidence": 0.85, + "last_updated": "2026-04-18T00:00:00" + } + }, + { + "client_ref": "PER-0137", + "identity": { + "full_name": "Prasenjit Reddy", + "email": "prasenjit.reddy45@hotmail.com", + "phone": "+91-73301-66479", + "linkedin": "https://linkedin.com/in/prasenjit-reddy-289", + "persona": [ + "price_sensitive_aspirational" + ] + }, + "account_links": { + "account_id": "ACC-0137", + "account_name": "PwC India", + "account_type": "corporate" + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-137-1", + "project_id": "PRJ-010", + "unit_id": "PRJ-010-U010", + "stage": "negotiation", + "value_cr": 10.62, + "probability": 0.72, + "expected_close": "2026-07-08T00:00:00" + }, + { + "opportunity_id": "OPP-137-2", + "project_id": "PRJ-007", + "unit_id": "PRJ-007-U014", + "stage": "negotiation", + "value_cr": 6.92, + "probability": 0.86, + "expected_close": "2026-10-08T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-001043", + "channel": "phone_call", + "type": "negotiation", + "happened_at": "2026-04-25T00:00:00", + "summary": "Negotiation via phone_call regarding DTC Good Earth" + }, + { + "interaction_id": "INT-001042", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2026-04-17T00:00:00", + "summary": "Site Visit via site_visit regarding DTC Good Earth" + }, + { + "interaction_id": "INT-001041", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2026-04-14T00:00:00", + "summary": "Site Visit via site_visit regarding DTC Good Earth" + }, + { + "interaction_id": "INT-001040", + "channel": "whatsapp", + "type": "initial_enquiry", + "happened_at": "2026-03-30T00:00:00", + "summary": "Initial Enquiry via whatsapp regarding DTC Good Earth" + }, + { + "interaction_id": "INT-001039", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2026-03-11T00:00:00", + "summary": "Site Visit via site_visit regarding DTC Good Earth" + } + ], + "property_interests": [ + { + "project_id": "PRJ-010", + "unit_id": "PRJ-010-U010", + "interest_level": "medium", + "configuration": "Duplex", + "budget_range": "8.5 - 12.74", + "timeline": "immediate", + "financing": "home_loan", + "notes": "Needs proximity to school" + }, + { + "project_id": "PRJ-007", + "unit_id": "PRJ-007-U014", + "interest_level": "high", + "configuration": "4 BHK", + "budget_range": "5.54 - 8.3", + "timeline": "flexible", + "financing": "cash", + "notes": "Wants ready to move in" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00418", + "text": "Follow up on DTC Good Earth pricing discussion", + "due_at": "2026-02-08T00:00:00", + "status": "completed", + "assigned_to": "user_002" + }, + { + "reminder_id": "REM-00419", + "text": "Share competitor comparison sheet", + "due_at": "2026-02-15T00:00:00", + "status": "overdue", + "assigned_to": "user_002" + }, + { + "reminder_id": "REM-00420", + "text": "Follow up on DTC Good Earth pricing discussion", + "due_at": "2026-03-13T00:00:00", + "status": "completed", + "assigned_to": "user_002" + } + ], + "qd_overview": { + "current_score": 84.6, + "score_type": "engagement", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 2 + }, + "risk_flags": [], + "metadata": { + "total_interactions": 9, + "total_visits": 3, + "total_opportunities": 2, + "source_confidence": 0.81, + "last_updated": "2025-01-07T00:00:00" + } + }, + { + "client_ref": "PER-0138", + "identity": { + "full_name": "Vidya Nair", + "email": "vidya.nair12@yahoo.com", + "phone": "+91-89633-45933", + "linkedin": "https://linkedin.com/in/vidya-nair-813", + "persona": [ + "high_intent_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": "HH-0138", + "household_name": "Nair Family", + "size": 3, + "decision_maker_id": "PER-0138" + }, + "relationships": [ + { + "related_person_id": "PER-0138-CO", + "type": "business_partner", + "strength": 0.82 + } + ], + "active_opportunities": [ + { + "opportunity_id": "OPP-138-1", + "project_id": "PRJ-014", + "unit_id": "PRJ-014-U002", + "stage": "negotiation", + "value_cr": 24.47, + "probability": 0.7, + "expected_close": "2026-10-06T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-001051", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2024-10-12T00:00:00", + "summary": "Site Visit via site_visit regarding Ambuja Utpaala" + }, + { + "interaction_id": "INT-001050", + "channel": "walk_in", + "type": "price_discussion", + "happened_at": "2024-09-30T00:00:00", + "summary": "Price Discussion via walk_in regarding Ambuja Utpaala" + }, + { + "interaction_id": "INT-001049", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2024-09-22T00:00:00", + "summary": "Site Visit via site_visit regarding Ambuja Utpaala" + }, + { + "interaction_id": "INT-001048", + "channel": "walk_in", + "type": "price_discussion", + "happened_at": "2024-09-20T00:00:00", + "summary": "Price Discussion via walk_in regarding Ambuja Utpaala" + }, + { + "interaction_id": "INT-001047", + "channel": "walk_in", + "type": "follow_up", + "happened_at": "2024-09-05T00:00:00", + "summary": "Follow Up via walk_in regarding Ambuja Utpaala" + } + ], + "property_interests": [ + { + "project_id": "PRJ-014", + "unit_id": "PRJ-014-U002", + "interest_level": "medium", + "configuration": "Penthouse", + "budget_range": "19.58 - 29.36", + "timeline": "3_months", + "financing": "cash", + "notes": "Comparing with competitor projects" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00423", + "text": "Send revised payment plan", + "due_at": "2024-08-12T00:00:00", + "status": "completed", + "assigned_to": "user_005" + }, + { + "reminder_id": "REM-00424", + "text": "Follow up on Ambuja Utpaala pricing discussion", + "due_at": "2024-09-10T00:00:00", + "status": "completed", + "assigned_to": "user_005" + } + ], + "qd_overview": { + "current_score": 98, + "score_type": "engagement", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 2 + }, + "risk_flags": [ + "competitor_comparison_active" + ], + "metadata": { + "total_interactions": 8, + "total_visits": 2, + "total_opportunities": 1, + "source_confidence": 0.97, + "last_updated": "2024-02-16T00:00:00" + } + }, + { + "client_ref": "PER-0138-CO", + "identity": { + "full_name": "Manish Nair", + "email": "manish.nair19@yahoo.com", + "phone": "+91-84344-76752", + "linkedin": null, + "persona": [ + "co_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [ + { + "related_person_id": "PER-0138", + "type": "business_partner", + "strength": 0.82 + } + ], + "active_opportunities": [], + "recent_interactions": [], + "property_interests": [], + "tasks_and_reminders": [], + "qd_overview": { + "current_score": 50.7, + "score_type": "financial_qualification", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 2 + }, + "risk_flags": [ + "competitor_comparison_active" + ], + "metadata": { + "total_interactions": 0, + "total_visits": 0, + "total_opportunities": 0, + "source_confidence": 0.85, + "last_updated": "2026-04-18T00:00:00" + } + }, + { + "client_ref": "PER-0139", + "identity": { + "full_name": "Raj Sharma", + "email": "raj.sharma27@outlook.com", + "phone": "+91-98619-16752", + "linkedin": "https://linkedin.com/in/raj-sharma-757", + "persona": [ + "slow_burn_investor" + ] + }, + "account_links": { + "account_id": "ACC-0139", + "account_name": "Amazon India", + "account_type": "referral_partner" + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-139-1", + "project_id": "PRJ-008", + "unit_id": "PRJ-008-U001", + "stage": "closed_lost", + "value_cr": 3.81, + "probability": 0.25, + "expected_close": "2026-07-04T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-001057", + "channel": "whatsapp", + "type": "family_discussion", + "happened_at": "2025-05-21T00:00:00", + "summary": "Family Discussion via whatsapp regarding Siddha Serena" + }, + { + "interaction_id": "INT-001056", + "channel": "whatsapp", + "type": "follow_up", + "happened_at": "2025-05-17T00:00:00", + "summary": "Follow Up via whatsapp regarding Siddha Serena" + }, + { + "interaction_id": "INT-001055", + "channel": "whatsapp", + "type": "site_visit", + "happened_at": "2025-05-05T00:00:00", + "summary": "Site Visit via whatsapp regarding Siddha Serena" + }, + { + "interaction_id": "INT-001054", + "channel": "whatsapp", + "type": "follow_up", + "happened_at": "2025-04-08T00:00:00", + "summary": "Follow Up via whatsapp regarding Siddha Serena" + }, + { + "interaction_id": "INT-001053", + "channel": "phone_call", + "type": "negotiation", + "happened_at": "2025-03-21T00:00:00", + "summary": "Negotiation via phone_call regarding Siddha Serena" + } + ], + "property_interests": [ + { + "project_id": "PRJ-008", + "unit_id": "PRJ-008-U001", + "interest_level": "medium", + "configuration": "Villa", + "budget_range": "3.05 - 4.57", + "timeline": "flexible", + "financing": "home_loan", + "notes": "Waiting for festive season offer" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00425", + "text": "Confirm site visit for Saturday", + "due_at": "2025-03-27T00:00:00", + "status": "pending", + "assigned_to": "user_003" + } + ], + "qd_overview": { + "current_score": 98, + "score_type": "engagement", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 4 + }, + "risk_flags": [ + "financing_not_finalized", + "timeline_unclear" + ], + "metadata": { + "total_interactions": 6, + "total_visits": 0, + "total_opportunities": 1, + "source_confidence": 0.98, + "last_updated": "2025-07-01T00:00:00" + } + }, + { + "client_ref": "PER-0140", + "identity": { + "full_name": "Swati Ghosh", + "email": "swati.ghosh60@hotmail.com", + "phone": "+91-76155-19103", + "linkedin": "https://linkedin.com/in/swati-ghosh-246", + "persona": [ + "slow_burn_investor" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-140-1", + "project_id": "PRJ-005", + "unit_id": "PRJ-005-U008", + "stage": "closed_lost", + "value_cr": 3.88, + "probability": 0.23, + "expected_close": "2026-06-01T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-001062", + "channel": "whatsapp", + "type": "document_sharing", + "happened_at": "2024-07-03T00:00:00", + "summary": "Document Sharing via whatsapp regarding Siddha Suburbia Bungalow" + }, + { + "interaction_id": "INT-001061", + "channel": "phone_call", + "type": "negotiation", + "happened_at": "2024-06-25T00:00:00", + "summary": "Negotiation via phone_call regarding Siddha Suburbia Bungalow" + }, + { + "interaction_id": "INT-001060", + "channel": "whatsapp", + "type": "site_visit", + "happened_at": "2024-05-28T00:00:00", + "summary": "Site Visit via whatsapp regarding Siddha Suburbia Bungalow" + }, + { + "interaction_id": "INT-001059", + "channel": "whatsapp", + "type": "price_discussion", + "happened_at": "2024-04-26T00:00:00", + "summary": "Price Discussion via whatsapp regarding Siddha Suburbia Bungalow" + }, + { + "interaction_id": "INT-001058", + "channel": "referral", + "type": "initial_enquiry", + "happened_at": "2024-04-22T00:00:00", + "summary": "Initial Enquiry via referral regarding Siddha Suburbia Bungalow" + } + ], + "property_interests": [ + { + "project_id": "PRJ-005", + "unit_id": "PRJ-005-U008", + "interest_level": "high", + "configuration": "3 BHK", + "budget_range": "3.1 - 4.66", + "timeline": "immediate", + "financing": "cash", + "notes": "Looking for east facing unit" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00426", + "text": "Send revised payment plan", + "due_at": "2024-07-10T00:00:00", + "status": "overdue", + "assigned_to": "user_001" + } + ], + "qd_overview": { + "current_score": 98, + "score_type": "intent", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 2 + }, + "risk_flags": [ + "decision_maker_not_met" + ], + "metadata": { + "total_interactions": 5, + "total_visits": 0, + "total_opportunities": 1, + "source_confidence": 0.77, + "last_updated": "2025-04-10T00:00:00" + } + }, + { + "client_ref": "PER-0141", + "identity": { + "full_name": "Sneha Nair", + "email": "sneha.nair63@yahoo.com", + "phone": "+91-70039-39401", + "linkedin": "https://linkedin.com/in/sneha-nair-124", + "persona": [ + "high_intent_buyer" + ] + }, + "account_links": { + "account_id": "ACC-0141", + "account_name": "Tech Mahindra", + "account_type": "individual_business" + }, + "household": { + "household_id": "HH-0141", + "household_name": "Nair Family", + "size": 2, + "decision_maker_id": "PER-0141" + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-141-1", + "project_id": "PRJ-008", + "unit_id": "PRJ-008-U014", + "stage": "verbal_commitment", + "value_cr": 5.24, + "probability": 0.89, + "expected_close": "2026-06-06T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-001065", + "channel": "whatsapp", + "type": "document_sharing", + "happened_at": "2025-01-05T00:00:00", + "summary": "Document Sharing via whatsapp regarding Siddha Serena" + }, + { + "interaction_id": "INT-001064", + "channel": "phone_call", + "type": "document_sharing", + "happened_at": "2024-12-07T00:00:00", + "summary": "Document Sharing via phone_call regarding Siddha Serena" + }, + { + "interaction_id": "INT-001063", + "channel": "web_enquiry", + "type": "initial_enquiry", + "happened_at": "2024-11-17T00:00:00", + "summary": "Initial Enquiry via web_enquiry regarding Siddha Serena" + } + ], + "property_interests": [ + { + "project_id": "PRJ-008", + "unit_id": "PRJ-008-U014", + "interest_level": "medium", + "configuration": "Duplex", + "budget_range": "4.19 - 6.29", + "timeline": "3_months", + "financing": "combined", + "notes": "Needs proximity to school" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00427", + "text": "Update on road widening approval status", + "due_at": "2024-12-10T00:00:00", + "status": "completed", + "assigned_to": "user_003" + } + ], + "qd_overview": { + "current_score": 84.2, + "score_type": "financial_qualification", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 4 + }, + "risk_flags": [ + "slow_response_pattern" + ], + "metadata": { + "total_interactions": 3, + "total_visits": 0, + "total_opportunities": 1, + "source_confidence": 0.8, + "last_updated": "2024-05-30T00:00:00" + } + }, + { + "client_ref": "PER-0142", + "identity": { + "full_name": "Riya Sen", + "email": "riya.sen83@rediffmail.com", + "phone": "+91-93812-46500", + "linkedin": "https://linkedin.com/in/riya-sen-248", + "persona": [ + "nri_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-142-1", + "project_id": "PRJ-004", + "unit_id": "PRJ-004-U008", + "stage": "prospecting", + "value_cr": 31.98, + "probability": 0.27, + "expected_close": "2026-05-22T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-001073", + "channel": "phone_call", + "type": "price_discussion", + "happened_at": "2025-08-12T00:00:00", + "summary": "Price Discussion via phone_call regarding Atri Surya Toron" + }, + { + "interaction_id": "INT-001072", + "channel": "phone_call", + "type": "initial_enquiry", + "happened_at": "2025-07-31T00:00:00", + "summary": "Initial Enquiry via phone_call regarding Atri Surya Toron" + }, + { + "interaction_id": "INT-001071", + "channel": "whatsapp", + "type": "initial_enquiry", + "happened_at": "2025-07-23T00:00:00", + "summary": "Initial Enquiry via whatsapp regarding Atri Surya Toron" + }, + { + "interaction_id": "INT-001070", + "channel": "phone_call", + "type": "document_sharing", + "happened_at": "2025-07-04T00:00:00", + "summary": "Document Sharing via phone_call regarding Atri Surya Toron" + }, + { + "interaction_id": "INT-001069", + "channel": "phone_call", + "type": "follow_up", + "happened_at": "2025-06-24T00:00:00", + "summary": "Follow Up via phone_call regarding Atri Surya Toron" + } + ], + "property_interests": [ + { + "project_id": "PRJ-004", + "unit_id": "PRJ-004-U008", + "interest_level": "very_high", + "configuration": "Villa", + "budget_range": "25.58 - 38.38", + "timeline": "3_months", + "financing": "cash", + "notes": "Looking for east facing unit" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00428", + "text": "Update on road widening approval status", + "due_at": "2025-07-05T00:00:00", + "status": "completed", + "assigned_to": "user_003" + }, + { + "reminder_id": "REM-00429", + "text": "Schedule family meeting for final decision", + "due_at": "2025-07-29T00:00:00", + "status": "completed", + "assigned_to": "user_003" + }, + { + "reminder_id": "REM-00430", + "text": "Update on road widening approval status", + "due_at": "2025-08-17T00:00:00", + "status": "overdue", + "assigned_to": "user_003" + } + ], + "qd_overview": { + "current_score": 84.9, + "score_type": "intent", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 4 + }, + "risk_flags": [ + "financing_not_finalized", + "timeline_unclear" + ], + "metadata": { + "total_interactions": 8, + "total_visits": 0, + "total_opportunities": 1, + "source_confidence": 0.77, + "last_updated": "2024-07-05T00:00:00" + } + }, + { + "client_ref": "PER-0143", + "identity": { + "full_name": "Debjani Gupta", + "email": "debjani.gupta68@yahoo.com", + "phone": "+91-97369-82286", + "linkedin": "https://linkedin.com/in/debjani-gupta-531", + "persona": [ + "broker_referral_chain" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": "HH-0143", + "household_name": "Gupta Family", + "size": 3, + "decision_maker_id": "PER-0143" + }, + "relationships": [ + { + "related_person_id": "PER-0143-CO", + "type": "business_partner", + "strength": 0.95 + } + ], + "active_opportunities": [ + { + "opportunity_id": "OPP-143-1", + "project_id": "PRJ-012", + "unit_id": "PRJ-012-U004", + "stage": "closed_lost", + "value_cr": 10.9, + "probability": 0.45, + "expected_close": "2026-08-12T00:00:00" + }, + { + "opportunity_id": "OPP-143-2", + "project_id": "PRJ-001", + "unit_id": "PRJ-001-U001", + "stage": "site_visit", + "value_cr": 19.84, + "probability": 0.53, + "expected_close": "2026-05-20T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-001077", + "channel": "phone_call", + "type": "price_discussion", + "happened_at": "2024-04-29T00:00:00", + "summary": "Price Discussion via phone_call regarding Eden Devprayag" + }, + { + "interaction_id": "INT-001076", + "channel": "email", + "type": "initial_enquiry", + "happened_at": "2024-04-02T00:00:00", + "summary": "Initial Enquiry via email regarding Eden Devprayag" + }, + { + "interaction_id": "INT-001075", + "channel": "whatsapp", + "type": "document_sharing", + "happened_at": "2024-03-24T00:00:00", + "summary": "Document Sharing via whatsapp regarding Eden Devprayag" + }, + { + "interaction_id": "INT-001074", + "channel": "referral", + "type": "initial_enquiry", + "happened_at": "2024-02-25T00:00:00", + "summary": "Initial Enquiry via referral regarding Eden Devprayag" + } + ], + "property_interests": [ + { + "project_id": "PRJ-012", + "unit_id": "PRJ-012-U004", + "interest_level": "low", + "configuration": "Villa", + "budget_range": "8.72 - 13.08", + "timeline": "6_months", + "financing": "cash", + "notes": "Needs proximity to school" + }, + { + "project_id": "PRJ-001", + "unit_id": "PRJ-001-U001", + "interest_level": "very_high", + "configuration": "Villa", + "budget_range": "15.87 - 23.81", + "timeline": "flexible", + "financing": "combined", + "notes": "Comparing with competitor projects" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00431", + "text": "Update on road widening approval status", + "due_at": "2024-05-05T00:00:00", + "status": "completed", + "assigned_to": "user_001" + } + ], + "qd_overview": { + "current_score": 90.9, + "score_type": "intent", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 3 + }, + "risk_flags": [ + "decision_maker_not_met" + ], + "metadata": { + "total_interactions": 4, + "total_visits": 0, + "total_opportunities": 2, + "source_confidence": 0.81, + "last_updated": "2024-02-27T00:00:00" + } + }, + { + "client_ref": "PER-0143-CO", + "identity": { + "full_name": "Vivek Jain", + "email": "vivek.jain16@gmail.com", + "phone": "+91-91716-86232", + "linkedin": null, + "persona": [ + "co_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [ + { + "related_person_id": "PER-0143", + "type": "business_partner", + "strength": 0.95 + } + ], + "active_opportunities": [], + "recent_interactions": [], + "property_interests": [], + "tasks_and_reminders": [], + "qd_overview": { + "current_score": 81.4, + "score_type": "urgency", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 5 + }, + "risk_flags": [ + "financing_not_finalized", + "timeline_unclear" + ], + "metadata": { + "total_interactions": 0, + "total_visits": 0, + "total_opportunities": 0, + "source_confidence": 0.85, + "last_updated": "2026-04-18T00:00:00" + } + }, + { + "client_ref": "PER-0144", + "identity": { + "full_name": "Vivek Ghosh", + "email": "vivek.ghosh44@gmail.com", + "phone": "+91-87088-59487", + "linkedin": "https://linkedin.com/in/vivek-ghosh-228", + "persona": [ + "family_decision_unit" + ] + }, + "account_links": { + "account_id": "ACC-0144", + "account_name": "Swiggy", + "account_type": "individual_business" + }, + "household": { + "household_id": "HH-0144", + "household_name": "Ghosh Family", + "size": 2, + "decision_maker_id": "PER-0144" + }, + "relationships": [ + { + "related_person_id": "PER-0144-CO", + "type": "business_partner", + "strength": 0.76 + } + ], + "active_opportunities": [ + { + "opportunity_id": "OPP-144-1", + "project_id": "PRJ-001", + "unit_id": "PRJ-001-U009", + "stage": "proposal", + "value_cr": 12.54, + "probability": 0.57, + "expected_close": "2026-05-26T00:00:00" + }, + { + "opportunity_id": "OPP-144-2", + "project_id": "PRJ-013", + "unit_id": "PRJ-013-U012", + "stage": "prospecting", + "value_cr": 4.05, + "probability": 0.14, + "expected_close": "2026-06-10T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-001083", + "channel": "walk_in", + "type": "follow_up", + "happened_at": "2024-07-06T00:00:00", + "summary": "Follow Up via walk_in regarding Godrej Elevate" + }, + { + "interaction_id": "INT-001082", + "channel": "web_enquiry", + "type": "site_visit", + "happened_at": "2024-06-26T00:00:00", + "summary": "Site Visit via web_enquiry regarding Godrej Elevate" + }, + { + "interaction_id": "INT-001081", + "channel": "whatsapp", + "type": "follow_up", + "happened_at": "2024-06-18T00:00:00", + "summary": "Follow Up via whatsapp regarding Godrej Elevate" + }, + { + "interaction_id": "INT-001080", + "channel": "email", + "type": "follow_up", + "happened_at": "2024-06-15T00:00:00", + "summary": "Follow Up via email regarding Godrej Elevate" + }, + { + "interaction_id": "INT-001079", + "channel": "phone_call", + "type": "follow_up", + "happened_at": "2024-06-08T00:00:00", + "summary": "Follow Up via phone_call regarding Godrej Elevate" + } + ], + "property_interests": [ + { + "project_id": "PRJ-001", + "unit_id": "PRJ-001-U009", + "interest_level": "high", + "configuration": "Villa", + "budget_range": "10.03 - 15.05", + "timeline": "immediate", + "financing": "cash", + "notes": "Comparing with competitor projects" + }, + { + "project_id": "PRJ-013", + "unit_id": "PRJ-013-U012", + "interest_level": "low", + "configuration": "2 BHK", + "budget_range": "3.24 - 4.86", + "timeline": "6_months", + "financing": "combined", + "notes": "Wants ready to move in" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00432", + "text": "Send home loan documents checklist", + "due_at": "2024-06-10T00:00:00", + "status": "completed", + "assigned_to": "user_002" + }, + { + "reminder_id": "REM-00433", + "text": "Share competitor comparison sheet", + "due_at": "2024-07-03T00:00:00", + "status": "completed", + "assigned_to": "user_002" + } + ], + "qd_overview": { + "current_score": 72.2, + "score_type": "urgency", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 2 + }, + "risk_flags": [ + "slow_response_pattern" + ], + "metadata": { + "total_interactions": 6, + "total_visits": 0, + "total_opportunities": 2, + "source_confidence": 0.92, + "last_updated": "2025-09-25T00:00:00" + } + } +] \ No newline at end of file diff --git a/db assets/synthetic_crm_v1/json/client_360_snapshots_batch_5.json b/db assets/synthetic_crm_v1/json/client_360_snapshots_batch_5.json new file mode 100644 index 00000000..b7b8c272 --- /dev/null +++ b/db assets/synthetic_crm_v1/json/client_360_snapshots_batch_5.json @@ -0,0 +1,5466 @@ +[ + { + "client_ref": "PER-0144-CO", + "identity": { + "full_name": "Moumita Verma", + "email": "moumita.verma31@gmail.com", + "phone": "+91-96323-58690", + "linkedin": null, + "persona": [ + "co_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [ + { + "related_person_id": "PER-0144", + "type": "business_partner", + "strength": 0.76 + } + ], + "active_opportunities": [], + "recent_interactions": [], + "property_interests": [], + "tasks_and_reminders": [], + "qd_overview": { + "current_score": 68.3, + "score_type": "financial_qualification", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 2 + }, + "risk_flags": [ + "financing_not_finalized", + "timeline_unclear" + ], + "metadata": { + "total_interactions": 0, + "total_visits": 0, + "total_opportunities": 0, + "source_confidence": 0.85, + "last_updated": "2026-04-18T00:00:00" + } + }, + { + "client_ref": "PER-0145", + "identity": { + "full_name": "Moumita Jain", + "email": "moumita.jain26@gmail.com", + "phone": "+91-80856-63383", + "linkedin": "https://linkedin.com/in/moumita-jain-859", + "persona": [ + "family_decision_unit" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": "HH-0145", + "household_name": "Jain Family", + "size": 2, + "decision_maker_id": "PER-0145" + }, + "relationships": [ + { + "related_person_id": "PER-0145-CO", + "type": "spouse", + "strength": 0.99 + } + ], + "active_opportunities": [ + { + "opportunity_id": "OPP-145-1", + "project_id": "PRJ-001", + "unit_id": "PRJ-001-U013", + "stage": "proposal", + "value_cr": 14.28, + "probability": 0.28, + "expected_close": "2026-06-06T00:00:00" + }, + { + "opportunity_id": "OPP-145-2", + "project_id": "PRJ-013", + "unit_id": "PRJ-013-U006", + "stage": "discovery", + "value_cr": 51.53, + "probability": 0.52, + "expected_close": "2026-09-11T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-001089", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2024-10-30T00:00:00", + "summary": "Site Visit via site_visit regarding Eden Devprayag" + }, + { + "interaction_id": "INT-001088", + "channel": "referral", + "type": "price_discussion", + "happened_at": "2024-10-03T00:00:00", + "summary": "Price Discussion via referral regarding Eden Devprayag" + }, + { + "interaction_id": "INT-001087", + "channel": "referral", + "type": "document_sharing", + "happened_at": "2024-09-27T00:00:00", + "summary": "Document Sharing via referral regarding Eden Devprayag" + }, + { + "interaction_id": "INT-001086", + "channel": "whatsapp", + "type": "price_discussion", + "happened_at": "2024-09-18T00:00:00", + "summary": "Price Discussion via whatsapp regarding Eden Devprayag" + }, + { + "interaction_id": "INT-001085", + "channel": "phone_call", + "type": "negotiation", + "happened_at": "2024-08-13T00:00:00", + "summary": "Negotiation via phone_call regarding Eden Devprayag" + } + ], + "property_interests": [ + { + "project_id": "PRJ-001", + "unit_id": "PRJ-001-U013", + "interest_level": "very_high", + "configuration": "4 BHK", + "budget_range": "11.42 - 17.14", + "timeline": "immediate", + "financing": "cash", + "notes": "Needs proximity to school" + }, + { + "project_id": "PRJ-013", + "unit_id": "PRJ-013-U006", + "interest_level": "medium", + "configuration": "4 BHK", + "budget_range": "41.22 - 61.84", + "timeline": "6_months", + "financing": "home_loan", + "notes": "Looking for east facing unit" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00434", + "text": "Update on road widening approval status", + "due_at": "2024-08-13T00:00:00", + "status": "overdue", + "assigned_to": "user_005" + }, + { + "reminder_id": "REM-00435", + "text": "Share competitor comparison sheet", + "due_at": "2024-08-20T00:00:00", + "status": "completed", + "assigned_to": "user_005" + }, + { + "reminder_id": "REM-00436", + "text": "Confirm site visit for Saturday", + "due_at": "2024-10-04T00:00:00", + "status": "completed", + "assigned_to": "user_005" + } + ], + "qd_overview": { + "current_score": 76.6, + "score_type": "engagement", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 2 + }, + "risk_flags": [], + "metadata": { + "total_interactions": 6, + "total_visits": 1, + "total_opportunities": 2, + "source_confidence": 0.87, + "last_updated": "2026-04-06T00:00:00" + } + }, + { + "client_ref": "PER-0145-CO", + "identity": { + "full_name": "Rohan Gupta", + "email": "rohan.gupta30@yahoo.com", + "phone": "+91-92360-70700", + "linkedin": null, + "persona": [ + "co_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [ + { + "related_person_id": "PER-0145", + "type": "spouse", + "strength": 0.99 + } + ], + "active_opportunities": [], + "recent_interactions": [], + "property_interests": [], + "tasks_and_reminders": [], + "qd_overview": { + "current_score": 66.3, + "score_type": "financial_qualification", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 3 + }, + "risk_flags": [ + "slow_response_pattern" + ], + "metadata": { + "total_interactions": 0, + "total_visits": 0, + "total_opportunities": 0, + "source_confidence": 0.85, + "last_updated": "2026-04-18T00:00:00" + } + }, + { + "client_ref": "PER-0146", + "identity": { + "full_name": "Trisha Chatterjee", + "email": "trisha.chatterjee19@yahoo.com", + "phone": "+91-93286-70390", + "linkedin": "https://linkedin.com/in/trisha-chatterjee-364", + "persona": [ + "slow_burn_investor" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-146-1", + "project_id": "PRJ-014", + "unit_id": "PRJ-014-U006", + "stage": "verbal_commitment", + "value_cr": 58.43, + "probability": 0.42, + "expected_close": "2026-08-31T00:00:00" + }, + { + "opportunity_id": "OPP-146-2", + "project_id": "PRJ-011", + "unit_id": "PRJ-011-U003", + "stage": "proposal", + "value_cr": 23.35, + "probability": 0.69, + "expected_close": "2026-10-08T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-001092", + "channel": "whatsapp", + "type": "initial_enquiry", + "happened_at": "2024-07-29T00:00:00", + "summary": "Initial Enquiry via whatsapp regarding Ambuja Utpaala" + }, + { + "interaction_id": "INT-001091", + "channel": "whatsapp", + "type": "family_discussion", + "happened_at": "2024-07-04T00:00:00", + "summary": "Family Discussion via whatsapp regarding Ambuja Utpaala" + }, + { + "interaction_id": "INT-001090", + "channel": "referral", + "type": "initial_enquiry", + "happened_at": "2024-05-26T00:00:00", + "summary": "Initial Enquiry via referral regarding Ambuja Utpaala" + } + ], + "property_interests": [ + { + "project_id": "PRJ-014", + "unit_id": "PRJ-014-U006", + "interest_level": "very_high", + "configuration": "Penthouse", + "budget_range": "46.74 - 70.12", + "timeline": "6_months", + "financing": "cash", + "notes": "Comparing with competitor projects" + }, + { + "project_id": "PRJ-011", + "unit_id": "PRJ-011-U003", + "interest_level": "medium", + "configuration": "Villa", + "budget_range": "18.68 - 28.02", + "timeline": "immediate", + "financing": "combined", + "notes": "Wants ready to move in" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00437", + "text": "Call back regarding east-facing unit availability", + "due_at": "2024-07-10T00:00:00", + "status": "overdue", + "assigned_to": "user_004" + }, + { + "reminder_id": "REM-00438", + "text": "Send revised payment plan", + "due_at": "2024-08-04T00:00:00", + "status": "overdue", + "assigned_to": "user_004" + } + ], + "qd_overview": { + "current_score": 52.9, + "score_type": "financial_qualification", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 2 + }, + "risk_flags": [ + "financing_not_finalized", + "timeline_unclear" + ], + "metadata": { + "total_interactions": 3, + "total_visits": 0, + "total_opportunities": 2, + "source_confidence": 0.98, + "last_updated": "2026-02-20T00:00:00" + } + }, + { + "client_ref": "PER-0147", + "identity": { + "full_name": "Riya Patel", + "email": "riya.patel59@rediffmail.com", + "phone": "+91-91926-22255", + "linkedin": "https://linkedin.com/in/riya-patel-457", + "persona": [ + "high_intent_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-147-1", + "project_id": "PRJ-008", + "unit_id": "PRJ-008-U001", + "stage": "site_visit", + "value_cr": 3.81, + "probability": 0.91, + "expected_close": "2026-06-24T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-001095", + "channel": "email", + "type": "price_discussion", + "happened_at": "2024-04-29T00:00:00", + "summary": "Price Discussion via email regarding Siddha Serena" + }, + { + "interaction_id": "INT-001094", + "channel": "whatsapp", + "type": "price_discussion", + "happened_at": "2024-04-17T00:00:00", + "summary": "Price Discussion via whatsapp regarding Siddha Serena" + }, + { + "interaction_id": "INT-001093", + "channel": "web_enquiry", + "type": "initial_enquiry", + "happened_at": "2024-03-29T00:00:00", + "summary": "Initial Enquiry via web_enquiry regarding Siddha Serena" + } + ], + "property_interests": [ + { + "project_id": "PRJ-008", + "unit_id": "PRJ-008-U001", + "interest_level": "medium", + "configuration": "Villa", + "budget_range": "3.05 - 4.57", + "timeline": "6_months", + "financing": "cash", + "notes": "Comparing with competitor projects" + } + ], + "tasks_and_reminders": [], + "qd_overview": { + "current_score": 91.8, + "score_type": "overall", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 4 + }, + "risk_flags": [ + "price_sensitivity_high" + ], + "metadata": { + "total_interactions": 3, + "total_visits": 0, + "total_opportunities": 1, + "source_confidence": 0.86, + "last_updated": "2025-07-01T00:00:00" + } + }, + { + "client_ref": "PER-0148", + "identity": { + "full_name": "Rahul Singh", + "email": "rahul.singh70@yahoo.com", + "phone": "+91-71772-37720", + "linkedin": "https://linkedin.com/in/rahul-singh-988", + "persona": [ + "price_sensitive_aspirational" + ] + }, + "account_links": { + "account_id": "ACC-0148", + "account_name": "Larsen & Toubro", + "account_type": "individual_business" + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-148-1", + "project_id": "PRJ-012", + "unit_id": "PRJ-012-U007", + "stage": "site_visit", + "value_cr": 2.7, + "probability": 0.38, + "expected_close": "2026-08-07T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-001110", + "channel": "phone_call", + "type": "document_sharing", + "happened_at": "2025-01-29T00:00:00", + "summary": "Document Sharing via phone_call regarding Shriram Grand City" + }, + { + "interaction_id": "INT-001109", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2025-01-14T00:00:00", + "summary": "Site Visit via site_visit regarding Shriram Grand City" + }, + { + "interaction_id": "INT-001108", + "channel": "phone_call", + "type": "document_sharing", + "happened_at": "2025-01-10T00:00:00", + "summary": "Document Sharing via phone_call regarding Shriram Grand City" + }, + { + "interaction_id": "INT-001106", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2025-01-05T00:00:00", + "summary": "Site Visit via site_visit regarding Shriram Grand City" + }, + { + "interaction_id": "INT-001107", + "channel": "phone_call", + "type": "follow_up", + "happened_at": "2025-01-05T00:00:00", + "summary": "Follow Up via phone_call regarding Shriram Grand City" + } + ], + "property_interests": [ + { + "project_id": "PRJ-012", + "unit_id": "PRJ-012-U007", + "interest_level": "medium", + "configuration": "Duplex", + "budget_range": "2.16 - 3.24", + "timeline": "flexible", + "financing": "home_loan", + "notes": "Wants ready to move in" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00439", + "text": "Confirm site visit for Saturday", + "due_at": "2024-11-10T00:00:00", + "status": "completed", + "assigned_to": "user_002" + }, + { + "reminder_id": "REM-00440", + "text": "Update on road widening approval status", + "due_at": "2024-12-11T00:00:00", + "status": "completed", + "assigned_to": "user_002" + }, + { + "reminder_id": "REM-00441", + "text": "Confirm site visit for Saturday", + "due_at": "2024-12-28T00:00:00", + "status": "completed", + "assigned_to": "user_002" + } + ], + "qd_overview": { + "current_score": 98, + "score_type": "intent", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 2 + }, + "risk_flags": [ + "financing_not_finalized", + "timeline_unclear" + ], + "metadata": { + "total_interactions": 15, + "total_visits": 4, + "total_opportunities": 1, + "source_confidence": 0.76, + "last_updated": "2025-12-01T00:00:00" + } + }, + { + "client_ref": "PER-0149", + "identity": { + "full_name": "Vivek Sharma", + "email": "vivek.sharma76@gmail.com", + "phone": "+91-84763-26478", + "linkedin": "https://linkedin.com/in/vivek-sharma-749", + "persona": [ + "broker_referral_chain" + ] + }, + "account_links": { + "account_id": "ACC-0149", + "account_name": "State Bank of India", + "account_type": "developer" + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-149-1", + "project_id": "PRJ-006", + "unit_id": "PRJ-006-U005", + "stage": "verbal_commitment", + "value_cr": 37.11, + "probability": 0.2, + "expected_close": "2026-07-02T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-001119", + "channel": "email", + "type": "family_discussion", + "happened_at": "2025-03-20T00:00:00", + "summary": "Family Discussion via email regarding Merlin Avana" + }, + { + "interaction_id": "INT-001118", + "channel": "whatsapp", + "type": "price_discussion", + "happened_at": "2025-03-19T00:00:00", + "summary": "Price Discussion via whatsapp regarding Merlin Avana" + }, + { + "interaction_id": "INT-001117", + "channel": "whatsapp", + "type": "site_visit", + "happened_at": "2025-02-24T00:00:00", + "summary": "Site Visit via whatsapp regarding Merlin Avana" + }, + { + "interaction_id": "INT-001116", + "channel": "phone_call", + "type": "document_sharing", + "happened_at": "2025-02-22T00:00:00", + "summary": "Document Sharing via phone_call regarding Merlin Avana" + }, + { + "interaction_id": "INT-001115", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2025-02-18T00:00:00", + "summary": "Site Visit via site_visit regarding Merlin Avana" + } + ], + "property_interests": [ + { + "project_id": "PRJ-006", + "unit_id": "PRJ-006-U005", + "interest_level": "very_high", + "configuration": "Penthouse", + "budget_range": "29.69 - 44.53", + "timeline": "6_months", + "financing": "home_loan", + "notes": "Comparing with competitor projects" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00446", + "text": "Send home loan documents checklist", + "due_at": "2025-01-10T00:00:00", + "status": "pending", + "assigned_to": "user_003" + }, + { + "reminder_id": "REM-00447", + "text": "Call back regarding east-facing unit availability", + "due_at": "2025-02-28T00:00:00", + "status": "pending", + "assigned_to": "user_003" + }, + { + "reminder_id": "REM-00448", + "text": "Update on road widening approval status", + "due_at": "2025-03-22T00:00:00", + "status": "completed", + "assigned_to": "user_003" + } + ], + "qd_overview": { + "current_score": 80.3, + "score_type": "financial_qualification", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 3 + }, + "risk_flags": [ + "financing_not_finalized", + "timeline_unclear" + ], + "metadata": { + "total_interactions": 9, + "total_visits": 2, + "total_opportunities": 1, + "source_confidence": 0.85, + "last_updated": "2024-04-09T00:00:00" + } + }, + { + "client_ref": "PER-0150", + "identity": { + "full_name": "Moumita Gupta", + "email": "moumita.gupta94@rediffmail.com", + "phone": "+91-90778-47125", + "linkedin": "https://linkedin.com/in/moumita-gupta-818", + "persona": [ + "family_decision_unit" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": "HH-0150", + "household_name": "Gupta Family", + "size": 2, + "decision_maker_id": "PER-0150" + }, + "relationships": [ + { + "related_person_id": "PER-0150-CO", + "type": "business_partner", + "strength": 0.85 + } + ], + "active_opportunities": [ + { + "opportunity_id": "OPP-150-1", + "project_id": "PRJ-005", + "unit_id": "PRJ-005-U008", + "stage": "negotiation", + "value_cr": 3.88, + "probability": 0.81, + "expected_close": "2026-09-01T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-001129", + "channel": "phone_call", + "type": "negotiation", + "happened_at": "2026-02-12T00:00:00", + "summary": "Negotiation via phone_call regarding Siddha Suburbia Bungalow" + }, + { + "interaction_id": "INT-001128", + "channel": "whatsapp", + "type": "initial_enquiry", + "happened_at": "2026-01-29T00:00:00", + "summary": "Initial Enquiry via whatsapp regarding Siddha Suburbia Bungalow" + }, + { + "interaction_id": "INT-001127", + "channel": "whatsapp", + "type": "price_discussion", + "happened_at": "2026-01-28T00:00:00", + "summary": "Price Discussion via whatsapp regarding Siddha Suburbia Bungalow" + }, + { + "interaction_id": "INT-001126", + "channel": "phone_call", + "type": "document_sharing", + "happened_at": "2026-01-20T00:00:00", + "summary": "Document Sharing via phone_call regarding Siddha Suburbia Bungalow" + }, + { + "interaction_id": "INT-001125", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2026-01-14T00:00:00", + "summary": "Site Visit via site_visit regarding Siddha Suburbia Bungalow" + } + ], + "property_interests": [ + { + "project_id": "PRJ-005", + "unit_id": "PRJ-005-U008", + "interest_level": "medium", + "configuration": "3 BHK", + "budget_range": "3.1 - 4.66", + "timeline": "immediate", + "financing": "undecided", + "notes": "Looking for east facing unit" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00449", + "text": "Schedule family meeting for final decision", + "due_at": "2025-11-28T00:00:00", + "status": "overdue", + "assigned_to": "user_005" + }, + { + "reminder_id": "REM-00450", + "text": "Schedule family meeting for final decision", + "due_at": "2026-01-06T00:00:00", + "status": "completed", + "assigned_to": "user_005" + }, + { + "reminder_id": "REM-00451", + "text": "Call back regarding east-facing unit availability", + "due_at": "2026-01-25T00:00:00", + "status": "completed", + "assigned_to": "user_005" + } + ], + "qd_overview": { + "current_score": 82.7, + "score_type": "engagement", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 3 + }, + "risk_flags": [ + "slow_response_pattern" + ], + "metadata": { + "total_interactions": 10, + "total_visits": 3, + "total_opportunities": 1, + "source_confidence": 0.89, + "last_updated": "2024-03-30T00:00:00" + } + }, + { + "client_ref": "PER-0150-CO", + "identity": { + "full_name": "Vivek Sen", + "email": "vivek.sen73@hotmail.com", + "phone": "+91-87849-23068", + "linkedin": null, + "persona": [ + "co_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [ + { + "related_person_id": "PER-0150", + "type": "business_partner", + "strength": 0.85 + } + ], + "active_opportunities": [], + "recent_interactions": [], + "property_interests": [], + "tasks_and_reminders": [], + "qd_overview": { + "current_score": 68.5, + "score_type": "engagement", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 2 + }, + "risk_flags": [ + "slow_response_pattern" + ], + "metadata": { + "total_interactions": 0, + "total_visits": 0, + "total_opportunities": 0, + "source_confidence": 0.85, + "last_updated": "2026-04-18T00:00:00" + } + }, + { + "client_ref": "PER-0151", + "identity": { + "full_name": "Rahul Nair", + "email": "rahul.nair86@outlook.com", + "phone": "+91-80980-32336", + "linkedin": "https://linkedin.com/in/rahul-nair-685", + "persona": [ + "high_intent_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": "HH-0151", + "household_name": "Nair Family", + "size": 5, + "decision_maker_id": "PER-0151" + }, + "relationships": [ + { + "related_person_id": "PER-0151-CO", + "type": "parent", + "strength": 0.73 + } + ], + "active_opportunities": [ + { + "opportunity_id": "OPP-151-1", + "project_id": "PRJ-011", + "unit_id": "PRJ-011-U010", + "stage": "site_visit", + "value_cr": 6.18, + "probability": 0.12, + "expected_close": "2026-10-04T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-001135", + "channel": "whatsapp", + "type": "document_sharing", + "happened_at": "2025-08-14T00:00:00", + "summary": "Document Sharing via whatsapp regarding DTC Sojon" + }, + { + "interaction_id": "INT-001134", + "channel": "email", + "type": "family_discussion", + "happened_at": "2025-08-13T00:00:00", + "summary": "Family Discussion via email regarding DTC Sojon" + }, + { + "interaction_id": "INT-001133", + "channel": "phone_call", + "type": "initial_enquiry", + "happened_at": "2025-08-08T00:00:00", + "summary": "Initial Enquiry via phone_call regarding DTC Sojon" + }, + { + "interaction_id": "INT-001132", + "channel": "email", + "type": "follow_up", + "happened_at": "2025-07-19T00:00:00", + "summary": "Follow Up via email regarding DTC Sojon" + }, + { + "interaction_id": "INT-001131", + "channel": "whatsapp", + "type": "price_discussion", + "happened_at": "2025-07-11T00:00:00", + "summary": "Price Discussion via whatsapp regarding DTC Sojon" + } + ], + "property_interests": [ + { + "project_id": "PRJ-011", + "unit_id": "PRJ-011-U010", + "interest_level": "very_high", + "configuration": "4 BHK", + "budget_range": "4.94 - 7.42", + "timeline": "immediate", + "financing": "home_loan", + "notes": "Wants ready to move in" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00452", + "text": "Share competitor comparison sheet", + "due_at": "2025-08-15T00:00:00", + "status": "completed", + "assigned_to": "user_002" + }, + { + "reminder_id": "REM-00453", + "text": "Schedule family meeting for final decision", + "due_at": "2025-08-18T00:00:00", + "status": "overdue", + "assigned_to": "user_002" + } + ], + "qd_overview": { + "current_score": 59.7, + "score_type": "overall", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 5 + }, + "risk_flags": [ + "price_sensitivity_high" + ], + "metadata": { + "total_interactions": 6, + "total_visits": 0, + "total_opportunities": 1, + "source_confidence": 0.98, + "last_updated": "2025-07-23T00:00:00" + } + }, + { + "client_ref": "PER-0151-CO", + "identity": { + "full_name": "Moumita Ghosh", + "email": "moumita.ghosh61@outlook.com", + "phone": "+91-86950-30767", + "linkedin": null, + "persona": [ + "co_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [ + { + "related_person_id": "PER-0151", + "type": "parent", + "strength": 0.73 + } + ], + "active_opportunities": [], + "recent_interactions": [], + "property_interests": [], + "tasks_and_reminders": [], + "qd_overview": { + "current_score": 67.6, + "score_type": "urgency", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 4 + }, + "risk_flags": [], + "metadata": { + "total_interactions": 0, + "total_visits": 0, + "total_opportunities": 0, + "source_confidence": 0.85, + "last_updated": "2026-04-18T00:00:00" + } + }, + { + "client_ref": "PER-0152", + "identity": { + "full_name": "Swati Patel", + "email": "swati.patel93@yahoo.com", + "phone": "+91-79729-35405", + "linkedin": "https://linkedin.com/in/swati-patel-648", + "persona": [ + "family_decision_unit" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": "HH-0152", + "household_name": "Patel Family", + "size": 5, + "decision_maker_id": "PER-0152" + }, + "relationships": [ + { + "related_person_id": "PER-0152-CO", + "type": "spouse", + "strength": 0.84 + } + ], + "active_opportunities": [ + { + "opportunity_id": "OPP-152-1", + "project_id": "PRJ-008", + "unit_id": "PRJ-008-U014", + "stage": "discovery", + "value_cr": 5.24, + "probability": 0.28, + "expected_close": "2026-09-02T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-001138", + "channel": "whatsapp", + "type": "initial_enquiry", + "happened_at": "2024-07-07T00:00:00", + "summary": "Initial Enquiry via whatsapp regarding Siddha Serena" + }, + { + "interaction_id": "INT-001137", + "channel": "phone_call", + "type": "site_visit", + "happened_at": "2024-05-19T00:00:00", + "summary": "Site Visit via phone_call regarding Siddha Serena" + }, + { + "interaction_id": "INT-001136", + "channel": "web_enquiry", + "type": "initial_enquiry", + "happened_at": "2024-05-13T00:00:00", + "summary": "Initial Enquiry via web_enquiry regarding Siddha Serena" + } + ], + "property_interests": [ + { + "project_id": "PRJ-008", + "unit_id": "PRJ-008-U014", + "interest_level": "high", + "configuration": "Duplex", + "budget_range": "4.19 - 6.29", + "timeline": "flexible", + "financing": "home_loan", + "notes": "Needs proximity to school" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00454", + "text": "Schedule family meeting for final decision", + "due_at": "2024-05-18T00:00:00", + "status": "completed", + "assigned_to": "user_001" + } + ], + "qd_overview": { + "current_score": 89.4, + "score_type": "engagement", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 5 + }, + "risk_flags": [ + "competitor_comparison_active" + ], + "metadata": { + "total_interactions": 3, + "total_visits": 0, + "total_opportunities": 1, + "source_confidence": 0.94, + "last_updated": "2026-03-09T00:00:00" + } + }, + { + "client_ref": "PER-0152-CO", + "identity": { + "full_name": "Aditya Das", + "email": "aditya.das90@gmail.com", + "phone": "+91-90918-85937", + "linkedin": null, + "persona": [ + "co_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [ + { + "related_person_id": "PER-0152", + "type": "spouse", + "strength": 0.84 + } + ], + "active_opportunities": [], + "recent_interactions": [], + "property_interests": [], + "tasks_and_reminders": [], + "qd_overview": { + "current_score": 49.7, + "score_type": "urgency", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 3 + }, + "risk_flags": [ + "competitor_comparison_active" + ], + "metadata": { + "total_interactions": 0, + "total_visits": 0, + "total_opportunities": 0, + "source_confidence": 0.85, + "last_updated": "2026-04-18T00:00:00" + } + }, + { + "client_ref": "PER-0153", + "identity": { + "full_name": "Nilesh Saha", + "email": "nilesh.saha14@gmail.com", + "phone": "+91-81233-55453", + "linkedin": "https://linkedin.com/in/nilesh-saha-595", + "persona": [ + "slow_burn_investor" + ] + }, + "account_links": { + "account_id": "ACC-0153", + "account_name": "SRF Limited", + "account_type": "referral_partner" + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-153-1", + "project_id": "PRJ-014", + "unit_id": "PRJ-014-U003", + "stage": "closed_won", + "value_cr": 25.55, + "probability": 0.19, + "expected_close": "2026-10-15T00:00:00" + }, + { + "opportunity_id": "OPP-153-2", + "project_id": "PRJ-008", + "unit_id": "PRJ-008-U009", + "stage": "negotiation", + "value_cr": 13.33, + "probability": 0.79, + "expected_close": "2026-06-14T00:00:00" + }, + { + "opportunity_id": "OPP-153-3", + "project_id": "PRJ-006", + "unit_id": "PRJ-006-U003", + "stage": "discovery", + "value_cr": 14.7, + "probability": 0.48, + "expected_close": "2026-05-26T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-001146", + "channel": "whatsapp", + "type": "site_visit", + "happened_at": "2025-09-10T00:00:00", + "summary": "Site Visit via whatsapp regarding Merlin Avana" + }, + { + "interaction_id": "INT-001145", + "channel": "whatsapp", + "type": "initial_enquiry", + "happened_at": "2025-08-25T00:00:00", + "summary": "Initial Enquiry via whatsapp regarding Merlin Avana" + }, + { + "interaction_id": "INT-001144", + "channel": "whatsapp", + "type": "price_discussion", + "happened_at": "2025-08-18T00:00:00", + "summary": "Price Discussion via whatsapp regarding Merlin Avana" + }, + { + "interaction_id": "INT-001143", + "channel": "whatsapp", + "type": "document_sharing", + "happened_at": "2025-08-06T00:00:00", + "summary": "Document Sharing via whatsapp regarding Merlin Avana" + }, + { + "interaction_id": "INT-001142", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2025-07-18T00:00:00", + "summary": "Site Visit via site_visit regarding Merlin Avana" + } + ], + "property_interests": [ + { + "project_id": "PRJ-014", + "unit_id": "PRJ-014-U003", + "interest_level": "medium", + "configuration": "Duplex", + "budget_range": "20.44 - 30.66", + "timeline": "3_months", + "financing": "undecided", + "notes": "Wants ready to move in" + }, + { + "project_id": "PRJ-008", + "unit_id": "PRJ-008-U009", + "interest_level": "very_high", + "configuration": "5 BHK", + "budget_range": "10.66 - 16.0", + "timeline": "flexible", + "financing": "home_loan", + "notes": "Comparing with competitor projects" + }, + { + "project_id": "PRJ-006", + "unit_id": "PRJ-006-U003", + "interest_level": "high", + "configuration": "5 BHK", + "budget_range": "11.76 - 17.64", + "timeline": "flexible", + "financing": "combined", + "notes": "Comparing with competitor projects" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00455", + "text": "Follow up on Merlin Avana pricing discussion", + "due_at": "2025-07-15T00:00:00", + "status": "completed", + "assigned_to": "user_002" + } + ], + "qd_overview": { + "current_score": 98, + "score_type": "financial_qualification", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 5 + }, + "risk_flags": [ + "financing_not_finalized", + "timeline_unclear" + ], + "metadata": { + "total_interactions": 8, + "total_visits": 1, + "total_opportunities": 3, + "source_confidence": 0.98, + "last_updated": "2025-07-13T00:00:00" + } + }, + { + "client_ref": "PER-0154", + "identity": { + "full_name": "Moumita Banerjee", + "email": "moumita.banerjee24@yahoo.com", + "phone": "+91-96510-52294", + "linkedin": "https://linkedin.com/in/moumita-banerjee-539", + "persona": [ + "price_sensitive_aspirational" + ] + }, + "account_links": { + "account_id": "ACC-0154", + "account_name": "Flipkart", + "account_type": "referral_partner" + }, + "household": { + "household_id": "HH-0154", + "household_name": "Banerjee Family", + "size": 2, + "decision_maker_id": "PER-0154" + }, + "relationships": [ + { + "related_person_id": "PER-0154-CO", + "type": "parent", + "strength": 0.86 + } + ], + "active_opportunities": [ + { + "opportunity_id": "OPP-154-1", + "project_id": "PRJ-010", + "unit_id": "PRJ-010-U011", + "stage": "proposal", + "value_cr": 12.73, + "probability": 0.59, + "expected_close": "2026-07-29T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-001155", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2025-09-24T00:00:00", + "summary": "Site Visit via site_visit regarding Godrej Blue" + }, + { + "interaction_id": "INT-001154", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2025-09-20T00:00:00", + "summary": "Site Visit via site_visit regarding Godrej Blue" + }, + { + "interaction_id": "INT-001153", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2025-09-09T00:00:00", + "summary": "Site Visit via site_visit regarding Godrej Blue" + }, + { + "interaction_id": "INT-001150", + "channel": "phone_call", + "type": "price_discussion", + "happened_at": "2025-08-31T00:00:00", + "summary": "Price Discussion via phone_call regarding Godrej Blue" + }, + { + "interaction_id": "INT-001151", + "channel": "phone_call", + "type": "initial_enquiry", + "happened_at": "2025-08-31T00:00:00", + "summary": "Initial Enquiry via phone_call regarding Godrej Blue" + } + ], + "property_interests": [ + { + "project_id": "PRJ-010", + "unit_id": "PRJ-010-U011", + "interest_level": "low", + "configuration": "Villa", + "budget_range": "10.18 - 15.28", + "timeline": "flexible", + "financing": "combined", + "notes": "Needs proximity to school" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00456", + "text": "Send home loan documents checklist", + "due_at": "2025-08-15T00:00:00", + "status": "completed", + "assigned_to": "user_004" + }, + { + "reminder_id": "REM-00457", + "text": "Send revised payment plan", + "due_at": "2025-09-02T00:00:00", + "status": "completed", + "assigned_to": "user_004" + }, + { + "reminder_id": "REM-00458", + "text": "Send home loan documents checklist", + "due_at": "2025-09-01T00:00:00", + "status": "completed", + "assigned_to": "user_004" + } + ], + "qd_overview": { + "current_score": 98, + "score_type": "overall", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 5 + }, + "risk_flags": [ + "competitor_comparison_active" + ], + "metadata": { + "total_interactions": 9, + "total_visits": 3, + "total_opportunities": 1, + "source_confidence": 0.93, + "last_updated": "2024-09-08T00:00:00" + } + }, + { + "client_ref": "PER-0154-CO", + "identity": { + "full_name": "Nilesh Agarwal", + "email": "nilesh.agarwal39@hotmail.com", + "phone": "+91-72170-60540", + "linkedin": null, + "persona": [ + "co_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [ + { + "related_person_id": "PER-0154", + "type": "parent", + "strength": 0.86 + } + ], + "active_opportunities": [], + "recent_interactions": [], + "property_interests": [], + "tasks_and_reminders": [], + "qd_overview": { + "current_score": 34.8, + "score_type": "intent", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 3 + }, + "risk_flags": [], + "metadata": { + "total_interactions": 0, + "total_visits": 0, + "total_opportunities": 0, + "source_confidence": 0.85, + "last_updated": "2026-04-18T00:00:00" + } + }, + { + "client_ref": "PER-0155", + "identity": { + "full_name": "Priya Pillai", + "email": "priya.pillai77@gmail.com", + "phone": "+91-81055-94512", + "linkedin": "https://linkedin.com/in/priya-pillai-116", + "persona": [ + "price_sensitive_aspirational" + ] + }, + "account_links": { + "account_id": "ACC-0155", + "account_name": "Accenture India", + "account_type": "referral_partner" + }, + "household": { + "household_id": "HH-0155", + "household_name": "Pillai Family", + "size": 4, + "decision_maker_id": "PER-0155" + }, + "relationships": [ + { + "related_person_id": "PER-0155-CO", + "type": "spouse", + "strength": 0.71 + } + ], + "active_opportunities": [ + { + "opportunity_id": "OPP-155-1", + "project_id": "PRJ-002", + "unit_id": "PRJ-002-U001", + "stage": "negotiation", + "value_cr": 2.96, + "probability": 0.16, + "expected_close": "2026-08-10T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-001163", + "channel": "whatsapp", + "type": "document_sharing", + "happened_at": "2024-03-16T00:00:00", + "summary": "Document Sharing via whatsapp regarding Sugam Prakriti" + }, + { + "interaction_id": "INT-001162", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2024-03-06T00:00:00", + "summary": "Site Visit via site_visit regarding Sugam Prakriti" + }, + { + "interaction_id": "INT-001161", + "channel": "walk_in", + "type": "site_visit", + "happened_at": "2024-03-05T00:00:00", + "summary": "Site Visit via walk_in regarding Sugam Prakriti" + }, + { + "interaction_id": "INT-001160", + "channel": "walk_in", + "type": "initial_enquiry", + "happened_at": "2024-02-29T00:00:00", + "summary": "Initial Enquiry via walk_in regarding Sugam Prakriti" + }, + { + "interaction_id": "INT-001159", + "channel": "web_enquiry", + "type": "document_sharing", + "happened_at": "2024-02-26T00:00:00", + "summary": "Document Sharing via web_enquiry regarding Sugam Prakriti" + } + ], + "property_interests": [ + { + "project_id": "PRJ-002", + "unit_id": "PRJ-002-U001", + "interest_level": "very_high", + "configuration": "Villa", + "budget_range": "2.37 - 3.55", + "timeline": "6_months", + "financing": "home_loan", + "notes": "Needs proximity to school" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00461", + "text": "Send home loan documents checklist", + "due_at": "2024-02-07T00:00:00", + "status": "overdue", + "assigned_to": "user_002" + }, + { + "reminder_id": "REM-00462", + "text": "Follow up on Sugam Prakriti pricing discussion", + "due_at": "2024-02-14T00:00:00", + "status": "pending", + "assigned_to": "user_002" + }, + { + "reminder_id": "REM-00463", + "text": "Send home loan documents checklist", + "due_at": "2024-03-05T00:00:00", + "status": "pending", + "assigned_to": "user_002" + } + ], + "qd_overview": { + "current_score": 82.6, + "score_type": "urgency", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 2 + }, + "risk_flags": [ + "price_sensitivity_high" + ], + "metadata": { + "total_interactions": 8, + "total_visits": 1, + "total_opportunities": 1, + "source_confidence": 0.77, + "last_updated": "2026-04-01T00:00:00" + } + }, + { + "client_ref": "PER-0155-CO", + "identity": { + "full_name": "Prasenjit Kumar", + "email": "prasenjit.kumar73@gmail.com", + "phone": "+91-97625-59008", + "linkedin": null, + "persona": [ + "co_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [ + { + "related_person_id": "PER-0155", + "type": "spouse", + "strength": 0.71 + } + ], + "active_opportunities": [], + "recent_interactions": [], + "property_interests": [], + "tasks_and_reminders": [], + "qd_overview": { + "current_score": 75.4, + "score_type": "urgency", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 2 + }, + "risk_flags": [ + "financing_not_finalized", + "timeline_unclear" + ], + "metadata": { + "total_interactions": 0, + "total_visits": 0, + "total_opportunities": 0, + "source_confidence": 0.85, + "last_updated": "2026-04-18T00:00:00" + } + }, + { + "client_ref": "PER-0156", + "identity": { + "full_name": "Raj Agarwal", + "email": "raj.agarwal28@hotmail.com", + "phone": "+91-99091-64171", + "linkedin": "https://linkedin.com/in/raj-agarwal-752", + "persona": [ + "family_decision_unit" + ] + }, + "account_links": { + "account_id": "ACC-0156", + "account_name": "ITC Limited", + "account_type": "developer" + }, + "household": { + "household_id": "HH-0156", + "household_name": "Agarwal Family", + "size": 2, + "decision_maker_id": "PER-0156" + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-156-1", + "project_id": "PRJ-007", + "unit_id": "PRJ-007-U012", + "stage": "proposal", + "value_cr": 13.22, + "probability": 0.76, + "expected_close": "2026-07-05T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-001166", + "channel": "email", + "type": "family_discussion", + "happened_at": "2025-03-23T00:00:00", + "summary": "Family Discussion via email regarding DTC Good Earth" + }, + { + "interaction_id": "INT-001165", + "channel": "whatsapp", + "type": "negotiation", + "happened_at": "2025-02-16T00:00:00", + "summary": "Negotiation via whatsapp regarding DTC Good Earth" + }, + { + "interaction_id": "INT-001164", + "channel": "web_enquiry", + "type": "initial_enquiry", + "happened_at": "2025-01-19T00:00:00", + "summary": "Initial Enquiry via web_enquiry regarding DTC Good Earth" + } + ], + "property_interests": [ + { + "project_id": "PRJ-007", + "unit_id": "PRJ-007-U012", + "interest_level": "high", + "configuration": "4 BHK", + "budget_range": "10.58 - 15.86", + "timeline": "flexible", + "financing": "home_loan", + "notes": "Waiting for festive season offer" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00465", + "text": "Follow up on DTC Good Earth pricing discussion", + "due_at": "2025-02-21T00:00:00", + "status": "pending", + "assigned_to": "user_001" + } + ], + "qd_overview": { + "current_score": 94.2, + "score_type": "financial_qualification", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 4 + }, + "risk_flags": [ + "price_sensitivity_high" + ], + "metadata": { + "total_interactions": 3, + "total_visits": 0, + "total_opportunities": 1, + "source_confidence": 0.85, + "last_updated": "2025-06-18T00:00:00" + } + }, + { + "client_ref": "PER-0157", + "identity": { + "full_name": "Raj Kumar", + "email": "raj.kumar23@gmail.com", + "phone": "+91-77882-12174", + "linkedin": "https://linkedin.com/in/raj-kumar-571", + "persona": [ + "slow_burn_investor" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-157-1", + "project_id": "PRJ-005", + "unit_id": "PRJ-005-U008", + "stage": "discovery", + "value_cr": 3.88, + "probability": 0.14, + "expected_close": "2026-08-23T00:00:00" + }, + { + "opportunity_id": "OPP-157-2", + "project_id": "PRJ-007", + "unit_id": "PRJ-007-U003", + "stage": "negotiation", + "value_cr": 18.26, + "probability": 0.55, + "expected_close": "2026-09-21T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-001171", + "channel": "whatsapp", + "type": "document_sharing", + "happened_at": "2024-12-20T00:00:00", + "summary": "Document Sharing via whatsapp regarding DTC Good Earth" + }, + { + "interaction_id": "INT-001170", + "channel": "referral", + "type": "negotiation", + "happened_at": "2024-12-07T00:00:00", + "summary": "Negotiation via referral regarding DTC Good Earth" + }, + { + "interaction_id": "INT-001169", + "channel": "email", + "type": "document_sharing", + "happened_at": "2024-11-11T00:00:00", + "summary": "Document Sharing via email regarding DTC Good Earth" + }, + { + "interaction_id": "INT-001168", + "channel": "phone_call", + "type": "initial_enquiry", + "happened_at": "2024-11-03T00:00:00", + "summary": "Initial Enquiry via phone_call regarding DTC Good Earth" + }, + { + "interaction_id": "INT-001167", + "channel": "referral", + "type": "initial_enquiry", + "happened_at": "2024-10-01T00:00:00", + "summary": "Initial Enquiry via referral regarding DTC Good Earth" + } + ], + "property_interests": [ + { + "project_id": "PRJ-005", + "unit_id": "PRJ-005-U008", + "interest_level": "very_high", + "configuration": "3 BHK", + "budget_range": "3.1 - 4.66", + "timeline": "3_months", + "financing": "combined", + "notes": "Needs proximity to school" + }, + { + "project_id": "PRJ-007", + "unit_id": "PRJ-007-U003", + "interest_level": "very_high", + "configuration": "3 BHK", + "budget_range": "14.61 - 21.91", + "timeline": "immediate", + "financing": "cash", + "notes": "Waiting for festive season offer" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00466", + "text": "Update on road widening approval status", + "due_at": "2024-10-08T00:00:00", + "status": "completed", + "assigned_to": "user_002" + }, + { + "reminder_id": "REM-00467", + "text": "Send home loan documents checklist", + "due_at": "2024-12-08T00:00:00", + "status": "completed", + "assigned_to": "user_002" + }, + { + "reminder_id": "REM-00468", + "text": "Send home loan documents checklist", + "due_at": "2024-12-21T00:00:00", + "status": "completed", + "assigned_to": "user_002" + } + ], + "qd_overview": { + "current_score": 48.8, + "score_type": "engagement", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 4 + }, + "risk_flags": [ + "decision_maker_not_met" + ], + "metadata": { + "total_interactions": 5, + "total_visits": 0, + "total_opportunities": 2, + "source_confidence": 0.79, + "last_updated": "2025-05-02T00:00:00" + } + }, + { + "client_ref": "PER-0158", + "identity": { + "full_name": "Deb Sen", + "email": "deb.sen16@gmail.com", + "phone": "+91-88849-44888", + "linkedin": "https://linkedin.com/in/deb-sen-344", + "persona": [ + "slow_burn_investor" + ] + }, + "account_links": { + "account_id": "ACC-0158", + "account_name": "Swiggy", + "account_type": "developer" + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-158-1", + "project_id": "PRJ-003", + "unit_id": "PRJ-003-U008", + "stage": "discovery", + "value_cr": 5.39, + "probability": 0.24, + "expected_close": "2026-08-11T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-001183", + "channel": "whatsapp", + "type": "family_discussion", + "happened_at": "2026-03-05T00:00:00", + "summary": "Family Discussion via whatsapp regarding Atri Aqua" + }, + { + "interaction_id": "INT-001182", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2026-03-01T00:00:00", + "summary": "Site Visit via site_visit regarding Atri Aqua" + }, + { + "interaction_id": "INT-001181", + "channel": "phone_call", + "type": "negotiation", + "happened_at": "2026-02-25T00:00:00", + "summary": "Negotiation via phone_call regarding Atri Aqua" + }, + { + "interaction_id": "INT-001180", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2026-02-21T00:00:00", + "summary": "Site Visit via site_visit regarding Atri Aqua" + }, + { + "interaction_id": "INT-001179", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2026-02-07T00:00:00", + "summary": "Site Visit via site_visit regarding Atri Aqua" + } + ], + "property_interests": [ + { + "project_id": "PRJ-003", + "unit_id": "PRJ-003-U008", + "interest_level": "medium", + "configuration": "4 BHK", + "budget_range": "4.31 - 6.47", + "timeline": "immediate", + "financing": "undecided", + "notes": "Wants ready to move in" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00469", + "text": "Send home loan documents checklist", + "due_at": "2026-01-17T00:00:00", + "status": "pending", + "assigned_to": "user_003" + }, + { + "reminder_id": "REM-00470", + "text": "Update on road widening approval status", + "due_at": "2026-01-27T00:00:00", + "status": "completed", + "assigned_to": "user_003" + }, + { + "reminder_id": "REM-00471", + "text": "Update on road widening approval status", + "due_at": "2026-01-26T00:00:00", + "status": "overdue", + "assigned_to": "user_003" + } + ], + "qd_overview": { + "current_score": 98, + "score_type": "financial_qualification", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 5 + }, + "risk_flags": [ + "competitor_comparison_active" + ], + "metadata": { + "total_interactions": 12, + "total_visits": 5, + "total_opportunities": 1, + "source_confidence": 0.77, + "last_updated": "2024-10-09T00:00:00" + } + }, + { + "client_ref": "PER-0159", + "identity": { + "full_name": "Sourav Chatterjee", + "email": "sourav.chatterjee31@gmail.com", + "phone": "+91-89464-56156", + "linkedin": "https://linkedin.com/in/sourav-chatterjee-585", + "persona": [ + "slow_burn_investor" + ] + }, + "account_links": { + "account_id": "ACC-0159", + "account_name": "Wipro", + "account_type": "corporate" + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-159-1", + "project_id": "PRJ-005", + "unit_id": "PRJ-005-U008", + "stage": "closed_lost", + "value_cr": 3.88, + "probability": 0.2, + "expected_close": "2026-09-27T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-001191", + "channel": "phone_call", + "type": "price_discussion", + "happened_at": "2024-09-16T00:00:00", + "summary": "Price Discussion via phone_call regarding Siddha Suburbia Bungalow" + }, + { + "interaction_id": "INT-001190", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2024-09-02T00:00:00", + "summary": "Site Visit via site_visit regarding Siddha Suburbia Bungalow" + }, + { + "interaction_id": "INT-001189", + "channel": "email", + "type": "initial_enquiry", + "happened_at": "2024-08-28T00:00:00", + "summary": "Initial Enquiry via email regarding Siddha Suburbia Bungalow" + }, + { + "interaction_id": "INT-001188", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2024-08-17T00:00:00", + "summary": "Site Visit via site_visit regarding Siddha Suburbia Bungalow" + }, + { + "interaction_id": "INT-001187", + "channel": "email", + "type": "price_discussion", + "happened_at": "2024-08-14T00:00:00", + "summary": "Price Discussion via email regarding Siddha Suburbia Bungalow" + } + ], + "property_interests": [ + { + "project_id": "PRJ-005", + "unit_id": "PRJ-005-U008", + "interest_level": "low", + "configuration": "3 BHK", + "budget_range": "3.1 - 4.66", + "timeline": "3_months", + "financing": "undecided", + "notes": "Needs proximity to school" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00474", + "text": "Confirm site visit for Saturday", + "due_at": "2024-06-28T00:00:00", + "status": "pending", + "assigned_to": "user_004" + }, + { + "reminder_id": "REM-00475", + "text": "Call back regarding east-facing unit availability", + "due_at": "2024-08-18T00:00:00", + "status": "completed", + "assigned_to": "user_004" + }, + { + "reminder_id": "REM-00476", + "text": "Follow up on Siddha Suburbia Bungalow pricing discussion", + "due_at": "2024-09-01T00:00:00", + "status": "overdue", + "assigned_to": "user_004" + } + ], + "qd_overview": { + "current_score": 57.9, + "score_type": "financial_qualification", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 2 + }, + "risk_flags": [ + "financing_not_finalized", + "timeline_unclear" + ], + "metadata": { + "total_interactions": 8, + "total_visits": 2, + "total_opportunities": 1, + "source_confidence": 0.88, + "last_updated": "2024-09-10T00:00:00" + } + }, + { + "client_ref": "PER-0160", + "identity": { + "full_name": "Rahul Reddy", + "email": "rahul.reddy13@yahoo.com", + "phone": "+91-88926-66455", + "linkedin": "https://linkedin.com/in/rahul-reddy-468", + "persona": [ + "family_decision_unit" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": "HH-0160", + "household_name": "Reddy Family", + "size": 5, + "decision_maker_id": "PER-0160" + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-160-1", + "project_id": "PRJ-010", + "unit_id": "PRJ-010-U012", + "stage": "site_visit", + "value_cr": 19.52, + "probability": 0.36, + "expected_close": "2026-07-30T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-001199", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2025-12-31T00:00:00", + "summary": "Site Visit via site_visit regarding Godrej Blue" + }, + { + "interaction_id": "INT-001198", + "channel": "whatsapp", + "type": "site_visit", + "happened_at": "2025-12-09T00:00:00", + "summary": "Site Visit via whatsapp regarding Godrej Blue" + }, + { + "interaction_id": "INT-001197", + "channel": "whatsapp", + "type": "follow_up", + "happened_at": "2025-12-06T00:00:00", + "summary": "Follow Up via whatsapp regarding Godrej Blue" + }, + { + "interaction_id": "INT-001196", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2025-12-05T00:00:00", + "summary": "Site Visit via site_visit regarding Godrej Blue" + }, + { + "interaction_id": "INT-001195", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2025-11-17T00:00:00", + "summary": "Site Visit via site_visit regarding Godrej Blue" + } + ], + "property_interests": [ + { + "project_id": "PRJ-010", + "unit_id": "PRJ-010-U012", + "interest_level": "high", + "configuration": "Villa", + "budget_range": "15.62 - 23.42", + "timeline": "immediate", + "financing": "undecided", + "notes": "Looking for east facing unit" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00478", + "text": "Update on road widening approval status", + "due_at": "2025-10-06T00:00:00", + "status": "pending", + "assigned_to": "user_003" + }, + { + "reminder_id": "REM-00479", + "text": "Update on road widening approval status", + "due_at": "2025-11-02T00:00:00", + "status": "overdue", + "assigned_to": "user_003" + }, + { + "reminder_id": "REM-00480", + "text": "Send home loan documents checklist", + "due_at": "2025-12-08T00:00:00", + "status": "pending", + "assigned_to": "user_003" + } + ], + "qd_overview": { + "current_score": 92.1, + "score_type": "engagement", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 4 + }, + "risk_flags": [ + "competitor_comparison_active" + ], + "metadata": { + "total_interactions": 8, + "total_visits": 3, + "total_opportunities": 1, + "source_confidence": 0.8, + "last_updated": "2024-07-17T00:00:00" + } + }, + { + "client_ref": "PER-0161", + "identity": { + "full_name": "Rohan Reddy", + "email": "rohan.reddy49@gmail.com", + "phone": "+91-84100-56170", + "linkedin": "https://linkedin.com/in/rohan-reddy-776", + "persona": [ + "slow_burn_investor" + ] + }, + "account_links": { + "account_id": "ACC-0161", + "account_name": "Tech Mahindra", + "account_type": "individual_business" + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-161-1", + "project_id": "PRJ-007", + "unit_id": "PRJ-007-U014", + "stage": "proposal", + "value_cr": 6.92, + "probability": 0.36, + "expected_close": "2026-06-08T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-001205", + "channel": "phone_call", + "type": "negotiation", + "happened_at": "2024-10-12T00:00:00", + "summary": "Negotiation via phone_call regarding DTC Good Earth" + }, + { + "interaction_id": "INT-001204", + "channel": "phone_call", + "type": "site_visit", + "happened_at": "2024-10-10T00:00:00", + "summary": "Site Visit via phone_call regarding DTC Good Earth" + }, + { + "interaction_id": "INT-001203", + "channel": "whatsapp", + "type": "negotiation", + "happened_at": "2024-09-28T00:00:00", + "summary": "Negotiation via whatsapp regarding DTC Good Earth" + }, + { + "interaction_id": "INT-001202", + "channel": "whatsapp", + "type": "price_discussion", + "happened_at": "2024-09-15T00:00:00", + "summary": "Price Discussion via whatsapp regarding DTC Good Earth" + }, + { + "interaction_id": "INT-001201", + "channel": "whatsapp", + "type": "document_sharing", + "happened_at": "2024-08-25T00:00:00", + "summary": "Document Sharing via whatsapp regarding DTC Good Earth" + } + ], + "property_interests": [ + { + "project_id": "PRJ-007", + "unit_id": "PRJ-007-U014", + "interest_level": "very_high", + "configuration": "4 BHK", + "budget_range": "5.54 - 8.3", + "timeline": "3_months", + "financing": "undecided", + "notes": "Wants ready to move in" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00482", + "text": "Confirm site visit for Saturday", + "due_at": "2024-10-17T00:00:00", + "status": "completed", + "assigned_to": "user_004" + } + ], + "qd_overview": { + "current_score": 89.9, + "score_type": "urgency", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 3 + }, + "risk_flags": [ + "price_sensitivity_high" + ], + "metadata": { + "total_interactions": 6, + "total_visits": 0, + "total_opportunities": 1, + "source_confidence": 0.94, + "last_updated": "2024-09-14T00:00:00" + } + }, + { + "client_ref": "PER-0162", + "identity": { + "full_name": "Sonal Nair", + "email": "sonal.nair97@outlook.com", + "phone": "+91-85347-56424", + "linkedin": "https://linkedin.com/in/sonal-nair-537", + "persona": [ + "high_intent_buyer" + ] + }, + "account_links": { + "account_id": "ACC-0162", + "account_name": "TCS", + "account_type": "developer" + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-162-1", + "project_id": "PRJ-009", + "unit_id": "PRJ-009-U008", + "stage": "closed_lost", + "value_cr": 14.61, + "probability": 0.22, + "expected_close": "2026-06-26T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-001219", + "channel": "phone_call", + "type": "price_discussion", + "happened_at": "2024-12-03T00:00:00", + "summary": "Price Discussion via phone_call regarding Siddha Sky Waterfront" + }, + { + "interaction_id": "INT-001218", + "channel": "whatsapp", + "type": "price_discussion", + "happened_at": "2024-11-30T00:00:00", + "summary": "Price Discussion via whatsapp regarding Siddha Sky Waterfront" + }, + { + "interaction_id": "INT-001217", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2024-11-26T00:00:00", + "summary": "Site Visit via site_visit regarding Siddha Sky Waterfront" + }, + { + "interaction_id": "INT-001216", + "channel": "whatsapp", + "type": "family_discussion", + "happened_at": "2024-10-23T00:00:00", + "summary": "Family Discussion via whatsapp regarding Siddha Sky Waterfront" + }, + { + "interaction_id": "INT-001215", + "channel": "whatsapp", + "type": "negotiation", + "happened_at": "2024-10-22T00:00:00", + "summary": "Negotiation via whatsapp regarding Siddha Sky Waterfront" + } + ], + "property_interests": [ + { + "project_id": "PRJ-009", + "unit_id": "PRJ-009-U008", + "interest_level": "high", + "configuration": "Duplex", + "budget_range": "11.69 - 17.53", + "timeline": "immediate", + "financing": "undecided", + "notes": "Comparing with competitor projects" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00483", + "text": "Schedule family meeting for final decision", + "due_at": "2024-09-17T00:00:00", + "status": "pending", + "assigned_to": "user_005" + }, + { + "reminder_id": "REM-00484", + "text": "Confirm site visit for Saturday", + "due_at": "2024-09-14T00:00:00", + "status": "overdue", + "assigned_to": "user_005" + }, + { + "reminder_id": "REM-00485", + "text": "Call back regarding east-facing unit availability", + "due_at": "2024-09-30T00:00:00", + "status": "completed", + "assigned_to": "user_005" + } + ], + "qd_overview": { + "current_score": 98, + "score_type": "intent", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 3 + }, + "risk_flags": [ + "competitor_comparison_active" + ], + "metadata": { + "total_interactions": 14, + "total_visits": 2, + "total_opportunities": 1, + "source_confidence": 0.86, + "last_updated": "2025-04-17T00:00:00" + } + }, + { + "client_ref": "PER-0163", + "identity": { + "full_name": "Aditya Banerjee", + "email": "aditya.banerjee29@hotmail.com", + "phone": "+91-98832-25864", + "linkedin": "https://linkedin.com/in/aditya-banerjee-632", + "persona": [ + "family_decision_unit" + ] + }, + "account_links": { + "account_id": "ACC-0163", + "account_name": "Emami", + "account_type": "developer" + }, + "household": { + "household_id": "HH-0163", + "household_name": "Banerjee Family", + "size": 5, + "decision_maker_id": "PER-0163" + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-163-1", + "project_id": "PRJ-006", + "unit_id": "PRJ-006-U003", + "stage": "closed_won", + "value_cr": 14.7, + "probability": 0.43, + "expected_close": "2026-06-14T00:00:00" + }, + { + "opportunity_id": "OPP-163-2", + "project_id": "PRJ-005", + "unit_id": "PRJ-005-U009", + "stage": "discovery", + "value_cr": 2.39, + "probability": 0.58, + "expected_close": "2026-05-20T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-001222", + "channel": "whatsapp", + "type": "follow_up", + "happened_at": "2025-09-26T00:00:00", + "summary": "Follow Up via whatsapp regarding Siddha Suburbia Bungalow" + }, + { + "interaction_id": "INT-001221", + "channel": "phone_call", + "type": "family_discussion", + "happened_at": "2025-08-17T00:00:00", + "summary": "Family Discussion via phone_call regarding Siddha Suburbia Bungalow" + }, + { + "interaction_id": "INT-001220", + "channel": "referral", + "type": "initial_enquiry", + "happened_at": "2025-08-03T00:00:00", + "summary": "Initial Enquiry via referral regarding Siddha Suburbia Bungalow" + } + ], + "property_interests": [ + { + "project_id": "PRJ-006", + "unit_id": "PRJ-006-U003", + "interest_level": "very_high", + "configuration": "5 BHK", + "budget_range": "11.76 - 17.64", + "timeline": "flexible", + "financing": "home_loan", + "notes": "Looking for east facing unit" + }, + { + "project_id": "PRJ-005", + "unit_id": "PRJ-005-U009", + "interest_level": "high", + "configuration": "Villa", + "budget_range": "1.91 - 2.87", + "timeline": "immediate", + "financing": "undecided", + "notes": "Looking for east facing unit" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00487", + "text": "Call back regarding east-facing unit availability", + "due_at": "2025-08-07T00:00:00", + "status": "overdue", + "assigned_to": "user_004" + } + ], + "qd_overview": { + "current_score": 91.1, + "score_type": "financial_qualification", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 3 + }, + "risk_flags": [ + "decision_maker_not_met" + ], + "metadata": { + "total_interactions": 3, + "total_visits": 0, + "total_opportunities": 2, + "source_confidence": 0.77, + "last_updated": "2024-04-16T00:00:00" + } + }, + { + "client_ref": "PER-0164", + "identity": { + "full_name": "Debjani Kumar", + "email": "debjani.kumar68@outlook.com", + "phone": "+91-70298-30750", + "linkedin": "https://linkedin.com/in/debjani-kumar-466", + "persona": [ + "broker_referral_chain" + ] + }, + "account_links": { + "account_id": "ACC-0164", + "account_name": "SRF Limited", + "account_type": "developer" + }, + "household": { + "household_id": "HH-0164", + "household_name": "Kumar Family", + "size": 4, + "decision_maker_id": "PER-0164" + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-164-1", + "project_id": "PRJ-014", + "unit_id": "PRJ-014-U005", + "stage": "discovery", + "value_cr": 4.25, + "probability": 0.14, + "expected_close": "2026-06-27T00:00:00" + }, + { + "opportunity_id": "OPP-164-2", + "project_id": "PRJ-008", + "unit_id": "PRJ-008-U007", + "stage": "proposal", + "value_cr": 24.0, + "probability": 0.93, + "expected_close": "2026-07-17T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-001231", + "channel": "phone_call", + "type": "document_sharing", + "happened_at": "2024-08-08T00:00:00", + "summary": "Document Sharing via phone_call regarding Siddha Serena" + }, + { + "interaction_id": "INT-001230", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2024-08-02T00:00:00", + "summary": "Site Visit via site_visit regarding Siddha Serena" + }, + { + "interaction_id": "INT-001229", + "channel": "phone_call", + "type": "site_visit", + "happened_at": "2024-08-01T00:00:00", + "summary": "Site Visit via phone_call regarding Siddha Serena" + }, + { + "interaction_id": "INT-001228", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2024-07-22T00:00:00", + "summary": "Site Visit via site_visit regarding Siddha Serena" + }, + { + "interaction_id": "INT-001227", + "channel": "phone_call", + "type": "negotiation", + "happened_at": "2024-06-24T00:00:00", + "summary": "Negotiation via phone_call regarding Siddha Serena" + } + ], + "property_interests": [ + { + "project_id": "PRJ-014", + "unit_id": "PRJ-014-U005", + "interest_level": "low", + "configuration": "2 BHK", + "budget_range": "3.4 - 5.1", + "timeline": "immediate", + "financing": "undecided", + "notes": "Waiting for festive season offer" + }, + { + "project_id": "PRJ-008", + "unit_id": "PRJ-008-U007", + "interest_level": "medium", + "configuration": "2 BHK", + "budget_range": "19.2 - 28.8", + "timeline": "flexible", + "financing": "undecided", + "notes": "Looking for east facing unit" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00488", + "text": "Share competitor comparison sheet", + "due_at": "2024-06-09T00:00:00", + "status": "overdue", + "assigned_to": "user_004" + }, + { + "reminder_id": "REM-00489", + "text": "Call back regarding east-facing unit availability", + "due_at": "2024-06-14T00:00:00", + "status": "completed", + "assigned_to": "user_004" + }, + { + "reminder_id": "REM-00490", + "text": "Confirm site visit for Saturday", + "due_at": "2024-06-27T00:00:00", + "status": "completed", + "assigned_to": "user_004" + } + ], + "qd_overview": { + "current_score": 82.7, + "score_type": "engagement", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 3 + }, + "risk_flags": [ + "competitor_comparison_active" + ], + "metadata": { + "total_interactions": 9, + "total_visits": 2, + "total_opportunities": 2, + "source_confidence": 0.87, + "last_updated": "2024-08-03T00:00:00" + } + }, + { + "client_ref": "PER-0165", + "identity": { + "full_name": "Sneha Mukherjee", + "email": "sneha.mukherjee19@rediffmail.com", + "phone": "+91-95013-59063", + "linkedin": "https://linkedin.com/in/sneha-mukherjee-721", + "persona": [ + "high_intent_buyer" + ] + }, + "account_links": { + "account_id": "ACC-0165", + "account_name": "Unacademy", + "account_type": "developer" + }, + "household": { + "household_id": "HH-0165", + "household_name": "Mukherjee Family", + "size": 4, + "decision_maker_id": "PER-0165" + }, + "relationships": [ + { + "related_person_id": "PER-0165-CO", + "type": "parent", + "strength": 0.73 + } + ], + "active_opportunities": [ + { + "opportunity_id": "OPP-165-1", + "project_id": "PRJ-011", + "unit_id": "PRJ-011-U014", + "stage": "closed_lost", + "value_cr": 10.7, + "probability": 0.26, + "expected_close": "2026-07-10T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-001234", + "channel": "email", + "type": "site_visit", + "happened_at": "2025-12-10T00:00:00", + "summary": "Site Visit via email regarding DTC Sojon" + }, + { + "interaction_id": "INT-001233", + "channel": "whatsapp", + "type": "family_discussion", + "happened_at": "2025-11-18T00:00:00", + "summary": "Family Discussion via whatsapp regarding DTC Sojon" + }, + { + "interaction_id": "INT-001232", + "channel": "web_enquiry", + "type": "initial_enquiry", + "happened_at": "2025-11-08T00:00:00", + "summary": "Initial Enquiry via web_enquiry regarding DTC Sojon" + } + ], + "property_interests": [ + { + "project_id": "PRJ-011", + "unit_id": "PRJ-011-U014", + "interest_level": "very_high", + "configuration": "5 BHK", + "budget_range": "8.56 - 12.84", + "timeline": "6_months", + "financing": "combined", + "notes": "Comparing with competitor projects" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00494", + "text": "Confirm site visit for Saturday", + "due_at": "2025-11-15T00:00:00", + "status": "completed", + "assigned_to": "user_003" + } + ], + "qd_overview": { + "current_score": 83.8, + "score_type": "urgency", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 3 + }, + "risk_flags": [], + "metadata": { + "total_interactions": 3, + "total_visits": 0, + "total_opportunities": 1, + "source_confidence": 0.9, + "last_updated": "2024-06-27T00:00:00" + } + }, + { + "client_ref": "PER-0165-CO", + "identity": { + "full_name": "Deb Roy", + "email": "deb.roy30@rediffmail.com", + "phone": "+91-96667-79275", + "linkedin": null, + "persona": [ + "co_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [ + { + "related_person_id": "PER-0165", + "type": "parent", + "strength": 0.73 + } + ], + "active_opportunities": [], + "recent_interactions": [], + "property_interests": [], + "tasks_and_reminders": [], + "qd_overview": { + "current_score": 83.5, + "score_type": "financial_qualification", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 2 + }, + "risk_flags": [ + "slow_response_pattern" + ], + "metadata": { + "total_interactions": 0, + "total_visits": 0, + "total_opportunities": 0, + "source_confidence": 0.85, + "last_updated": "2026-04-18T00:00:00" + } + }, + { + "client_ref": "PER-0166", + "identity": { + "full_name": "Aditya Kumar", + "email": "aditya.kumar64@rediffmail.com", + "phone": "+91-98638-19288", + "linkedin": "https://linkedin.com/in/aditya-kumar-682", + "persona": [ + "broker_referral_chain" + ] + }, + "account_links": { + "account_id": "ACC-0166", + "account_name": "PwC India", + "account_type": "developer" + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-166-1", + "project_id": "PRJ-010", + "unit_id": "PRJ-010-U011", + "stage": "negotiation", + "value_cr": 12.73, + "probability": 0.66, + "expected_close": "2026-05-26T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-001241", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2024-11-05T00:00:00", + "summary": "Site Visit via site_visit regarding Godrej Blue" + }, + { + "interaction_id": "INT-001240", + "channel": "whatsapp", + "type": "document_sharing", + "happened_at": "2024-09-25T00:00:00", + "summary": "Document Sharing via whatsapp regarding Godrej Blue" + }, + { + "interaction_id": "INT-001239", + "channel": "phone_call", + "type": "negotiation", + "happened_at": "2024-09-22T00:00:00", + "summary": "Negotiation via phone_call regarding Godrej Blue" + }, + { + "interaction_id": "INT-001238", + "channel": "whatsapp", + "type": "negotiation", + "happened_at": "2024-09-20T00:00:00", + "summary": "Negotiation via whatsapp regarding Godrej Blue" + }, + { + "interaction_id": "INT-001237", + "channel": "email", + "type": "follow_up", + "happened_at": "2024-09-05T00:00:00", + "summary": "Follow Up via email regarding Godrej Blue" + } + ], + "property_interests": [ + { + "project_id": "PRJ-010", + "unit_id": "PRJ-010-U011", + "interest_level": "very_high", + "configuration": "Villa", + "budget_range": "10.18 - 15.28", + "timeline": "6_months", + "financing": "home_loan", + "notes": "Prefers higher floor" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00495", + "text": "Send home loan documents checklist", + "due_at": "2024-09-10T00:00:00", + "status": "completed", + "assigned_to": "user_001" + }, + { + "reminder_id": "REM-00496", + "text": "Call back regarding east-facing unit availability", + "due_at": "2024-09-26T00:00:00", + "status": "completed", + "assigned_to": "user_001" + }, + { + "reminder_id": "REM-00497", + "text": "Call back regarding east-facing unit availability", + "due_at": "2024-09-24T00:00:00", + "status": "pending", + "assigned_to": "user_001" + } + ], + "qd_overview": { + "current_score": 66.1, + "score_type": "urgency", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 2 + }, + "risk_flags": [ + "competitor_comparison_active" + ], + "metadata": { + "total_interactions": 7, + "total_visits": 1, + "total_opportunities": 1, + "source_confidence": 0.77, + "last_updated": "2025-06-13T00:00:00" + } + }, + { + "client_ref": "PER-0167", + "identity": { + "full_name": "Raj Roy", + "email": "raj.roy80@outlook.com", + "phone": "+91-94816-96944", + "linkedin": "https://linkedin.com/in/raj-roy-999", + "persona": [ + "broker_referral_chain" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-167-1", + "project_id": "PRJ-005", + "unit_id": "PRJ-005-U005", + "stage": "discovery", + "value_cr": 19.27, + "probability": 0.13, + "expected_close": "2026-09-24T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-001245", + "channel": "referral", + "type": "initial_enquiry", + "happened_at": "2025-12-05T00:00:00", + "summary": "Initial Enquiry via referral regarding Siddha Suburbia Bungalow" + }, + { + "interaction_id": "INT-001244", + "channel": "email", + "type": "initial_enquiry", + "happened_at": "2025-10-11T00:00:00", + "summary": "Initial Enquiry via email regarding Siddha Suburbia Bungalow" + }, + { + "interaction_id": "INT-001243", + "channel": "whatsapp", + "type": "document_sharing", + "happened_at": "2025-10-05T00:00:00", + "summary": "Document Sharing via whatsapp regarding Siddha Suburbia Bungalow" + }, + { + "interaction_id": "INT-001242", + "channel": "web_enquiry", + "type": "initial_enquiry", + "happened_at": "2025-09-24T00:00:00", + "summary": "Initial Enquiry via web_enquiry regarding Siddha Suburbia Bungalow" + } + ], + "property_interests": [ + { + "project_id": "PRJ-005", + "unit_id": "PRJ-005-U005", + "interest_level": "high", + "configuration": "3 BHK", + "budget_range": "15.42 - 23.12", + "timeline": "flexible", + "financing": "undecided", + "notes": "Prefers higher floor" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00498", + "text": "Follow up on Siddha Suburbia Bungalow pricing discussion", + "due_at": "2025-10-01T00:00:00", + "status": "completed", + "assigned_to": "user_005" + }, + { + "reminder_id": "REM-00499", + "text": "Follow up on Siddha Suburbia Bungalow pricing discussion", + "due_at": "2025-10-18T00:00:00", + "status": "completed", + "assigned_to": "user_005" + } + ], + "qd_overview": { + "current_score": 57.6, + "score_type": "engagement", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 3 + }, + "risk_flags": [], + "metadata": { + "total_interactions": 4, + "total_visits": 0, + "total_opportunities": 1, + "source_confidence": 0.76, + "last_updated": "2024-03-15T00:00:00" + } + }, + { + "client_ref": "PER-0168", + "identity": { + "full_name": "Arjun Mukherjee", + "email": "arjun.mukherjee13@yahoo.com", + "phone": "+91-87504-89709", + "linkedin": "https://linkedin.com/in/arjun-mukherjee-980", + "persona": [ + "price_sensitive_aspirational" + ] + }, + "account_links": { + "account_id": "ACC-0168", + "account_name": "ITC Limited", + "account_type": "corporate" + }, + "household": { + "household_id": "HH-0168", + "household_name": "Mukherjee Family", + "size": 5, + "decision_maker_id": "PER-0168" + }, + "relationships": [ + { + "related_person_id": "PER-0168-CO", + "type": "spouse", + "strength": 0.77 + } + ], + "active_opportunities": [ + { + "opportunity_id": "OPP-168-1", + "project_id": "PRJ-014", + "unit_id": "PRJ-014-U001", + "stage": "discovery", + "value_cr": 73.38, + "probability": 0.15, + "expected_close": "2026-09-07T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-001248", + "channel": "whatsapp", + "type": "family_discussion", + "happened_at": "2025-10-25T00:00:00", + "summary": "Family Discussion via whatsapp regarding Ambuja Utpaala" + }, + { + "interaction_id": "INT-001247", + "channel": "phone_call", + "type": "initial_enquiry", + "happened_at": "2025-09-11T00:00:00", + "summary": "Initial Enquiry via phone_call regarding Ambuja Utpaala" + }, + { + "interaction_id": "INT-001246", + "channel": "referral", + "type": "initial_enquiry", + "happened_at": "2025-08-27T00:00:00", + "summary": "Initial Enquiry via referral regarding Ambuja Utpaala" + } + ], + "property_interests": [ + { + "project_id": "PRJ-014", + "unit_id": "PRJ-014-U001", + "interest_level": "high", + "configuration": "5 BHK", + "budget_range": "58.7 - 88.06", + "timeline": "immediate", + "financing": "combined", + "notes": "Prefers higher floor" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00500", + "text": "Update on road widening approval status", + "due_at": "2025-09-03T00:00:00", + "status": "completed", + "assigned_to": "user_005" + }, + { + "reminder_id": "REM-00501", + "text": "Schedule family meeting for final decision", + "due_at": "2025-10-29T00:00:00", + "status": "completed", + "assigned_to": "user_005" + } + ], + "qd_overview": { + "current_score": 66.2, + "score_type": "intent", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 3 + }, + "risk_flags": [ + "decision_maker_not_met" + ], + "metadata": { + "total_interactions": 3, + "total_visits": 0, + "total_opportunities": 1, + "source_confidence": 0.84, + "last_updated": "2026-01-25T00:00:00" + } + }, + { + "client_ref": "PER-0168-CO", + "identity": { + "full_name": "Sneha Saha", + "email": "sneha.saha57@outlook.com", + "phone": "+91-76345-54974", + "linkedin": null, + "persona": [ + "co_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [ + { + "related_person_id": "PER-0168", + "type": "spouse", + "strength": 0.77 + } + ], + "active_opportunities": [], + "recent_interactions": [], + "property_interests": [], + "tasks_and_reminders": [], + "qd_overview": { + "current_score": 55.9, + "score_type": "intent", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 4 + }, + "risk_flags": [ + "slow_response_pattern" + ], + "metadata": { + "total_interactions": 0, + "total_visits": 0, + "total_opportunities": 0, + "source_confidence": 0.85, + "last_updated": "2026-04-18T00:00:00" + } + }, + { + "client_ref": "PER-0169", + "identity": { + "full_name": "Prasenjit Das", + "email": "prasenjit.das87@rediffmail.com", + "phone": "+91-85686-96190", + "linkedin": "https://linkedin.com/in/prasenjit-das-225", + "persona": [ + "family_decision_unit" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": "HH-0169", + "household_name": "Das Family", + "size": 3, + "decision_maker_id": "PER-0169" + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-169-1", + "project_id": "PRJ-010", + "unit_id": "PRJ-010-U011", + "stage": "negotiation", + "value_cr": 12.73, + "probability": 0.17, + "expected_close": "2026-06-22T00:00:00" + }, + { + "opportunity_id": "OPP-169-2", + "project_id": "PRJ-006", + "unit_id": "PRJ-006-U002", + "stage": "prospecting", + "value_cr": 24.02, + "probability": 0.93, + "expected_close": "2026-09-07T00:00:00" + }, + { + "opportunity_id": "OPP-169-3", + "project_id": "PRJ-014", + "unit_id": "PRJ-014-U001", + "stage": "negotiation", + "value_cr": 73.38, + "probability": 0.34, + "expected_close": "2026-08-24T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-001254", + "channel": "web_enquiry", + "type": "negotiation", + "happened_at": "2025-03-20T00:00:00", + "summary": "Negotiation via web_enquiry regarding Merlin Avana" + }, + { + "interaction_id": "INT-001253", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2025-03-14T00:00:00", + "summary": "Site Visit via site_visit regarding Merlin Avana" + }, + { + "interaction_id": "INT-001252", + "channel": "walk_in", + "type": "follow_up", + "happened_at": "2025-03-01T00:00:00", + "summary": "Follow Up via walk_in regarding Merlin Avana" + }, + { + "interaction_id": "INT-001251", + "channel": "whatsapp", + "type": "price_discussion", + "happened_at": "2025-01-26T00:00:00", + "summary": "Price Discussion via whatsapp regarding Merlin Avana" + }, + { + "interaction_id": "INT-001250", + "channel": "phone_call", + "type": "site_visit", + "happened_at": "2025-01-20T00:00:00", + "summary": "Site Visit via phone_call regarding Merlin Avana" + } + ], + "property_interests": [ + { + "project_id": "PRJ-010", + "unit_id": "PRJ-010-U011", + "interest_level": "medium", + "configuration": "Villa", + "budget_range": "10.18 - 15.28", + "timeline": "6_months", + "financing": "home_loan", + "notes": "Looking for east facing unit" + }, + { + "project_id": "PRJ-006", + "unit_id": "PRJ-006-U002", + "interest_level": "very_high", + "configuration": "Duplex", + "budget_range": "19.22 - 28.82", + "timeline": "immediate", + "financing": "cash", + "notes": "Wants ready to move in" + }, + { + "project_id": "PRJ-014", + "unit_id": "PRJ-014-U001", + "interest_level": "low", + "configuration": "5 BHK", + "budget_range": "58.7 - 88.06", + "timeline": "immediate", + "financing": "combined", + "notes": "Comparing with competitor projects" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00502", + "text": "Follow up on Merlin Avana pricing discussion", + "due_at": "2025-03-02T00:00:00", + "status": "completed", + "assigned_to": "user_005" + }, + { + "reminder_id": "REM-00503", + "text": "Schedule family meeting for final decision", + "due_at": "2025-03-26T00:00:00", + "status": "completed", + "assigned_to": "user_005" + } + ], + "qd_overview": { + "current_score": 86.7, + "score_type": "intent", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 5 + }, + "risk_flags": [ + "slow_response_pattern" + ], + "metadata": { + "total_interactions": 6, + "total_visits": 1, + "total_opportunities": 3, + "source_confidence": 0.9, + "last_updated": "2024-09-13T00:00:00" + } + }, + { + "client_ref": "PER-0170", + "identity": { + "full_name": "Sanjay Verma", + "email": "sanjay.verma66@gmail.com", + "phone": "+91-77354-36965", + "linkedin": "https://linkedin.com/in/sanjay-verma-488", + "persona": [ + "nri_buyer" + ] + }, + "account_links": { + "account_id": "ACC-0170", + "account_name": "Accenture India", + "account_type": "corporate" + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-170-1", + "project_id": "PRJ-003", + "unit_id": "PRJ-003-U010", + "stage": "closed_lost", + "value_cr": 15.57, + "probability": 0.73, + "expected_close": "2026-07-17T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-001263", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2026-04-20T00:00:00", + "summary": "Site Visit via site_visit regarding Atri Aqua" + }, + { + "interaction_id": "INT-001262", + "channel": "whatsapp", + "type": "negotiation", + "happened_at": "2026-04-17T00:00:00", + "summary": "Negotiation via whatsapp regarding Atri Aqua" + }, + { + "interaction_id": "INT-001261", + "channel": "phone_call", + "type": "document_sharing", + "happened_at": "2026-04-15T00:00:00", + "summary": "Document Sharing via phone_call regarding Atri Aqua" + }, + { + "interaction_id": "INT-001260", + "channel": "phone_call", + "type": "site_visit", + "happened_at": "2026-04-05T00:00:00", + "summary": "Site Visit via phone_call regarding Atri Aqua" + }, + { + "interaction_id": "INT-001259", + "channel": "phone_call", + "type": "initial_enquiry", + "happened_at": "2026-03-29T00:00:00", + "summary": "Initial Enquiry via phone_call regarding Atri Aqua" + } + ], + "property_interests": [ + { + "project_id": "PRJ-003", + "unit_id": "PRJ-003-U010", + "interest_level": "low", + "configuration": "4 BHK", + "budget_range": "12.46 - 18.68", + "timeline": "6_months", + "financing": "combined", + "notes": "Looking for east facing unit" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00504", + "text": "Send home loan documents checklist", + "due_at": "2026-03-13T00:00:00", + "status": "overdue", + "assigned_to": "user_003" + }, + { + "reminder_id": "REM-00505", + "text": "Follow up on Atri Aqua pricing discussion", + "due_at": "2026-04-04T00:00:00", + "status": "overdue", + "assigned_to": "user_003" + }, + { + "reminder_id": "REM-00506", + "text": "Share competitor comparison sheet", + "due_at": "2026-04-10T00:00:00", + "status": "completed", + "assigned_to": "user_003" + } + ], + "qd_overview": { + "current_score": 98, + "score_type": "financial_qualification", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 5 + }, + "risk_flags": [], + "metadata": { + "total_interactions": 9, + "total_visits": 1, + "total_opportunities": 1, + "source_confidence": 0.79, + "last_updated": "2025-06-29T00:00:00" + } + }, + { + "client_ref": "PER-0171", + "identity": { + "full_name": "Sonal Bose", + "email": "sonal.bose60@gmail.com", + "phone": "+91-90170-45949", + "linkedin": "https://linkedin.com/in/sonal-bose-470", + "persona": [ + "repeat_visitor" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-171-1", + "project_id": "PRJ-001", + "unit_id": "PRJ-001-U010", + "stage": "closed_lost", + "value_cr": 38.51, + "probability": 0.64, + "expected_close": "2026-10-07T00:00:00" + }, + { + "opportunity_id": "OPP-171-2", + "project_id": "PRJ-010", + "unit_id": "PRJ-010-U012", + "stage": "verbal_commitment", + "value_cr": 19.52, + "probability": 0.91, + "expected_close": "2026-09-07T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-001270", + "channel": "whatsapp", + "type": "negotiation", + "happened_at": "2024-04-04T00:00:00", + "summary": "Negotiation via whatsapp regarding Godrej Blue" + }, + { + "interaction_id": "INT-001269", + "channel": "whatsapp", + "type": "price_discussion", + "happened_at": "2024-04-03T00:00:00", + "summary": "Price Discussion via whatsapp regarding Godrej Blue" + }, + { + "interaction_id": "INT-001268", + "channel": "email", + "type": "negotiation", + "happened_at": "2024-03-10T00:00:00", + "summary": "Negotiation via email regarding Godrej Blue" + }, + { + "interaction_id": "INT-001267", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2024-02-13T00:00:00", + "summary": "Site Visit via site_visit regarding Godrej Blue" + }, + { + "interaction_id": "INT-001266", + "channel": "whatsapp", + "type": "price_discussion", + "happened_at": "2024-02-08T00:00:00", + "summary": "Price Discussion via whatsapp regarding Godrej Blue" + } + ], + "property_interests": [ + { + "project_id": "PRJ-001", + "unit_id": "PRJ-001-U010", + "interest_level": "very_high", + "configuration": "Penthouse", + "budget_range": "30.81 - 46.21", + "timeline": "immediate", + "financing": "cash", + "notes": "Prefers higher floor" + }, + { + "project_id": "PRJ-010", + "unit_id": "PRJ-010-U012", + "interest_level": "high", + "configuration": "Villa", + "budget_range": "15.62 - 23.42", + "timeline": "6_months", + "financing": "combined", + "notes": "Wants ready to move in" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00508", + "text": "Call back regarding east-facing unit availability", + "due_at": "2024-02-17T00:00:00", + "status": "pending", + "assigned_to": "user_003" + }, + { + "reminder_id": "REM-00509", + "text": "Confirm site visit for Saturday", + "due_at": "2024-04-06T00:00:00", + "status": "completed", + "assigned_to": "user_003" + } + ], + "qd_overview": { + "current_score": 61.5, + "score_type": "overall", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 2 + }, + "risk_flags": [], + "metadata": { + "total_interactions": 7, + "total_visits": 1, + "total_opportunities": 2, + "source_confidence": 0.81, + "last_updated": "2026-03-12T00:00:00" + } + }, + { + "client_ref": "PER-0172", + "identity": { + "full_name": "Raj Saha", + "email": "raj.saha93@gmail.com", + "phone": "+91-77624-25000", + "linkedin": "https://linkedin.com/in/raj-saha-770", + "persona": [ + "high_intent_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-172-1", + "project_id": "PRJ-006", + "unit_id": "PRJ-006-U003", + "stage": "verbal_commitment", + "value_cr": 14.7, + "probability": 0.93, + "expected_close": "2026-08-21T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-001275", + "channel": "whatsapp", + "type": "site_visit", + "happened_at": "2024-04-25T00:00:00", + "summary": "Site Visit via whatsapp regarding Merlin Avana" + }, + { + "interaction_id": "INT-001274", + "channel": "whatsapp", + "type": "price_discussion", + "happened_at": "2024-04-05T00:00:00", + "summary": "Price Discussion via whatsapp regarding Merlin Avana" + }, + { + "interaction_id": "INT-001273", + "channel": "whatsapp", + "type": "negotiation", + "happened_at": "2024-04-04T00:00:00", + "summary": "Negotiation via whatsapp regarding Merlin Avana" + }, + { + "interaction_id": "INT-001272", + "channel": "phone_call", + "type": "price_discussion", + "happened_at": "2024-04-03T00:00:00", + "summary": "Price Discussion via phone_call regarding Merlin Avana" + }, + { + "interaction_id": "INT-001271", + "channel": "web_enquiry", + "type": "initial_enquiry", + "happened_at": "2024-03-31T00:00:00", + "summary": "Initial Enquiry via web_enquiry regarding Merlin Avana" + } + ], + "property_interests": [ + { + "project_id": "PRJ-006", + "unit_id": "PRJ-006-U003", + "interest_level": "high", + "configuration": "5 BHK", + "budget_range": "11.76 - 17.64", + "timeline": "immediate", + "financing": "home_loan", + "notes": "Prefers higher floor" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00510", + "text": "Call back regarding east-facing unit availability", + "due_at": "2024-04-05T00:00:00", + "status": "pending", + "assigned_to": "user_003" + } + ], + "qd_overview": { + "current_score": 90.7, + "score_type": "overall", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 4 + }, + "risk_flags": [ + "financing_not_finalized", + "timeline_unclear" + ], + "metadata": { + "total_interactions": 5, + "total_visits": 0, + "total_opportunities": 1, + "source_confidence": 0.76, + "last_updated": "2025-06-02T00:00:00" + } + }, + { + "client_ref": "PER-0173", + "identity": { + "full_name": "Nilesh Banerjee", + "email": "nilesh.banerjee23@hotmail.com", + "phone": "+91-76929-51039", + "linkedin": "https://linkedin.com/in/nilesh-banerjee-623", + "persona": [ + "high_intent_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-173-1", + "project_id": "PRJ-005", + "unit_id": "PRJ-005-U006", + "stage": "negotiation", + "value_cr": 10.06, + "probability": 0.87, + "expected_close": "2026-08-10T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-001287", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2024-10-29T00:00:00", + "summary": "Site Visit via site_visit regarding Siddha Suburbia Bungalow" + }, + { + "interaction_id": "INT-001286", + "channel": "whatsapp", + "type": "price_discussion", + "happened_at": "2024-10-12T00:00:00", + "summary": "Price Discussion via whatsapp regarding Siddha Suburbia Bungalow" + }, + { + "interaction_id": "INT-001285", + "channel": "phone_call", + "type": "price_discussion", + "happened_at": "2024-10-02T00:00:00", + "summary": "Price Discussion via phone_call regarding Siddha Suburbia Bungalow" + }, + { + "interaction_id": "INT-001284", + "channel": "whatsapp", + "type": "document_sharing", + "happened_at": "2024-09-26T00:00:00", + "summary": "Document Sharing via whatsapp regarding Siddha Suburbia Bungalow" + }, + { + "interaction_id": "INT-001283", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2024-09-23T00:00:00", + "summary": "Site Visit via site_visit regarding Siddha Suburbia Bungalow" + } + ], + "property_interests": [ + { + "project_id": "PRJ-005", + "unit_id": "PRJ-005-U006", + "interest_level": "high", + "configuration": "3 BHK", + "budget_range": "8.05 - 12.07", + "timeline": "3_months", + "financing": "undecided", + "notes": "Prefers higher floor" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00511", + "text": "Confirm site visit for Saturday", + "due_at": "2024-08-28T00:00:00", + "status": "completed", + "assigned_to": "user_004" + }, + { + "reminder_id": "REM-00512", + "text": "Follow up on Siddha Suburbia Bungalow pricing discussion", + "due_at": "2024-09-12T00:00:00", + "status": "completed", + "assigned_to": "user_004" + }, + { + "reminder_id": "REM-00513", + "text": "Share competitor comparison sheet", + "due_at": "2024-09-14T00:00:00", + "status": "completed", + "assigned_to": "user_004" + } + ], + "qd_overview": { + "current_score": 98, + "score_type": "overall", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 5 + }, + "risk_flags": [ + "competitor_comparison_active" + ], + "metadata": { + "total_interactions": 12, + "total_visits": 4, + "total_opportunities": 1, + "source_confidence": 0.91, + "last_updated": "2025-06-04T00:00:00" + } + }, + { + "client_ref": "PER-0174", + "identity": { + "full_name": "Deb Kumar", + "email": "deb.kumar62@outlook.com", + "phone": "+91-72611-56135", + "linkedin": "https://linkedin.com/in/deb-kumar-673", + "persona": [ + "price_sensitive_aspirational" + ] + }, + "account_links": { + "account_id": "ACC-0174", + "account_name": "Adani Group", + "account_type": "developer" + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-174-1", + "project_id": "PRJ-014", + "unit_id": "PRJ-014-U005", + "stage": "prospecting", + "value_cr": 4.25, + "probability": 0.69, + "expected_close": "2026-06-05T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-001298", + "channel": "whatsapp", + "type": "follow_up", + "happened_at": "2024-08-01T00:00:00", + "summary": "Follow Up via whatsapp regarding Ambuja Utpaala" + }, + { + "interaction_id": "INT-001297", + "channel": "whatsapp", + "type": "initial_enquiry", + "happened_at": "2024-07-31T00:00:00", + "summary": "Initial Enquiry via whatsapp regarding Ambuja Utpaala" + }, + { + "interaction_id": "INT-001296", + "channel": "whatsapp", + "type": "negotiation", + "happened_at": "2024-07-25T00:00:00", + "summary": "Negotiation via whatsapp regarding Ambuja Utpaala" + }, + { + "interaction_id": "INT-001295", + "channel": "whatsapp", + "type": "family_discussion", + "happened_at": "2024-07-05T00:00:00", + "summary": "Family Discussion via whatsapp regarding Ambuja Utpaala" + }, + { + "interaction_id": "INT-001294", + "channel": "whatsapp", + "type": "family_discussion", + "happened_at": "2024-07-04T00:00:00", + "summary": "Family Discussion via whatsapp regarding Ambuja Utpaala" + } + ], + "property_interests": [ + { + "project_id": "PRJ-014", + "unit_id": "PRJ-014-U005", + "interest_level": "very_high", + "configuration": "2 BHK", + "budget_range": "3.4 - 5.1", + "timeline": "flexible", + "financing": "combined", + "notes": "Needs proximity to school" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00516", + "text": "Send home loan documents checklist", + "due_at": "2024-05-19T00:00:00", + "status": "overdue", + "assigned_to": "user_002" + }, + { + "reminder_id": "REM-00517", + "text": "Call back regarding east-facing unit availability", + "due_at": "2024-05-31T00:00:00", + "status": "completed", + "assigned_to": "user_002" + }, + { + "reminder_id": "REM-00518", + "text": "Call back regarding east-facing unit availability", + "due_at": "2024-06-09T00:00:00", + "status": "completed", + "assigned_to": "user_002" + } + ], + "qd_overview": { + "current_score": 98, + "score_type": "financial_qualification", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 5 + }, + "risk_flags": [], + "metadata": { + "total_interactions": 11, + "total_visits": 0, + "total_opportunities": 1, + "source_confidence": 0.87, + "last_updated": "2025-10-31T00:00:00" + } + }, + { + "client_ref": "PER-0175", + "identity": { + "full_name": "Prasenjit Sen", + "email": "prasenjit.sen53@outlook.com", + "phone": "+91-89381-89791", + "linkedin": "https://linkedin.com/in/prasenjit-sen-731", + "persona": [ + "nri_buyer" + ] + }, + "account_links": { + "account_id": "ACC-0175", + "account_name": "Amazon India", + "account_type": "developer" + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-175-1", + "project_id": "PRJ-010", + "unit_id": "PRJ-010-U012", + "stage": "closed_won", + "value_cr": 19.52, + "probability": 0.34, + "expected_close": "2026-08-24T00:00:00" + }, + { + "opportunity_id": "OPP-175-2", + "project_id": "PRJ-012", + "unit_id": "PRJ-012-U001", + "stage": "closed_won", + "value_cr": 20.23, + "probability": 0.54, + "expected_close": "2026-10-12T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-001310", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2025-01-19T00:00:00", + "summary": "Site Visit via site_visit regarding Godrej Blue" + }, + { + "interaction_id": "INT-001309", + "channel": "whatsapp", + "type": "document_sharing", + "happened_at": "2025-01-12T00:00:00", + "summary": "Document Sharing via whatsapp regarding Godrej Blue" + }, + { + "interaction_id": "INT-001308", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2025-01-11T00:00:00", + "summary": "Site Visit via site_visit regarding Godrej Blue" + }, + { + "interaction_id": "INT-001307", + "channel": "phone_call", + "type": "site_visit", + "happened_at": "2025-01-10T00:00:00", + "summary": "Site Visit via phone_call regarding Godrej Blue" + }, + { + "interaction_id": "INT-001306", + "channel": "whatsapp", + "type": "site_visit", + "happened_at": "2025-01-04T00:00:00", + "summary": "Site Visit via whatsapp regarding Godrej Blue" + } + ], + "property_interests": [ + { + "project_id": "PRJ-010", + "unit_id": "PRJ-010-U012", + "interest_level": "medium", + "configuration": "Villa", + "budget_range": "15.62 - 23.42", + "timeline": "3_months", + "financing": "cash", + "notes": "Waiting for festive season offer" + }, + { + "project_id": "PRJ-012", + "unit_id": "PRJ-012-U001", + "interest_level": "high", + "configuration": "4 BHK", + "budget_range": "16.18 - 24.28", + "timeline": "immediate", + "financing": "combined", + "notes": "Prefers higher floor" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00523", + "text": "Call back regarding east-facing unit availability", + "due_at": "2024-11-07T00:00:00", + "status": "pending", + "assigned_to": "user_005" + }, + { + "reminder_id": "REM-00524", + "text": "Send revised payment plan", + "due_at": "2024-11-30T00:00:00", + "status": "completed", + "assigned_to": "user_005" + }, + { + "reminder_id": "REM-00525", + "text": "Send revised payment plan", + "due_at": "2024-12-27T00:00:00", + "status": "completed", + "assigned_to": "user_005" + } + ], + "qd_overview": { + "current_score": 95.0, + "score_type": "intent", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 4 + }, + "risk_flags": [ + "decision_maker_not_met" + ], + "metadata": { + "total_interactions": 12, + "total_visits": 2, + "total_opportunities": 2, + "source_confidence": 0.77, + "last_updated": "2024-02-16T00:00:00" + } + }, + { + "client_ref": "PER-0176", + "identity": { + "full_name": "Neha Reddy", + "email": "neha.reddy66@yahoo.com", + "phone": "+91-99011-32193", + "linkedin": "https://linkedin.com/in/neha-reddy-395", + "persona": [ + "high_intent_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-176-1", + "project_id": "PRJ-012", + "unit_id": "PRJ-012-U004", + "stage": "site_visit", + "value_cr": 10.9, + "probability": 0.81, + "expected_close": "2026-08-01T00:00:00" + }, + { + "opportunity_id": "OPP-176-2", + "project_id": "PRJ-005", + "unit_id": "PRJ-005-U005", + "stage": "site_visit", + "value_cr": 19.27, + "probability": 0.94, + "expected_close": "2026-06-16T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-001315", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2026-02-09T00:00:00", + "summary": "Site Visit via site_visit regarding Siddha Suburbia Bungalow" + }, + { + "interaction_id": "INT-001314", + "channel": "phone_call", + "type": "initial_enquiry", + "happened_at": "2026-02-02T00:00:00", + "summary": "Initial Enquiry via phone_call regarding Siddha Suburbia Bungalow" + }, + { + "interaction_id": "INT-001313", + "channel": "email", + "type": "site_visit", + "happened_at": "2026-01-27T00:00:00", + "summary": "Site Visit via email regarding Siddha Suburbia Bungalow" + }, + { + "interaction_id": "INT-001312", + "channel": "phone_call", + "type": "document_sharing", + "happened_at": "2026-01-02T00:00:00", + "summary": "Document Sharing via phone_call regarding Siddha Suburbia Bungalow" + }, + { + "interaction_id": "INT-001311", + "channel": "walk_in", + "type": "initial_enquiry", + "happened_at": "2025-11-18T00:00:00", + "summary": "Initial Enquiry via walk_in regarding Siddha Suburbia Bungalow" + } + ], + "property_interests": [ + { + "project_id": "PRJ-012", + "unit_id": "PRJ-012-U004", + "interest_level": "low", + "configuration": "Villa", + "budget_range": "8.72 - 13.08", + "timeline": "flexible", + "financing": "undecided", + "notes": "Wants ready to move in" + }, + { + "project_id": "PRJ-005", + "unit_id": "PRJ-005-U005", + "interest_level": "low", + "configuration": "3 BHK", + "budget_range": "15.42 - 23.12", + "timeline": "3_months", + "financing": "cash", + "notes": "Prefers higher floor" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00529", + "text": "Follow up on Siddha Suburbia Bungalow pricing discussion", + "due_at": "2025-11-20T00:00:00", + "status": "overdue", + "assigned_to": "user_005" + }, + { + "reminder_id": "REM-00530", + "text": "Send home loan documents checklist", + "due_at": "2026-01-03T00:00:00", + "status": "overdue", + "assigned_to": "user_005" + }, + { + "reminder_id": "REM-00531", + "text": "Send revised payment plan", + "due_at": "2026-01-31T00:00:00", + "status": "overdue", + "assigned_to": "user_005" + } + ], + "qd_overview": { + "current_score": 93.2, + "score_type": "engagement", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 3 + }, + "risk_flags": [], + "metadata": { + "total_interactions": 5, + "total_visits": 1, + "total_opportunities": 2, + "source_confidence": 0.97, + "last_updated": "2025-09-12T00:00:00" + } + }, + { + "client_ref": "PER-0177", + "identity": { + "full_name": "Neha Kumar", + "email": "neha.kumar90@hotmail.com", + "phone": "+91-92022-19710", + "linkedin": "https://linkedin.com/in/neha-kumar-823", + "persona": [ + "high_intent_buyer" + ] + }, + "account_links": { + "account_id": "ACC-0177", + "account_name": "SRF Limited", + "account_type": "referral_partner" + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-177-1", + "project_id": "PRJ-003", + "unit_id": "PRJ-003-U011", + "stage": "site_visit", + "value_cr": 3.86, + "probability": 0.72, + "expected_close": "2026-07-29T00:00:00" + }, + { + "opportunity_id": "OPP-177-2", + "project_id": "PRJ-007", + "unit_id": "PRJ-007-U001", + "stage": "closed_lost", + "value_cr": 6.59, + "probability": 0.57, + "expected_close": "2026-07-10T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-001318", + "channel": "whatsapp", + "type": "initial_enquiry", + "happened_at": "2025-12-21T00:00:00", + "summary": "Initial Enquiry via whatsapp regarding DTC Good Earth" + }, + { + "interaction_id": "INT-001317", + "channel": "whatsapp", + "type": "negotiation", + "happened_at": "2025-11-22T00:00:00", + "summary": "Negotiation via whatsapp regarding DTC Good Earth" + }, + { + "interaction_id": "INT-001316", + "channel": "web_enquiry", + "type": "initial_enquiry", + "happened_at": "2025-11-08T00:00:00", + "summary": "Initial Enquiry via web_enquiry regarding DTC Good Earth" + } + ], + "property_interests": [ + { + "project_id": "PRJ-003", + "unit_id": "PRJ-003-U011", + "interest_level": "medium", + "configuration": "Duplex", + "budget_range": "3.09 - 4.63", + "timeline": "immediate", + "financing": "home_loan", + "notes": "Looking for east facing unit" + }, + { + "project_id": "PRJ-007", + "unit_id": "PRJ-007-U001", + "interest_level": "medium", + "configuration": "Duplex", + "budget_range": "5.27 - 7.91", + "timeline": "immediate", + "financing": "undecided", + "notes": "Waiting for festive season offer" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00532", + "text": "Call back regarding east-facing unit availability", + "due_at": "2025-11-23T00:00:00", + "status": "completed", + "assigned_to": "user_004" + } + ], + "qd_overview": { + "current_score": 69.0, + "score_type": "overall", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 5 + }, + "risk_flags": [ + "price_sensitivity_high" + ], + "metadata": { + "total_interactions": 3, + "total_visits": 0, + "total_opportunities": 2, + "source_confidence": 0.91, + "last_updated": "2025-03-19T00:00:00" + } + }, + { + "client_ref": "PER-0178", + "identity": { + "full_name": "Meera Patel", + "email": "meera.patel91@outlook.com", + "phone": "+91-85867-79528", + "linkedin": "https://linkedin.com/in/meera-patel-772", + "persona": [ + "slow_burn_investor" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-178-1", + "project_id": "PRJ-007", + "unit_id": "PRJ-007-U017", + "stage": "proposal", + "value_cr": 7.14, + "probability": 0.12, + "expected_close": "2026-07-25T00:00:00" + }, + { + "opportunity_id": "OPP-178-2", + "project_id": "PRJ-013", + "unit_id": "PRJ-013-U007", + "stage": "negotiation", + "value_cr": 38.85, + "probability": 0.67, + "expected_close": "2026-08-31T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-001333", + "channel": "whatsapp", + "type": "family_discussion", + "happened_at": "2025-08-14T00:00:00", + "summary": "Family Discussion via whatsapp regarding DTC Good Earth" + }, + { + "interaction_id": "INT-001332", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2025-08-09T00:00:00", + "summary": "Site Visit via site_visit regarding DTC Good Earth" + }, + { + "interaction_id": "INT-001331", + "channel": "whatsapp", + "type": "site_visit", + "happened_at": "2025-08-02T00:00:00", + "summary": "Site Visit via whatsapp regarding DTC Good Earth" + }, + { + "interaction_id": "INT-001330", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2025-07-31T00:00:00", + "summary": "Site Visit via site_visit regarding DTC Good Earth" + }, + { + "interaction_id": "INT-001329", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2025-07-22T00:00:00", + "summary": "Site Visit via site_visit regarding DTC Good Earth" + } + ], + "property_interests": [ + { + "project_id": "PRJ-007", + "unit_id": "PRJ-007-U017", + "interest_level": "medium", + "configuration": "Villa", + "budget_range": "5.71 - 8.57", + "timeline": "flexible", + "financing": "cash", + "notes": "Comparing with competitor projects" + }, + { + "project_id": "PRJ-013", + "unit_id": "PRJ-013-U007", + "interest_level": "very_high", + "configuration": "5 BHK", + "budget_range": "31.08 - 46.62", + "timeline": "flexible", + "financing": "undecided", + "notes": "Prefers higher floor" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00533", + "text": "Schedule family meeting for final decision", + "due_at": "2025-05-23T00:00:00", + "status": "completed", + "assigned_to": "user_001" + }, + { + "reminder_id": "REM-00534", + "text": "Send home loan documents checklist", + "due_at": "2025-06-18T00:00:00", + "status": "pending", + "assigned_to": "user_001" + }, + { + "reminder_id": "REM-00535", + "text": "Confirm site visit for Saturday", + "due_at": "2025-06-21T00:00:00", + "status": "overdue", + "assigned_to": "user_001" + } + ], + "qd_overview": { + "current_score": 85.8, + "score_type": "intent", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 2 + }, + "risk_flags": [ + "decision_maker_not_met" + ], + "metadata": { + "total_interactions": 15, + "total_visits": 5, + "total_opportunities": 2, + "source_confidence": 0.97, + "last_updated": "2024-08-25T00:00:00" + } + }, + { + "client_ref": "PER-0179", + "identity": { + "full_name": "Tanvi Patel", + "email": "tanvi.patel53@gmail.com", + "phone": "+91-80109-68672", + "linkedin": "https://linkedin.com/in/tanvi-patel-519", + "persona": [ + "broker_referral_chain" + ] + }, + "account_links": { + "account_id": "ACC-0179", + "account_name": "PwC India", + "account_type": "referral_partner" + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-179-1", + "project_id": "PRJ-014", + "unit_id": "PRJ-014-U001", + "stage": "discovery", + "value_cr": 73.38, + "probability": 0.53, + "expected_close": "2026-09-19T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-001339", + "channel": "phone_call", + "type": "follow_up", + "happened_at": "2024-03-30T00:00:00", + "summary": "Follow Up via phone_call regarding Ambuja Utpaala" + }, + { + "interaction_id": "INT-001338", + "channel": "phone_call", + "type": "family_discussion", + "happened_at": "2024-02-28T00:00:00", + "summary": "Family Discussion via phone_call regarding Ambuja Utpaala" + }, + { + "interaction_id": "INT-001337", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2024-02-25T00:00:00", + "summary": "Site Visit via site_visit regarding Ambuja Utpaala" + }, + { + "interaction_id": "INT-001335", + "channel": "phone_call", + "type": "negotiation", + "happened_at": "2024-02-16T00:00:00", + "summary": "Negotiation via phone_call regarding Ambuja Utpaala" + }, + { + "interaction_id": "INT-001336", + "channel": "email", + "type": "initial_enquiry", + "happened_at": "2024-02-16T00:00:00", + "summary": "Initial Enquiry via email regarding Ambuja Utpaala" + } + ], + "property_interests": [ + { + "project_id": "PRJ-014", + "unit_id": "PRJ-014-U001", + "interest_level": "medium", + "configuration": "5 BHK", + "budget_range": "58.7 - 88.06", + "timeline": "6_months", + "financing": "combined", + "notes": "Looking for east facing unit" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00538", + "text": "Call back regarding east-facing unit availability", + "due_at": "2024-03-02T00:00:00", + "status": "pending", + "assigned_to": "user_005" + }, + { + "reminder_id": "REM-00539", + "text": "Share competitor comparison sheet", + "due_at": "2024-03-31T00:00:00", + "status": "pending", + "assigned_to": "user_005" + } + ], + "qd_overview": { + "current_score": 98, + "score_type": "urgency", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 5 + }, + "risk_flags": [], + "metadata": { + "total_interactions": 6, + "total_visits": 1, + "total_opportunities": 1, + "source_confidence": 0.8, + "last_updated": "2025-07-02T00:00:00" + } + }, + { + "client_ref": "PER-0180", + "identity": { + "full_name": "Rohan Sharma", + "email": "rohan.sharma25@rediffmail.com", + "phone": "+91-91472-62527", + "linkedin": "https://linkedin.com/in/rohan-sharma-234", + "persona": [ + "slow_burn_investor" + ] + }, + "account_links": { + "account_id": "ACC-0180", + "account_name": "Emami", + "account_type": "developer" + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-180-1", + "project_id": "PRJ-012", + "unit_id": "PRJ-012-U001", + "stage": "closed_lost", + "value_cr": 20.23, + "probability": 0.29, + "expected_close": "2026-05-24T00:00:00" + }, + { + "opportunity_id": "OPP-180-2", + "project_id": "PRJ-010", + "unit_id": "PRJ-010-U004", + "stage": "negotiation", + "value_cr": 4.99, + "probability": 0.38, + "expected_close": "2026-06-08T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-001351", + "channel": "whatsapp", + "type": "price_discussion", + "happened_at": "2024-06-30T00:00:00", + "summary": "Price Discussion via whatsapp regarding Godrej Blue" + }, + { + "interaction_id": "INT-001350", + "channel": "whatsapp", + "type": "family_discussion", + "happened_at": "2024-06-21T00:00:00", + "summary": "Family Discussion via whatsapp regarding Godrej Blue" + }, + { + "interaction_id": "INT-001349", + "channel": "whatsapp", + "type": "initial_enquiry", + "happened_at": "2024-06-18T00:00:00", + "summary": "Initial Enquiry via whatsapp regarding Godrej Blue" + }, + { + "interaction_id": "INT-001348", + "channel": "whatsapp", + "type": "site_visit", + "happened_at": "2024-06-09T00:00:00", + "summary": "Site Visit via whatsapp regarding Godrej Blue" + }, + { + "interaction_id": "INT-001347", + "channel": "phone_call", + "type": "follow_up", + "happened_at": "2024-06-08T00:00:00", + "summary": "Follow Up via phone_call regarding Godrej Blue" + } + ], + "property_interests": [ + { + "project_id": "PRJ-012", + "unit_id": "PRJ-012-U001", + "interest_level": "medium", + "configuration": "4 BHK", + "budget_range": "16.18 - 24.28", + "timeline": "flexible", + "financing": "combined", + "notes": "Wants ready to move in" + }, + { + "project_id": "PRJ-010", + "unit_id": "PRJ-010-U004", + "interest_level": "medium", + "configuration": "Penthouse", + "budget_range": "3.99 - 5.99", + "timeline": "3_months", + "financing": "undecided", + "notes": "Comparing with competitor projects" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00540", + "text": "Update on road widening approval status", + "due_at": "2024-04-20T00:00:00", + "status": "completed", + "assigned_to": "user_003" + }, + { + "reminder_id": "REM-00541", + "text": "Send home loan documents checklist", + "due_at": "2024-05-30T00:00:00", + "status": "completed", + "assigned_to": "user_003" + }, + { + "reminder_id": "REM-00542", + "text": "Schedule family meeting for final decision", + "due_at": "2024-05-31T00:00:00", + "status": "pending", + "assigned_to": "user_003" + } + ], + "qd_overview": { + "current_score": 98, + "score_type": "engagement", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 5 + }, + "risk_flags": [ + "slow_response_pattern" + ], + "metadata": { + "total_interactions": 12, + "total_visits": 3, + "total_opportunities": 2, + "source_confidence": 0.94, + "last_updated": "2024-03-27T00:00:00" + } + }, + { + "client_ref": "PER-0181", + "identity": { + "full_name": "Sanjay Saha", + "email": "sanjay.saha70@hotmail.com", + "phone": "+91-93692-84270", + "linkedin": "https://linkedin.com/in/sanjay-saha-878", + "persona": [ + "slow_burn_investor" + ] + }, + "account_links": { + "account_id": "ACC-0181", + "account_name": "Accenture India", + "account_type": "referral_partner" + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-181-1", + "project_id": "PRJ-012", + "unit_id": "PRJ-012-U001", + "stage": "site_visit", + "value_cr": 20.23, + "probability": 0.27, + "expected_close": "2026-06-16T00:00:00" + }, + { + "opportunity_id": "OPP-181-2", + "project_id": "PRJ-013", + "unit_id": "PRJ-013-U013", + "stage": "closed_lost", + "value_cr": 11.61, + "probability": 0.22, + "expected_close": "2026-10-05T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-001363", + "channel": "whatsapp", + "type": "document_sharing", + "happened_at": "2025-12-03T00:00:00", + "summary": "Document Sharing via whatsapp regarding Godrej Elevate" + }, + { + "interaction_id": "INT-001364", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2025-12-03T00:00:00", + "summary": "Site Visit via site_visit regarding Godrej Elevate" + }, + { + "interaction_id": "INT-001362", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2025-11-29T00:00:00", + "summary": "Site Visit via site_visit regarding Godrej Elevate" + }, + { + "interaction_id": "INT-001361", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2025-11-01T00:00:00", + "summary": "Site Visit via site_visit regarding Godrej Elevate" + }, + { + "interaction_id": "INT-001360", + "channel": "whatsapp", + "type": "initial_enquiry", + "happened_at": "2025-10-27T00:00:00", + "summary": "Initial Enquiry via whatsapp regarding Godrej Elevate" + } + ], + "property_interests": [ + { + "project_id": "PRJ-012", + "unit_id": "PRJ-012-U001", + "interest_level": "very_high", + "configuration": "4 BHK", + "budget_range": "16.18 - 24.28", + "timeline": "flexible", + "financing": "home_loan", + "notes": "Waiting for festive season offer" + }, + { + "project_id": "PRJ-013", + "unit_id": "PRJ-013-U013", + "interest_level": "very_high", + "configuration": "Penthouse", + "budget_range": "9.29 - 13.93", + "timeline": "immediate", + "financing": "combined", + "notes": "Looking for east facing unit" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00543", + "text": "Send revised payment plan", + "due_at": "2025-09-19T00:00:00", + "status": "completed", + "assigned_to": "user_005" + }, + { + "reminder_id": "REM-00544", + "text": "Call back regarding east-facing unit availability", + "due_at": "2025-10-20T00:00:00", + "status": "completed", + "assigned_to": "user_005" + }, + { + "reminder_id": "REM-00545", + "text": "Schedule family meeting for final decision", + "due_at": "2025-12-01T00:00:00", + "status": "completed", + "assigned_to": "user_005" + } + ], + "qd_overview": { + "current_score": 82.2, + "score_type": "overall", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 3 + }, + "risk_flags": [ + "financing_not_finalized", + "timeline_unclear" + ], + "metadata": { + "total_interactions": 13, + "total_visits": 3, + "total_opportunities": 2, + "source_confidence": 0.8, + "last_updated": "2025-05-20T00:00:00" + } + }, + { + "client_ref": "PER-0182", + "identity": { + "full_name": "Neha Nair", + "email": "neha.nair51@hotmail.com", + "phone": "+91-99148-58710", + "linkedin": "https://linkedin.com/in/neha-nair-677", + "persona": [ + "nri_buyer" + ] + }, + "account_links": { + "account_id": "ACC-0182", + "account_name": "Reliance Industries", + "account_type": "referral_partner" + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-182-1", + "project_id": "PRJ-004", + "unit_id": "PRJ-004-U019", + "stage": "discovery", + "value_cr": 22.28, + "probability": 0.56, + "expected_close": "2026-08-10T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-001369", + "channel": "web_enquiry", + "type": "price_discussion", + "happened_at": "2025-02-19T00:00:00", + "summary": "Price Discussion via web_enquiry regarding Atri Surya Toron" + }, + { + "interaction_id": "INT-001368", + "channel": "email", + "type": "price_discussion", + "happened_at": "2025-01-01T00:00:00", + "summary": "Price Discussion via email regarding Atri Surya Toron" + }, + { + "interaction_id": "INT-001367", + "channel": "whatsapp", + "type": "price_discussion", + "happened_at": "2024-12-26T00:00:00", + "summary": "Price Discussion via whatsapp regarding Atri Surya Toron" + }, + { + "interaction_id": "INT-001366", + "channel": "whatsapp", + "type": "site_visit", + "happened_at": "2024-12-15T00:00:00", + "summary": "Site Visit via whatsapp regarding Atri Surya Toron" + }, + { + "interaction_id": "INT-001365", + "channel": "web_enquiry", + "type": "initial_enquiry", + "happened_at": "2024-12-09T00:00:00", + "summary": "Initial Enquiry via web_enquiry regarding Atri Surya Toron" + } + ], + "property_interests": [ + { + "project_id": "PRJ-004", + "unit_id": "PRJ-004-U019", + "interest_level": "low", + "configuration": "Penthouse", + "budget_range": "17.82 - 26.74", + "timeline": "flexible", + "financing": "home_loan", + "notes": "Looking for east facing unit" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00547", + "text": "Follow up on Atri Surya Toron pricing discussion", + "due_at": "2024-12-12T00:00:00", + "status": "completed", + "assigned_to": "user_001" + }, + { + "reminder_id": "REM-00548", + "text": "Confirm site visit for Saturday", + "due_at": "2024-12-20T00:00:00", + "status": "pending", + "assigned_to": "user_001" + }, + { + "reminder_id": "REM-00549", + "text": "Schedule family meeting for final decision", + "due_at": "2025-01-02T00:00:00", + "status": "overdue", + "assigned_to": "user_001" + } + ], + "qd_overview": { + "current_score": 74.2, + "score_type": "financial_qualification", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 2 + }, + "risk_flags": [], + "metadata": { + "total_interactions": 5, + "total_visits": 0, + "total_opportunities": 1, + "source_confidence": 0.9, + "last_updated": "2024-10-24T00:00:00" + } + }, + { + "client_ref": "PER-0183", + "identity": { + "full_name": "Rahul Banerjee", + "email": "rahul.banerjee34@outlook.com", + "phone": "+91-79312-65858", + "linkedin": "https://linkedin.com/in/rahul-banerjee-698", + "persona": [ + "slow_burn_investor" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [], + "active_opportunities": [ + { + "opportunity_id": "OPP-183-1", + "project_id": "PRJ-003", + "unit_id": "PRJ-003-U011", + "stage": "prospecting", + "value_cr": 3.86, + "probability": 0.37, + "expected_close": "2026-05-31T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-001384", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2025-10-23T00:00:00", + "summary": "Site Visit via site_visit regarding Atri Aqua" + }, + { + "interaction_id": "INT-001383", + "channel": "phone_call", + "type": "price_discussion", + "happened_at": "2025-10-16T00:00:00", + "summary": "Price Discussion via phone_call regarding Atri Aqua" + }, + { + "interaction_id": "INT-001381", + "channel": "phone_call", + "type": "follow_up", + "happened_at": "2025-10-01T00:00:00", + "summary": "Follow Up via phone_call regarding Atri Aqua" + }, + { + "interaction_id": "INT-001382", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2025-10-01T00:00:00", + "summary": "Site Visit via site_visit regarding Atri Aqua" + }, + { + "interaction_id": "INT-001380", + "channel": "whatsapp", + "type": "family_discussion", + "happened_at": "2025-09-26T00:00:00", + "summary": "Family Discussion via whatsapp regarding Atri Aqua" + } + ], + "property_interests": [ + { + "project_id": "PRJ-003", + "unit_id": "PRJ-003-U011", + "interest_level": "very_high", + "configuration": "Duplex", + "budget_range": "3.09 - 4.63", + "timeline": "flexible", + "financing": "undecided", + "notes": "Prefers higher floor" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00551", + "text": "Confirm site visit for Saturday", + "due_at": "2025-08-09T00:00:00", + "status": "completed", + "assigned_to": "user_001" + }, + { + "reminder_id": "REM-00552", + "text": "Schedule family meeting for final decision", + "due_at": "2025-09-03T00:00:00", + "status": "completed", + "assigned_to": "user_001" + }, + { + "reminder_id": "REM-00553", + "text": "Follow up on Atri Aqua pricing discussion", + "due_at": "2025-09-05T00:00:00", + "status": "completed", + "assigned_to": "user_001" + } + ], + "qd_overview": { + "current_score": 98, + "score_type": "intent", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 3 + }, + "risk_flags": [ + "slow_response_pattern" + ], + "metadata": { + "total_interactions": 15, + "total_visits": 3, + "total_opportunities": 1, + "source_confidence": 0.92, + "last_updated": "2025-10-01T00:00:00" + } + }, + { + "client_ref": "PER-0184", + "identity": { + "full_name": "Deb Pillai", + "email": "deb.pillai60@rediffmail.com", + "phone": "+91-95359-60532", + "linkedin": "https://linkedin.com/in/deb-pillai-823", + "persona": [ + "slow_burn_investor" + ] + }, + "account_links": { + "account_id": "ACC-0184", + "account_name": "Deloitte India", + "account_type": "individual_business" + }, + "household": { + "household_id": "HH-0184", + "household_name": "Pillai Family", + "size": 5, + "decision_maker_id": "PER-0184" + }, + "relationships": [ + { + "related_person_id": "PER-0184-CO", + "type": "spouse", + "strength": 0.96 + } + ], + "active_opportunities": [ + { + "opportunity_id": "OPP-184-1", + "project_id": "PRJ-010", + "unit_id": "PRJ-010-U010", + "stage": "prospecting", + "value_cr": 10.62, + "probability": 0.65, + "expected_close": "2026-09-17T00:00:00" + } + ], + "recent_interactions": [ + { + "interaction_id": "INT-001395", + "channel": "phone_call", + "type": "site_visit", + "happened_at": "2026-02-10T00:00:00", + "summary": "Site Visit via phone_call regarding Godrej Blue" + }, + { + "interaction_id": "INT-001394", + "channel": "phone_call", + "type": "price_discussion", + "happened_at": "2026-01-29T00:00:00", + "summary": "Price Discussion via phone_call regarding Godrej Blue" + }, + { + "interaction_id": "INT-001393", + "channel": "phone_call", + "type": "document_sharing", + "happened_at": "2026-01-24T00:00:00", + "summary": "Document Sharing via phone_call regarding Godrej Blue" + }, + { + "interaction_id": "INT-001392", + "channel": "whatsapp", + "type": "price_discussion", + "happened_at": "2026-01-15T00:00:00", + "summary": "Price Discussion via whatsapp regarding Godrej Blue" + }, + { + "interaction_id": "INT-001391", + "channel": "site_visit", + "type": "site_visit", + "happened_at": "2026-01-11T00:00:00", + "summary": "Site Visit via site_visit regarding Godrej Blue" + } + ], + "property_interests": [ + { + "project_id": "PRJ-010", + "unit_id": "PRJ-010-U010", + "interest_level": "low", + "configuration": "Duplex", + "budget_range": "8.5 - 12.74", + "timeline": "6_months", + "financing": "combined", + "notes": "Waiting for festive season offer" + } + ], + "tasks_and_reminders": [ + { + "reminder_id": "REM-00557", + "text": "Call back regarding east-facing unit availability", + "due_at": "2025-12-23T00:00:00", + "status": "pending", + "assigned_to": "user_002" + }, + { + "reminder_id": "REM-00558", + "text": "Follow up on Godrej Blue pricing discussion", + "due_at": "2026-01-13T00:00:00", + "status": "completed", + "assigned_to": "user_002" + }, + { + "reminder_id": "REM-00559", + "text": "Share competitor comparison sheet", + "due_at": "2026-01-20T00:00:00", + "status": "completed", + "assigned_to": "user_002" + } + ], + "qd_overview": { + "current_score": 92.3, + "score_type": "engagement", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 4 + }, + "risk_flags": [ + "competitor_comparison_active" + ], + "metadata": { + "total_interactions": 11, + "total_visits": 2, + "total_opportunities": 1, + "source_confidence": 0.86, + "last_updated": "2025-06-18T00:00:00" + } + }, + { + "client_ref": "PER-0184-CO", + "identity": { + "full_name": "Neha Sen", + "email": "neha.sen81@rediffmail.com", + "phone": "+91-91367-55636", + "linkedin": null, + "persona": [ + "co_buyer" + ] + }, + "account_links": { + "account_id": null, + "account_name": null, + "account_type": null + }, + "household": { + "household_id": null, + "household_name": null, + "size": null, + "decision_maker_id": null + }, + "relationships": [ + { + "related_person_id": "PER-0184", + "type": "spouse", + "strength": 0.96 + } + ], + "active_opportunities": [], + "recent_interactions": [], + "property_interests": [], + "tasks_and_reminders": [], + "qd_overview": { + "current_score": 78.4, + "score_type": "overall", + "computed_at": "2026-04-18T00:00:00", + "evidence_count": 4 + }, + "risk_flags": [ + "financing_not_finalized", + "timeline_unclear" + ], + "metadata": { + "total_interactions": 0, + "total_visits": 0, + "total_opportunities": 0, + "source_confidence": 0.85, + "last_updated": "2026-04-18T00:00:00" + } + } +] \ No newline at end of file diff --git a/db assets/synthetic_crm_v1/json/import_mapping_manifest_example.json b/db assets/synthetic_crm_v1/json/import_mapping_manifest_example.json new file mode 100644 index 00000000..70faf068 --- /dev/null +++ b/db assets/synthetic_crm_v1/json/import_mapping_manifest_example.json @@ -0,0 +1,50 @@ +{ + "manifest_id": "MANIFEST-001", + "batch_id": "BATCH-001", + "source_profile": "salesforce_export", + "uploaded_filename": "salesforce_contacts_2026_04_01.csv", + "uploaded_at": "2026-04-01T10:30:00", + "column_mappings": { + "FirstName": { + "target_field": "crm_people.first_name", + "confidence": 0.99 + }, + "LastName": { + "target_field": "crm_people.last_name", + "confidence": 0.99 + }, + "Email": { + "target_field": "crm_people.primary_email", + "confidence": 0.98 + }, + "Phone": { + "target_field": "crm_people.primary_phone", + "confidence": 0.97 + }, + "Company": { + "target_field": "crm_accounts.account_name", + "confidence": 0.85 + }, + "Title": { + "target_field": "crm_people.designation", + "confidence": 0.72 + }, + "LeadSource": { + "target_field": "crm_leads.source_system", + "confidence": 0.9 + }, + "Status": { + "target_field": "crm_leads.status", + "confidence": 0.88 + } + }, + "unmapped_columns": [ + "Description", + "DoNotCall", + "CreatedById" + ], + "resolver_notes": "Title field contains mixed job titles and seniority levels. Recommend enrichment pass.", + "record_count": 250, + "mapped_count": 218, + "unresolved_count": 32 +} \ No newline at end of file diff --git a/db assets/synthetic_crm_v1/json/relationship_graph_map.json b/db assets/synthetic_crm_v1/json/relationship_graph_map.json new file mode 100644 index 00000000..c4c9261a --- /dev/null +++ b/db assets/synthetic_crm_v1/json/relationship_graph_map.json @@ -0,0 +1,27 @@ +{ + "generated_at": "2026-04-18T00:00:00", + "total_nodes": 341, + "total_edges": 91, + "node_types": { + "primary_clients": 250, + "co_buyers": 91, + "accounts": 153, + "households": 118 + }, + "edge_types": { + "spouse": 25, + "parent": 16, + "sibling": 21, + "business_partner": 29 + }, + "sample_paths": [ + { + "path": "PER-0001 -> HH-0001 -> PER-0001-CO", + "description": "Primary contact belongs to household with co-buyer" + }, + { + "path": "PER-0001 -> LED-0001 -> OPP-1-1 -> PRJ-001", + "description": "Client to lead to opportunity to project" + } + ] +} \ No newline at end of file diff --git a/db assets/synthetic_crm_v1/json/transcript_sidecars.json b/db assets/synthetic_crm_v1/json/transcript_sidecars.json new file mode 100644 index 00000000..eb892482 --- /dev/null +++ b/db assets/synthetic_crm_v1/json/transcript_sidecars.json @@ -0,0 +1,1342 @@ +[ + { + "transcript_id": "TRX-00001", + "call_id": "CAL-00001", + "language": "en-IN", + "confidence": 0.86, + "speaker_segments": [ + { + "speaker": "agent", + "text": "Vikram: Hello Rohan, this is Vikram from Velocity regarding DTC Sojon.", + "start": 0.0, + "end": 3.48 + }, + { + "speaker": "client", + "text": "Rohan: Yes, tell me.", + "start": 4.78, + "end": 7.11 + }, + { + "speaker": "agent", + "text": "Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat?", + "start": 8.06, + "end": 11.61 + }, + { + "speaker": "client", + "text": "Rohan: Yes, what's the price?", + "start": 12.68, + "end": 20.57 + }, + { + "speaker": "agent", + "text": "Vikram: Starting at 3.86 Cr for 3 BHK. Possession by August 2026.", + "start": 22.53, + "end": 28.96 + }, + { + "speaker": "client", + "text": "Rohan: That's good. Send me the details on WhatsApp.", + "start": 30.07, + "end": 33.18 + }, + { + "speaker": "agent", + "text": "Vikram: Done. When can you visit?", + "start": 33.82, + "end": 39.42 + }, + { + "speaker": "client", + "text": "Rohan: This weekend.", + "start": 40.07, + "end": 44.07 + }, + { + "speaker": "agent", + "text": "Vikram: I'll block Saturday 11 AM for you.", + "start": 45.9, + "end": 52.71 + } + ], + "metadata": { + "duration_seconds": 158, + "processing_engine": "whisper-v3-indian-english", + "noise_level": "low" + } + }, + { + "transcript_id": "TRX-00002", + "call_id": "CAL-00002", + "language": "en-IN", + "confidence": 0.85, + "speaker_segments": [ + { + "speaker": "agent", + "text": "Priya: Hello Rohan, this is Priya from Velocity regarding DTC Sojon.", + "start": 0.0, + "end": 7.15 + }, + { + "speaker": "client", + "text": "Rohan: Hi, I was about to call you.", + "start": 8.64, + "end": 10.94 + }, + { + "speaker": "agent", + "text": "Priya: Great minds! What were you thinking?", + "start": 11.44, + "end": 18.77 + }, + { + "speaker": "client", + "text": "Rohan: The price is still high. Can you match Atri Surya Toron's rate?", + "start": 19.36, + "end": 23.84 + }, + { + "speaker": "agent", + "text": "Priya: I understand. Let me see what best I can do. Are you flexible on floor preference?", + "start": 25.67, + "end": 30.22 + }, + { + "speaker": "client", + "text": "Rohan: Not really. I want mid-floor east facing.", + "start": 30.74, + "end": 36.26 + }, + { + "speaker": "agent", + "text": "Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount.", + "start": 37.28, + "end": 43.41 + }, + { + "speaker": "client", + "text": "Rohan: Please do. We're ready to close quickly.", + "start": 44.33, + "end": 47.29 + }, + { + "speaker": "agent", + "text": "Priya: Will revert by tomorrow 2 PM.", + "start": 48.12, + "end": 51.53 + } + ], + "metadata": { + "duration_seconds": 447, + "processing_engine": "whisper-v3-indian-english", + "noise_level": "low" + } + }, + { + "transcript_id": "TRX-00003", + "call_id": "CAL-00003", + "language": "en-IN", + "confidence": 0.93, + "speaker_segments": [ + { + "speaker": "agent", + "text": "Vikram: Hi Debjani, following up on your enquiry for Atri Surya Toron.", + "start": 0.0, + "end": 6.14 + }, + { + "speaker": "client", + "text": "Debjani: Yes, tell me.", + "start": 6.79, + "end": 13.99 + }, + { + "speaker": "agent", + "text": "Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat?", + "start": 14.8, + "end": 17.42 + }, + { + "speaker": "client", + "text": "Debjani: Yes, what's the price?", + "start": 19.4, + "end": 22.72 + }, + { + "speaker": "agent", + "text": "Vikram: Starting at 3.91 Cr for 3 BHK. Possession by June 2026.", + "start": 23.55, + "end": 25.62 + }, + { + "speaker": "client", + "text": "Debjani: That's good. Send me the details on WhatsApp.", + "start": 27.0, + "end": 32.53 + }, + { + "speaker": "agent", + "text": "Vikram: Done. When can you visit?", + "start": 33.7, + "end": 39.38 + }, + { + "speaker": "client", + "text": "Debjani: This weekend.", + "start": 40.02, + "end": 46.49 + }, + { + "speaker": "agent", + "text": "Vikram: I'll block Saturday 11 AM for you.", + "start": 48.4, + "end": 52.06 + } + ], + "metadata": { + "duration_seconds": 404, + "processing_engine": "whisper-v3-indian-english", + "noise_level": "low" + } + }, + { + "transcript_id": "TRX-00004", + "call_id": "CAL-00004", + "language": "en-IN", + "confidence": 0.89, + "speaker_segments": [ + { + "speaker": "agent", + "text": "Ananya: Hello Debjani, this is Ananya from Velocity regarding Atri Surya Toron.", + "start": 0.0, + "end": 6.11 + }, + { + "speaker": "client", + "text": "Debjani: Yes, tell me.", + "start": 7.95, + "end": 11.22 + }, + { + "speaker": "agent", + "text": "Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat?", + "start": 11.95, + "end": 18.82 + }, + { + "speaker": "client", + "text": "Debjani: Yes, what's the price?", + "start": 19.72, + "end": 24.91 + }, + { + "speaker": "agent", + "text": "Ananya: Starting at 5.35 Cr for 3 BHK. Possession by October 2026.", + "start": 26.76, + "end": 34.67 + }, + { + "speaker": "client", + "text": "Debjani: That's good. Send me the details on WhatsApp.", + "start": 36.49, + "end": 42.46 + }, + { + "speaker": "agent", + "text": "Ananya: Done. When can you visit?", + "start": 43.28, + "end": 50.3 + }, + { + "speaker": "client", + "text": "Debjani: This weekend.", + "start": 51.47, + "end": 59.03 + }, + { + "speaker": "agent", + "text": "Ananya: I'll block Saturday 11 AM for you.", + "start": 60.72, + "end": 64.5 + } + ], + "metadata": { + "duration_seconds": 217, + "processing_engine": "whisper-v3-indian-english", + "noise_level": "low" + } + }, + { + "transcript_id": "TRX-00005", + "call_id": "CAL-00008", + "language": "en-IN", + "confidence": 0.93, + "speaker_segments": [ + { + "speaker": "agent", + "text": "Vikram: Good morning Nilesh, wanted to share some updates about Ambuja Utpaala.", + "start": 0.0, + "end": 3.23 + }, + { + "speaker": "client", + "text": "Nilesh: Yes, tell me.", + "start": 4.05, + "end": 7.22 + }, + { + "speaker": "agent", + "text": "Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Tollygunge?", + "start": 8.51, + "end": 11.24 + }, + { + "speaker": "client", + "text": "Nilesh: Yes, what's the price?", + "start": 12.83, + "end": 15.37 + }, + { + "speaker": "agent", + "text": "Vikram: Starting at 4.46 Cr for 3 BHK. Possession by August 2026.", + "start": 16.94, + "end": 24.21 + }, + { + "speaker": "client", + "text": "Nilesh: That's good. Send me the details on WhatsApp.", + "start": 24.9, + "end": 30.46 + }, + { + "speaker": "agent", + "text": "Vikram: Done. When can you visit?", + "start": 31.9, + "end": 36.33 + }, + { + "speaker": "client", + "text": "Nilesh: This weekend.", + "start": 37.32, + "end": 44.45 + }, + { + "speaker": "agent", + "text": "Vikram: I'll block Saturday 11 AM for you.", + "start": 46.03, + "end": 51.7 + } + ], + "metadata": { + "duration_seconds": 536, + "processing_engine": "whisper-v3-indian-english", + "noise_level": "low" + } + }, + { + "transcript_id": "TRX-00006", + "call_id": "CAL-00009", + "language": "en-IN", + "confidence": 0.83, + "speaker_segments": [ + { + "speaker": "agent", + "text": "Priya: Hi Kunal, following up on your enquiry for Shriram Grand City.", + "start": 0.0, + "end": 5.05 + }, + { + "speaker": "client", + "text": "Kunal: Hi, I was about to call you.", + "start": 5.83, + "end": 12.91 + }, + { + "speaker": "agent", + "text": "Priya: Great minds! What were you thinking?", + "start": 14.05, + "end": 19.78 + }, + { + "speaker": "client", + "text": "Kunal: The price is still high. Can you match Godrej Elevate's rate?", + "start": 21.75, + "end": 29.53 + }, + { + "speaker": "agent", + "text": "Priya: I understand. Let me see what best I can do. Are you flexible on floor preference?", + "start": 30.21, + "end": 36.97 + }, + { + "speaker": "client", + "text": "Kunal: Not really. I want mid-floor east facing.", + "start": 38.95, + "end": 42.37 + }, + { + "speaker": "agent", + "text": "Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount.", + "start": 44.17, + "end": 46.98 + }, + { + "speaker": "client", + "text": "Kunal: Please do. We're ready to close quickly.", + "start": 47.55, + "end": 53.9 + }, + { + "speaker": "agent", + "text": "Priya: Will revert by tomorrow 2 PM.", + "start": 54.48, + "end": 60.64 + } + ], + "metadata": { + "duration_seconds": 823, + "processing_engine": "whisper-v3-indian-english", + "noise_level": "low" + } + }, + { + "transcript_id": "TRX-00007", + "call_id": "CAL-00010", + "language": "en-IN", + "confidence": 0.83, + "speaker_segments": [ + { + "speaker": "agent", + "text": "Vikram: Good morning Kunal, wanted to share some updates about Sugam Prakriti.", + "start": 0.0, + "end": 4.72 + }, + { + "speaker": "client", + "text": "Kunal: Yes, tell me.", + "start": 6.38, + "end": 13.61 + }, + { + "speaker": "agent", + "text": "Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Barasat?", + "start": 15.53, + "end": 17.84 + }, + { + "speaker": "client", + "text": "Kunal: Yes, what's the price?", + "start": 18.89, + "end": 26.26 + }, + { + "speaker": "agent", + "text": "Vikram: Starting at 5.39 Cr for 3 BHK. Possession by August 2026.", + "start": 27.42, + "end": 29.77 + }, + { + "speaker": "client", + "text": "Kunal: That's good. Send me the details on WhatsApp.", + "start": 31.69, + "end": 38.27 + }, + { + "speaker": "agent", + "text": "Vikram: Done. When can you visit?", + "start": 39.38, + "end": 41.5 + }, + { + "speaker": "client", + "text": "Kunal: This weekend.", + "start": 43.2, + "end": 48.95 + }, + { + "speaker": "agent", + "text": "Vikram: I'll block Saturday 11 AM for you.", + "start": 50.16, + "end": 55.55 + } + ], + "metadata": { + "duration_seconds": 444, + "processing_engine": "whisper-v3-indian-english", + "noise_level": "low" + } + }, + { + "transcript_id": "TRX-00008", + "call_id": "CAL-00011", + "language": "en-IN", + "confidence": 0.84, + "speaker_segments": [ + { + "speaker": "agent", + "text": "Priya: Hello Isha, this is Priya from Velocity regarding DTC Sojon.", + "start": 0.0, + "end": 2.86 + }, + { + "speaker": "client", + "text": "Isha: Hi, I was about to call you.", + "start": 4.35, + "end": 8.45 + }, + { + "speaker": "agent", + "text": "Priya: Great minds! What were you thinking?", + "start": 9.96, + "end": 17.2 + }, + { + "speaker": "client", + "text": "Isha: The price is still high. Can you match Siddha Serena's rate?", + "start": 18.25, + "end": 25.87 + }, + { + "speaker": "agent", + "text": "Priya: I understand. Let me see what best I can do. Are you flexible on floor preference?", + "start": 27.4, + "end": 29.84 + }, + { + "speaker": "client", + "text": "Isha: Not really. I want mid-floor east facing.", + "start": 31.31, + "end": 34.15 + }, + { + "speaker": "agent", + "text": "Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount.", + "start": 35.5, + "end": 43.23 + }, + { + "speaker": "client", + "text": "Isha: Please do. We're ready to close quickly.", + "start": 44.56, + "end": 47.97 + }, + { + "speaker": "agent", + "text": "Priya: Will revert by tomorrow 2 PM.", + "start": 49.41, + "end": 56.62 + } + ], + "metadata": { + "duration_seconds": 472, + "processing_engine": "whisper-v3-indian-english", + "noise_level": "low" + } + }, + { + "transcript_id": "TRX-00009", + "call_id": "CAL-00014", + "language": "en-IN", + "confidence": 0.82, + "speaker_segments": [ + { + "speaker": "agent", + "text": "Rahul: Hello Parth, this is Rahul from Velocity regarding DTC Sojon.", + "start": 0.0, + "end": 3.95 + }, + { + "speaker": "client", + "text": "Parth: Hi, I was about to call you.", + "start": 5.13, + "end": 7.78 + }, + { + "speaker": "agent", + "text": "Rahul: Great minds! What were you thinking?", + "start": 9.37, + "end": 16.27 + }, + { + "speaker": "client", + "text": "Parth: The price is still high. Can you match Sugam Prakriti's rate?", + "start": 17.49, + "end": 20.92 + }, + { + "speaker": "agent", + "text": "Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference?", + "start": 22.06, + "end": 29.81 + }, + { + "speaker": "client", + "text": "Parth: Not really. I want mid-floor east facing.", + "start": 30.71, + "end": 37.53 + }, + { + "speaker": "agent", + "text": "Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount.", + "start": 38.45, + "end": 45.11 + }, + { + "speaker": "client", + "text": "Parth: Please do. We're ready to close quickly.", + "start": 45.88, + "end": 52.05 + }, + { + "speaker": "agent", + "text": "Rahul: Will revert by tomorrow 2 PM.", + "start": 53.34, + "end": 60.35 + } + ], + "metadata": { + "duration_seconds": 594, + "processing_engine": "whisper-v3-indian-english", + "noise_level": "low" + } + }, + { + "transcript_id": "TRX-00010", + "call_id": "CAL-00017", + "language": "en-IN", + "confidence": 0.95, + "speaker_segments": [ + { + "speaker": "agent", + "text": "Ananya: Good morning Rahul, wanted to share some updates about Atri Surya Toron.", + "start": 0.0, + "end": 5.46 + }, + { + "speaker": "client", + "text": "Rahul: Yes, tell me.", + "start": 6.45, + "end": 10.7 + }, + { + "speaker": "agent", + "text": "Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat?", + "start": 11.23, + "end": 18.31 + }, + { + "speaker": "client", + "text": "Rahul: Yes, what's the price?", + "start": 20.3, + "end": 22.7 + }, + { + "speaker": "agent", + "text": "Ananya: Starting at 5.76 Cr for 3 BHK. Possession by September 2026.", + "start": 24.31, + "end": 30.6 + }, + { + "speaker": "client", + "text": "Rahul: That's good. Send me the details on WhatsApp.", + "start": 31.96, + "end": 37.46 + }, + { + "speaker": "agent", + "text": "Ananya: Done. When can you visit?", + "start": 39.19, + "end": 41.91 + }, + { + "speaker": "client", + "text": "Rahul: This weekend.", + "start": 42.82, + "end": 46.78 + }, + { + "speaker": "agent", + "text": "Ananya: I'll block Saturday 11 AM for you.", + "start": 47.83, + "end": 51.1 + } + ], + "metadata": { + "duration_seconds": 240, + "processing_engine": "whisper-v3-indian-english", + "noise_level": "medium" + } + }, + { + "transcript_id": "TRX-00011", + "call_id": "CAL-00019", + "language": "en-IN", + "confidence": 0.94, + "speaker_segments": [ + { + "speaker": "agent", + "text": "Vikram: Hello Ananya, this is Vikram from Velocity regarding Atri Aqua.", + "start": 0.0, + "end": 5.48 + }, + { + "speaker": "client", + "text": "Ananya: Hi, I was about to call you.", + "start": 6.34, + "end": 11.62 + }, + { + "speaker": "agent", + "text": "Vikram: Great minds! What were you thinking?", + "start": 12.13, + "end": 15.46 + }, + { + "speaker": "client", + "text": "Ananya: The price is still high. Can you match Siddha Suburbia Bungalow's rate?", + "start": 16.76, + "end": 22.44 + }, + { + "speaker": "agent", + "text": "Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference?", + "start": 24.26, + "end": 29.14 + }, + { + "speaker": "client", + "text": "Ananya: Not really. I want mid-floor east facing.", + "start": 31.13, + "end": 36.58 + }, + { + "speaker": "agent", + "text": "Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount.", + "start": 37.72, + "end": 41.52 + }, + { + "speaker": "client", + "text": "Ananya: Please do. We're ready to close quickly.", + "start": 42.34, + "end": 50.31 + }, + { + "speaker": "agent", + "text": "Vikram: Will revert by tomorrow 2 PM.", + "start": 51.18, + "end": 58.07 + } + ], + "metadata": { + "duration_seconds": 215, + "processing_engine": "whisper-v3-indian-english", + "noise_level": "low" + } + }, + { + "transcript_id": "TRX-00012", + "call_id": "CAL-00023", + "language": "en-IN", + "confidence": 0.94, + "speaker_segments": [ + { + "speaker": "agent", + "text": "Ananya: Hello Rahul, this is Ananya from Velocity regarding Atri Surya Toron.", + "start": 0.0, + "end": 6.3 + }, + { + "speaker": "client", + "text": "Rahul: Yes, tell me.", + "start": 7.36, + "end": 13.55 + }, + { + "speaker": "agent", + "text": "Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat?", + "start": 14.18, + "end": 20.18 + }, + { + "speaker": "client", + "text": "Rahul: Yes, what's the price?", + "start": 20.95, + "end": 28.35 + }, + { + "speaker": "agent", + "text": "Ananya: Starting at 7.75 Cr for 3 BHK. Possession by June 2026.", + "start": 29.39, + "end": 36.55 + }, + { + "speaker": "client", + "text": "Rahul: That's good. Send me the details on WhatsApp.", + "start": 38.19, + "end": 42.1 + }, + { + "speaker": "agent", + "text": "Ananya: Done. When can you visit?", + "start": 43.11, + "end": 50.55 + }, + { + "speaker": "client", + "text": "Rahul: This weekend.", + "start": 51.57, + "end": 57.1 + }, + { + "speaker": "agent", + "text": "Ananya: I'll block Saturday 11 AM for you.", + "start": 58.26, + "end": 62.89 + } + ], + "metadata": { + "duration_seconds": 884, + "processing_engine": "whisper-v3-indian-english", + "noise_level": "low" + } + }, + { + "transcript_id": "TRX-00013", + "call_id": "CAL-00027", + "language": "en-IN", + "confidence": 0.87, + "speaker_segments": [ + { + "speaker": "agent", + "text": "Priya: Hi Asha, following up on your enquiry for Atri Aqua.", + "start": 0.0, + "end": 7.6 + }, + { + "speaker": "client", + "text": "Asha: Yes, tell me.", + "start": 8.53, + "end": 13.79 + }, + { + "speaker": "agent", + "text": "Priya: We have a new tower launch with pre-launch pricing. Are you still looking in New Town?", + "start": 14.59, + "end": 21.49 + }, + { + "speaker": "client", + "text": "Asha: Yes, what's the price?", + "start": 22.44, + "end": 28.75 + }, + { + "speaker": "agent", + "text": "Priya: Starting at 5.18 Cr for 3 BHK. Possession by July 2026.", + "start": 29.33, + "end": 35.95 + }, + { + "speaker": "client", + "text": "Asha: That's good. Send me the details on WhatsApp.", + "start": 36.79, + "end": 38.97 + }, + { + "speaker": "agent", + "text": "Priya: Done. When can you visit?", + "start": 40.44, + "end": 47.37 + }, + { + "speaker": "client", + "text": "Asha: This weekend.", + "start": 49.25, + "end": 53.46 + }, + { + "speaker": "agent", + "text": "Priya: I'll block Saturday 11 AM for you.", + "start": 54.79, + "end": 58.47 + } + ], + "metadata": { + "duration_seconds": 73, + "processing_engine": "whisper-v3-indian-english", + "noise_level": "low" + } + }, + { + "transcript_id": "TRX-00014", + "call_id": "CAL-00028", + "language": "en-IN", + "confidence": 0.86, + "speaker_segments": [ + { + "speaker": "agent", + "text": "Vikram: Hello Meera, this is Vikram from Velocity regarding Siddha Serena.", + "start": 0.0, + "end": 3.45 + }, + { + "speaker": "client", + "text": "Meera: Hi, I was about to call you.", + "start": 5.3, + "end": 8.77 + }, + { + "speaker": "agent", + "text": "Vikram: Great minds! What were you thinking?", + "start": 10.55, + "end": 14.93 + }, + { + "speaker": "client", + "text": "Meera: The price is still high. Can you match Atri Surya Toron's rate?", + "start": 16.62, + "end": 18.66 + }, + { + "speaker": "agent", + "text": "Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference?", + "start": 20.16, + "end": 26.79 + }, + { + "speaker": "client", + "text": "Meera: Not really. I want mid-floor east facing.", + "start": 28.27, + "end": 30.7 + }, + { + "speaker": "agent", + "text": "Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount.", + "start": 32.37, + "end": 37.42 + }, + { + "speaker": "client", + "text": "Meera: Please do. We're ready to close quickly.", + "start": 38.35, + "end": 43.19 + }, + { + "speaker": "agent", + "text": "Vikram: Will revert by tomorrow 2 PM.", + "start": 44.24, + "end": 50.98 + } + ], + "metadata": { + "duration_seconds": 242, + "processing_engine": "whisper-v3-indian-english", + "noise_level": "low" + } + }, + { + "transcript_id": "TRX-00015", + "call_id": "CAL-00030", + "language": "en-IN", + "confidence": 0.84, + "speaker_segments": [ + { + "speaker": "agent", + "text": "Rahul: Hello Kunal, this is Rahul from Velocity regarding Godrej Elevate.", + "start": 0.0, + "end": 2.25 + }, + { + "speaker": "client", + "text": "Kunal: Yes, tell me.", + "start": 3.8, + "end": 10.64 + }, + { + "speaker": "agent", + "text": "Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Dum Dum?", + "start": 12.26, + "end": 16.98 + }, + { + "speaker": "client", + "text": "Kunal: Yes, what's the price?", + "start": 17.56, + "end": 19.77 + }, + { + "speaker": "agent", + "text": "Rahul: Starting at 2.97 Cr for 3 BHK. Possession by July 2026.", + "start": 21.22, + "end": 23.84 + }, + { + "speaker": "client", + "text": "Kunal: That's good. Send me the details on WhatsApp.", + "start": 25.8, + "end": 28.86 + }, + { + "speaker": "agent", + "text": "Rahul: Done. When can you visit?", + "start": 29.84, + "end": 34.81 + }, + { + "speaker": "client", + "text": "Kunal: This weekend.", + "start": 35.56, + "end": 42.06 + }, + { + "speaker": "agent", + "text": "Rahul: I'll block Saturday 11 AM for you.", + "start": 42.93, + "end": 45.06 + } + ], + "metadata": { + "duration_seconds": 847, + "processing_engine": "whisper-v3-indian-english", + "noise_level": "medium" + } + }, + { + "transcript_id": "TRX-00016", + "call_id": "CAL-00033", + "language": "en-IN", + "confidence": 0.95, + "speaker_segments": [ + { + "speaker": "agent", + "text": "Priya: Hello Vikram, this is Priya from Velocity regarding Godrej Blue.", + "start": 0.0, + "end": 6.14 + }, + { + "speaker": "client", + "text": "Vikram: Yes, tell me.", + "start": 6.71, + "end": 10.01 + }, + { + "speaker": "agent", + "text": "Priya: We have a new tower launch with pre-launch pricing. Are you still looking in New Town?", + "start": 11.97, + "end": 19.47 + }, + { + "speaker": "client", + "text": "Vikram: Yes, what's the price?", + "start": 20.82, + "end": 23.36 + }, + { + "speaker": "agent", + "text": "Priya: Starting at 4.4 Cr for 3 BHK. Possession by September 2026.", + "start": 25.16, + "end": 29.6 + }, + { + "speaker": "client", + "text": "Vikram: That's good. Send me the details on WhatsApp.", + "start": 31.01, + "end": 37.15 + }, + { + "speaker": "agent", + "text": "Priya: Done. When can you visit?", + "start": 37.8, + "end": 40.46 + }, + { + "speaker": "client", + "text": "Vikram: This weekend.", + "start": 41.79, + "end": 46.32 + }, + { + "speaker": "agent", + "text": "Priya: I'll block Saturday 11 AM for you.", + "start": 46.85, + "end": 48.87 + } + ], + "metadata": { + "duration_seconds": 174, + "processing_engine": "whisper-v3-indian-english", + "noise_level": "low" + } + }, + { + "transcript_id": "TRX-00017", + "call_id": "CAL-00034", + "language": "en-IN", + "confidence": 0.95, + "speaker_segments": [ + { + "speaker": "agent", + "text": "Rahul: Hi Vikram, following up on your enquiry for Godrej Blue.", + "start": 0.0, + "end": 7.39 + }, + { + "speaker": "client", + "text": "Vikram: Yes, tell me.", + "start": 8.72, + "end": 14.85 + }, + { + "speaker": "agent", + "text": "Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in New Town?", + "start": 16.74, + "end": 22.7 + }, + { + "speaker": "client", + "text": "Vikram: Yes, what's the price?", + "start": 24.05, + "end": 28.44 + }, + { + "speaker": "agent", + "text": "Rahul: Starting at 2.57 Cr for 3 BHK. Possession by August 2026.", + "start": 29.98, + "end": 34.6 + }, + { + "speaker": "client", + "text": "Vikram: That's good. Send me the details on WhatsApp.", + "start": 35.47, + "end": 43.42 + }, + { + "speaker": "agent", + "text": "Rahul: Done. When can you visit?", + "start": 44.23, + "end": 50.27 + }, + { + "speaker": "client", + "text": "Vikram: This weekend.", + "start": 52.1, + "end": 56.54 + }, + { + "speaker": "agent", + "text": "Rahul: I'll block Saturday 11 AM for you.", + "start": 58.16, + "end": 65.46 + } + ], + "metadata": { + "duration_seconds": 465, + "processing_engine": "whisper-v3-indian-english", + "noise_level": "medium" + } + }, + { + "transcript_id": "TRX-00018", + "call_id": "CAL-00037", + "language": "en-IN", + "confidence": 0.92, + "speaker_segments": [ + { + "speaker": "agent", + "text": "Vikram: Hi Sonal, following up on your enquiry for Siddha Serena.", + "start": 0.0, + "end": 7.0 + }, + { + "speaker": "client", + "text": "Sonal: Yes, tell me.", + "start": 8.52, + "end": 11.03 + }, + { + "speaker": "agent", + "text": "Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in New Town?", + "start": 12.42, + "end": 15.44 + }, + { + "speaker": "client", + "text": "Sonal: Yes, what's the price?", + "start": 16.39, + "end": 23.05 + }, + { + "speaker": "agent", + "text": "Vikram: Starting at 6.38 Cr for 3 BHK. Possession by October 2026.", + "start": 23.99, + "end": 29.68 + }, + { + "speaker": "client", + "text": "Sonal: That's good. Send me the details on WhatsApp.", + "start": 30.87, + "end": 38.33 + }, + { + "speaker": "agent", + "text": "Vikram: Done. When can you visit?", + "start": 39.39, + "end": 45.2 + }, + { + "speaker": "client", + "text": "Sonal: This weekend.", + "start": 46.56, + "end": 53.01 + }, + { + "speaker": "agent", + "text": "Vikram: I'll block Saturday 11 AM for you.", + "start": 54.77, + "end": 59.42 + } + ], + "metadata": { + "duration_seconds": 684, + "processing_engine": "whisper-v3-indian-english", + "noise_level": "low" + } + }, + { + "transcript_id": "TRX-00019", + "call_id": "CAL-00040", + "language": "en-IN", + "confidence": 0.89, + "speaker_segments": [ + { + "speaker": "agent", + "text": "Rahul: Good morning Abhishek, wanted to share some updates about Atri Aqua.", + "start": 0.0, + "end": 4.83 + }, + { + "speaker": "client", + "text": "Abhishek: Yes, tell me.", + "start": 5.6, + "end": 11.17 + }, + { + "speaker": "agent", + "text": "Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in New Town?", + "start": 13.16, + "end": 17.22 + }, + { + "speaker": "client", + "text": "Abhishek: Yes, what's the price?", + "start": 18.1, + "end": 24.94 + }, + { + "speaker": "agent", + "text": "Rahul: Starting at 6.81 Cr for 3 BHK. Possession by September 2026.", + "start": 25.82, + "end": 28.28 + }, + { + "speaker": "client", + "text": "Abhishek: That's good. Send me the details on WhatsApp.", + "start": 30.12, + "end": 37.88 + }, + { + "speaker": "agent", + "text": "Rahul: Done. When can you visit?", + "start": 38.86, + "end": 46.1 + }, + { + "speaker": "client", + "text": "Abhishek: This weekend.", + "start": 47.55, + "end": 49.8 + }, + { + "speaker": "agent", + "text": "Rahul: I'll block Saturday 11 AM for you.", + "start": 50.86, + "end": 56.23 + } + ], + "metadata": { + "duration_seconds": 163, + "processing_engine": "whisper-v3-indian-english", + "noise_level": "low" + } + }, + { + "transcript_id": "TRX-00020", + "call_id": "CAL-00041", + "language": "en-IN", + "confidence": 0.95, + "speaker_segments": [ + { + "speaker": "agent", + "text": "Ananya: Hi Abhishek, following up on your enquiry for Atri Aqua.", + "start": 0.0, + "end": 7.16 + }, + { + "speaker": "client", + "text": "Abhishek: Hi, I was about to call you.", + "start": 8.6, + "end": 11.64 + }, + { + "speaker": "agent", + "text": "Ananya: Great minds! What were you thinking?", + "start": 12.9, + "end": 17.96 + }, + { + "speaker": "client", + "text": "Abhishek: The price is still high. Can you match DTC Good Earth's rate?", + "start": 19.61, + "end": 22.28 + }, + { + "speaker": "agent", + "text": "Ananya: I understand. Let me see what best I can do. Are you flexible on floor preference?", + "start": 23.84, + "end": 29.06 + }, + { + "speaker": "client", + "text": "Abhishek: Not really. I want mid-floor east facing.", + "start": 30.9, + "end": 35.62 + }, + { + "speaker": "agent", + "text": "Ananya: That's our premium inventory. But for serious buyers, I can check for a corporate discount.", + "start": 37.46, + "end": 42.77 + }, + { + "speaker": "client", + "text": "Abhishek: Please do. We're ready to close quickly.", + "start": 44.11, + "end": 48.41 + }, + { + "speaker": "agent", + "text": "Ananya: Will revert by tomorrow 2 PM.", + "start": 50.16, + "end": 57.14 + } + ], + "metadata": { + "duration_seconds": 82, + "processing_engine": "whisper-v3-indian-english", + "noise_level": "low" + } + } +] \ No newline at end of file