New Customer Example

The new_customer webhook is triggered when a new customer is added to the system. It provides details about the customer, including personal information, contact details, address, and related metadata.

Value NameDescriptionValue Type
idUnique identifier for the customer record in Enerflo.integer
external_idExternal identifier provided for integrations, if applicable.string
first_nameFirst name of the customer.string
last_nameLast name of the customer.string
full_nameFull name of the customer.string
emailCustomer's primary email address.string
phoneCustomer's phone number.string
customer_timezoneTime zone associated with the customer's address.string
lead_sourceThe source from which the lead was generated.string
timestampsObject 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"
  }
}