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
Our Bronto destination code is open-source on GitHub if you want to check it out.
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:
1analytics.track('Order Completed', {2products: [{ sku: 'c546c96', quantity: 8, name: 'my-product', price: 99.99 }],3orderId: '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