sherlock-segment
Version:
Sherlock plugin for Segment integrations
30 lines (28 loc) • 972 B
HTML
<script>
window.totango_options = {
// replace with your Totango service code
service_id: "SP-0000-00",
user: {
// email address or other unique identifier of the user
id: "marlo@barksdale.com"
},
account: {
// unique identifier of the account the user is part of
id: "102213x",
// name of the account
name: "Barksdale Industries",
// OPTIONAL: status of the account "Free", "Paying", ..
Status: "Paying",
// OPTIONAL: date the account was created
"Create Date": "2011-12-20T19:25:58.0Z"
}
};
(function() {
var e = document.createElement('script');
e.type = 'text/javascript';
e.async = true;
e.src = ('https:' == document.location.protocol ? 'https://' : 'http://') + 's3.amazonaws.com/totango-cdn/totango2.js';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(e, s);
})();
</script>