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/content/docs/properties/work-with-properties/marketing-tags-properties.mdx
+29-29Lines changed: 29 additions & 29 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -32,32 +32,32 @@ Contains the following properties:
32
32
Contains the following properties:
33
33
34
34
* Google ID `gclid`
35
-
* Google click ID `clickId`
36
-
* HSA account `hsaAcc`
37
-
* HSA campaign `hsaCam`
38
-
* HSA group `hsaGrp`
39
-
* HSA ad `hsaAd`
40
-
* HSA source `hsaSrc`
41
-
* HSA target `hsaTgt`
42
-
* HSA keyword `hsaKw`
43
-
* HSA match type `hsaMt`
44
-
* HSA network `hsaNet`
45
-
* HSA version `hsaVer`
35
+
* Google click ID `click_id`
36
+
* HSA account `hsa_acc`
37
+
* HSA campaign `hsa_cam`
38
+
* HSA group `hsa_grp`
39
+
* HSA ad `hsa_ad`
40
+
* HSA source `hsa_src`
41
+
* HSA target `hsa_tgt`
42
+
* HSA keyword `hsa_kw`
43
+
* HSA match type `hsa_mt`
44
+
* HSA network `hsa_net`
45
+
* HSA version `hsa_ver`
46
46
47
47
### Marketing category
48
48
49
49
Contains the following properties:
50
50
51
-
* Match type `matchType`
51
+
* Match type `match_type`
52
52
* Keyword `keyword`
53
53
* Device `device`
54
-
* Ad group `adGroupId`
55
-
* Campaign ID `campaignId`
54
+
* Ad group `ad_group_id`
55
+
* Campaign ID `campaign_id`
56
56
* Creative `creative`
57
57
* Network `network`
58
-
* Ad position `adPosition`
58
+
* Ad position `ad_position`
59
59
* Facebook ID `fbclid`
60
-
* LinkedIn ID `liFatId`
60
+
* LinkedIn ID `li_fat_id`
61
61
* Microsoft ID `msclkid`
62
62
* X ID `twclid`
63
63
* TikTok ID `ttclid`
@@ -68,22 +68,22 @@ There are a few mechanisms for updating these property values in Kinde.
68
68
69
69
### Pass the tracking tags via the auth flow
70
70
71
-
This is the most common method. For example, if you want to pass in the UTM source, you just need to forward the `utmSource` query parameter as part of the sign up flow authentication url. Most of our SDKs allow you to pass this in via additional URL params.
71
+
This is the most common method. For example, if you want to pass in the UTM source, you just need to forward the `utm_source` query parameter as part of the sign up flow authentication url. Most of our SDKs allow you to pass this in via additional URL params.
72
72
73
73
For example in the React SDK:
74
74
75
75
```jsx
76
-
<RegisterLink
77
-
+ className="btn btn-dark"
78
-
+ utmSource="my source"
79
-
+utmMedium="some medium"
80
-
+utmCampaign="awesome campaign"
81
-
+utmContent="something else"
82
-
+utmTerm="my terms"
83
-
+clickId="1234"
84
-
+>
85
-
+ Register
86
-
+</RegisterLink>
76
+
<RegisterLink
77
+
className="btn btn-dark"
78
+
properties={{
79
+
utm_source:"my source",
80
+
utm_medium:"some medium",
81
+
utm_campaign:"awesome campaign",
82
+
utm_content:"something else",
83
+
utm_term:"my terms",
84
+
click_id:"1234"
85
+
}}
86
+
>Register</RegisterLink>
87
87
```
88
88
89
89
We automatically map the standard query parameters to the specific Kinde properties for you. For example `utm_source` URL param will be mapped to the `kp_usr_utm_source` Kinde parameter for a user and `kp_org_utm_source` for an organization. We map these automatically so that you do not need to make changes to the parameters in your code.
@@ -112,4 +112,4 @@ Likely you will want to see which tags are converting into sign ups and are perf
0 commit comments