Customize Your Welcome Offers

An important way of maximizing conversion is to have a good welcome offer or reward text. To give you complete freedom over this content, the Checkin.com framework allows overview content to be provided dynamically as JSON before the module is initialized.

๐Ÿ“˜

Do you want to enable dynamic welcome offers?

Reach out to [email protected] and we will switch it on for you!

Single Welcome Offer

The Checkin.com Framework allows for some content to be sent as a JSON string when the module is being triggered. The most common example is to use it for offers to be displayed as a reward on the overview screen.

This attribute data-regily-custom-data should be set in the tag where you are importing your Checkin.com script.

<script
  src="https://[partner].regily.com/[key].js"
  data-regily-language="en"
  data-regily-custom-data='{
    "reward_title": "100 EUR  bonus\n",
    "reward_description": "On registration"
  }'
  async
>
</script>
<script
  src="https://[partner].regily.com/[key].js"
  data-regily-language="en"
  data-regily-custom-data='{
  "loanConfig": {
    "amount": 25000,
    "period": 3
  }
 }'
   async
  >
</script>

๐Ÿ“˜

Every registration flow is unique to fit your requirements

The available fields you can populate dynamically will be different. If you need to enable additional fields, reach out to [email protected] and we will switch it on for your

Multiple Welcome Offer Selectors

If you want to offer a selection of bonuses or welcome offers, the Checkin.com Framework offers a multi-selector for this purpose. When the bonus selector is enabled, it will be available via a link on the overview, but if no bonus has been selected, it will also be displayed at the end of the flow.

The multiple bonus selector takes many arguments for total freedom of content and assets. If a field is not provided, default values will be used.

id has to be a unique value and should also correspond to the unique ID you use internally.

data-regily-custom-data="{
  "BonusConfig": {
    "allowSkippingBonuses": true,
    "BonusList": [{
      "id": "Offer1",
      "title": "Offer1",
      "bonusTermsLink": "https://yoursite.com/terms.html",
      "description": "Welcome offer nr 1",
      "imageLink": "/img/small_image.png",
      "descriptionImageLink": "/img/mobile_image",
      "descriptionImageLinkDesktop": "/img/desktop_image.jpg",
      "titleOverview": "Welcome Offer nr 1",
      "descriptionOverview": "Description of welcome offer nr 1"
    },
    {
      "id": "Offer2",
      "title": "Offer2",
      "bonusTermsLink": "https://yoursite.com/terms2.html",
      "description": "WElcome offer nr 2",
      "imageLink": "/img/small_image_2.png",
      "descriptionImageLink": "/img/mobile_image2.jpg",
      "descriptionImageLinkDesktop": "/img/desktop_image2.jpg",
      "titleOverview": "Welcome Offer nr 2",
      "descriptionOverview": "Description of welcome offer nr 2"
    }]
  }
}"