You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/connections/destinations/catalog/singular/index.md
+24-1
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,8 @@ title: Singular Destination
5
5
6
6
[Singular](https://www.singular.net/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) 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.
7
7
8
+
The destination is available to receive data via Cloud Mode from all platforms and to integrate via Device Mode on Mobile.
9
+
8
10
This destination is maintained by Singular. For any issues with the destination, please [reach out to Singular Support](mailto:[email protected]).
> If you are using the Device-Based Destination, there’s no need to implement the code below, as the data is already collected automatically.
37
+
33
38
To get [iAD attribution](https://searchads.apple.com/help/measure-results/) data into Singular, you must include the [analytics-ios-iads-attribution](https://github.com/segmentio/analytics-ios-iads-attribution) dependency and version 3.6.0 or higher of the [Analytics SDK](https://github.com/segmentio/analytics-ios).
34
39
35
40
To install it, simply add the following line to your Podfile:
@@ -98,4 +103,22 @@ Analytics.with(context).track("Order Completed", new Properties().putRevenue(1.9
98
103
```
99
104
100
105
## Custom User ID
101
-
Singular has mapped the **Custom User ID** to the Segment [User ID](https://segment.com/docs/connections/spec/identify/#user-id) value. Follow the steps here to configure for: [iOS](https://segment.com/docs/connections/sources/catalog/libraries/mobile/ios/#identify), [Android](https://segment.com/docs/connections/sources/catalog/libraries/mobile/android/#identify).
106
+
For the cloud-mode destination, Singular has mapped the **Custom User ID** to the Segment [User ID](https://segment.com/docs/connections/spec/identify/#user-id) value. Follow the steps here to configure for: [iOS](https://segment.com/docs/connections/sources/catalog/libraries/mobile/ios/#identify), [Android](https://segment.com/docs/connections/sources/catalog/libraries/mobile/android/#identify).
107
+
108
+
For the device-based destination, Singular’s SDK uses the identify method to map Segment’s User ID value to the Custom User ID.
109
+
110
+
Android example:
111
+
112
+
```java
113
+
Analytics.with(context).identify("myUserId");
114
+
```
115
+
116
+
In order to unset the Custom User ID, call the reset method.
0 commit comments