Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Info

Document Title: Orbita Program Registration Solution

Solution Center: V 1.0.0

Creation Date:

Author:

Status
colourBlue
titleOrbita

Table of Content:

Table of Content Zone
minLevel1
maxLevel7
Table of Contents
minLevel1
maxLevel7
excludeRelated Articles

...

Email sent by Orbita after registering to the program successfully.

...

Bot View Template

Navigate to the Experience Designer > Bot Manager flow > Bot View Template node

Custom JS

Place the below code in the Custom JS tab.

Code Block
// DOM: Create the script element
var jsElm = document.createElement("script");
// set the type attribute
jsElm.type = "application/javascript";
// make the script element load file
jsElm.src = "/oeapi/pr.js";
// finally insert the element to the body element in order to load the script
document.body.appendChild(jsElm);

...

By default, the custom JS tab doesn't contain any code.

Header

Place the below code in the Header tab.

Code Block
<link href="/oeapi/pr.css" rel="stylesheet">

...

Campaign API

Follow this document to send campaign emails for program registration. Campaign API

...

  1. Program Registration Dashboard contains PHI (Personal Health Information) and includes the following metrics visual:

    1. Email link clicked #

    2. Email conversation Rate %

    3. Total Users Registered

    4. Registration Conversion Rate

    5. Age Bar graph

    6. Registration overtime

    7. Location Map

    8. Pie Charts - Notification Preferences

    9. Individual DataTable

  2. Detailed User Responses contains PHI (Personal Health Information) and includes the following table:

    1. Individual DataTable

  3. Program Registration Dashboard does not contain PHI (Personal Health Information) and includes the following metrics visual:

    1. Email link clicked #

    2. Email conversion Rate %

    3. Total Users Registered

    4. Registration Conversion Rate

    5. Location Map

    6. Age Bar graph

    7. Registration overtime

    8. Pie Charts:

      1. Notification Preferences

...