Skip to contentSkip to navigationSkip to topbar
Page toolsOn this page
Looking for more inspiration?Visit the

Bronto Destination


Destination Info
  • Accepts Track calls.
  • Refer to it as Bronto in the Integrations object
Connection Modes
Device-modeCloud-mode
Web Web
Mobile Mobile
Server Server

The Bronto destination code is open source on the Bronto Analytics.js integration GitHub repository(link takes you to an external page).


Getting Started

getting-started page anchor

To get started with Bronto, you need your Bronto Site ID. You can find your Site ID on your Bronto Account Page.

Bronto works with the client-side JavaScript library, Analytics.js.


Use the Track method to send conversion events to Bronto. This event must be named Order Completed. Segment forwards the product SKU, description, quantity, name, and price properties defined in the event to Bronto.

Here's an example:

1
analytics.track('Order Completed', {
2
products: [{ sku: 'c546c96', quantity: 8, name: 'my-product', price: 99.99 }],
3
orderId: '55c497bf'
4
});

Segment lets you change these destination settings from the Segment app without having to touch any code.

Property nameTypeRequiredDescription
Domainstring

Optional

You can use your own domain with Bronto


Site IDstring
required

You can find your Site ID in your Bronto Account Page(link takes you to an external page)