CRM integration: Collect SkyGlue Visitor IDs in Form Submission

When a user submits a web form, you can send the SkyGlue user Id together with other form data (e.g. name, email, etc). In this way, you can see the web activities of a visitor using SkyGlue’s unique individual visitor report.

For example, you can integrate SkyGlue with Salesforce using this approach.

To add the SkyGlue user Id in your form data, you simply need to add a hidden field using your preferred name in your web form code, e.g. webUserId.

You can set the value as either #sg_a_id# (SkyGlue anonymous user ID) or #sg_r_id# (SkyGlue registered user ID). SkyGlue will automatically replace these values with the Id for each visitor. When the form is submitted, you can get the SkyGlue Id together with other form data.

For example:

<input id=”webUserId” name=”webUserId” type=”hidden” value=”#sg_a_id#” />

….

or

<input id=”webUserId” name=”webUserId” type=”hidden” value=”#sg_r_id#” />

….

The detail on SkyGlue visitor ID is available here: SkyGlue anonymous and registered visitor Id

You can also the collect source, medium and campaign data for your web visitors using hidden fields. Please see  source, medium, campaign tracking in SkyGlue.