Skip to contentSkip to navigationSkip to topbar
On this page
Looking for more inspiration?Visit the
(information)
You're in the right place! Segment documentation is now part of Twilio Docs. The content you are used to is still here—just in a new home with a refreshed look.

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

Our Bronto destination code is open-source on GitHub if you want to check it out(link takes you to an external page).


Getting Started

getting-started page anchor

All you need to get up and running with Bronto is your Bronto Site ID. You can find your site ID right on your Bronto Account Page.

Bronto works with our client-side JavaScript library: Analytics.js.


You can use our track method to send conversion events to Bronto. This event must be named Order Completed. We will forward Bronto the properties product SKU, description, quantity, name and price properties defined in the event.

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)