Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?xml version="1.0" encoding="utf-8" ?>
<result>
<row>
<type>metric</type>
<category>Visit</category>
<name>Days since first visit</name>
<segment>daysSinceFirstVisit</segment>
</row>
<row>
<type>metric</type>
<category>Visit</category>
<name>Days since last Ecommerce order</name>
<segment>daysSinceLastEcommerceOrder</segment>
</row>
<row>
<type>metric</type>
<category>Visit</category>
<name>Days since last visit</name>
<segment>daysSinceLastVisit</segment>
</row>
<row>
<type>metric</type>
<category>Visit</category>
<name>Number of Actions</name>
<segment>actions</segment>
</row>
<row>
<type>metric</type>
<category>Visit</category>
<name>Number of Internal Searches</name>
<segment>searches</segment>
<acceptedValues>To select all visits who used internal Site Search, use: &segment=searches>0</acceptedValues>
</row>
<row>
<type>metric</type>
<category>Visit</category>
<name>Number of visits</name>
<segment>visitCount</segment>
</row>
<row>
<type>metric</type>
<category>Visit</category>
<name>Visit Duration (in seconds)</name>
<segment>visitDuration</segment>
</row>
<row>
<type>dimension</type>
<name>City</name>
<segment>city</segment>
<acceptedValues>Sydney, Sao Paolo, Rome, etc.</acceptedValues>
</row>
<row>
<type>dimension</type>
<category>Visit Location</category>
<name>Continent</name>
<acceptedValues>eur, asi, amc, amn, ams, afr, ant, oce</acceptedValues>
</row>
<row>
<type>dimension</type>
<category>Visit Location</category>
<name>Country</name>
<acceptedValues>de, us, fr, in, es, etc.</acceptedValues>
</row>
<row>
<type>dimension</type>
<category>Visit Location</category>
<acceptedValues>-33.578, 40.830, etc.<br/>You can select visitors within a lat/long range using &segment=lat>X;lat<Y;long>M;long<N.</acceptedValues>
</row>
<row>
<type>dimension</type>
<acceptedValues>-70.664, 14.326, etc.</acceptedValues>
</row>
<row>
<type>dimension</type>
<category>Visit Location</category>
<name>Provider</name>
<segment>provider</segment>
<acceptedValues>comcast.net, proxad.net, etc.</acceptedValues>
</row>
<row>
<type>dimension</type>
<category>Visit Location</category>
<acceptedValues>01 02, OR, P8, etc.<br/>eg. region=A1;country=fr</acceptedValues>
</row>
<row>
<type>dimension</type>
<category>Visit</category>
<name>Browser</name>
<acceptedValues>FF, IE, CH, SF, OP, etc.</acceptedValues>
</row>
<row>
<type>dimension</type>
<category>Visit</category>
<name>Browser version</name>
<segment>browserVersion</segment>
<acceptedValues>1.0, 8.0, etc.</acceptedValues>
</row>
<row>
<type>dimension</type>
<category>Visit</category>
<name>Device type</name>
<segment>deviceType</segment>
<acceptedValues>desktop, smartphone, tablet, feature phone, console, tv, car browser</acceptedValues>
</row>
<row>
<type>dimension</type>
<category>Visit</category>
<name>Local time</name>
<segment>visitLocalHour</segment>
<acceptedValues>0, 1, 2, 3, ..., 20, 21, 22, 23</acceptedValues>
</row>
<row>
<type>dimension</type>
<category>Visit</category>
<name>Operating system</name>
<acceptedValues>WXP, WI7, MAC, LIN, AND, IPD, etc.</acceptedValues>
</row>
<row>
<type>dimension</type>
<category>Visit</category>
<name>Resolution</name>
<segment>resolution</segment>
<acceptedValues>1280x1024, 800x600, etc.</acceptedValues>
</row>
<row>
<type>dimension</type>
<category>Visit</category>
<name>Server time</name>
<segment>visitServerHour</segment>
<acceptedValues>0, 1, 2, 3, ..., 20, 21, 22, 23</acceptedValues>
</row>
<row>
<type>dimension</type>
<category>Visit</category>
<segment>visitEcommerceStatus</segment>
<acceptedValues>none, ordered, abandonedCart, orderedThenAbandonedCart. For example, to select all visits that have made an Ecommerce order, the API request would contain "&segment=visitEcommerceStatus==ordered,visitEcommerceStatus==orderedThenAbandonedCart"</acceptedValues>
</row>
<row>
<type>dimension</type>
<category>Visit</category>
<name>Visit converted a specific Goal Id</name>
<segment>visitConvertedGoalId</segment>
<acceptedValues>1, 2, 3, etc.</acceptedValues>
</row>
<row>
<type>dimension</type>
<category>Visit</category>
<name>Visit converted at least one Goal</name>
<segment>visitConverted</segment>
<acceptedValues>0, 1</acceptedValues>
</row>
<row>
<type>dimension</type>
<category>Visit</category>
<name>Visitor ID</name>
<segment>visitorId</segment>
<acceptedValues>34c31e04394bdc63 - any 16 Hexadecimal chars ID, which can be fetched using the Tracking API function getVisitorId()</acceptedValues>
<permission>1</permission>
</row>
<row>
<type>dimension</type>
<category>Visit</category>
<name>Visitor IP</name>
<segment>visitIp</segment>
<acceptedValues>13.54.122.1, etc.</acceptedValues>
<permission>1</permission>
</row>
<row>
<type>dimension</type>
<category>Visit</category>
<acceptedValues>new, returning, returningCustomer. For example, to select all visitors who have returned to the website, including those who have bought something in their previous visits, the API request would contain "&segment=visitorType==returning,visitorType==returningCustomer"</acceptedValues>
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
</row>
<row>
<type>dimension</type>
<category>Referrers</category>
<name>Keyword</name>
<segment>referrerKeyword</segment>
<acceptedValues>Encoded%20Keyword, keyword</acceptedValues>
</row>
<row>
<type>dimension</type>
<category>Referrers</category>
<name>Referrer Name</name>
<segment>referrerName</segment>
<acceptedValues>twitter.com, www.facebook.com, Bing, Google, Yahoo, CampaignName</acceptedValues>
</row>
<row>
<type>dimension</type>
<category>Referrers</category>
<name>Referrer Type</name>
<segment>referrerType</segment>
<acceptedValues>direct, search, website, campaign</acceptedValues>
</row>
<row>
<type>dimension</type>
<category>Referrers</category>
<name>Referrer URL</name>
<acceptedValues>http%3A%2F%2Fwww.example.org%2Freferer-page.htm</acceptedValues>
<segment>referrerUrl</segment>
</row>
<row>
<type>dimension</type>
<category>Custom Variables</category>
<name>Custom Variable name 1 (scope visit)</name>
<segment>customVariableName1</segment>
</row>
<row>
<type>dimension</type>
<category>Custom Variables</category>
<name>Custom Variable name 2 (scope visit)</name>
<segment>customVariableName2</segment>
</row>
<row>
<type>dimension</type>
<category>Custom Variables</category>
<name>Custom Variable name 3 (scope visit)</name>
<segment>customVariableName3</segment>
</row>
<row>
<type>dimension</type>
<category>Custom Variables</category>
<name>Custom Variable name 4 (scope visit)</name>
<segment>customVariableName4</segment>
</row>
<row>
<type>dimension</type>
<category>Custom Variables</category>
<name>Custom Variable name 5 (scope visit)</name>
<segment>customVariableName5</segment>
</row>
<row>
<type>dimension</type>
<category>Custom Variables</category>
<name>Custom Variable name 1 (scope page)</name>
<segment>customVariablePageName1</segment>
</row>
<row>
<type>dimension</type>
<category>Custom Variables</category>
<name>Custom Variable name 2 (scope page)</name>
<segment>customVariablePageName2</segment>
</row>
<row>
<type>dimension</type>
<category>Custom Variables</category>
<name>Custom Variable name 3 (scope page)</name>
<segment>customVariablePageName3</segment>
</row>
<row>
<type>dimension</type>
<category>Custom Variables</category>
<name>Custom Variable name 4 (scope page)</name>
<segment>customVariablePageName4</segment>
</row>
<row>
<type>dimension</type>
<category>Custom Variables</category>
<name>Custom Variable name 5 (scope page)</name>
<segment>customVariablePageName5</segment>
</row>
<row>
<type>dimension</type>
<category>Custom Variables</category>
<name>Custom Variable value 1 (scope page)</name>
<segment>customVariablePageValue1</segment>
</row>
<row>
<type>dimension</type>
<category>Custom Variables</category>
<name>Custom Variable value 2 (scope page)</name>
<segment>customVariablePageValue2</segment>
</row>
<row>
<type>dimension</type>
<category>Custom Variables</category>
<name>Custom Variable value 3 (scope page)</name>
<segment>customVariablePageValue3</segment>
</row>
<row>
<type>dimension</type>
<category>Custom Variables</category>
<name>Custom Variable value 4 (scope page)</name>
<segment>customVariablePageValue4</segment>
</row>
<row>
<type>dimension</type>
<category>Custom Variables</category>
<name>Custom Variable value 5 (scope page)</name>
<segment>customVariablePageValue5</segment>
</row>
<row>
<type>dimension</type>
<category>Custom Variables</category>
<name>Custom Variable value 1 (scope visit)</name>
<segment>customVariableValue1</segment>
</row>
<row>
<type>dimension</type>
<category>Custom Variables</category>
<name>Custom Variable value 2 (scope visit)</name>
<segment>customVariableValue2</segment>
</row>
<row>
<type>dimension</type>
<category>Custom Variables</category>
<name>Custom Variable value 3 (scope visit)</name>
<segment>customVariableValue3</segment>
</row>
<row>
<type>dimension</type>
<category>Custom Variables</category>
<name>Custom Variable value 4 (scope visit)</name>
<segment>customVariableValue4</segment>
</row>
<row>
<type>dimension</type>
<category>Custom Variables</category>
<name>Custom Variable value 5 (scope visit)</name>
<segment>customVariableValue5</segment>
</row>
<row>
<type>dimension</type>
<category>Actions</category>
<name>Entry Page URL</name>
<segment>entryPageUrl</segment>
</row>
<row>
<type>dimension</type>
<category>Actions</category>
<name>Entry Page title</name>
<segment>entryPageTitle</segment>
</row>
<row>
<type>dimension</type>
<category>Actions</category>
<name>Exit Page Title</name>
<segment>exitPageTitle</segment>
</row>
<row>
<type>dimension</type>
<category>Actions</category>
<name>Exit Page URL</name>
<segment>exitPageUrl</segment>
</row>
<row>
<type>dimension</type>
<category>Actions</category>
<name>Keyword (Site Search)</name>
<segment>siteSearchKeyword</segment>
</row>
<row>
<type>dimension</type>
<category>Actions</category>
<name>Page Name</name>
<segment>pageTitle</segment>
</row>
<row>
<type>dimension</type>
<category>Actions</category>
<name>Page URL</name>
<segment>pageUrl</segment>
<acceptedValues>All these segments must be URL encoded, for example: http%3A%2F%2Fexample.com%2Fpath%2Fpage%3Fquery</acceptedValues>
</row>