Landing Page Creation Freedom UI

Hi Community,

I’m setting up Creatio landing pages that submit to Creatio via webhooks and are processed by a business process. I can design, publish, and download the page as HTML. Example snippet:

<script src="https://webtracking-v01.creatio.com/JS/crt-landing-page.js"></script>
<script>
  crtLanding.webhookServiceUrl = 'https://webhooks.creatio.com/webhooks/bb0c54c1-f7f0-4d8b-a405-c94d24ceed0d';
  crtLanding.setParameter('LandingPageId', '51de0cbe-fd8a-4be6-92f2-300019f77fc3');
</script>
<form method="POST">
  <input name="FirstName" />
  <input name="LastName" />
  <input name="Email" type="email" />
  <input name="EntityName" type="hidden" value="FormSubmit" />
  <input name="FormId" type="hidden" value="05c63f9b-ea9d-626c-6f51-c1e917502582" />
  <button type="submit">Submit</button>
</form>

Questions:

  1. Cross-environment design & binding
    • If I design the page in DEV and export the HTML, can I “data bind” it and transfer to another package?
  2. Webhook URL per environment
    • Is it a best practice to publish a unique landing page per environment (so that the corresponding crtLanding.webhookServiceUrl and IDs are environment-specific)?
    • Any recommended pattern for switching the webhook URL and IDs when the single HTML designed (landing page) in one environment and hosted outside Creatio and required to be used in multiple environments?
  3. Local DEV system settings
    • When working in local DEV I get:

      “We’re unable to connect to service. Please complete ‘Identity server Url’, ‘Identity server client id’, ‘Identity server client secret’ and ‘Social Web App Account’ system settings and try again.”

    • What’s the correct way to populate these system settings for a local developer environment specifically for landing pages/webhooks?
      • Do these have to point to an environment-reachable Identity Server, or can local placeholders be used?
      • Any docs/checklist for minimum settings required for landing page publishing and webhook processing in a local DEV?

References:

Looking for confirmation of the recommended approach (per-environment pages vs. one HTML with variable config), and concrete steps for filling the Identity Server / Social Web App settings in local DEV so I can publish/test. Thanks!

Like 0

Like

0 comments
Show all comments