User / Profile Dataintermediate

Customer Profile with Billing and Shipping JSON Example

A commerce-friendly customer record that keeps billing and shipping addresses separate.

Real-world use case: Use this for checkout APIs, CRM sync payloads, and customer detail pages.
1{
2 "customerId": "cus_9012",
3 "email": "[email protected]",
4 "billingAddress": {
5 "line1": "44 Residency Road",
6 "city": "Bengaluru",
7 "country": "IN",
8 "postalCode": "560025"
9 },
10 "shippingAddress": {
11 "line1": "12 Palm Grove",
12 "city": "Mumbai",
13 "country": "IN",

Where this shape shows up in production

Checkout systems
CRM sync
Billing platforms

Related examples