# Bronto Destination

## Destination Info

* Accepts [Track](/docs/segment/connections/spec/track) calls.
* Refer to it as **Bronto** in the [Integrations object.](/docs/segment/guides/filtering-data/#filtering-with-the-integrations-object)

### Components

* [Browser](https://github.com/segment-integrations/analytics.js-integration-bronto)

## Connection Modes

[Learn more about connection modes.](/docs/segment/connections/destinations/#connection-modes)

### Device-Mode

* web: yes
* mobile: no
* server: no

### Cloud-Mode

* web: no
* mobile: no
* server: no

Our Bronto destination code is open-source on GitHub if you want to [check it out](https://github.com/segment-integrations/analytics.js-integration-bronto).

## Getting Started

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.

## Track

You can use our [track](/docs/segment/connections/spec/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:

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

## Settings

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

| Field   | Description                                                                                          | Required | Type   |
| ------- | ---------------------------------------------------------------------------------------------------- | -------- | ------ |
| Domain  | You can use your own domain with Bronto                                                              | No       | string |
| Site ID | You can find your Site ID in your Bronto \[Account Page]\(https://app.bronto.com/login/index/login/) | Yes      | string |
