Resource Expansion
GET /v2/customers/cus_123?include=cards,stats,fields{
"id": "cus_123",
"email": "[email protected]",
"name": "John Smith",
// ... other customer fields ...
"cards": [
{ "id": "card_456", "last4": "4242", "brand": "Visa" }
],
"stats": {
"total_orders": 15,
"total_spent": 1250.00,
"avg_order_value": 83.33
},
"fields": [
{ "name": "preferred_contact", "value": "email" }
]
}Last updated