UTM Markup Setup for Website Analytics

Our company is engaged in the development, support and maintenance of sites of any complexity. From simple one-page sites to large-scale cluster systems built on micro services. Experience of developers is confirmed by certificates from vendors.
Development and maintenance of all types of websites:
Informational websites or web applications
Business card websites, landing pages, corporate websites, online catalogs, quizzes, promo websites, blogs, news resources, informational portals, forums, aggregators
E-commerce websites or web applications
Online stores, B2B portals, marketplaces, online exchanges, cashback websites, exchanges, dropshipping platforms, product parsers
Business process management web applications
CRM systems, ERP systems, corporate portals, production management systems, information parsers
Electronic service websites or web applications
Classified ads platforms, online schools, online cinemas, website builders, portals for electronic services, video hosting platforms, thematic portals

These are just some of the technical types of websites we work with, and each of them can have its own specific features and functionality, as well as be customized to meet the specific needs and goals of the client.

Our competencies:
Development stages
Latest works
  • image_web-applications_feedme_466_0.webp
    Development of a web application for FEEDME
    1161
  • image_ecommerce_furnoro_435_0.webp
    Development of an online store for the company FURNORO
    1041
  • image_crm_enviok_479_0.webp
    Development of a web application for Enviok
    822
  • image_crm_chasseurs_493_0.webp
    CRM development for Chasseurs
    847
  • image_website-sbh_0.png
    Website development for SBH Partners
    999
  • image_website-_0.png
    Website development for Red Pear
    451

Setting Up UTM Markup for Site Analytics

UTM parameters are standard GET parameters for tracking traffic sources in analytics systems. Without UTM, GA4 and Metrica can't distinguish where visitors come from.

Required UTM Parameters

  • utm_source — traffic source: google, yandex, vk, email, telegram
  • utm_medium — traffic type: cpc, organic, email, social, banner
  • utm_campaign — campaign name: summer_sale_2024, retargeting_cart

Optional

  • utm_content — ad variant: btn_red, banner_v2
  • utm_term — keyword (for contextual ads)

Examples of Proper Markup

Email newsletter:
?utm_source=unisender&utm_medium=email&utm_campaign=order_shipped

Yandex.Direct:
?utm_source=yandex&utm_medium=cpc&utm_campaign=shoes_brand&utm_term={keyword}

VKontakte:
?utm_source=vk&utm_medium=cpc&utm_campaign=retargeting_cart&utm_content=ad_v1

Telegram post:
?utm_source=telegram&utm_medium=social&utm_campaign=promo_july&utm_content=channel_name

Automatic UTM Markup in Email

If using SendGrid, Mailchimp, or Unisender — enable auto-adding UTM in settings (link tracking). Each link in email automatically gets utm_source=mailchimp&utm_medium=email.

Storing UTM in Session and Order

// Save on first visit (first-touch)
const saveUtm = () => {
    const params = new URLSearchParams(window.location.search);
    const utm = {};
    ['source', 'medium', 'campaign', 'content', 'term'].forEach(key => {
        const val = params.get(`utm_${key}`);
        if (val) utm[key] = val;
    });

    if (Object.keys(utm).length) {
        if (!localStorage.getItem('utm_first')) {
            localStorage.setItem('utm_first', JSON.stringify(utm));
        }
        sessionStorage.setItem('utm_last', JSON.stringify(utm));
    }
};

UTM Validation Before Campaign Launch

Common mistakes:

  • Spaces in values (utm_campaign=summer sale — URL not encoded)
  • Random case (utm_source=Google vs utm_source=google)
  • Missing required parameters

Tools: Google Campaign URL Builder, UTM.io for team use.

Setup time: 1 business day for UTM standardization + DB storage setup.