Skip to content

Commit c862d61

Browse files
Apply suggestions from code review
Co-authored-by: forstisabella <[email protected]>
1 parent beff248 commit c862d61

File tree

1 file changed

+8
-8
lines changed
  • src/connections/destinations/catalog/appsflyer

1 file changed

+8
-8
lines changed

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

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ To activate this feature, simply input your S2S token in the destination setting
132132

133133
### Send User Consent Preferences Server-side
134134

135-
To transmit user consent data serverside, simply incorporate the consent preferences into the `integrations.AppsFlyer.consent_data`` object. This can be done in either TCF or manual format, as outlined in [the AppsFlyer documentation](https://dev.appsflyer.com/hc/reference/s2s-events-api3-post){:target="_blank”}.
135+
To transmit user consent data server-side, incorporate the consent preferences into the `integrations.AppsFlyer.consent_data` object. This can be done in either TCF or manual format, as outlined in [the AppsFlyer Send Event documentation](https://dev.appsflyer.com/hc/reference/s2s-events-api3-post){:target="_blank”}.
136136

137137
```js
138138
// node.js library example with tcf
@@ -188,31 +188,31 @@ analytics.track({
188188

189189
## Identify
190190

191-
If you're not familiar with the Segment Specs, take a look to understand what the [Identify method](/docs/connections/spec/identify/) does. An example iOS call would look like:
191+
If you're not familiar with the Segment Spec, take a look to understand what the [Identify method](/docs/connections/spec/identify/) does. An example iOS call would look like:
192192

193193
```swift
194194
[[SEGAnalytics sharedAnalytics] identify:@"12091906-01011992"
195195
traits:@{ @"email": @"[email protected]" }];
196196
```
197197

198-
When you call `.identify()`, Segment uses AppsFlyer's `setCustomerUserID` to send the `userId` that was passed in.
198+
When you call Identify, Segment uses AppsFlyer's `setCustomerUserID` to send the `userId` that was passed in.
199199

200-
**Note:** `identify` calls are not supported using AppsFlyer's HTTP API at the moment. You can only send `.identify` calls if you have the AppsFlyer SDK bundled.
200+
**Note:** Identify calls are not supported using AppsFlyer's HTTP API at the moment. You can only send `.identify` calls if you have the AppsFlyer SDK bundled.
201201

202202
## Track
203203

204-
If you're not familiar with the Segment Specs, take a look to understand what the [Track method](/docs/connections/spec/track/) does. An example iOS call would look like:
204+
If you're not familiar with the Segment Spec, take a look to understand what the [Track method](/docs/connections/spec/track/) does. An example iOS call would look like:
205205

206206
```swift
207207
[[SEGAnalytics sharedAnalytics] track:@"Article Completed"
208208
properties:@{ @"title": @"How to Create a Tracking Plan", @"course": @"Intro to Analytics" }];
209209
```
210210

211-
When you call `track`, Segment translates it automatically and sends the event to AppsFlyer.
211+
When you call Track, Segment translates it automatically and sends the event to AppsFlyer.
212212

213-
Segment includes all the event properties as callback parameters on the AppsFlyer event, and automatically translate `properties.revenue` to the appropriate AppsFlyer purchase event properties based on the spec'd properties.
213+
Segment includes all the event properties as callback parameters on the AppsFlyer event, and automatically translates `properties.revenue` to the appropriate AppsFlyer purchase event properties based on the spec'd properties.
214214

215-
Finally, Segment uses AppsFlyer's `transactionId` deduplication when you send an `orderId` (see the [e-commerce spec](/docs/connections/spec/ecommerce/v2/)).
215+
Segment uses AppsFlyer's `transactionId` deduplication when you send an `orderId` (see Segment's [e-commerce spec](/docs/connections/spec/ecommerce/v2/) for more details).
216216

217217
## Install Attributed
218218

0 commit comments

Comments
 (0)