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/sources/catalog/libraries/server/http-api/index.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -100,7 +100,7 @@ POST https://api.segment.io/v1/identify
100
100
"ip": "24.5.68.47"
101
101
},
102
102
"timestamp": "2012-12-02T00:30:08.276Z",
103
-
"writeKey": "123xyz"
103
+
"writeKey": "YOUR_WRITE_KEY"
104
104
}
105
105
```
106
106
This call is identifying the user by their unique User ID (the one you know them by in your database) and labeling them with `email`, `name`, and `industry` traits.
@@ -141,7 +141,7 @@ POST https://api.segment.io/v1/track
141
141
"ip": "24.5.68.47"
142
142
},
143
143
"timestamp": "2012-12-02T00:30:12.984Z",
144
-
"writeKey": "123xyz"
144
+
"writeKey": "YOUR_WRITE_KEY"
145
145
}
146
146
```
147
147
@@ -175,7 +175,7 @@ POST https://api.segment.io/v1/page
175
175
"userId": "019mr8mf4r",
176
176
"name": "Tracking HTTP API",
177
177
"timestamp": "2012-12-02T00:31:29.738Z",
178
-
"writeKey": "123xyz"
178
+
"writeKey": "YOUR_WRITE_KEY"
179
179
}
180
180
```
181
181
The `page` call has the following fields:
@@ -208,7 +208,7 @@ POST https://api.segment.io/v1/screen
208
208
"userId": "019mr8mf4r",
209
209
"name": "Tracking HTTP API",
210
210
"timestamp": "2012-12-02T00:31:29.738Z",
211
-
"writeKey": "123xyz"
211
+
"writeKey": "YOUR_WRITE_KEY"
212
212
}
213
213
```
214
214
@@ -248,7 +248,7 @@ POST https://api.segment.io/v1/group
248
248
"employees": 420
249
249
},
250
250
"timestamp": "2012-12-02T00:31:38.208Z",
251
-
"writeKey": "123xyz"
251
+
"writeKey": "YOUR_WRITE_KEY"
252
252
}
253
253
```
254
254
The `group` call has the following fields:
@@ -282,7 +282,7 @@ POST https://api.segment.io/v1/alias
282
282
"previousId": "39239-239239-239239-23923",
283
283
"userId": "019mr8mf4r",
284
284
"timestamp": "2012-12-02T00:31:29.738Z",
285
-
"writeKey": "123xyz"
285
+
"writeKey": "YOUR_WRITE_KEY"
286
286
}
287
287
```
288
288
The `alias` call has the following fields:
@@ -365,7 +365,7 @@ POST https://api.segment.io/v1/batch
365
365
"timestamp": "2015-2-02T00:30:12.984Z"
366
366
}
367
367
],
368
-
"writeKey": "123xyz",
368
+
"writeKey": "YOUR_WRITE_KEY",
369
369
"context": {
370
370
"device": {
371
371
"type": "phone",
@@ -424,7 +424,7 @@ POST https://api.segment.io/v1/identify
0 commit comments