# Building the Single Client View for High-Net-Worth Luxury Buyers
A sales associate in a Milan boutique glances at her tablet before greeting a returning client. It flags one line: "Purchased a competitor watch (Patek complication), Geneva, 3 weeks ago. Attended our Como yacht event. Active on WeChat, last message: asked about the new high-jewelry collection." She now knows exactly how to open the conversation. That single line is the product of a system called the single client view.
A single client view (SCV) is one unified profile per person that pulls together every interaction they have with the brand, across every channel and country. Instead of the watch boutique knowing one thing, the leather goods store knowing another, and the WeChat team knowing a third, everyone sees the same complete picture.
In luxury this matters more than in most sectors. A high-net-worth (HNW) client, someone with large investable assets and high spending power, may buy in Paris, collect in Dubai, and message a sales associate in Shanghai. If the brand treats those as three strangers, it fails the client and loses revenue.
The goal is simple to state and hard to build: one client, one profile, everywhere.
Luxury client data is scattered across systems that were never designed to talk to each other. A typical maison pulls from:
Each source uses different identifiers. POS knows a card tokentokenA token is the basic unit of text that language models process, often a word fragment, whole word, or punctuation mark rather than a single character.Voir la définition complète →. WeChat knows an OpenID (the anonymous ID WeChat assigns a user for a given brand account). The events team has an email on an RSVP list. None of these match automatically.
Identity resolution is the process of deciding that these scattered records all belong to the same person. This is the technical heart of the SCV.
There are two broad approaches:
Deterministic matching links records when they share an exact identifier: the same email, phone number, or loyalty ID. High confidence, but it misses cases where the client gave a work email in store and a personal one online.
Probabilistic matching scores likelihood using fuzzy signals: similar name, same shipping address, overlapping device. Lower certainty, so luxury brands use it carefully, often flagging matches for human review rather than auto-merging.
Here is a simplified logic for how a match might be scored:
def match_score(record_a, record_b):
score = 0
if record_a.email == record_b.email:
score += 50 # strong deterministic signal
if record_a.phone == record_b.phone:
score += 40
if same_address(record_a, record_b):
score += 15
if similar_name(record_a, record_b):
score += 10
return score
# score >= 50 -> auto-merge into one profile
# 25 to 49 -> queue for human review
# below 25 -> keep separateThe thresholds matter. Merge too aggressively and you combine two different clients (a disaster when one gets a message about the other's purchase). Merge too cautiously and your VIP looks like five casual shoppers.
Chinese clients drive a large share of global luxury spending, so no SCV is complete without WeChat. But WeChat is a walled garden: the brand does not get a clean email or phone by default, only that OpenID.
To connect a WeChat conversation to an in-store purchase, brands typically ask the client to link accounts through a mini program (a lightweight app running inside WeChat) or a membership sign-up that collects a phone number with consent. Only then can the Milan boutique see that the WeChat message and the Como event RSVP are the same VIP.
This is also why a sales associate's manual note still matters. When a client mentions the competitor watch in a WeChat chat, the associate logs it in the clienteling app. Human-entered context often outperforms automated data in luxury.
Before any of this works, you need permission. Under the EU's General Data Protection Regulation (GDPR), the law governing personal data in Europe, you generally need a lawful basis (usually consent) to combine data across channels and use it for marketing. China's Personal Information Protection Law (PIPL) imposes similar and in some ways stricter rules, including limits on moving data out of the country.
Practical implications for the SCV:
A useful plain-language primer is the European Commission's overview of GDPR. Treat privacy as a design constraint, not an afterthought. For HNW clients, discretion is part of the product.
🎬 [VIDEO: "What is a Customer Data PlatformCustomer Data PlatformA Customer Data Platform unifies customer data from all sources into persistent, actionable profiles that other systems can use.Voir la définition complète → (CDPCDPA Customer Data Platform unifies customer data from all sources into persistent, actionable profiles that other systems can use.Voir la définition complète →)?" — youtube.com — a short, vendor-neutral explainer of the technology stack most brands use to build a single client view]
Most brands assemble the SCV using a customer data platform (CDP): software that ingests data from all sources, runs identity resolution, and produces one profile that other tools can read.
The flow looks like this:
1. Ingest: POS, e-commerce, WeChat, events feed into the CDPCDPA Customer Data Platform unifies customer data from all sources into persistent, actionable profiles that other systems can use.Voir la définition complète →.
2. Standardize: clean formats (phone numbers, addresses) so they can be compared.
3. Resolve: apply matching logic to unify records.
4. Enrich: add computed fields such as lifetime valuelifetime valueLifetime Value: the total revenue (or profit) a customer generates throughout their entire relationship with your business.Voir la définition complète →, category affinity, or a churn-risk flag.
5. Activate: push the profile to the clienteling tablet the associate holds.
The competitor-watch insight in our hook lives in step 4 and 5: it was captured as a note, resolved to the right profile, and surfaced at the right moment.
Vérification des acquis
1. What fundamentally distinguishes a single client view from simply having a CRM system?
2. Why does the single client view matter more in luxury than in most other sectors?
3. The Milan associate's tablet showing a competitor purchase, event attendance, and a recent WeChat message best illustrates which concept?
4. Select ALL correct answers. Which are genuine data sources that a single client view unifies in a luxury maison?
Sélectionnez toutes les réponses correctes.
5. Select ALL correct answers. What challenges make building a single client view difficult in luxury?
Sélectionnez toutes les réponses correctes.
A unified profile is worthless if it sits in a database. The value appears when it changes what a human does.
Back to Milan. Because the SCV surfaced the competitor watch purchase, the associate does not push another watch (the client just bought one). Instead she pivots to high jewelry, the category the client asked about on WeChat. She references the Como event warmly, because the profile told her the client attended.
This is clienteling: using client knowledge to deliver personal, relevant service. The SCV makes it scalable across a global network instead of living only in one associate's memory.
A few concrete plays the SCV enables:
Building an SCV is where most luxury data programs stumble. Watch for:
The fix is usually organizational, not technical: clear ownership of the profile, agreed matching rules, and a habit of associates logging quality notes.