From 0cb197ea1056ae96c7621849095c031d4489cf8c Mon Sep 17 00:00:00 2001 From: doryokujin Date: Thu, 22 Feb 2024 06:20:10 +0900 Subject: [PATCH] Update README.md --- scenarios/cdp_campaign_management/README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/scenarios/cdp_campaign_management/README.md b/scenarios/cdp_campaign_management/README.md index df0206f0..902da03f 100644 --- a/scenarios/cdp_campaign_management/README.md +++ b/scenarios/cdp_campaign_management/README.md @@ -651,6 +651,10 @@ Specify the parameter names to be extracted from the url column of the `clicks` utm_connector: utm_connector ``` +By default, the following url will be stored. +`https://treasuredata.com?utm_id=12345&utm_source=google&utm_medium=cpc&utm_campaign=td_plazma2022summerinv_link1&utm_content=td&utm_cv=DOWNLOAD&utm_term=td&utm_connector=mailchimp` + + On the other hand, if logging is done by a parameter name different from the option name, for example, if `utm_id` is used by other tools such as Google Analytics and therefore is logged with the parameter name `activation_id`, the default is overridden by writing the following. ```yml @@ -658,6 +662,10 @@ On the other hand, if logging is done by a parameter name different from the opt utm_id: activation_id ``` +In this case, the following url will be stored. +`https://treasuredata.com?activation_id=12345&utm_source=google&...` + + #### api_endpoint (optional)