Retrieve a customer’s profile information
curl -X GET https://api.example.com/api/v1/customers/123/ \ -H "Authorization: Bearer YOUR_TOKEN"
{ "email": "[email protected]", "first_name": "John", "last_name": "Doe", "slug": "john-doe", "date_of_birth": "1990-01-15", "address": { "street_address": "123 Main Street", "postal_code": 12345, "city": "San Francisco", "state": "California", "country": "United States" }, "last_purchase_date": "2024-03-01T14:30:00Z" }
Show Address properties