Finding the Sitecore Engage version number
After you load initialize the Engage SDK on your website, you can check which version of Sitecore Engage your website is using.
The easiest way you can find the Sitecore Engage version number is to inspect the network requests that your website makes. You can do this by opening your web browser's developer tools, then navigating to your website. In the developer tools, on the Network tab, click one of the events you sent. Every event request is called events. In events, the version number is in Headers > Request Headers > x-library-version.
Depending on how you integrated, there are also other ways you can find the Sitecore Engage version number.
Integrations using the Engage SDK script
You can find the version number by opening your web browser's developer tools, then navigating to your website, then doing one of the following:
-
On the Console tab, log
engage.version
to the console. The version number is returned. -
In the HTML tree (usually on the Elements tab or Inspector tab), search for the
sitecore-engage-v.
string. This will find a<script>
tag with asrc
attribute similar tohttps://d1mj578wat5n4o.cloudfront.net/sitecore-engage-v.1.4.3.min.js
.The version number is the numbers that follow
sitecore-engage-v.
, for example,1.4.3
.
Integrations using the Engage SDK package
If you can access the source code of your website, you can find the version number in package.json
> dependencies
> @sitecore/engage
.
If you exposed Engage functionality to the window
object, you can find the version number by opening your web browser's developer tools, then navigating to your website, then logging window.Engage.version;
to the console. The version number is returned.