-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
1011 lines (659 loc) · 42.4 KB
/
index.html
File metadata and controls
1011 lines (659 loc) · 42.4 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
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
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="https://use.typekit.net/ilp4lxb.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta property="og:title" content="Preview of Tealium Docs" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://docs-preview.tealium.com/" />
<meta property="og:image" content="https://docs-preview.tealium.com/images/icons/tealium_logo_icon.png" />
<meta property="og:description" content="Learn the basics, install on a supported platform, and explore the product guides." />
<meta property="og:site_name" content="Preview of Tealium Docs" />
<title>Welcome to Tealium Docs | Preview of Tealium Docs</title>
<meta name="HandheldFriendly" content="True">
<meta name="MobileOptimized" content="320">
<meta name="viewport" content="width=device-width,minimum-scale=1">
<meta name="generator" content="Hugo 0.111.3">
<meta NAME="robots" CONTENT="noindex, nofollow">
<link rel="alternate" hreflang="ja" href="https://docs-preview.tealium.com/ja/">
<link href='/dist/css/app.css' rel='stylesheet' type="text/css" />
<script>
history.scrollRestoration = "manual";
if (location.hash) {
window.scrollTo(0, 0);
setTimeout(function() {
window.scrollTo(0, 0);
}, 10);
}
</script>
</head>
<body class="overflow-hidden sidebar ma0 sans-serif text-color-primary hg-home">
<script>
var utag_data = {
site_language : "en",
tealium_event : "page_view"
}
</script>
<script>
(function(a,b,c,d){
a="//tags.tiqcdn.com/utag/tealium/docs/qa/utag.js";
b=document;c='script';d=b.createElement(c);d.src=a;d.type='text/java'+c;d.async=true;
a=b.getElementsByTagName(c)[0];a.parentNode.insertBefore(d,a);
})();
</script>
<nav class="w-100 sticky-t bg-primary-color-light bb b--light-gray dn-p" role="navigation">
<div class="flex flex-wrap items-center justify-start mw9">
<div class="ma0 pl15 dn-ns dib">
<button class="js-toggle f6 pa0 db bg-white bn" style="height: 20px;width: 20px;" data-target=".mobilenav"><svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 640 640"><path d="M96 160C96 142.3 110.3 128 128 128L512 128C529.7 128 544 142.3 544 160C544 177.7 529.7 192 512 192L128 192C110.3 192 96 177.7 96 160zM96 320C96 302.3 110.3 288 128 288L512 288C529.7 288 544 302.3 544 320C544 337.7 529.7 352 512 352L128 352C110.3 352 96 337.7 96 320zM544 480C544 497.7 529.7 512 512 512L128 512C110.3 512 96 497.7 96 480C96 462.3 110.3 448 128 448L512 448C529.7 448 544 462.3 544 480z" fill="#051838" /></svg>
</button>
</div>
<div class="lh-solid ml0-ns mr0 mr4-l mv3 pl15 dib db-ns relative" style="height: 40px;">
<a href="/"><svg width="100%" height="100%" viewBox="0 0 184 33" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M19.21 16.8411C19.1659 14.859 17.6239 13.2733 15.7516 13.2966C13.8571 13.3433 12.3592 14.9756 12.4033 16.9577C12.4473 18.9398 13.9893 20.5255 15.8617 20.5022C17.7341 20.4789 19.232 18.8232 19.21 16.8411Z" fill="black"/>
<path d="M8.96654 19.8022C10.0239 19.1026 11.6319 19.8255 12.5571 21.4112C13.4823 22.9969 13.3722 24.8391 12.3148 25.5387C11.2575 26.2382 9.64941 25.5153 8.72424 23.9296C7.79906 22.3206 7.93123 20.4784 8.96654 19.8022Z" fill="black"/>
<path d="M5.70632 23.8369C6.60947 23.4405 7.82101 24.3733 8.41577 25.889C9.01053 27.428 8.76822 28.9904 7.86507 29.3868C6.96192 29.7833 5.75038 28.8738 5.15562 27.3348C4.56086 25.7957 4.8252 24.2333 5.70632 23.8369Z" fill="black"/>
<path d="M2.75444 26.9383C3.37123 26.6818 4.2964 27.6612 4.82508 29.1302C5.33172 30.5993 5.24361 31.9752 4.62682 32.2084C4.01004 32.4649 3.06283 31.4855 2.55619 30.0164C2.02752 28.5473 2.11563 27.1715 2.75444 26.9383Z" fill="black"/>
<path d="M11.5428 7.51301C12.7323 7.88612 13.305 9.63504 12.8204 11.4073C12.3358 13.2028 10.948 14.3455 9.75853 13.9724C8.56902 13.5993 7.99629 11.8503 8.4809 10.0548C8.96552 8.28254 10.3533 7.13991 11.5428 7.51301Z" fill="black"/>
<path d="M7.20295 3.40914C8.15016 3.68897 8.56869 5.20471 8.15016 6.7904C7.73162 8.39941 6.65225 9.47208 5.70504 9.19226C4.75784 8.91243 4.33931 7.42001 4.75784 5.78768C5.17637 4.20199 6.27777 3.12932 7.20295 3.40914Z" fill="black"/>
<path d="M3.92133 0.261051C4.58217 0.400965 4.86853 1.75347 4.56014 3.29252C4.25175 4.80826 3.48077 5.92757 2.81992 5.78765C2.18111 5.64774 1.87272 4.29524 2.18111 2.75618C2.51153 1.21713 3.28251 0.121137 3.92133 0.261051Z" fill="black"/>
<path d="M6.72493 19.2185C7.75881 19.1982 8.57477 17.9187 8.54743 16.3607C8.52009 14.8027 7.6598 13.5561 6.62592 13.5765C5.59203 13.5968 4.77607 14.8763 4.80341 16.4343C4.83075 17.9923 5.69105 19.2389 6.72493 19.2185Z" fill="black"/>
<path d="M2.35735 21.0617C2.11505 19.6392 2.57764 18.3567 3.39267 18.1934C4.20771 18.0535 5.04478 19.0795 5.28708 20.5253C5.52939 21.9478 5.0668 23.2303 4.25177 23.3936C3.43673 23.5335 2.57764 22.4841 2.35735 21.0617Z" fill="black"/>
<path d="M2.51225 23.8834C2.1598 22.6008 1.41085 21.7147 0.838118 21.9013C0.265389 22.0878 0.067137 23.2538 0.419586 24.5363C0.772034 25.8189 1.52099 26.705 2.09372 26.5184C2.68847 26.3552 2.8647 25.1659 2.51225 23.8834Z" fill="black"/>
<path d="M5.0462 11.7102C5.02417 10.3111 4.36333 9.16844 3.59235 9.19176C2.82137 9.21508 2.22661 10.3577 2.24864 11.7568C2.27067 13.156 2.90948 14.2753 3.68046 14.2753C4.47347 14.252 5.09026 13.1093 5.0462 11.7102Z" fill="black"/>
<path d="M2.26958 7.95631C2.24755 6.69708 1.71888 5.69436 1.10209 5.71768C0.485309 5.741 -0.0213358 6.76704 0.000692208 8.00294C0.0227203 9.26217 0.551393 10.2649 1.16818 10.2416C1.80699 10.2416 2.29161 9.21553 2.26958 7.95631Z" fill="black"/>
<path d="M37.9314 12.7364H32.4023V22.8102H29.3184V12.7364H23.8555V10.0547H37.9314V12.7364Z" fill="black"/>
<path d="M52.8005 22.8335H40.8613V10.0547H52.8005V12.7364H43.9453V15.1615H51.7652V17.7033H43.9453V20.2218H52.8005V22.8335Z" fill="black"/>
<path d="M71.2185 22.8336H67.9363L66.7468 20.2452H59.4115L58.1999 22.8336H55.0059L61.1737 10.0781H64.9846L71.2185 22.8336ZM65.6454 17.89L63.1122 12.7598L60.5349 17.89H65.6454Z" fill="black"/>
<path d="M84.0386 22.8335H73.1348V10.0547H76.2187V20.0119H84.0386V22.8335Z" fill="black"/>
<path d="M89.6542 22.8335H86.5703V10.0547H89.6542V22.8335Z" fill="black"/>
<path d="M107.429 17.4934C107.429 21.7142 105.557 23.0434 100.028 23.0434C94.4989 23.0434 92.8027 21.9007 92.8027 17.4934V10.0547H95.8206V17.2603C95.8206 19.9653 97.2965 20.2451 100.05 20.2451C102.627 20.2451 104.434 19.7787 104.434 17.2603V10.0547H107.451V17.4934H107.429Z" fill="black"/>
<path d="M129.812 22.8336H126.53L125.054 12.923L121.287 22.8336H117.785L114.106 12.923L112.586 22.8336H109.414L111.529 10.0781H116.089L119.503 19.429L123.138 10.0781H127.653L129.812 22.8336Z" fill="black"/>
<path d="M141.564 23.2372V10.0713H146.69C148.033 10.0713 149.208 10.3534 150.215 10.9177C151.234 11.4694 152.025 12.2405 152.589 13.2311C153.152 14.2217 153.434 15.3627 153.434 16.6543C153.434 17.9458 153.152 19.0868 152.589 20.0774C152.025 21.068 151.234 21.8454 150.215 22.4097C149.208 22.9614 148.033 23.2372 146.69 23.2372H141.564ZM142.895 22.0335H146.618C147.733 22.0335 148.698 21.8078 149.514 21.3564C150.341 20.8925 150.982 20.2592 151.438 19.4567C151.894 18.6417 152.121 17.7075 152.121 16.6543C152.121 15.5885 151.894 14.6543 151.438 13.8518C150.982 13.0493 150.341 12.4224 149.514 11.9709C148.698 11.507 147.733 11.275 146.618 11.275H142.895V22.0335Z" fill="black"/>
<path d="M160.002 23.3313C159.09 23.3313 158.269 23.1181 157.538 22.6918C156.818 22.2529 156.249 21.6573 155.829 20.905C155.41 20.1401 155.2 19.2686 155.2 18.2906C155.2 17.3 155.41 16.4286 155.829 15.6762C156.249 14.9239 156.818 14.3346 157.538 13.9082C158.257 13.4819 159.078 13.2687 160.002 13.2687C160.937 13.2687 161.764 13.4819 162.484 13.9082C163.215 14.3346 163.784 14.9239 164.192 15.6762C164.612 16.4286 164.822 17.3 164.822 18.2906C164.822 19.2686 164.612 20.1401 164.192 20.905C163.784 21.6573 163.215 22.2529 162.484 22.6918C161.752 23.1181 160.925 23.3313 160.002 23.3313ZM160.002 22.1464C160.685 22.1464 161.291 21.9896 161.818 21.6761C162.346 21.3501 162.759 20.8987 163.059 20.3219C163.371 19.7326 163.527 19.0555 163.527 18.2906C163.527 17.5132 163.371 16.8361 163.059 16.2593C162.759 15.6825 162.346 15.2374 161.818 14.9239C161.291 14.5979 160.691 14.4349 160.02 14.4349C159.348 14.4349 158.749 14.5979 158.221 14.9239C157.694 15.2374 157.274 15.6825 156.962 16.2593C156.651 16.8361 156.495 17.5132 156.495 18.2906C156.495 19.0555 156.651 19.7326 156.962 20.3219C157.274 20.8987 157.694 21.3501 158.221 21.6761C158.749 21.9896 159.342 22.1464 160.002 22.1464Z" fill="black"/>
<path d="M171.349 23.3313C170.414 23.3313 169.575 23.1181 168.831 22.6918C168.1 22.2529 167.524 21.6573 167.105 20.905C166.685 20.1401 166.475 19.2686 166.475 18.2906C166.475 17.3 166.685 16.4286 167.105 15.6762C167.524 14.9239 168.1 14.3346 168.831 13.9082C169.575 13.4819 170.414 13.2687 171.349 13.2687C172.152 13.2687 172.878 13.4317 173.525 13.7578C174.173 14.0838 174.682 14.5728 175.054 15.2248L174.101 15.9019C173.777 15.4004 173.375 15.0305 172.896 14.7922C172.416 14.554 171.895 14.4349 171.331 14.4349C170.66 14.4349 170.054 14.5979 169.515 14.9239C168.975 15.2374 168.549 15.6825 168.238 16.2593C167.926 16.8361 167.77 17.5132 167.77 18.2906C167.77 19.068 167.926 19.7451 168.238 20.3219C168.549 20.8987 168.975 21.3501 169.515 21.6761C170.054 21.9896 170.66 22.1464 171.331 22.1464C171.895 22.1464 172.416 22.0272 172.896 21.789C173.375 21.5507 173.777 21.1871 174.101 20.6981L175.054 21.3752C174.682 22.0147 174.173 22.5037 173.525 22.8423C172.878 23.1683 172.152 23.3313 171.349 23.3313Z" fill="black"/>
<path d="M180.098 23.3313C179.319 23.3313 178.581 23.2184 177.886 22.9927C177.191 22.7545 176.645 22.4598 176.249 22.1087L176.825 21.0555C177.209 21.3564 177.7 21.6197 178.3 21.8454C178.899 22.0586 179.529 22.1652 180.188 22.1652C181.087 22.1652 181.735 22.021 182.13 21.7326C182.526 21.4316 182.724 21.0366 182.724 20.5476C182.724 20.184 182.61 19.9019 182.382 19.7012C182.166 19.4881 181.879 19.3313 181.519 19.231C181.159 19.1182 180.758 19.0241 180.314 18.9489C179.87 18.8737 179.427 18.7859 178.983 18.6856C178.551 18.5853 178.156 18.4411 177.796 18.253C177.436 18.0524 177.143 17.7828 176.915 17.4442C176.699 17.1057 176.591 16.6543 176.591 16.09C176.591 15.5508 176.735 15.0681 177.023 14.6418C177.311 14.2154 177.73 13.8831 178.282 13.6449C178.845 13.3941 179.529 13.2687 180.332 13.2687C180.943 13.2687 181.555 13.3565 182.166 13.5321C182.778 13.6951 183.281 13.9145 183.677 14.1904L183.12 15.2624C182.7 14.9615 182.25 14.7483 181.771 14.6229C181.291 14.485 180.811 14.4161 180.332 14.4161C179.481 14.4161 178.851 14.5728 178.444 14.8863C178.048 15.1872 177.85 15.5759 177.85 16.0524C177.85 16.4286 177.958 16.7232 178.174 16.9364C178.402 17.1496 178.695 17.3188 179.055 17.4442C179.427 17.5571 179.828 17.6511 180.26 17.7264C180.704 17.8016 181.141 17.8956 181.573 18.0085C182.016 18.1088 182.418 18.253 182.778 18.4411C183.149 18.6166 183.443 18.8737 183.659 19.2122C183.887 19.5382 184.001 19.9708 184.001 20.51C184.001 21.0868 183.845 21.5884 183.533 22.0147C183.233 22.4285 182.79 22.7545 182.202 22.9927C181.627 23.2184 180.925 23.3313 180.098 23.3313Z" fill="black"/>
</svg>
</a>
</div>
<div class="dib center"><div id="docsearch">
</div>
</div><ul class="list ma0 pa0 dn dib-ns">
<li class="f5 dib mr4">
<a href="/help/" class="dim link mid-gray">Help</a>
</li>
<li class="f5 dib mr4">
<a href="/ja/" class="dim link mid-gray">日本語</a>
</li>
</ul>
</div>
</nav>
<nav class="w-100 relative bg-primary-color-light mobilenav overflow-auto dn dn-p" style="z-index:2000;height:100vh;width:100vw;">
<div class="flex justify-between mv3 pl15">
<button class="js-toggle f6 pa0 bg-white bn" style="height: 24px;" data-target=".mobilenav"><svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 640 640"><path d="M183.1 137.4C170.6 124.9 150.3 124.9 137.8 137.4C125.3 149.9 125.3 170.2 137.8 182.7L275.2 320L137.9 457.4C125.4 469.9 125.4 490.2 137.9 502.7C150.4 515.2 170.7 515.2 183.2 502.7L320.5 365.3L457.9 502.6C470.4 515.1 490.7 515.1 503.2 502.6C515.7 490.1 515.7 469.8 503.2 457.3L365.8 320L503.1 182.6C515.6 170.1 515.6 149.8 503.1 137.3C490.6 124.8 470.3 124.8 457.8 137.3L320.5 274.7L183.1 137.4z" fill="#051838" /></svg>
</button>
<ul class="list ma0 pa0">
<li class="f5 dib mr4">
<a href="/help/" class="dim link mid-gray">Help</a>
</li>
<li class="f5 dib mr4">
<a href="/ja/" class="dim link mid-gray">日本語</a>
</li>
</ul>
</div>
<div class="bg-white sectionmenu vh-100" style="overflow-y:scroll;">
<ul class="list dib ph0 ma0 scrolling-touch tc">
<li class="tl dib ma0 w-100">
<a href="/" class="f4 fw3 link overflow db ma0 w-100 pv2 ph4 bg-secondary primary-color"><span>Home</span></a>
</li>
<li class="tl dib ma0 w-100">
<a href="/guides/" class="f4 fw3 link overflow db ma0 w-100 pv2 ph4 text-color-primary hover-primary-color"><span>Guides</span></a>
</li>
<li class="tl dib ma0 w-100">
<a href="/iq-tag-management/" class="f4 fw3 link overflow db ma0 w-100 pv2 ph4 text-color-primary hover-primary-color"><span>iQ Tag Management</span></a>
</li>
<li class="tl dib ma0 w-100">
<a href="/server-side/#eventstream-api-hub" class="f4 fw3 link overflow db ma0 w-100 pv2 ph4 text-color-primary hover-primary-color"><span>EventStream API Hub</span></a>
</li>
<li class="tl dib ma0 w-100">
<a href="/server-side/#audiencestream-cdp" class="f4 fw3 link overflow db ma0 w-100 pv2 ph4 text-color-primary hover-primary-color"><span>AudienceStream CDP</span></a>
</li>
<li class="tl dib ma0 w-100">
<a href="/server-side/cloudstream/about/" class="f4 fw3 link overflow db ma0 w-100 pv2 ph4 text-color-primary hover-primary-color"><span>CloudStream</span></a>
</li>
<li class="tl dib ma0 w-100">
<a href="/server-side/moments-api/" class="f4 fw3 link overflow db ma0 w-100 pv2 ph4 text-color-primary hover-primary-color"><span>Moments API</span></a>
</li>
<li class="tl dib ma0 w-100">
<a href="/server-side/functions/" class="f4 fw3 link overflow db ma0 w-100 pv2 ph4 text-color-primary hover-primary-color"><span>Functions</span></a>
</li>
<li class="tl dib ma0 w-100">
<a href="/server-side/data-connect/" class="f4 fw3 link overflow db ma0 w-100 pv2 ph4 text-color-primary hover-primary-color"><span>Data Connect</span></a>
</li>
<li class="tl dib ma0 w-100">
<a href="/predict/getting-started/" class="f4 fw3 link overflow db ma0 w-100 pv2 ph4 text-color-primary hover-primary-color"><span>Predict ML</span></a>
</li>
<li class="tl dib ma0 w-100">
<a href="/server-side/data-storage/" class="f4 fw3 link overflow db ma0 w-100 pv2 ph4 text-color-primary hover-primary-color"><span>DataAccess</span></a>
</li>
<li class="tl dib ma0 w-100">
<a href="/server-side/insights/" class="f4 fw3 link overflow db ma0 w-100 pv2 ph4 text-color-primary hover-primary-color"><span>Tealium Insights</span></a>
</li>
<li class="tl dib ma0 w-100">
<a href="/client-side-tags/" class="f4 fw3 link overflow db ma0 w-100 pv2 ph4 text-color-primary hover-primary-color"><span>Client-Side Tags</span></a>
</li>
<li class="tl dib ma0 w-100">
<a href="/server-side-connectors/" class="f4 fw3 link overflow db ma0 w-100 pv2 ph4 text-color-primary hover-primary-color"><span>Server-Side Connectors</span></a>
</li>
<li class="tl dib ma0 w-100">
<a href="/platforms/" class="f4 fw3 link overflow db ma0 w-100 pv2 ph4 text-color-primary hover-primary-color"><span>Platforms</span></a>
</li>
<li class="tl dib ma0 w-100">
<a href="/api/" class="f4 fw3 link overflow db ma0 w-100 pv2 ph4 text-color-primary hover-primary-color"><span>API</span></a>
</li>
<li class="tl dib ma0 w-100">
<a href="/administration/" class="f4 fw3 link overflow db ma0 w-100 pv2 ph4 text-color-primary hover-primary-color"><span>Administration</span></a>
</li>
<li class="tl dib ma0 w-100">
<a href="/consent/" class="f4 fw3 link overflow db ma0 w-100 pv2 ph4 text-color-primary hover-primary-color"><span>Tealium Consent</span></a>
</li>
<li class="tl dib ma0 w-100">
<a href="/tools/tealium-tools/" class="f4 fw3 link overflow db ma0 w-100 pv2 ph4 text-color-primary hover-primary-color"><span>Tealium Tools</span></a>
</li>
<li class="tl dib ma0 w-100">
<a href="/partners-and-industries/" class="f4 fw3 link overflow db ma0 w-100 pv2 ph4 text-color-primary hover-primary-color"><span>Partners and Industries</span></a>
</li>
<li class="tl dib ma0 w-100">
<a href="/glossary/" class="f4 fw3 link overflow db ma0 w-100 pv2 ph4 text-color-primary hover-primary-color"><span>Glossary</span></a>
</li>
<li class="tl dib ma0 w-100">
<a href="/early-access/" class="f4 fw3 link overflow db ma0 w-100 pv2 ph4 text-color-primary hover-primary-color"><span>Early Access</span></a>
</li>
<li class="tl dib ma0 w-100">
<a href="/release-notes/" class="f4 fw3 link overflow db ma0 w-100 pv2 ph4 text-color-primary hover-primary-color"><span>Release Notes</span></a>
</li>
</ul>
</div>
</nav>
<main role="main" class="content-with-sidebar pb0-ns">
<div class="w-100">
<div class="flex vh-100">
<div id="menu" class="order-0 w-auto overflow-y-auto dn sticky-l pt4 pl125" style="width:280px;">
<nav class="side-nav home-nav f6 pb6" role="navigation">
<ul class="list pa0 mt0">
<li class="relative w-100 fw5 f5 selected">
<a href="/" class="db link hover-primary-color pv1 mb2 bg-secondary primary-color" data-target=".home">Home</a>
</li>
<li class="relative w-100 fw5 f5">
<span class="db mt2 text-color-disabled fw3 ttu pt3 pb1">Get Started</span>
</li>
<li class="relative w-100 fw5 f5">
<a href="/guides/" class="db link hover-primary-color pv1 mb2 text-color-primary hover-primary-color " data-target=".home-guides">Guides</a>
</li>
<li class="relative w-100 fw5 f5">
<span class="db mt2 text-color-disabled fw3 ttu pt3 pb1">Client-Side</span>
</li>
<li class="relative w-100 fw5 f5">
<a href="/iq-tag-management/" class="db link hover-primary-color pv1 mb2 text-color-primary hover-primary-color " data-target=".home-iq">iQ Tag Management</a>
</li>
<li class="relative w-100 fw5 f5">
<span class="db mt2 text-color-disabled fw3 ttu pt3 pb1">Server-Side</span>
</li>
<li class="relative w-100 fw5 f5">
<a href="/server-side/#eventstream-api-hub" class="db link hover-primary-color pv1 mb2 text-color-primary hover-primary-color " data-target=".home-es">EventStream API Hub</a>
</li>
<li class="relative w-100 fw5 f5">
<a href="/server-side/#audiencestream-cdp" class="db link hover-primary-color pv1 mb2 text-color-primary hover-primary-color " data-target=".home-as">AudienceStream CDP</a>
</li>
<li class="relative w-100 fw5 f5">
<a href="/server-side/cloudstream/about/" class="db link hover-primary-color pv1 mb2 text-color-primary hover-primary-color " data-target=".home-cls">CloudStream</a>
</li>
<li class="relative w-100 fw5 f5">
<a href="/server-side/moments-api/" class="db link hover-primary-color pv1 mb2 text-color-primary hover-primary-color " data-target=".home-mapi">Moments API</a>
</li>
<li class="relative w-100 fw5 f5">
<a href="/server-side/functions/" class="db link hover-primary-color pv1 mb2 text-color-primary hover-primary-color " data-target=".home-fn">Functions</a>
</li>
<li class="relative w-100 fw5 f5">
<a href="/server-side/data-connect/" class="db link hover-primary-color pv1 mb2 text-color-primary hover-primary-color " data-target=".home-dc">Data Connect</a>
</li>
<li class="relative w-100 fw5 f5">
<a href="/predict/getting-started/" class="db link hover-primary-color pv1 mb2 text-color-primary hover-primary-color " data-target=".home-ml">Predict ML</a>
</li>
<li class="relative w-100 fw5 f5">
<a href="/server-side/data-storage/" class="db link hover-primary-color pv1 mb2 text-color-primary hover-primary-color " data-target=".home-da">DataAccess</a>
</li>
<li class="relative w-100 fw5 f5">
<a href="/server-side/insights/" class="db link hover-primary-color pv1 mb2 text-color-primary hover-primary-color " data-target=".home-in">Tealium Insights</a>
</li>
<li class="relative w-100 fw5 f5">
<span class="db mt2 text-color-disabled fw3 ttu pt3 pb1">Integrations</span>
</li>
<li class="relative w-100 fw5 f5">
<a href="/client-side-tags/" class="db link hover-primary-color pv1 mb2 text-color-primary hover-primary-color " data-target=".home-tags">Client-Side Tags</a>
</li>
<li class="relative w-100 fw5 f5">
<a href="/server-side-connectors/" class="db link hover-primary-color pv1 mb2 text-color-primary hover-primary-color " data-target=".home-conn">Server-Side Connectors</a>
</li>
<li class="relative w-100 fw5 f5">
<span class="db mt2 text-color-disabled fw3 ttu pt3 pb1">Developers</span>
</li>
<li class="relative w-100 fw5 f5">
<a href="/platforms/" class="db link hover-primary-color pv1 mb2 text-color-primary hover-primary-color " data-target=".home-plat">Platforms</a>
</li>
<li class="relative w-100 fw5 f5 mb4 break">
<a href="/api/" class="db link hover-primary-color pv1 mb2 text-color-primary hover-primary-color " data-target=".home-api">API</a>
</li>
<li class="relative w-100 fw5 f5">
<a href="/administration/" class="db link hover-primary-color pv1 mb2 text-color-primary hover-primary-color " data-target=".home-admin">Administration</a>
</li>
<li class="relative w-100 fw5 f5">
<a href="/consent/" class="db link hover-primary-color pv1 mb2 text-color-primary hover-primary-color " data-target=".home-consent">Tealium Consent</a>
</li>
<li class="relative w-100 fw5 f5">
<a href="/tools/tealium-tools/" class="db link hover-primary-color pv1 mb2 text-color-primary hover-primary-color " data-target=".home-tools">Tealium Tools</a>
</li>
<li class="relative w-100 fw5 f5">
<a href="/partners-and-industries/" class="db link hover-primary-color pv1 mb2 text-color-primary hover-primary-color " data-target=".partners-and-industries">Partners and Industries</a>
</li>
<li class="relative w-100 fw5 f5">
<a href="/glossary/" class="db link hover-primary-color pv1 mb2 text-color-primary hover-primary-color " data-target=".">Glossary</a>
</li>
<li class="relative w-100 fw5 f5">
<a href="/early-access/" class="db link hover-primary-color pv1 mb2 text-color-primary hover-primary-color " data-target=".home-ea">Early Access</a>
</li>
<li class="relative w-100 fw5 f5">
<a href="/release-notes/" class="db link hover-primary-color pv1 mb2 text-color-primary hover-primary-color " data-target=".home-rn">Release Notes</a>
</li>
<li class="relative w-100 fw5 f5">
</li></ul>
</nav>
</div>
<div class="home-wrapper order-1 w-100 overflow-y-auto">
<div class="w-100 dn db-ns hero-wrapper mb4">
<h1 class="lh-title fw7 montserrat">Welcome to Tealium Docs</h1>
<p class="dn db-ns lh-copy w-80 f4 pv0 mv0">Learn the basics, install on a supported platform, and explore the product guides.</p>
</div>
<div class="home-content flex flex-wrap w-100 pt5-m pb6"><h2 id="products">Products</h2>
<div class="card card-feature w-40-m w-30-l w-100 mr4-ns mb4 bg-white dib f5 ba b--light ">
<a href="https://docs-preview.tealium.com/iq-tag-management/">
<img src="/images/icons/icon-product-iq.svg" class="ma0" width="24" height="24"/>
<h4 id="tag-management">Tag Management</h4>
<p>Explore the client-side solutions for managing tags, consent, and data collection.</p>
</a>
</div>
<div class="card card-feature w-40-m w-30-l w-100 mr4-ns mb4 bg-white dib f5 ba b--light ">
<a href="https://docs-preview.tealium.com/server-side/">
<img src="/images/icons/icon-cloud-up.svg" class="ma0" width="24" height="24"/>
<h4 id="server-side">Server-Side</h4>
<p>Explore the server-side solutions for data collection, customer profiles, and real-time actions.</p>
</a>
</div>
<div class="card card-feature w-40-m w-30-l w-100 mr4-ns mb4 bg-white dib f5 ba b--light ">
<a href="/server-side/#eventstream-api-hub">
<img src="/images/icons/icon-product-eventstream.svg" class="ma0" width="24" height="24"/>
<h4 id="eventstream-api-hub">EventStream API Hub</h4>
<p>Manage online and offline data collection, ensure data quality, and integrate with server-side analytics and marketing tools.</p>
</a>
</div>
<div class="card card-feature w-40-m w-30-l w-100 mr4-ns mb4 bg-white dib f5 ba b--light ">
<a href="/server-side/#audiencestream-cdp">
<img src="/images/icons/icon-product-audiencestream.svg" class="ma0" width="24" height="24"/>
<h4 id="audiencestream-cdp">AudienceStream CDP</h4>
<p>Unify customer profiles, build custom audiences, and manage real-time personalization.</p>
</a>
</div>
<div class="card card-feature w-40-m w-30-l w-100 mr4-ns mb4 bg-white dib f5 ba b--light ">
<a href="https://docs-preview.tealium.com/server-side/cloudstream/">
<img src="/images/icons/icon-cloud-down.svg" class="ma0" width="24" height="24"/>
<h4 id="cloudstream">CloudStream</h4>
<p>Activate customer data directly from your data cloud, without storing or loading data into Tealium.</p>
</a>
</div>
<div class="card card-feature w-40-m w-30-l w-100 mr4-ns mb4 bg-white dib f5 ba b--light ">
<a href="https://docs-preview.tealium.com/guides/">
<img src="/images/icons/icon-book-solid.svg" class="ma0" width="24" height="24"/>
<h4 id="guides">Guides</h4>
<p>Explore guides for Tealium strategies and real-world use cases.</p>
</a>
</div>
<h2 id="vendor-integrations">Vendor Integrations</h2>
<div class="card card-feature w-40-m w-30-l w-100 mr4-ns mb4 bg-white dib f5 ba b--light ">
<a href="https://docs-preview.tealium.com/client-side-tags/">
<img src="/images/icons/icon-tag.svg" class="ma0" width="28" height="28"/>
<h4 id="tags">Tags</h4>
<p>Browse the list of client-side vendor integrations.</p>
</a>
</div>
<div class="card card-feature w-40-m w-30-l w-100 mr4-ns mb4 bg-white dib f5 ba b--light ">
<a href="https://docs-preview.tealium.com/server-side-connectors/">
<img src="/images/icons/icon-connector.svg" class="ma0" width="25" height="25"/>
<h4 id="connectors">Connectors</h4>
<p>Browse the list of server-side vendor integrations.</p>
</a>
</div>
<div class="card card-feature w-40-m w-30-l w-100 mr4-ns mb4 bg-white dib f5 ba b--light ">
<a href="https://docs-preview.tealium.com/partners-and-industries/">
<img src="/images/icons/icon-shake.svg" class="ma0" width="26" height="26"/>
<h4 id="partners-and-industries">Partners and Industries</h4>
<p>Explore industry-specific integrations and partnership opportunities across automotive, pharmaceutical, AI, and identity solutions.</p>
</a>
</div>
<h2 id="install">Install</h2>
<div class="card card-feature w-40-m w-30-l w-100 mr4-ns mb4 bg-white dib f5 ba b--light ">
<a href="/platforms/getting-started-web/quick-start/">
<img src="/images/icons/icon-globe.svg" class="ma0" width="22" height="22"/>
<h4 id="quick-start-for-web">Quick start for web</h4>
<p>Learn the basics of mobile and explore the available features and integrations.</p>
</a>
</div>
<div class="card card-feature w-40-m w-30-l w-100 mr4-ns mb4 bg-white dib f5 ba b--light ">
<a href="/platforms/getting-started-mobile/quick-start/">
<img src="/images/icons/icon-mobile.svg" class="ma0" width="18" height="24"/>
<h4 id="quick-start-for-mobile">Quick start for mobile</h4>
<p>Learn the basics of mobile and explore the available features and integrations.</p>
</a>
</div>
<h2 id="platforms">Platforms</h2>
<div class="card card-link w-40-m w-30-l w-100 mr4-ns mb4 bg-white dib f5 ba b--light ">
<a href="/platforms/javascript/" class="w-100 flex items-center">
<img src="/images/icons/icon-platform-javascript-web.svg" class="fl di pr3" width="28"/>
<p>JavaScript (utag.js)</p>
</a>
</div>
<div class="card card-link w-40-m w-30-l w-100 mr4-ns mb4 bg-white dib f5 ba b--light ">
<a href="/platforms/android-kotlin/" class="w-100 flex items-center">
<img src="/images/icons/icon-platform-android.svg" class="fl di pr3" width="32" height="32"/>
<p>Tealium for Android</p>
</a>
</div>
<div class="card card-link w-40-m w-30-l w-100 mr4-ns mb4 bg-white dib f5 ba b--light ">
<a href="/platforms/ios-swift/" class="w-100 flex items-center">
<img src="/images/icons/icon-platform-ios.svg" class="fl di pr3" width="31" height="31"/>
<p>Tealium for iOS</p>
</a>
</div>
<div class="card card-link w-40-m w-30-l w-100 mr4-ns mb4 bg-white dib f5 ba b--light ">
<a href="/platforms/flutter/" class="w-100 flex items-center">
<img src="/images/icons/icon-platform-flutter.svg" class="fl di pr3" width="28" height="28"/>
<p>Flutter</p>
</a>
</div>
<div class="card card-link w-40-m w-30-l w-100 mr4-ns mb4 bg-white dib f5 ba b--light ">
<a href="/platforms/react-native/" class="w-100 flex items-center">
<img src="/images/icons/icon-platform-react-native.svg" class="fl di pr3" width="30" height="30"/>
<p>React Native</p>
</a>
</div>
<h2 id="administration">Administration</h2>
<div class="card card-link w-40-m w-30-l w-100 mr4-ns mb4 bg-white dib f5 ba b--light ">
<a href="/administration/" class="w-100 flex items-center">
<img src="/images/icons/icon-gear.svg" class="fl di pr3" width="25" height="25"/>
<p>Platform Permissions</p>
</a>
</div>
<div class="card card-link w-40-m w-30-l w-100 mr4-ns mb4 bg-white dib f5 ba b--light ">
<a href="/administration/users/" class="w-100 flex items-center">
<img src="/images/icons/icon-users.svg" class="fl di pr3" width="22" height="22"/>
<p>Manage Users</p>
</a>
</div>
<div class="card card-link w-40-m w-30-l w-100 mr4-ns mb4 bg-white dib f5 ba b--light ">
<a href="/administration/permission-groups/" class="w-100 flex items-center">
<img src="/images/icons/icon-users.svg" class="fl di pr3" width="22" height="22"/>
<p>Manage Groups</p>
</a>
</div>
<div class="card card-link w-40-m w-30-l w-100 mr4-ns mb4 bg-white dib f5 ba b--light ">
<a href="/server-side/administration/ip-allow-list/" class="w-100 flex items-center">
<img src="/images/icons/icon-shield.svg" class="fl di pr3" width="24" height="24"/>
<p>IP Address Allow List</p>
</a>
</div>
<div class="card card-link w-40-m w-30-l w-100 mr4-ns mb4 bg-white dib f5 ba b--light ">
<a href="/iq-tag-management/frequently-asked-questions/faq-login/" class="w-100 flex items-center">
<img src="/images/icons/icon-users.svg" class="fl di pr3" width="22" height="22"/>
<p>Log in to Tealium/SSO</p>
</a>
</div>
<h2 id="more-products">More products</h2>
<div class="card card-feature w-40-m w-30-l w-100 mr4-ns mb4 bg-white dib f5 ba b--light ">
<a href="https://docs-preview.tealium.com/server-side/data-connect/">
<img src="/images/icons/icon-product-data-connect.svg" class="ma0" width="24" height="24"/>
<h4 id="data-connect">Data Connect</h4>
<p>Integrate data from your internal systems into Tealium for event and visitor enrichment.</p>
</a>
</div>
<div class="card card-feature w-40-m w-30-l w-100 mr4-ns mb4 bg-white dib f5 ba b--light ">
<a href="/server-side/moments-api/">
<img src="/images/icons/icon-moments-api.svg" class="ma0" width="28" height="28"/>
<h4 id="moments-api">Moments API</h4>
<p>Retrieve high-performance data for real-time visitor personalization with a composable API.</p>
</a>
</div>
<div class="card card-feature w-40-m w-30-l w-100 mr4-ns mb4 bg-white dib f5 ba b--light ">
<a href="/server-side/functions/">
<img src="/images/icons/icon-product-functions.svg" class="ma0" width="24" height="24"/>
<h4 id="functions">Functions</h4>
<p>Write custom solutions in JavaScript that process events and visitor profiles directly.</p>
</a>
</div>
<div class="card card-feature w-40-m w-30-l w-100 mr4-ns mb4 bg-white dib f5 ba b--light ">
<a href="/predict/">
<img src="/images/icons/icon-product-predict.svg" class="ma0" width="24" height="24"/>
<h4 id="predict-ml">Predict ML</h4>
<p>Start using machine learning to create predictive customer attributes.</p>
</a>
</div>
<div class="card card-feature w-40-m w-30-l w-100 mr4-ns mb4 bg-white dib f5 ba b--light ">
<a href="/iq-tag-management/moments-iq/">
<img src="/images/icons/icon-tag.svg" class="ma0" width="28" height="28"/>
<h4 id="moments-iq">Moments iQ</h4>
<p>Collect preferences and sentiments (zero-party data) in real time directly from your visitors.</p>
</a>
</div>
<div class="card card-feature w-40-m w-30-l w-100 mr4-ns mb4 bg-white dib f5 ba b--light ">
<a href="/server-side/data-storage/">
<img src="/images/icons/icon-product-dataaccess.svg" class="ma0" width="24" height="24"/>
<h4 id="dataaccess">DataAccess</h4>
<p>Access long-term storage of your event and customer data.</p>
</a>
</div>
<div class="card card-feature w-40-m w-30-l w-100 mr4-ns mb4 bg-white dib f5 ba b--light ">
<a href="https://docs-preview.tealium.com/server-side/insights/">
<img src="/images/icons/icon-product-data-insights.svg" class="ma0" width="24" height="24"/>
<h4 id="tealium-insights">Tealium Insights</h4>
<p>Visualize and analyze event and visitor data with customizable dashboards.</p>
</a>
</div>
<div class="card card-feature w-40-m w-30-l w-100 mr4-ns mb4 bg-white dib f5 ba b--light ">
<a href="https://docs-preview.tealium.com/consent/">
<img src="/images/icons/icon-shield.svg" class="ma0" width="24" height="24"/>
<h4 id="tealium-consent">Tealium Consent</h4>
<p>Capture, interpret, and enforce user consent across client-side and server-side environments.</p>
</a>
</div>
<h2 id="more-features">More features</h2>
<div class="card card-link w-40-m w-30-l w-100 mr4-ns mb4 bg-white dib f5 ba b--light ">
<a href="/iq-tag-management/data-layer/" class="w-100 flex items-center">
<img src="/images/icons/icon-cubes.svg" class="fl di pr3" width="24" height="24"/>
<p>Data layer</p>
</a>
</div>
<div class="card card-link w-40-m w-30-l w-100 mr4-ns mb4 bg-white dib f5 ba b--light ">
<a href="/iq-tag-management/tags/" class="w-100 flex items-center">
<img src="/images/icons/icon-tag.svg" class="fl di pr3" width="26" height="26"/>
<p>Tag basics</p>
</a>
</div>
<div class="card card-link w-40-m w-30-l w-100 mr4-ns mb4 bg-white dib f5 ba b--light ">
<a href="/iq-tag-management/extensions/" class="w-100 flex items-center">
<img src="/images/icons/icon-wrench.svg" class="fl di pr3" width="20" height="20"/>
<p>Extensions</p>
</a>
</div>
<div class="card card-link w-40-m w-30-l w-100 mr4-ns mb4 bg-white dib f5 ba b--light ">
<a href="/server-side/attributes/" class="w-100 flex items-center">
<img src="/images/icons/icon-cubes.svg" class="fl di pr3" width="24" height="24"/>
<p>Attributes</p>
</a>
</div>
<div class="card card-link w-40-m w-30-l w-100 mr4-ns mb4 bg-white dib f5 ba b--light ">
<a href="/server-side/audiences/" class="w-100 flex items-center">
<img src="/images/icons/icon-audience.svg" class="fl di pr3" width="22" height="22"/>
<p>Audiences</p>
</a>
</div>
<div class="card card-link w-40-m w-30-l w-100 mr4-ns mb4 bg-white dib f5 ba b--light ">
<a href="/server-side/visitor-stitching/" class="w-100 flex items-center">
<img src="/images/icons/icon-id.svg" class="fl di pr3" width="22" height="22"/>
<p>Identity resolution</p>
</a>
</div></div>
</div>
</div>
</div>
</main>
<footer class="bg-secondary ph1-ns relative w-100 pv4 bt b--light-gray dn db-ns" role="contentinfo">
<div class="center flex-ns flex-wrap justify-between mw9 w-90 ">
<div class="flex nested-links w-33">
<ul class="list v-top mt0 pt0">
<li class="nav-list footer-heading-title">
<div class="footer-logo-wrapper">
<img class="logo" src="https://tealium.com/wp-content/uploads/2015/12/tealium_footer_logo_01-206x49.png" alt="tealium_footer_logo_01">
</div>
</li>
</ul>
</div>
<div class="flex nested-links w-33">
<ul class="list v-top mt0 pt0">
<li class="fw5 f5 mb3 ttu o-50">Support</li>
<li class="mb2"><a class="link" href="https://university.tealium.com/">Tealium University</a></li>
<li class="mb2"><a class="link" href="https://support.tealiumiq.com/en/support/solutions">Knowledge Base</a></li>
<li class="mb2"><a class="link" href="https://support.tealiumiq.com/" target="">Support Desk</a></li>
</ul>
</div>
<div class="flex nested-links w-33">
<ul class="list v-top mt0 pt0">
<li class="fw5 f5 mb3 ttu o-50">Company</li>
<li class="mb2">
<a class="link" href="http://tealium.com/">Tealium.com</a>
</li>
<li class="mb2">
<a class="link" href="http://tealium.com/blog/">Blog</a>
</li>
<li class="mb2">
<a class="link" href="https://tealium.com/careers/">Careers</a>
</li>
</ul>
</div>
</div>
</div>
</footer>
<script src="/dist/js/app.js"></script>
<script async defer src="https://buttons.github.io/buttons.js"></script>
<script src="https://kit.fontawesome.com/59194dc628.js" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/@docsearch/js@3"></script>
<script type="text/javascript">
const translations = {
button: {
buttonText: 'Search',
buttonAriaLabel: 'Search',
},
modal: {
searchBox: {
resetButtonTitle: 'Clear the query',
resetButtonAriaLabel: 'Clear the query',
cancelButtonText: 'Cancel',
cancelButtonAriaLabel: 'Cancel',
},
startScreen: {
recentSearchesTitle: 'Recent',
noRecentSearchesText: 'No recent searches',
saveRecentSearchButtonTitle: 'Save this search',
removeRecentSearchButtonTitle: 'Remove this search from history',
favoriteSearchesTitle: 'Favorite',
removeFavoriteSearchButtonTitle: 'Remove this search from favorites',
},
errorScreen: {
titleText: 'Unable to fetch results',
helpText: 'You might want to check your network connection.',
},
footer: {
selectText: 'to select',
selectKeyAriaLabel: 'Enter key',
navigateText: 'to navigate',
navigateUpKeyAriaLabel: 'Arrow up',
navigateDownKeyAriaLabel: 'Arrow down',
closeText: 'to close',
closeKeyAriaLabel: 'Escape key',
searchByText: 'Search by',
},
noResultsScreen: {
noResultsText: 'No results for',
suggestedQueryText: 'Try searching for',
reportMissingResultsText: 'Believe this query should return results?',
reportMissingResultsLinkText: 'Let us know.',
},
},
};
var default_sections = [
];
var ls_sections = JSON.parse(localStorage.getItem("tealdocs_sections") || "[]");
if(ls_sections.indexOf("JAVASCRIPT") != -1) {
ls_sections = [];
localStorage.setItem("tealdocs_sections", JSON.stringify(default_sections));
}
var local_sections = new Set(ls_sections);
var cur_section = $('#breadcrumb ul li:nth-child(n+2)');
if(cur_section && cur_section.length) {
var sect = cur_section.text().trim();
if(local_sections.has(sect)) {
local_sections.delete(sect);
local_sections.add(sect);
}
else {
local_sections.add(sect);
if(local_sections.size > 10) {
local_sections.delete(ls_sections[0]);
}
}
localStorage.setItem("tealdocs_sections", JSON.stringify(Array.from(local_sections)));
}
var filt_pre = "hierarchy.lvl0:";
var hier_filters = local_sections.size ? Array.from(local_sections).map(s => filt_pre+s)
: default_sections.map(s => filt_pre+s);
var opt_filters = [];
if(hier_filters.length) {
opt_filters.push(hier_filters);
}
const transformItems = function(hits) {
hits.map(hit => {
if (hit.url.indexOf('#breadcrumb') > 0) {
hit.url = hit.url.replace('#breadcrumb', '');
}
});
return hits;
};
docsearch({
container: '#docsearch',
appId: '01G44CJWZ0',
apiKey: '09633c367e743588b87dbb988dad4158',
indexName: 'tealium',
placeholder: 'Search',
translations: translations,
searchParameters: {
"hitsPerPage": 50,
"analytics": false ,
"analyticsTags": ["site"]