How to implement the sheer Id in Tealium. I am not able to find any article or document. Please help me out
Attached GTM references.
Example they given for GTM
Google Tag Manager
You can also implement the simple method described above using Google Tag Manager.
Warning: Make sure that the
Install Script is available on pages where these tags are deployed. The install script cannot be added via GTM.
CONFIGURE TAG 1 OF 2
If you’re using SheerID’s Lightbox or iFrame install method, add tag 1 here. Triggering for this tag should occur on the pages where your SheerID verification form is installed. This tag will implement the listenForVerification function.
- In the appropriate workspace, click “Add a new tag,” and click into the Tag Configuration pane.
- In the Choose Tag Type window, select Custom HTML and name your new tag “SheerID ROI Impact Tracking” or similar.
- Paste the follow code into the HTML field:
// Add listener for verificationId
<script>
sheerId.conversion.listenForVerificationId();
</script>
- Click the Triggering panel just below, then select the specific page(s) the step one code should live on. For best results, add this to the verification success and document upload success pages.
- Click the Save button in the top right-hand corner and you will be returned to the Workspace.
CONFIGURE TAG 2 OF 2
- In the appropriate workspace, click “Add a new tag,” and click into the Tag Configuration pane.
- In the Choose Tag Type window, select Custom HTML and name your new tag “SheerID ROI Impact Purchase Amount” or similar.
- Paste the follow code into the HTML field:
// Record conversion amount
<script>
window.sheerId.conversion.convert({ amount: 1 });
</script>
- Click the Triggering panel just below, then select the specific page(s) the step two code should live on. IMPORTANT: Triggering for this tag should occur on your post-conversion page.
- Click the save button to return to the Workspace.
- Click the Submit button in the top-right navigation.
- Enter a Version name and description for this submission’s changes, then click the Publish button.
The codes are now live on your website and will begin sending data to inform your ROI Impact dashboard.