Configuring start parameter processing
Last updated
You can read about what the start parameter is in the previous section
You can configure processing rules for each bot. To do this, go to My Bots and select the bot you need. On the bot information page, find the "UTM Tags" item (start processing rules) and go to its settings.
The processing rules settings page consists of two parts:
The settings form (more on this below)
A preview of the result. When you change the settings, you'll see how various links will be processed. You can add your own example links.
This mode is selected by default for all new bots
Simplified mode doesn't process the start parameter and uses it as-is. This mode works well if you don't need additional parameters. For example, the string start=docs will be processed as follows:
none
docs
The string processing type lets you exclude certain parameters. This field offers 3 options:
All parameters — will take all parameters into account
Only specified parameters — will only take into account the parameters you specify
All except specified parameters — will take into account all parameters except the ones you specify
If "processing type" is set to "only specified parameters" or "all except specified parameters", you can specify the list of these parameters in this field.
These are the characters that split the string to determine the parameters and their values. In the image below, the parameter separator is "_", and the value separator is "—"
The algorithm for processing the string source—google_campaign—cpc is as follows:
Split the string by the parameter separator "_", getting:
source—google
campaign—cpc
Split the resulting parts by the value separator "—", getting:
source
campaign
cpc
Last updated