Pendo Integration
Highlight's Pendo integration is in alpha. In order to use it, you must request access from Highlight support.
We've made it easy to use Pendo with Highlight. If you don't already have Pendo initialized in your app, you can have Highlight initialize it for you by specifying your Pendo Project Token in the config.
H.init('<YOUR_PROJECT_ID>', { integrations: { pendo: { projectToken: '<PENDO_PROJECT_TOKEN>', }, }, })
Whenever you call H.track()
or H.identify()
it will forward that data to Pendo's track
and identify
calls. If you want to disable this behavior, you can set enabled: false
for the integration:
H.init('<YOUR_PROJECT_ID>', { integrations: { pendo: { enabled: false, }, }, })
API
track()
Calling H.track()
will forward the data to Pendo's track()
. Highlight will also add a Pendo property called highlightSessionURL
which contains the URL to the Highlight session where the track event happened.
identify()
Calling H.identify()
will forward the data to Pendo's identify()
.