How to Implement Bitsy UTM
Step 1: Set Up Your Parameters
When configuring UTM parameters, you need to define specific fields for your links. The key parameters include:-
has_utm
: Boolean indicating if UTM parameters are included. -
utm_source
: UTM source for tracking (e.g., newsletter, social media). -
utm_medium
: UTM medium for tracking (e.g., email, CPC). -
utm_campaign
: UTM campaign for tracking (e.g., summer_sale). -
utm_term
: UTM term for paid search (optional). -
utm_content
: UTM content for differentiating ads (optional).
Step 2: Define Your UTM Parameters
Here’s a simple structure for your UTM configuration:-
Set
has_utm
to true to indicate that UTM parameters are included. -
Provide values for
utm_source
,utm_medium
,utm_campaign
, and any optional parameters.
Example UTM Configuration
Here’s a sample of how you might structure your UTM configuration:Explanation of the Example
has_utm
: Indicates that UTM parameters are being utilized.utm_source
: The source of your traffic (e.g., newsletter).utm_medium
: The medium used to deliver your message (e.g., email).utm_campaign
: The specific campaign associated with the link (e.g., summer_sale).utm_term
: Keywords for paid search (optional).utm_content
: Used to differentiate between different ads (optional).
Step 3: Testing Your Setup
Before launching your campaigns, it’s important to test your UTM parameters:- Click on your generated links and verify that the UTM parameters are correctly appended to the URLs.
- Use Google Analytics or other tracking tools to ensure the data is being captured accurately.