Update Customer Example
The update_customer webhook is triggered when an existing customer's details are modified in the system.
Value Name | Description | Value Type |
---|---|---|
id | Unique identifier for the customer record in Enerflo. | integer |
external_id | External identifier provided for integrations, if applicable. | string |
first_name | First name of the customer. | string |
last_name | Last name of the customer. | string |
full_name | Full name of the customer. | string |
email | Customer's primary email address. | string |
phone | Customer's phone number. | string |
customer_timezone | Time zone associated with the customer's address. | string |
lead_source | The source from which the lead was generated. | string |
timestamps | Object containing metadata about record creation, updates, and deletion, including time zone. | object |
{
"webhook_event": "new_customer",
"id": 2860314,
"external_id": null,
"first_name": "Test",
"last_name": "RCustomer",
"full_name": "Test RCustomer",
"email": "[email protected]",
"phone": "(000) 000-0000",
"address": {
"street": "123 Example St",
"city": "Sample City",
"state": "EX",
"zip": "12345",
"county": "Example County",
"full_address": "123 Example St, Sample City, EX 12345",
"latitude": 12.345678,
"longitude": -98.765432
},
"customer_timezone": "America/Chicago",
"lead_source": "",
"timestamps": {
"deleted_at": null,
"created_at": "2025-01-14 15:47:29",
"updated_at": "2025-01-14 15:47:29",
"timezone": "UTC"
}
}
Updated 16 days ago