Userflow.js installation in Google Tag Manager

You can install Userflow.js via Google Tag Manager (GTM).

Requirements

Your GTM account must have an existing variable that contains the currently signed-in user’s ID. Optionally, you can also use variables for other attributes such as the user’s name, email, when they signed up etc.

In this guide, we assume you’ve named your user ID variable userId. If you’ve used a different name, then please replace the {{userId}} part in the snippet below accordingly.

Installation

Follow these steps:

  1. Sign into Userflow.
  2. Go to Settings → Environments.
  3. Note down your Userflow.js Token (you’ll need it in a later step). Hint: It starts with ct_.
  4. Sign into your Google Tag Manager account.
  5. Go to Tags.
  6. Click New.
  7. Click Tag Configuration.
  8. Click Custom HTML.
  9. In the HTML field, paste the code below (make sure to replace USERFLOW_TOKEN with the real token you noted down in step 3).
  10. Click Triggering.
  11. Click All pages, or another more suitable trigger if you have one.
  12. Click Save and give the tag a name, such as “Userflow”.
<script>
  !function(){var e="undefined"==typeof window?{}:window,r=e.userflow;if(!r){var t="https://js.userflow.com/",n=null;r=e.userflow={_stubbed:!0,load:function(){return n||(n=new Promise((function(r,o){var s=document.createElement("script");s.async=!0;var a=e.USERFLOWJS_ENV_VARS||{};"es2020"===(a.USERFLOWJS_BROWSER_TARGET||function(e){for(var r=[[/Edg\//,/Edg\/(\d+)/,80],[/OPR\//,/OPR\/(\d+)/,67],[/Chrome\//,/Chrome\/(\d+)/,80],[/CriOS\//,/CriOS\/(\d+)/,100],[/Safari\//,/Version\/(\d+)/,14],[/Firefox\//,/Firefox\/(\d+)/,74]],t=0;t<r.length;t++){var n=r[t],o=n[0],s=n[1],a=n[2];if(e.match(o)){var l=e.match(new RegExp(s));if(l&&parseInt(l[1],10)>=a)return"es2020";break}}return"legacy"}(navigator.userAgent))?(s.type="module",s.src=a.USERFLOWJS_ES2020_URL||t+"es2020/userflow.js"):s.src=a.USERFLOWJS_LEGACY_URL||t+"legacy/userflow.js",s.onload=function(){r()},s.onerror=function(){document.head.removeChild(s),n=null;var e=new Error("Could not load Userflow.js");console.error(e.message),o(e)},document.head.appendChild(s)}))),n}};var o=e.USERFLOWJS_QUEUE=e.USERFLOWJS_QUEUE||[],s=function(e){r[e]=function(){var t=Array.prototype.slice.call(arguments);r.load(),o.push([e,null,t])}},a=function(e){r[e]=function(){var t,n=Array.prototype.slice.call(arguments);r.load();var s=new Promise((function(e,r){t={resolve:e,reject:r}}));return o.push([e,t,n]),s}},l=function(e,t){r[e]=function(){return t}};s("_setTargetEnv"),s("closeResourceCenter"),s("disableEvalJs"),s("init"),s("off"),s("on"),s("prepareAudio"),s("registerCustomInput"),s("remount"),s("reset"),s("setBaseZIndex"),s("setCustomInputSelector"),s("setCustomNavigate"),s("setCustomScrollIntoView"),s("setInferenceAttributeFilter"),s("setInferenceAttributeNames"),s("setInferenceClassNameFilter"),s("setResourceCenterLauncherHidden"),s("setScrollPadding"),s("setServerEndpoint"),s("setShadowDomEnabled"),s("setPageTrackingDisabled"),s("setUrlFilter"),s("openResourceCenter"),s("toggleResourceCenter"),a("endAll"),a("endAllFlows"),a("endChecklist"),a("group"),a("identify"),a("identifyAnonymous"),a("start"),a("startFlow"),a("startWalk"),a("track"),a("updateGroup"),a("updateUser"),l("getResourceCenterState",null),l("isIdentified",!1)}}();

  userflow.init('USERFLOW_TOKEN')
  userflow.identify('{{userId}}', {
    // Put any additional attributes here (see below)
  })
</script>

IMPORTANT: Make sure to replace USERFLOW_TOKEN with the Userflow.js Token you find in Userflow under Settings -> Environments .

Extra custom attributes

You can pass whatever custom attributes you want to Userflow in the userflow.identify() call. You can use these attributes to target flows to specific users, e.g. only show a welcome modal to new users based on when they signed up.

If your GTM account contains other variables, such as the user’s name, email or when they signed up, you can add these attributes in the second argument of the userflow.identify() call. Example:

userflow.identify('{{userId}}', {
  name: '{{name}}',
  email: '{{email}}',
  signed_up_at: '{{signed_up_at}}'
})

This above code expects your 3 extra variables to be named name, email, and signed_up_at in GTM. Note that the value of the signed_up_at attribute must be in ISO-8601 format (example: 2021-03-26T12:31:47Z).

Got questions? We're here for you!

The best way to get help is to
We usually reply within 5 minutes
You can also send an email to support@userflow.com
We usually reply within a few hours