Skip to content

Kenect Integration

EverywhereBridal integrates with Kenect. Kenect provides a variety of services to retailers,

To connect EverywhereBridal to Kenect.

  1. Go to https://everywherebridal.com/Settings/SetUp
  2. Select a store and go to the bottom of the settings page for that store.
  3. Click Generate a new Kenect Key.
  4. Click Save to save the new key.
  5. The key will be in the clipboard, you can paste it into an email to send to Kenect.
  6. Kenect will be able to configure the integration.

When an appointment is Confirmed, Canceled, or the date/time is edited in the EverywhereBridal, it will send the customer details to Kenect so Kenect can engage with the customer to leave a review for the shop.

When a sale is revenue realized, or a pickup inventory item is marked Taken, we send the sale and customer details to Kenect.

New Customers added to EB will be automatically sent to Kenect every 60 minutes.

EWB Endpoints

Events from EWB to Kenect

  • APPOINTMENT_CANCELED
  • APPOINTMENT_CONFIRMED
  • APPOINTMENT_UPDATED
  • NEW_SALE
  • PICKUP_DONE

NEW_SALE

Sent when a sale is revenue realized.

vendorstyle is a (usually) unique code assigned by the vendor that identifies the item.

{
  "eventName": "NEW_SALE",
  "externalContactId": "378342",
  "phone": "8885551212",
  "recordId": "6625b053-2e3c-4367-b18a-6fc4a7bd976e",
  "eventData": {
    "description": "Square neckline with wide straps. ",
    "vendorStyle": "Aida-30123",
    "category": "Bridal",
    "price": "5166.70"
  }
}

APPOINTMENT_CONFIRMED

Sent when an appointment goes from any other status to Confirmed

No external contact ID is included as appointments are not normally linked to contacts.

{
  "eventName": "APPOINTMENT_CONFIRMED",
  "externalContactId": null,
  "phone": "8885551212",
  "recordId": "d7e8e51a-e2a2-4bac-bda6-cacc1911f9a9",
  "eventData": {
    "appointmenttime": "2022-03-24T14:00:00.000Z",
    "appointmenttype": "Bridal First"
  }
}

APPOINTMENT_CANCELED

Sent when an appointment goes from any other status to Confirmed

No external contact ID is included as appointments are not normally linked to contacts.

{
  "eventName": "APPOINTMENT_CANCELED",
  "externalContactId": null,
  "phone": "8885551212",
  "recordId": "9694859a-7ad6-412d-a35f-95ccb174e18a",
  "eventData": {
    "appointmenttime": "2022-03-24T14:00:00.000Z",
    "appointmenttype": "Bridal First"
  }
}

APPOINTMENT_UPDATED

Sent when the date/time or appointment type is changed for an appointment.

No external contact ID is included as appointments are not normally linked to contacts.

{
  "eventName": "APPOINTMENT_UPDATED",
  "externalContactId": null,
  "phone": "8885551212",
  "recordId": "78d48935-633b-43de-9531-138f8baac9dd",
  "eventData": {
    "appointmenttime": "2022-03-24T15:00:00.000Z",
    "appointmenttype": "Bridal First"
  }
}

PICKUP_DONE

Sent when an item is actually taken from the store by the customer.

{
  "eventName": "PICKUP_DONE",
  "externalContactId": "378342",
  "phone": "8885551212",
  "recordId": "410344",
  "eventData": {
    "description": "Square neckline with wide straps. ",
    "vendorStyle": "Aida-30123",
    "category": "Bridal",
    "price": "5166.70",
    "pickedup": "2022-03-24"
  }
}