> ## Knowledge Base Index
> Fetch the complete knowledge base index at: https://help.drimify.com/sitemap.xml
> Use this file to discover available pages before exploring further.
> Pure-Markdown content can be obtained by appending a '.md' suffix to the content URLs listed in the sitemap (without the trailing slash).

# Session Unique ID


You can pass a Session Unique ID to each Drimify app in order to skip any registration process and keep track of the user session and collected data.

* The Session Unique ID variable has to be inserted in the app URL.
* The Session Unique ID will then be used as **SessionID** in the data collection.

# For direct link

Test sample code:

```https://apps.drimify.com/XBs15jKF/?session_uid=XXX```

# For HTML integration code

Test sample code:

```<div id="gamification-widget"></div>
<script src="https://cdn-app.drimify.com/prod/widget/index.js" type="text/javascript"></script>
<script>
       window.addEventListener('load', function () {
           var widget = DigitaService.Widget.Create({
               autoscroll: true,
               element: 'gamification-widget',
               engine: 'https://apps.drimify.com/XBs15jKF/?session_uid=XXX',
               fixed: false,
               height: ['auto'],
               sharingurl: 'https://apps.drimify.com/XBs15jKF/',
               width: '100%',
           });
           widget.load();
       });
   </script>```


