Skip to content

Commit f490d6a

Browse files
committed
rollback of marketing tags
1 parent 2c16d53 commit f490d6a

File tree

1 file changed

+29
-29
lines changed

1 file changed

+29
-29
lines changed

src/content/docs/properties/work-with-properties/marketing-tags-properties.mdx

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -32,32 +32,32 @@ Contains the following properties:
3232
Contains the following properties:
3333

3434
* 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`
4646

4747
### Marketing category
4848

4949
Contains the following properties:
5050

51-
* Match type `matchType`
51+
* Match type `match_type`
5252
* Keyword `keyword`
5353
* Device `device`
54-
* Ad group `adGroupId`
55-
* Campaign ID `campaignId`
54+
* Ad group `ad_group_id`
55+
* Campaign ID `campaign_id`
5656
* Creative `creative`
5757
* Network `network`
58-
* Ad position `adPosition`
58+
* Ad position `ad_position`
5959
* Facebook ID `fbclid`
60-
* LinkedIn ID `liFatId`
60+
* LinkedIn ID `li_fat_id`
6161
* Microsoft ID `msclkid`
6262
* X ID `twclid`
6363
* TikTok ID `ttclid`
@@ -68,22 +68,22 @@ There are a few mechanisms for updating these property values in Kinde.
6868

6969
### Pass the tracking tags via the auth flow
7070

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.
7272

7373
For example in the React SDK:
7474

7575
```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>
8787
```
8888

8989
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
112112
/api/v1/search/users?query=properties[kp_usr_utm_source]=Hello&properties[kp_usr_campaign]=World
113113
```
114114

115-
The search organizations API is coming soon.
115+
The search organizations API is coming soon.

0 commit comments

Comments
 (0)