Skip to content

Commit fe73cc1

Browse files
author
markzegarelli
authored
Override the Drip destination connection modes (#2813)
1 parent a174276 commit fe73cc1

File tree

2 files changed

+16
-3
lines changed

2 files changed

+16
-3
lines changed

src/_data/catalog/overrides.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
11
# This file is manually generated. When you add or remove an item, add or remove
22
# it from the `overrides-list.yml` too.
33
items:
4+
- slug: drip
5+
id: 54521fd525e721e32a72eeaa
6+
connection_modes:
7+
device:
8+
web: true
9+
mobile: true
10+
server: false
11+
cloud:
12+
web: false
13+
mobile: true
14+
server: true
15+
416
- slug: clevertap
517
id: 5711271880412f644ff13150
618
connection_modes:

src/connections/destinations/catalog/drip/index.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
---
22
title: Drip Destination
33
id: 54521fd525e721e32a72eeaa
4+
cmode-override: true
45
---
5-
Our Drip destination code is all open-source on GitHub if you want to check it out: [Javascript](https://github.com/segment-integrations/analytics.js-integration-drip),(iOS and Android work using the server destination).
6+
The Drip destination code is all open-source on GitHub if you want to check it out: [Javascript](https://github.com/segment-integrations/analytics.js-integration-drip),(iOS and Android work using the server destination).
67

78
## Getting Started
89

@@ -11,11 +12,11 @@ When you enable Drip in the Segment web app, your changes appear in the Segment
1112

1213
## Identify
1314

14-
When you call [`identify`](/docs/connections/spec/identify/) on analytics.js, we call [`identify`](/docs/connections/spec/identify/) on Drip and pass through all of the user traits that were included on that call. You must pass email as a trait to identify the user to Drip. Note that if you want to do cross-domain tracking, after you've enabled it in the Drip UI, you'll need to pass `email` as a trait on the identify call on both domains.
15+
When you call [`identify`](/docs/connections/spec/identify/) on analytics.js, Segment calls [`identify`](/docs/connections/spec/identify/) on Drip and passes through all of the user traits that were included on that call. You must pass email as a trait to identify the user to Drip. Note that if you want to do cross-domain tracking, after you've enabled it in the Drip UI, you'll need to pass `email` as a trait on the identify call on both domains.
1516

1617
## Track
1718

18-
When you call [`track`](/docs/connections/spec/track/), we'll send the event to Drip with the event `name` and all `properties` that you specified. If you include `revenue` as a property, it will get passed to Drip as the conversion value of this event.
19+
When you call [`track`](/docs/connections/spec/track/), Segment sends the event to Drip with the event `name` and all `properties` that you specified. If you include `revenue` as a property, it will get passed to Drip as the conversion value of this event.
1920

2021
**Note:**
2122
- If you are sending custom server side events, you must include an `email` property of the user that the event belongs to.

0 commit comments

Comments
 (0)