# REST API
curl -H "Authorization: Bearer YOUR_API_KEY" \
https://harbor.dataharbor.dev/v1/partner-customer-view/customers
# Response: governed data with controls applied
{
"customers": [
{
"id": "cust_123",
"name": "Jane Doe",
"email": "tok_abc123", // tokenized
"phone": "tok_def456", // tokenized
"ssn": "", // redacted
"date_of_birth": "" // redacted
}
]
}