customer.created | A customer has been created |
customer.updated | A customer has been updated |
Name | Type | Description |
---|
customer | Customer | The customer this event is related to
|
organization | OrganizationTiny | The organization the customer belongs to
|
{
"event": "customer.created",
"customer": {
"...": "..."
},
"organization": {
"id": "01H0S97D8RX4RBFHHTB1HE7SFR",
"name": "My Awesome Business"
}
}
customer.updated-statistics | A customers statistics have been updated |
{
"event": "customer.updated-statistics",
"statistics": {
"...": "..."
},
"customer": {
"email": "john@example.com",
"firstName": "John",
"id": "01FCCGYZA9JPQ97HBSTKW0KT7P",
"lastName": "Smith",
"phoneNumber": "+61411222333"
},
"organization": {
"id": "01H0S97D8RX4RBFHHTB1HE7SFR",
"name": "My Awesome Business"
}
}