Singular Destination
Singular is a Marketing Intelligence Platform that transforms marketing data into accurate, granular and actionable insights to drive growth. By unifying marketing campaign data with attribution data, marketers can measure ROI from every touchpoint across multiple channels for a single source of truth.
This destination is maintained by Singular. For any issues with the destination, contact Singular Support.
Getting Started
- From the Segment web app, click Catalog.
- Search for “Singular” in the Catalog, select it, and choose which of your sources to connect the destination to.
- Add your Singular “API KEY”, found in your Singular Dashboard under ‘Settings’ > ‘SDK Keys’, to the Segment Settings UI.
What’s supported
- Install Attribution
- Apple Search Ads Attribution
- Custom Event Tracking
- Revenue tracking
- Custom User ID
Install Attribution
Enable automatic tracking of lifecycle events (Application Opened
, Application Installed
, Application Updated
) using initialization config parameters (iOS, Android) to track installs and sessions in Singular. The Singular “session” will be sent automatically by the integration as long as you are including the events above.
Apple Search Ads Attribution
Note
If you are using the Device-Based Destination, there’s no need to implement the code below, as the data is already collected automatically.
To get attribution data into Singular, you must include the analytics-ios-iads-attribution dependency and version 3.6.0 or higher of the Analytics SDK.
To install it, simply add the following line to your Podfile:
pod "Analytics"
pod "Analytics-iAds-Attribution"
Then import the header and initialize the configuration:
#import <Analytics-iAds-Attribution/SEGADTracker.h>
// Initialize the configuration as you would normally.
SEGAnalyticsConfiguration *configuration = [SEGAnalyticsConfiguration configurationWithWriteKey:@"YOUR_WRITE_KEY"];
...
// Configure the client with the iAD middleware to attach iAd properties.
configuration.middlewares = @[ [SEGADTracker middleware] ];
[SEGAnalytics setupWithConfiguration:configuration];
When iAd information is available, the attribution information is transformed to Segment context this way:
[analytics track:@"Application Installed",
properties: nil,
options: @{
@"context" : @{
@"campaign" : @{
@"provider" : @"Apple",
@"click_date" : attributionInfo[@"iad-click-date"],
@"conversion_date" : attributionInfo[@"iad-conversion-date"],
@"source" : @"iAd",
@"name" : attributionInfo[@"iad-campaign-name"],
@"content" : attributionInfo[@"iad-keyword"],
@"ad_creative" : attributionInfo[@"iad-org-name"],
@"ad_group" : attributionInfo[@"iad-adgroup-name"],
@"id" : attributionInfo[@"iad-campaign-id"],
@"ad_group_id" : attributionInfo[@"iad-adgroup-id"]
}
}
}];
Singular has explicitly mapped the Application Installed
lifecycle event to provide the iAd Information.
Tracking Custom Events
If you’re not familiar with the Segment Specs, take a look to understand what the Track method does. An example call (in Android) would look like:
Analytics.with(context).track("Signup")
Analytics.with(context).track("Level9Passed")
Those calls will be sent to Singular and processed as custom post-install events and will be available in reporting & user-level exports.
Revenue Tracking
Singular will receive revenue tracking when an event containing the revenue
property is sent (including zero value). You can optionally pass the currency
(as an iso3 code). The default currency is USD
.
For example in Android you would do:
Analytics.with(context).track("Order Completed", new Properties().putRevenue(1.99));
Custom User ID
For the cloud-mode destination, Singular has mapped the Custom User ID to the Segment User ID value. Follow the steps here to configure for: iOS, Android.
For the device-based destination, Singular’s SDK uses the identify method to map Segment’s User ID value to the Custom User ID.
Android example:
Analytics.with(context).identify("myUserId");
In order to unset the Custom User ID, call the reset method.
Android example:
Analytics.with(context).reset();
Settings
Segment lets you change these destination settings from the Segment app without having to touch any code.
Setting | Description |
---|---|
API Key (required) |
string . You can find your API Key under Settings -> SDK Keys |
Secret (required) |
string . Required for device-mode integrations with our iOS and Android SDKs. |
This page was last modified: 27 Oct 2023
Need support?
Questions? Problems? Need more info? Contact Segment Support for assistance!