Direct Integration

CTV Environment

Our CTV integration is designed to be lightweight and simple to implement. Please follow the below steps, and let your Qortex Account Manager know if you have any questions.

Phase 1 - Obtain a Group-Id from Qortex team

Contact your account manager to obtain a group-id.  A group-id identifies a specific CTV integration.  For example, if you own 2 apps where you will be adding our tags, you will be provided 2 group-ids.  Both group-ids will be tied to a single parent company.  This allows us to target and report on each CTV app individually.

Phase 2 - Identify the video container

You will need to identify the id of the html tag that contains the video player. In the example below, your video container id would be “my-video-container” since it contains the video player that you wish to integrate with our native overlay product.

Example:

<div id="my-video-container">
  <video src="bigbunny.mp4></video>
</div>

Phase 3 - Implement the Qortex Script with the correct group ID and video container ID

Add the following script tag in the head section of the pages where the player will be shown, replacing with your group Id and video container id.

<script src="https://tags.qortex.ai/bootstrapper?group-id=<YOUR-GROUP-ID>
&video-container=<YOUR-VIDEO-CONTAINER-ID>"></script>

Example:

<html>
  <head>
    <script src="https://tags.qortex.ai/bootstrapper?group-id=<YOUR-GROUP-ID>&video-container=my-video-container">
    </script>
  </head>
  <body>
    <div id="my-video-container">
     <video src="BigBunny.mp4"></video>
    </div>
  </body>
</html>