UTM
Overview
UTM means Urchin Tracking Module, which introduced by ‘Urchin Software Corporation’, then get acquired by Google in April 2005, became Google Analytics.
We could use UTM tags(sometime called UTM parameters) to track the source of traffic to our website. It’s a way to track the effectiveness of our marketing campaigns.
For example, we’re going to add a new button inside our Bridge app.
We’re going use these swift codes to open the browser:
But we will never know how many people clicked on the button. Google Analytics will show it as Direct
traffic.
So we could add UTM tags to the URL:
Then we could track the traffic in Google Analytics.
Cheat Sheet
utm_source
: The referrer of the traffic, likegoogle
,facebook
,twitter
, etc.utm_medium
: The medium of the traffic, likecpc
,banner
,email
, etc.utm_campaign
: The name of the campaign, likespring_sale
,summer_sale
, etc.utm_term
: The keyword of the campaign, likeapple
,iphone
, etc.utm_content
: The content of the campaign, likelogo
,text
, etc.