# Ultimate Member UTM Tracking Integration

Capture UTM parameters during Ultimate Member registrations with HandL UTM Grabber and pass source, medium, campaign, click ID, and referrer data into user records.

# Passing UTM Variables to New Registration Admin Email Template - HandL UTM Grabber Guide

## UTM attribution overview

This guide explains Passing UTM Variables to New Registration Admin Email Template - HandL UTM Grabber Guide. It helps you capture UTM source, medium, campaign, term, content, click IDs, referrer, and landing page data and keep the marketing context needed for accurate reporting across forms, bookings, signups, and sales.

#### **1-) Go to Ultimate Member &gt; Settings &gt; Email &gt; New User Notification &gt; Click the settings cog**

[![1-edit-email-template-for-new-user-notification.png](https://docs.utmgrabber.com/uploads/images/gallery/2020-08/scaled-1680-/1-edit-email-template-for-new-user-notification.png)](https://docs.utmgrabber.com/uploads/images/gallery/2020-08/1-edit-email-template-for-new-user-notification.png)

#### **2-) Add the following short tags in the admin email template**

[![2-add-following-shortcodes-into-html.png](https://docs.utmgrabber.com/uploads/images/gallery/2020-08/scaled-1680-/2-add-following-shortcodes-into-html.png)](https://docs.utmgrabber.com/uploads/images/gallery/2020-08/2-add-following-shortcodes-into-html.png)

#### **Code Snippet**

```
<h2>HandL UTM Grabber Parameters</h2>
utm_source: {utm_source}<br>
utm_medium: {utm_medium}<br>
utm_term: {utm_term}<br>
utm_content: {utm_content}<br>
utm_campaign: {utm_campaign}<br>
gclid: {gclid}<br>
handl_original_ref: {handl_original_ref}<br>
handl_landing_page: {handl_landing_page}<br>
handl_ip: {handl_ip}<br>
handl_ref: {handl_ref}<br>
handl_url: {handl_url}<br>
gaclientid: {gaclientid}<br>
organic_source: {organic_source}<br>
fbclid: {fbclid}<br>
custom1: {custom1}
custom2: {custom2}
custom3: {custom3}
...

```

# Send Ultimate Member UTMs via Zapier or Webhook

## UTM attribution overview

This walkthrough covers sending full UTM Grabber data from Ultimate Member to Zapier, Make, or your own webhook. Handy when you need gclid, fbclid, first-touch fields, or custom params alongside the lead or order.

For the primary setup, see [the main Ultimate Member guide](https://docs.utmgrabber.com/books/ultimate-member-integration/page/passing-utm-variables-to-new-registration-admin-email-template).

### When a webhook makes sense

Native fields in Ultimate Member often stop at basic UTMs. A webhook lets you push everything UTM Grabber stores without trimming values or losing click IDs.

### Thank-you page script

Paste this on your confirmation page. Swap in your Zapier or Make hook URL.

```
<script>
var qvars = {};
window.location.href.replace(/[?&]+([^=&]+)=([^&]*)/gi, function(m, key, value) {
    qvars[key] = decodeURIComponent(value.replace(/\+/g, ' '));
});
qvars = Object.assign({}, (typeof handl_utm !== 'undefined' ? handl_utm : {}), qvars);
setTimeout(function() {
    var data = new URLSearchParams(qvars).toString();
    var xmlHttp = new XMLHttpRequest();
    xmlHttp.open('GET', 'https://hooks.zapier.com/hooks/catch/YOUR_ID/YOUR_KEY/?' + data, true);
    xmlHttp.send(null);
}, 1000);
</script>
```

Full pattern explained in [Triggering Zapier on Thank you Page](https://docs.utmgrabber.com/books/zapier-integration/page/triggering-zapier-on-thank-you-page).

### Quick Zapier / Make checklist

1. Create a Catch Hook trigger and copy the URL
2. Run a test conversion with UTMs in the landing URL
3. Confirm gclid, utm\_source, and email (if present) show up in the payload
4. Map fields into your CRM or spreadsheet

Parameter reference: [Native WP Shortcodes](https://docs.utmgrabber.com/books/102-getting-started-for-handl-utm-grabber-v3/page/native-wp-shortcodes).

Make users: see [Make Integromat integration](https://docs.utmgrabber.com/books/integromat-integration).