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.

Tamber Destination


Destination Info
  • Accepts Identify and Track calls.
  • Refer to it as Tamber in the Integrations object
  • This integration is partner owned. Please reach out to the partner's support for any issues.

Tamber(link takes you to an external page) enables you to build your own Google-scale recommendation features in minutes. Deploy cutting edge deep learning models, and run A/B tests to optimize results.

This destination is maintained by Tamber. For any issues with the destination, contact the Tambler Support team.


Getting Started

getting-started page anchor
  1. From your Tamber dashboard(link takes you to an external page), head to Sources > Segment and click enable.
  2. Follow the instructions to configure your Destination and optionally defined a custom name for your item and click save.
  3. You may now use either the one-click activation button to complete your set up or continue reading the below steps to manually add the Tamber Destination from within Segment using the "API Key" displayed.
  4. From your Segment UI's Destinations page click on "Add Destination".
  5. Search for "Tamber" in the Catalog, select it, and choose which of your sources to connect the destination to.
  6. Drop the "API Key" into your Segment Settings UI. If you do not have the key from the steps above, you can find it in your Tamber dashboard(link takes you to an external page) as the "Project Key" in your project's dashboard.

If you're not familiar with the Segment Specs, take a look to understand what the Identify method does. An example call would look like:

1
analytics.identify('userId123', {
2
age: 23,
3
location: {
4
latitude: 40.8,
5
longitude: -74.0
6
}
7
});

Identify calls will be sent to Tamber as a user-update(link takes you to an external page) call and increment the User count within the Tamber UI. You can also retrieve(link takes you to an external page) and list(link takes you to an external page) users from Tamber.


If you're not familiar with the Segment Specs, take a look to understand what the Track method does. An example call to Segment would look like:

1
analytics.track("Watched", {
2
item: "f8ca1e4de5024d9430b3928bd8ac6b96"
3
});

You may also provide full item objects:

1
analytics.track("Watched", {
2
item: {
3
id: "f8ca1e4de5024d9430b3928bd8ac6b96", // required
4
title: "Kurt Vonnegut 60 Minutes Interview",
5
genre: "News"
6
}
7
});

Track calls will be sent to Tamber as event-track(link takes you to an external page) calls and increment both Event and Item counts within the Tamber UI. You can also retrieve(link takes you to an external page) events, and retrieve(link takes you to an external page) or list(link takes you to an external page) items from Tamber.

NOTE: item(link takes you to an external page) is a required property but can be renamed within the Tamber UI under Custom Field Definition for Item. Make sure that the name passed into your Track call matches what you have set in the Tamber UI. If you are using Segment's E-Commerce or Video APIs, you can configure Tamber to automatically handle item loading – either during set up or at any time in the Tamber Dashboard Sources > Segment section – and ignore this information.


You can send computed traits and audiences generated using Engage to this destination as a user property. To learn more about Engage, schedule a demo(link takes you to an external page).

For user-property destinations, an identify call is sent to the destination for each user being added and removed. The property name is the snake_cased version of the audience name, with a true/false value to indicate membership. For example, when a user first completes an order in the last 30 days, Engage sends an Identify call with the property order_completed_last_30days: true. When the user no longer satisfies this condition (for example, it's been more than 30 days since their last order), Engage sets that value to false.

When you first create an audience, Engage sends an Identify call for every user in that audience. Later audience syncs only send updates for users whose membership has changed since the last sync.

(information)

Real-time to batch destination sync frequency

Real-time audience syncs to Tamber may take six or more hours for the initial sync to complete. Upon completion, a sync frequency of two to three hours is expected.


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

Property nameTypeRequiredDescription
API Keystring
required

You can find your API key on your Dashboard under "Project Key"