Bronto Destination
The Bronto destination code is open source on the Bronto Analytics.js integration GitHub repository.
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:
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