1. First Steps
a. Initial setup
. Intro to data sources
Container Tag Implementation
a. Collect data from your websites and landing pages
b. Collect user data from your apps using our SDKs
c. Track impressions in a DSP, SSP or Ad Server
d. Track conversion events for your campaigns
e. Click tracking on Facebook
f. Upload CRM data and get an addressable digital audience
g. Use the email data source to increase your CRM matching capabilities
z. How to approve a Facebook data sharing request
b. Segmentation
App Segments
CRM Segments
Campaign Segments
Creating web segment rules
Cross Device Segments - You can reach users on all their devices
Facebook - Send audiences
How to combine different segments in order to maximize Reach?
How to create a new Seat and associate it with Retargetly DMP?
Look Alike Segments
Pushing a Segment / Audience to a Platform
Segment Overlap
Video Viewability Tracking
c. Insights & Analytics
User Creation
2. Advanced Configuration
Container Tag Implementation (AMP Pages)
Demographic Data Sent through the Container Tag
Getting Retargetly's web cookie user id
Google Analytics ID Synchronization
Impressions, Clicks and Conversions implementation in DCM
Sizmek Campaign Track Implementation
Synchronization of the external user ID
Tag Sending through the Container Tag
Taxonomy Creation in Retargetly DMP
3. Integrations
5. Frequently Asked Questions
- All Categories
- 2. Advanced Configuration
- Google Analytics ID Synchronization
Google Analytics ID Synchronization
Note: The codes shown below should all go under the container tag.
This guide will show how to integrate the Analytics user ID with the Retargetly ID. To achieve this, you must implement a JavaScript code with this format:
<script>
function getCookie(name) {
var value = "; " + document.cookie;
var parts = value.split("; " + name + "=");
if (parts.length == 2) return parts.pop().split(";").shift();
}
var analytics_id = getCookie("_ga");
if(analytics_id) {
_rely.push({'external_id': analytics_id});
_rely.send();
}
</script>
The format is as follows:
- Password: external_id
- Value: (analytics ID obtained automatically)