When a user manually registers instead of starting the registration with social login, we normally display a small data entry area where the user can enter a minimal amount of data that can be used to record that manual registrant in the InGo system. Sometimes our customers disable this manual data entry area and instead send the user directly through the registration process bypassing this minimal data entry screen. In order to properly account for the attendee in the InGo system, we still need the data to accurately gauge the social adoption and a variety of other metrics. So how do you get that data to us?
Send The Data Itself on Your Final Page
Very simple. The authorizer widget takes some parameters, in multiple forms. Just make some slight modifications to your javascript that calls the authorizer widget and the data will be sent. Send us the actual data itself and you will see the intended result on your Confirmation page. You have two options:
Option 1:
<script src="https://cdn.ingo.me/widgets-loader/1.4.8/js/ingo.loader.widget.js"></script>
<script>
window.InGo.loaderWidget({
widgetId: "[INGO-WIDGET-ID]",
attendee: {
email: "##User’s email here##",
firstName: "##User’s first name here##",
lastName: "##User’s last name here##",
company: "##User’s company here##",
title: "##User’s job title here##"
}});
</script>
Option 2:
<script
src="https://cdn.ingo.me/widgets-loader/1.4.8/js/ingo.loader.widget.js"
data-ingo-id="[INGO-WIDGET-ID]"
data-ingo-attendee.email="##User’s email here##"
data-ingo-attendee.first-name="##User’s first name here##"
data-ingo-attendee.last-name="##User’s last name here##"
data-ingo-attendee.company="##User’s company here##"
data-ingo-attendee.title="##User’s job title here##">
</script>
Ending Result, What You Should See (in View-Source of Browser) IF Properly Configured:
<script
src="https://cdn.ingo.me/widgets-loader/1.4.8/js/ingo.loader.widget.js"
data-ingo-id="[INGO-WIDGET-ID]"
data-ingo-attendee.email="MichaelBluth@gmail.com"
data-ingo-attendee.first-name="Michael"
data-ingo-attendee.last-name="Bluth"
data-ingo-attendee.company="Bluth Inc."
data-ingo-attendee.title="CEO">
</script>
Non-social and/or Manual registrants are now confirmed!
Hope you enjoyed this article.
Comments
0 comments
Please sign in to leave a comment.