-
Notifications
You must be signed in to change notification settings - Fork 2
/
template.tpl
2506 lines (2338 loc) · 114 KB
/
template.tpl
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
___TERMS_OF_SERVICE___
By creating or modifying this file you agree to Google Tag Manager's Community
Template Gallery Developer Terms of Service available at
https://developers.google.com/tag-manager/gallery-tos (or such other URL as
Google may provide), as modified from time to time.
___INFO___
{
"type": "TAG",
"id": "cvt_temp_public_id",
"version": 1,
"securityGroups": [],
"categories": [
"ANALYTICS"
],
"displayName": "Amplitude Analytics Browser SDK",
"brand": {
"id": "github.com_amplitude",
"displayName": "amplitude",
"thumbnail": "data:image/png;base64,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\u003d\u003d"
},
"description": "Amplitude is a powerful product analytics platform that enables you to build better products by tracking and understanding user behavior. This template facilitates the deployment of the Amplitude Browser 2.0 SDK and the utilization of its API on your site. For more information, visit our GitHub repository at https://github.com/amplitude/amplitude-browser-sdk-gtm-template.",
"containerContexts": [
"WEB"
]
}
___TEMPLATE_PARAMETERS___
[
{
"selectItems": [
{
"displayValue": "Initialize (init)",
"value": "init"
},
{
"displayValue": "Track Event (track)",
"value": "track"
},
{
"displayValue": "Set User Properties (identify)",
"value": "identify"
},
{
"displayValue": "Set User ID (setUserId)",
"value": "setUserId"
},
{
"displayValue": "Set Group (setGroup)",
"value": "setGroup"
},
{
"displayValue": "Set Group Properties (groupIdentify)",
"value": "groupIdentify"
},
{
"displayValue": "Track Revenue (revenue)",
"value": "revenue"
},
{
"displayValue": "Flush Events (flush)",
"value": "flush"
},
{
"displayValue": "Set Device ID (setDeviceId)",
"value": "setDeviceId"
},
{
"displayValue": "Set Session ID (setSessionId)",
"value": "setSessionId"
},
{
"displayValue": "Reset User (reset)",
"value": "reset"
},
{
"displayValue": "Set Opt-Out (setOptOut)",
"value": "setOptOut"
}
],
"displayName": "Tag Type",
"defaultValue": "init",
"simpleValueType": true,
"name": "type",
"type": "SELECT",
"alwaysInSummary": true
},
{
"type": "LABEL",
"name": "initDescription",
"displayName": "\u003ca href\u003d\"https://www.docs.developers.amplitude.com/data/sources/google-tag-manager-client/#init\"\u003eInitialize\u003c/a\u003e - This tag sets up Amplitude on the page. You only need one Initialize tag, and it should be triggered on All Pages or a similar trigger that fires consistently on each page load.",
"enablingConditions": [
{
"paramName": "type",
"paramValue": "init",
"type": "EQUALS"
}
]
},
{
"type": "LABEL",
"name": "trackDescription",
"displayName": "\u003ca href\u003d\"https://www.docs.developers.amplitude.com/data/sources/google-tag-manager-client/#track\"\u003eTrack Event\u003c/a\u003e - This tag sends an \u003ca href\u003d\"https://www.docs.developers.amplitude.com/analytics/what-is-amplitude/#events\"\u003eevent\u003c/a\u003e to Amplitude. Events are actions that users take in your product, such as clicking a button, making a purchase, or signing up for an account.",
"enablingConditions": [
{
"paramName": "type",
"paramValue": "track",
"type": "EQUALS"
}
]
},
{
"type": "LABEL",
"name": "identifyDescription",
"displayName": "\u003ca href\u003d\"https://www.docs.developers.amplitude.com/data/sources/google-tag-manager-client/#identify\"\u003eSet User Properties\u003c/a\u003e - This tag sets properties on the \u003ca href\u003d\"https://www.docs.developers.amplitude.com/analytics/what-is-amplitude/#users\"\u003euser\u003c/a\u003e viewing the page. For example, you could set a user property that indicates whether they\u0027re on a paid or free plan.",
"enablingConditions": [
{
"paramName": "type",
"paramValue": "identify",
"type": "EQUALS"
}
]
},
{
"type": "LABEL",
"name": "setGroupDescription",
"displayName": "\u003ca href\u003d\"https://www.docs.developers.amplitude.com/data/sources/google-tag-manager-client/#setgroup\"\u003eSet Group\u003c/a\u003e - See also \u003ca href\u003d\"https://www.docs.developers.amplitude.com/data/sdks/browser-2/#user-groups\"\u003eSDK Reference\u003c/a\u003e",
"enablingConditions": [
{
"paramName": "type",
"paramValue": "setGroup",
"type": "EQUALS"
}
]
},
{
"type": "LABEL",
"name": "groupIdentifyDescription",
"displayName": "\u003ca href\u003d\"https://amplitude.com/docs/data/source-catalog/google-tag-manager#set-group-properties\"\u003eSet Group Properties\u003c/a\u003e - See also \u003ca href\u003d\"https://www.docs.developers.amplitude.com/data/sdks/browser-2/#group-properties\"\u003eSDK Reference\u003c/a\u003e. \u003cstrong\u003eNote that group properties are indeed user properties for each member in that group. So we will use the term \"user property\" instead of \"group property\" in the \"Identify Settings\" section\u003c/strong\u003e",
"enablingConditions": [
{
"paramName": "type",
"paramValue": "groupIdentify",
"type": "EQUALS"
}
]
},
{
"type": "LABEL",
"name": "revenueDescription",
"displayName": "\u003ca href\u003d\"https://www.docs.developers.amplitude.com/data/sources/google-tag-manager-client/#revenue\"\u003eTrack Revenue\u003c/a\u003e - See also \u003ca href\u003d\"https://www.docs.developers.amplitude.com/data/sdks/browser-2/#revenue-tracking\"\u003eSDK Reference\u003c/a\u003e",
"enablingConditions": [
{
"paramName": "type",
"paramValue": "revenue",
"type": "EQUALS"
}
]
},
{
"type": "LABEL",
"name": "flushDescription",
"displayName": "\u003ca href\u003d\"https://www.docs.developers.amplitude.com/data/sources/google-tag-manager-client/#flush\"\u003eFlush Events\u003c/a\u003e - See also \u003ca href\u003d\"https://www.docs.developers.amplitude.com/data/sdks/browser-2/#flush-the-event-buffer\"\u003eSDK Reference\u003c/a\u003e",
"enablingConditions": [
{
"paramName": "type",
"paramValue": "flush",
"type": "EQUALS"
}
]
},
{
"type": "LABEL",
"name": "setDeviceIdDescription",
"displayName": "\u003ca href\u003d\"https://www.docs.developers.amplitude.com/data/sources/google-tag-manager-client/#setdeviceid\"\u003eSet Device Id\u003c/a\u003e - See also \u003ca href\u003d\"https://www.docs.developers.amplitude.com/data/sdks/browser-2/#custom-device-id\"\u003eSDK Reference\u003c/a\u003e",
"enablingConditions": [
{
"paramName": "type",
"paramValue": "setDeviceId",
"type": "EQUALS"
}
]
},
{
"type": "LABEL",
"name": "setSessionIdDescription",
"displayName": "\u003ca href\u003d\"https://www.docs.developers.amplitude.com/data/sources/google-tag-manager-client/#setsessionid\"\u003eSet Session Id\u003c/a\u003e - See also \u003ca href\u003d\"https://www.docs.developers.amplitude.com/data/sdks/browser-2/#custom-session-id\"\u003eSDK Reference\u003c/a\u003e",
"enablingConditions": [
{
"paramName": "type",
"paramValue": "setSessionId",
"type": "EQUALS"
}
]
},
{
"type": "LABEL",
"name": "resetDescription",
"displayName": "\u003ca href\u003d\"https://www.docs.developers.amplitude.com/data/sources/google-tag-manager-client/#reset\"\u003eReset User\u003c/a\u003e - See also \u003ca href\u003d\"https://www.docs.developers.amplitude.com/data/sdks/browser-2/#reset-when-user-logs-out\"\u003eSDK Reference\u003c/a\u003e",
"enablingConditions": [
{
"paramName": "type",
"paramValue": "reset",
"type": "EQUALS"
}
]
},
{
"type": "LABEL",
"name": "setOptOutDescription",
"displayName": "\u003ca href\u003d\"https://www.docs.developers.amplitude.com/data/sources/google-tag-manager-client/#setoptout\"\u003eSet Opt-Out\u003c/a\u003e - See also \u003ca href\u003d\"https://www.docs.developers.amplitude.com/data/sdks/browser-2/#opt-users-out-of-tracking\"\u003eSDK Reference\u003c/a\u003e",
"enablingConditions": [
{
"paramName": "type",
"paramValue": "setOptOut",
"type": "EQUALS"
}
]
},
{
"type": "LABEL",
"name": "setUserIdDescription",
"displayName": "\u003ca href\u003d\"https://www.docs.developers.amplitude.com/data/sources/google-tag-manager-client/#setuserid\"\u003eSet User Id\u003c/a\u003e - This tag sets the ID of the \u003ca href\u003d\"https://www.docs.developers.amplitude.com/analytics/what-is-amplitude/#users\"\u003euser\u003c/a\u003e viewing the page. Setting a user\u0027s id allows them to be tracked across devices. Trigger this tag once the user can be uniquely identified, e.g. once they login. See also \u003ca href\u003d\"https://www.docs.developers.amplitude.com/data/sdks/browser-2/#custom-user-id\"\u003eSDK Reference\u003c/a\u003e",
"enablingConditions": [
{
"paramName": "type",
"paramValue": "setUserId",
"type": "EQUALS"
}
]
},
{
"help": "You can find the API Key by browsing to Settings for your organization in the Amplitude user interface. By creating or selecting a created project, you can find the API key for copy-pasting in the project settings. See \u003ca href\u003d\"https://help.amplitude.com/hc/en-us/articles/207108137-Quick-start-guide-Create-your-organization-and-first-project\"\u003ethis page\u003c/a\u003e for more information.",
"alwaysInSummary": true,
"valueValidators": [
{
"type": "NON_EMPTY"
}
],
"displayName": "API Key*",
"simpleValueType": true,
"name": "apiKey",
"type": "TEXT",
"enablingConditions": [
{
"paramName": "type",
"paramValue": "init",
"type": "EQUALS"
}
]
},
{
"help": "Uncheck the box to cancel any existing opt-out for the current user. \u003ca href\u003d\"https://www.docs.developers.amplitude.com/data/sdks/browser-2/#opt-users-out-of-tracking\"\u003eMore information\u003c/a\u003e.",
"enablingConditions": [
{
"paramName": "type",
"type": "EQUALS",
"paramValue": "setOptOut"
}
],
"defaultValue": true,
"simpleValueType": true,
"name": "setOptOut",
"checkboxText": "Opt current user out of tracking.",
"type": "CHECKBOX"
},
{
"help": "Note! You should not set the session ID manually unless you know exactly what you are doing. \u003ca href\u003d\"https://www.docs.developers.amplitude.com/data/sdks/browser-2/#custom-session-id\"\u003eMore information\u003c/a\u003e.",
"valueValidators": [
{
"args": [
"^\\d{13}$"
],
"enablingConditions": [],
"errorMessage": "You must provide the session ID as a UNIX timestamp (milliseconds since Jan 1, 1970).",
"type": "REGEX"
},
{
"type": "NON_EMPTY"
}
],
"enablingConditions": [
{
"paramName": "type",
"type": "EQUALS",
"paramValue": "setSessionId"
}
],
"displayName": "Session ID",
"simpleValueType": true,
"name": "setSessionId",
"valueUnit": "milliseconds (UNIX time)",
"type": "TEXT",
"valueHint": "e.g. 1634720393000"
},
{
"help": "Leave empty to reset the User ID (sets it to \u003cstrong\u003eundefined\u003c/strong\u003e). \u003ca href\u003d\"https://www.docs.developers.amplitude.com/data/sdks/browser-2/#custom-user-id\"\u003eMore information\u003c/a\u003e.",
"enablingConditions": [
{
"paramName": "type",
"type": "EQUALS",
"paramValue": "setUserId"
}
],
"displayName": "User ID",
"simpleValueType": true,
"name": "setUserId",
"type": "TEXT",
"valueHint": "Leave untouched to reset"
},
{
"enablingConditions": [
{
"paramName": "type",
"type": "EQUALS",
"paramValue": "setGroup"
}
],
"name": "setGroup",
"groupStyle": "NO_ZIPPY",
"type": "GROUP",
"subParams": [
{
"valueValidators": [
{
"type": "NON_EMPTY"
}
],
"displayName": "Group Type",
"simpleValueType": true,
"name": "groupType",
"type": "TEXT"
},
{
"help": "Add a single group name (e.g. \u003cstrong\u003e15\u003c/strong\u003e) or a comma-separated list (e.g. \u003cstrong\u003e2,12,24\u003c/strong\u003e) of group names.",
"valueValidators": [
{
"type": "NON_EMPTY"
}
],
"displayName": "Group Name(s)",
"simpleValueType": true,
"name": "groupName",
"type": "TEXT"
}
]
},
{
"help": "Set the Device ID for the current user. \u003cstrong\u003eWarning!\u003c/strong\u003e This is not recommended unless you know what you are doing. \u003ca href\u003d\"https://www.docs.developers.amplitude.com/data/sdks/browser-2/#custom-device-id\"\u003eMore information\u003c/a\u003e.",
"valueValidators": [
{
"type": "NON_EMPTY"
},
{
"args": [
"^[^ .]+$"
],
"errorMessage": "The device ID should be an alphanumeric string. You can\u0027t use the period (\".\") in the ID string.",
"type": "REGEX"
}
],
"enablingConditions": [
{
"paramName": "type",
"type": "EQUALS",
"paramValue": "setDeviceId"
}
],
"displayName": "Device ID",
"simpleValueType": true,
"name": "setDeviceId",
"type": "TEXT"
},
{
"enablingConditions": [
{
"paramName": "type",
"type": "EQUALS",
"paramValue": "track"
}
],
"displayName": "Track Options",
"name": "trackGroup",
"groupStyle": "ZIPPY_OPEN",
"type": "GROUP",
"subParams": [
{
"valueValidators": [
{
"type": "NON_EMPTY"
}
],
"displayName": "Event Type",
"simpleValueType": true,
"name": "eventType",
"type": "TEXT"
},
{
"displayName": "Individual Event Properties",
"name": "eventProperties",
"simpleTableColumns": [
{
"defaultValue": "",
"displayName": "Property Name",
"name": "name",
"isUnique": true,
"type": "TEXT"
},
{
"defaultValue": "",
"displayName": "Property Value",
"name": "value",
"type": "TEXT"
}
],
"type": "SIMPLE_TABLE",
"newRowButtonText": "Add Property"
},
{
"type": "SELECT",
"name": "eventPropertiesObject",
"displayName": "Event Properties Object",
"macrosInSelect": true,
"selectItems": [],
"simpleValueType": true,
"help": "Select a GTM variable that returns a valid event properties object. This overwrites the event properties in \u003cstrong\u003eIndividual Event Properties\u003c/strong\u003e if there are any duplicate keys. Amplitude ignores any inputs not in the object format and any value under user_properties key. \u003ca href\u003d\"//www.docs.developers.amplitude.com/data/sources/google-tag-manager-client/#event-properties-object\"\u003e Click here for an example\u003c/a\u003e.",
"notSetText": "Don\u0027t set an Event Property Object"
},
{
"help": "Add a custom timestamp in UNIX time (milliseconds). Leave empty to use current time.",
"valueValidators": [
{
"args": [
"^\\d{13}|$"
],
"errorMessage": "You need to provide a UNIX timestamp in milliseconds.",
"type": "REGEX"
}
],
"displayName": "Custom timestamp",
"simpleValueType": true,
"name": "trackTimestamp",
"valueUnit": "milliseconds (UNIX time)",
"type": "TEXT",
"valueHint": "Use current time"
},
{
"defaultValue": false,
"simpleValueType": true,
"name": "trackWithGroups",
"checkboxText": "Track with groups",
"type": "CHECKBOX"
},
{
"enablingConditions": [
{
"paramName": "trackWithGroups",
"type": "EQUALS",
"paramValue": true
}
],
"name": "trackEventGroups",
"simpleTableColumns": [
{
"defaultValue": "",
"displayName": "Group type",
"name": "eventGroupType",
"isUnique": true,
"type": "TEXT"
},
{
"defaultValue": "",
"displayName": "Group name(s)",
"name": "eventGroupName",
"type": "TEXT"
}
],
"type": "SIMPLE_TABLE",
"newRowButtonText": "Add Group"
}
]
},
{
"enablingConditions": [
{
"paramName": "type",
"type": "EQUALS",
"paramValue": "revenue"
}
],
"displayName": "Revenue Options",
"name": "revenueGroup",
"groupStyle": "ZIPPY_OPEN",
"type": "GROUP",
"subParams": [
{
"help": "Choose a GTM variable that returns an \u003cstrong\u003eobject\u003c/strong\u003e with the following keys:\u003cul\u003e\u003cli\u003e\u003cstrong\u003eproductId\u003c/strong\u003e (required)\u003c/li\u003e\u003cli\u003e\u003cstrong\u003eprice\u003c/strong\u003e (required)\u003c/li\u003e\u003cli\u003equantity\u003c/li\u003e\u003cli\u003erevenueType\u003c/li\u003e\u003cli\u003eeventProperties\u003c/li\u003e\u003c/ul\u003e\u003ca href\u003d\"https://www.docs.developers.amplitude.com/data/sdks/browser-2/#revenue-tracking\"\u003eMore information\u003c/a\u003e.",
"simpleValueType": true,
"name": "revenueFromVariable",
"checkboxText": "Load Revenue object from a GTM variable",
"type": "CHECKBOX",
"subParams": [
{
"macrosInSelect": true,
"selectItems": [],
"enablingConditions": [
{
"paramName": "revenueFromVariable",
"type": "EQUALS",
"paramValue": true
}
],
"displayName": "",
"simpleValueType": true,
"name": "revenueVariable",
"type": "SELECT"
}
]
},
{
"enablingConditions": [
{
"paramName": "revenueFromVariable",
"type": "EQUALS",
"paramValue": false
}
],
"name": "revenueInput",
"groupStyle": "NO_ZIPPY",
"type": "GROUP",
"subParams": [
{
"valueValidators": [
{
"type": "NON_EMPTY"
}
],
"displayName": "Product ID (required)",
"simpleValueType": true,
"name": "revenueId",
"type": "TEXT"
},
{
"valueValidators": [
{
"type": "NON_EMPTY"
},
{
"args": [
"^\\d+(\\.\\d+)?$"
],
"errorMessage": "Enter price as a number with decimals separated by a period (e.g. 15.99).",
"type": "REGEX"
}
],
"displayName": "Product Price (required)",
"simpleValueType": true,
"name": "revenuePrice",
"type": "TEXT"
},
{
"valueValidators": [
{
"type": "POSITIVE_NUMBER"
}
],
"displayName": "Product Quantity",
"simpleValueType": true,
"name": "revenueQuantity",
"type": "TEXT"
},
{
"valueValidators": [
{
"args": [
"^\\d+(\\.\\d+)?$"
],
"errorMessage": "Enter price as a number with decimals separated by a period (e.g. 15.99).",
"type": "REGEX"
}
],
"displayName": "Revenue",
"simpleValueType": true,
"name": "revenue",
"type": "TEXT"
},
{
"displayName": "Revenue Type",
"simpleValueType": true,
"name": "revenueType",
"type": "TEXT"
},
{
"displayName": "Event Properties",
"name": "revenueEventProperties",
"simpleTableColumns": [
{
"valueValidators": [
{
"type": "NON_EMPTY"
}
],
"defaultValue": "",
"displayName": "Property Name",
"name": "name",
"isUnique": false,
"type": "TEXT"
},
{
"defaultValue": "",
"displayName": "Property Value",
"name": "value",
"type": "TEXT"
}
],
"type": "SIMPLE_TABLE",
"newRowButtonText": "Add Property"
}
]
}
]
},
{
"enablingConditions": [
{
"paramName": "type",
"type": "EQUALS",
"paramValue": "identify"
},
{
"paramName": "type",
"type": "EQUALS",
"paramValue": "groupIdentify"
}
],
"displayName": "Identify Settings",
"name": "identifyGroup",
"groupStyle": "ZIPPY_OPEN",
"type": "GROUP",
"subParams": [
{
"valueValidators": [
{
"type": "NON_EMPTY"
}
],
"enablingConditions": [
{
"paramName": "type",
"type": "EQUALS",
"paramValue": "groupIdentify"
}
],
"displayName": "Group Type",
"simpleValueType": true,
"name": "identifyGroupType",
"type": "TEXT"
},
{
"help": "Add a single group name (e.g. \u003cstrong\u003e15\u003c/strong\u003e). Comma-separated list of multiple group names is \u003cstrong\u003enot\u003c/string\u003e supported.",
"valueValidators": [
{
"type": "NON_EMPTY"
}
],
"enablingConditions": [
{
"paramName": "type",
"type": "EQUALS",
"paramValue": "groupIdentify"
}
],
"displayName": "Group Name(s)",
"simpleValueType": true,
"name": "identifyGroupName",
"type": "TEXT"
},
{
"displayName": "Add individual user property operations each as its own row in the table. You can add as many as you like, but note that you can only include a specific User Property in a single operation. The operations are executed in order. \u003ca href\u003d\"https://www.docs.developers.amplitude.com/data/sdks/browser-2/#user-properties\"\u003eMore information\u003c/a\u003e.\u003cbr/\u003e Please note that a hardcoded value in the `Value` field will always convert an input into a string. If you want to use other types, please create a GTM variable, specifically a Data Layer Variable. This will accurately capture the types you\u0027ve specified.\u003cbr/\u003e\u003cbr/\u003e",
"name": "identifyLabel",
"type": "LABEL"
},
{
"name": "userPropertyOperations",
"simpleTableColumns": [
{
"selectItems": [
{
"displayValue": "Set",
"value": "set"
},
{
"displayValue": "Set Once",
"value": "setOnce"
},
{
"displayValue": "Add",
"value": "add"
},
{
"displayValue": "Append",
"value": "append"
},
{
"displayValue": "Prepend",
"value": "prepend"
},
{
"displayValue": "Remove",
"value": "remove"
},
{
"displayValue": "Preinsert",
"value": "preInsert"
},
{
"displayValue": "Postinsert",
"value": "postInsert"
},
{
"displayValue": "Clear All",
"value": "clearAll"
},
{
"value": "unset",
"displayValue": "Unset"
}
],
"defaultValue": "set",
"displayName": "Method Call",
"name": "command",
"type": "SELECT"
},
{
"valueValidators": [],
"defaultValue": "",
"displayName": "User Property",
"name": "userProperty",
"isUnique": false,
"type": "TEXT"
},
{
"defaultValue": "",
"displayName": "Value",
"name": "value",
"type": "TEXT"
}
],
"type": "SIMPLE_TABLE",
"newRowButtonText": "Add Property",
"displayName": "Individual Operation"
},
{
"type": "SELECT",
"name": "userPropertyOperationsObject",
"displayName": "Bulk Set Operation",
"macrosInSelect": true,
"selectItems": [],
"simpleValueType": true,
"help": "Select a GTM variable that returns a valid User Properties object to set multiple user properties at once. Only the values nested under the `user_properties` key are considered for the user properties. This bulk operation only supports the `set` operation. This overwrites the \u003cstrong\u003eIndividual operation\u003c/strong\u003e user properties if there are any duplicate keys. \u003ca href\u003d\"//www.docs.developers.amplitude.com/data/sources/google-tag-manager-client/#event-properties-object\n\"\u003eClick here for an example\u003c/a\u003e.",
"notSetText": "Don\u0027t set an User Properties Object"
}
]
},
{
"enablingConditions": [
{
"paramName": "type",
"type": "EQUALS",
"paramValue": "init"
}
],
"displayName": "Initialization",
"name": "initGroup",
"groupStyle": "ZIPPY_CLOSED",
"type": "GROUP",
"subParams": [
{
"help": "Check this box to enable autocapture. \u003ca href\u003d\"https://amplitude.com/docs/sdks/analytics/browser/browser-sdk-2#autocapture\"\u003eRead more\u003c/a\u003e.",
"defaultValue": true,
"simpleValueType": true,
"name": "defaultEventTracking",
"checkboxText": "Autocapture events",
"type": "CHECKBOX",
"subParams": [
{
"type": "GROUP",
"name": "defaultEventTrackingOptions",
"displayName": "Autocapture Options",
"groupStyle": "ZIPPY_CLOSED",
"subParams": [
{
"type": "CHECKBOX",
"name": "detAttribution",
"checkboxText": "Track marketing attribution",
"simpleValueType": true,
"subParams": [
{
"type": "GROUP",
"name": "attributionOptions",
"groupStyle": "NO_ZIPPY",
"subParams": [
{
"type": "TEXT",
"name": "attributionInitialEmptyValue",
"displayName": "Initial Empty Value",
"simpleValueType": true,
"defaultValue": "EMPTY",
"help": "By default, initial direct visits are tagged with the \"EMPTY\" campaign value. You can add a different initial empty value into this field. \u003ca href\u003d\"https://www.docs.developers.amplitude.com/data/sdks/browser-2/#advanced-configuration-for-tracking-marketing-attribution\" \u003eRead more\u003c/a\u003e."
},
{
"type": "TEXT",
"name": "attributionExcludeReferrers",
"displayName": "Exclude Referrers String",
"simpleValueType": true,
"help": "Pass a comma-separated list of referring domains you want to exclude from campaign attribution. Each one of them performs exact match. For regex, use \"Exclude Referrers Regex\" instead. \u003ca href\u003d\"https://amplitude.com/docs/data/source-catalog/google-tag-manager#init\"\u003eRead more\u003c/a\u003e."
},
{
"type": "TEXT",
"name": "attributionExcludeReferrersRegex",
"displayName": "Exclude Referrers Regex",
"simpleValueType": true,
"help": "Pass a comma-separated list of referring domains you want to exclude from campaign attribution. Each one of them is converted to a Regex object and performs regex match. \u003ca href\u003d\"https://amplitude.com/docs/data/source-catalog/google-tag-manager#init\"\u003eRead more\u003c/a\u003e."
},
{
"type": "CHECKBOX",
"name": "attributionResetSession",
"checkboxText": "Reset the session on a new campaign",
"simpleValueType": true
}
],
"enablingConditions": [
{
"paramName": "detAttribution",
"paramValue": true,
"type": "EQUALS"
}
]
}
],
"help": "Check this box to enable attribution tracking. \u003ca href\u003d\"https://www.docs.developers.amplitude.com/data/sdks/browser-2/#https://www.docs.developers.amplitude.com/data/sdks/browser-2/#tracking-marketing-attribution\"\u003eRead more\u003c/a\u003e.",
"defaultValue": true
},
{
"type": "CHECKBOX",
"name": "detPageView",
"checkboxText": "Track page views",
"simpleValueType": true,
"subParams": [
{
"type": "GROUP",
"name": "pageViewOptions",
"groupStyle": "NO_ZIPPY",
"subParams": [
{
"type": "CHECKBOX",
"name": "pageViewLegacy",
"checkboxText": "Use the legacy page view properties",
"simpleValueType": true,
"subParams": [],
"help": "Enable this to use legacy page view event type (\u003cstrong\u003ePage View\u003c/strong\u003e) and event properties (\u003cstrong\u003epage_location\u003c/strong\u003e, \u003cstrong\u003epage_path\u003c/strong\u003e, \u003cstrong\u003epage_title\u003c/strong\u003e, \u003cstrong\u003epage_url\u003c/strong\u003e). By default it will use the `Page View Type` input as the event type and \u003cstrong\u003e[Amplitude] Page Domain\u003c/strong\u003e, \u003cstrong\u003e[Amplitude] Page Location\u003c/strong\u003e, \u003cstrong\u003e[Amplitude] Page Path\u003c/strong\u003e, \u003cstrong\u003e[Amplitude] Page Title\u003c/strong\u003e. \u003cstrong\u003e[Amplitude] Page URL\u003c/strong\u003e as the event properties for the page view event.",
"defaultValue": false
},
{
"type": "TEXT",
"name": "pageViewType",
"displayName": "Page View Type",
"simpleValueType": true,
"help": "The event type for page view event. The default value has been change from \u003cstrong\u003ePage View\u003c/strong\u003e to \u003cstrong\u003e[Amplitude] Page Viewed\u003c/strong\u003e.",
"enablingConditions": [
{
"paramName": "pageViewLegacy",
"paramValue": false,
"type": "EQUALS"
}
],
"valueHint": "[Amplitude] Page Viewed"
},
{
"type": "SELECT",
"name": "pageHistoryTracking",
"displayName": "Page History Tracking",
"macrosInSelect": true,
"selectItems": [
{
"value": "all",
"displayValue": "All history changes"
},
{
"value": "path",
"displayValue": "Only when page path changes"
}
],
"simpleValueType": true,
"help": "Provides advanced control for single page application on when page views are tracked. \u003ca href\u003d\"#advanced-configuration-for-tracking-page-views\"\u003eRead more\u003c/a\u003e.",
"defaultValue": "all"
}
],
"enablingConditions": [
{
"paramName": "detPageView",
"paramValue": true,
"type": "EQUALS"
}
]
}
],
"help": "Check this box to enable page views tracking. \u003ca href\u003d\"https://www.docs.developers.amplitude.com/data/sdks/browser-2/#tracking-page-views\"\u003eRead more\u003c/a\u003e.",
"defaultValue": true
},
{
"type": "CHECKBOX",
"name": "detSession",
"checkboxText": "Track sessions",
"simpleValueType": true,
"help": "Check this box to enable session tracking. \u003ca href\u003d\"https://www.docs.developers.amplitude.com/data/sdks/browser-2/#tracking-sessions\"\u003eRead more\u003c/a\u003e.",
"defaultValue": true
},
{
"type": "CHECKBOX",
"name": "detFormInteraction",
"checkboxText": "Track form interactions",
"simpleValueType": true,
"help": "Check this box to enable form interaction tracking. \u003ca href\u003d\"https://www.docs.developers.amplitude.com/data/sdks/browser-2/#tracking-form-interactions\"\u003eRead more\u003c/a\u003e.",
"defaultValue": true
},
{
"type": "CHECKBOX",
"name": "detFileDownload",
"checkboxText": "Track file downloads",
"simpleValueType": true,
"help": "Check this box to enable file download tracking. \u003ca href\u003d\"https://www.docs.developers.amplitude.com/data/sdks/browser-2/#tracking-file-downloads\"\u003eRead more\u003c/a\u003e.",
"defaultValue": true
},
{
"type": "CHECKBOX",
"name": "autocaptureElementInteractions",
"checkboxText": "Track element interactions",
"simpleValueType": true,
"help": "Check this box to enable element interactions tracking. \u003ca href\u003d\"https://amplitude.com/docs/sdks/analytics/browser/browser-sdk-2#track-element-interactions\"\u003eRead more\u003c/a\u003e.",
"defaultValue": false,
"subParams": [
{
"type": "GROUP",
"name": "elementInteractionsOptions",
"groupStyle": "NO_ZIPPY",
"subParams": [
{
"type": "TEXT",
"name": "elementInteractionsCssSelectorAllowlist",
"displayName": "Css Selector Allowlist",
"simpleValueType": true,
"help": "Accepts one or more CSS selectors that define which elements on the page should always be tracked. \u003ca href\u003d\"https://amplitude.com/docs/sdks/analytics/browser/browser-sdk-2#track-element-interactions\"\u003eRead more\u003c/a\u003e."
},
{
"type": "TEXT",
"name": "elementInteractionsActionClickAllowlist",
"displayName": "Action Click Allowlist",
"simpleValueType": true,
"help": "Accepts one or more CSS selectors that define which elements on the page should always be tracked. \u003ca href\u003d\"https://amplitude.com/docs/sdks/analytics/browser/browser-sdk-2#track-element-interactions\"\u003eRead more\u003c/a\u003e."
},
{
"type": "TEXT",
"name": "elementInteractionsPageUrlAllowlistString",
"displayName": "Page Url Allowlist String",
"simpleValueType": true,
"help": "Defines the URL, URLs, or URL pattern on which Amplitude tracks element click and change events. For regex, use \"Page Url Allowlist Regex\" instead. \u003ca href\u003d\"https://amplitude.com/docs/sdks/analytics/browser/browser-sdk-2#track-element-interactions\"\u003eRead more\u003c/a\u003e."
},
{
"type": "TEXT",
"name": "elementInteractionsPageUrlAllowlistRegex",
"displayName": "Page Url Allowlist Regex",
"simpleValueType": true,
"help": "Defines the URL, URLs, or URL pattern on which Amplitude tracks element click and change events. Each one of them is converted to a Regex object and performs regex match. \u003ca href\u003d\"https://amplitude.com/docs/sdks/analytics/browser/browser-sdk-2#track-element-interactions\"\u003eRead more\u003c/a\u003e."
},
{
"type": "TEXT",
"name": "elementInteractionsDataAttributePrefixString",
"displayName": "Data Attribute Prefix String",
"simpleValueType": true,
"help": "Allows the SDK to capture data attributes as an event property. For regex, use \"Data Attribute Prefix Regex\" instead. \u003ca href\u003d\"https://amplitude.com/docs/sdks/analytics/browser/browser-sdk-2#track-element-interactions\"\u003eRead more\u003c/a\u003e."
},
{
"type": "TEXT",
"name": "elementInteractionsDataAttributePrefixRegex",
"displayName": "Data Attribute Prefix Regex",
"simpleValueType": true,
"help": "Allows the SDK to capture data attributes as an event property. Each one of them is converted to a Regex object and performs regex match. \u003ca href\u003d\"https://amplitude.com/docs/sdks/analytics/browser/browser-sdk-2#track-element-interactions\"\u003eRead more\u003c/a\u003e."
}
],
"enablingConditions": [
{
"paramName": "autocaptureElementInteractions",
"paramValue": true,
"type": "EQUALS"