Third-party Website Instructions

Adding Checkin Connect to an external website is super simple and requires no additional integration.

1. Load the Checkin Connect script

Import the Checkin Connect script at the end of your HTML body.

<script src="https://remote.regily.com/remote.js" async></script>

2. Trigger Checkin Connect

You need to add the trigger events to all links where you want to trigger Checkin Connect .

  • data-regily-remote-url should be set to where the user will be registered (and where there is a fully working Checkin.com implementation)

To track where a registration is coming from, affiliateTrackingID can be added as a parameter to data-regily-remote-url.

<a
   data-regily-remote-url="https://targetwebsite.com/register.html?affiliateTrackingID=123123123123"
</a>
// To trigger Remote using JavaScript. Make sure to define the URLs and add on tracking links
const regilyRemoteUrl = "https://targetwebsite.com/register.html?affiliateTrackingID=123123123123"

window.regilyRemote.signUp.open(regilyRemoteUrl)