{"form":{"company_id":1,"slug":"dXujSpQnCi0U9BuHP8rF","name":"Lime Connect - Book a demo (EN)","success_message":"<header id=\"header\">\n<h4>Done!<\/h4>\n\n<h2>Thank you for your demo request<\/h2>\n\n<p>We will get in touch with you shortly to schedule a suitable time.<\/p>\n\n<p>In the meantime, feel free to browse our website to get a first impression. You can find examples and practical use cases on our website.<\/p>\n\n<p>We look forward to speaking with you.<\/p>\n<\/header>","confirm_text":"<p>By entering your email address, you agree to receive our marketing offers in accordance with our&nbsp;<a href=\"https:\/\/connect.lime-technologies.com\/en\/legal\/privacy-policy\/\" rel=\"noopener noreferrer\" target=\"_blank\">Privacy Policy<\/a>.<\/p>\n\n<p>Required fields are marked with *<\/p>\n\n<p>Never share sensitive information (credit card numbers, social security numbers, passwords) through this form.<\/p>\n\n<p>This site is protected by reCAPTCHA and the Google&nbsp;<a href=\"https:\/\/policies.google.com\/privacy?hl=en\" rel=\"noopener noreferrer\" target=\"_blank\">Privacy Policy<\/a>&nbsp;and&nbsp;<a href=\"https:\/\/policies.google.com\/terms?hl=en\" rel=\"noopener noreferrer\" target=\"_blank\">Terms of Service<\/a>&nbsp;apply.<\/p>","must_confirm":true,"bankid_ssn_field":null,"require_bankid":false,"require_bankid_unlock":false,"bankid_cert_token":null,"confirmation_content":null,"google_analytics_id":null,"heading":null,"primary_color":null,"show_progress":false,"theme":null,"locale":"en","skip_confirmation":true,"require_captcha":true,"last_viewed_at":"2026-09-12T15:32:51.577906Z","transition":null,"css":"\/* GLOBAL OVERRIDES *\/\n\n\/* the generic alert for validation *\/\n.validation-messages {\n  display: none !important;\n}\n\n\/* remove floating labels *\/\n.simpliform-content-wrapper .step.active .form-field:not([data-type=\"CheckboxField\"]) .label-wrap {\n  display: none !important;\n}\n.simpliform-content-wrapper .form-control::placeholder {\n  opacity: 1 !important;\n}\n\n\/* bring inputs closer and in relative distance *\/\n.simpliform-content-wrapper .step.active {\n\tgap: 0 .5rem;\n}\n\n\/* LAYOUT *\/\n\/* places company size and industry in one row *\/\n.two-cols {\n  grid-column: span 6 \/ span 6;\n}\n\n\/* place checkboxes in columns *\/\n.form-field[data-type=\"CheckboxField\"] .form-group {\n  display: grid;\n  grid-template-columns: repeat(2, 1fr);\n  gap: .1rem .4rem;\n  padding-top: .5rem;\n}\n\n.form-group.pull-right .checkbox label > div > p:nth-of-type(2),\n.form-group.pull-right .checkbox label > div > p:nth-of-type(3),\n.form-group.pull-right .checkbox label > div > p:nth-of-type(4) {\n    display: none !important;\n}\n\n.simpliform-content-wrapper .step.active .form-field[data-type=\"CheckboxField\"] {\n    margin-top: 2rem;\n    font-size: .9rem;\n}\n.simpliform-content-wrapper .step.active .form-field[data-type=\"CheckboxField\"] .label-wrap {\n    left: 0 !important;\n    font-size: 1.3rem !important;\n}\n\n.help-block {\n    display: block !important;\n    font-size: .8rem;\n}\n\n.pull-right {\n    margin-top: 1rem;\n    font-size: .8rem;\n}\n\n.submit-btn {\n    width: 100%;\n}","javascript":"var self = this;\n\n\/\/ TRACKING PART\nconst EMAIL_ID = 'email';\nconst SUBMIT_TEXT = 'Book your free demo'\nconst PRESET_SUBMIT = 'Submit';\nconst PRESET_SELECT = '- Choose an option -';\n\nconst isTest = (formData) => {\n    const emailId = Object.keys(formData).find(id => formData[id].name === EMAIL_ID);\n    const emailField = formData[emailId];\n    return emailField ? emailField.value.includes('@lime.tech') : false;\n}\n\nvar INTERNAL_HOSTS = [\n    'connect.lime-technologies.com',\n    'app.lime-connect.com',\n    'docs.lime-connect.com',\n];\n\nthis.onBeforeSubmit(function () {\n    var firstTP = {};\n    try {\n        if (typeof window.ltGetAllSourceEntries === 'function') {\n            var allTPS = JSON.parse(window.ltGetAllSourceEntries()) || [];\n            firstTP = allTPS.filter(function (tp) {\n                return INTERNAL_HOSTS.indexOf(tp.source) === -1;\n            })[0] || allTPS[0] || {};\n        }\n    } catch (e) {}\n    self.setFieldValue(\"wp_utm_source\", firstTP.source || '');\n    self.setFieldValue(\"wp_utm_medium\", firstTP.medium || '');\n    self.setFieldValue(\"wp_utm_campaign\", firstTP.campaign || '');\n\n    var marketingConsent = '';\n    try {\n        if (typeof Cookiebot !== 'undefined' && Cookiebot.consent) {\n            marketingConsent = Cookiebot.consent.marketing ? 'yes' : 'no';\n        }\n    } catch (e) {}\n    self.setFieldValue(\"wp_marketing_consent\", marketingConsent);\n    return Promise.resolve(true);\n});\n\n\nthis.onSubmitted(function () {\n    if (isTest(self.formData)) return;\n    if (window.dataLayer) {\n        window.dataLayer.push({\n            formName: 'demo_lime_connect',\n            event: 'form_submitted'\n        });\n    }\n});\n\n\n\nthis._formsEl.addEventListener('focusin', function () {\n  window.dataLayer = window.dataLayer || [];\n  window.dataLayer.push({\n    event: 'form_start',\n    formName: 'demo_lime_connect',\n  });\n}, { once: true });\n\n\/\/ some hacky way since there is no validationError listener on the VUE form for now\nnew MutationObserver(function (muts) {\n  for (const m of muts) {\n    const wasInvalid = m.oldValue === 'true';\n    const isInvalid = m.target.getAttribute('aria-invalid') === 'true';\n    if (isInvalid && !wasInvalid) {\n        window.dataLayer = window.dataLayer || [];\n        window.dataLayer.push({\n            event: 'form_validation_error',\n            formName: 'demo_lime_connect',\n            step: self.currentStep.index,\n            field: m.target.name || m.target.id\n        });\n    }\n  }\n}).observe(this._formsEl, {\n  attributes: true,\n  attributeFilter: ['aria-invalid'],\n  attributeOldValue: true,   \/\/ <-- the key addition\n  subtree: true\n});\n\n\/\/ FROM FAST TRACK\nPromise.resolve(self._formReady).then(() => {\n    const hasPrefilledEmail = sessionStorage['lcm-demo-email'];\n    return hasPrefilledEmail ? self.setFieldValue(\"email\", hasPrefilledEmail) : undefined;\n});\n\n\n\/\/ LAYOUT\ndocument.querySelectorAll('.submit-btn span span').forEach(el => {\n  if (el.textContent.trim() === PRESET_SUBMIT) {\n    el.textContent = SUBMIT_TEXT;\n  }\n});\n\ndocument.querySelectorAll('.form-field[data-type=\"SelectField\"]').forEach(field => {\n  const label = field.querySelector('.control-label');\n  const placeholderOption = field.querySelector('select option[disabled][value=\"\"]');\n\n  if (!label || !placeholderOption) return;\n\n  \/\/ Clone the label so we can strip the \"*\" required marker without touching the real DOM\n  const clone = label.cloneNode(true);\n  const requiredMarker = clone.querySelector('.is-required');\n  if (requiredMarker) requiredMarker.remove();\n\n  const labelText = clone.textContent.trim();\n\n  if (placeholderOption.textContent.trim() === PRESET_SELECT) {\n    placeholderOption.textContent = labelText;\n  }\n});","lime_sign_providers":null,"disable_search_indexing":0,"bankid_authentication_ssn_field":null,"endpoint":"https:\/\/internal.lime-forms.com\/forms\/dXujSpQnCi0U9BuHP8rF","logo_url":"","logo_link":"","base_url":"https:\/\/internal.lime-forms.com","bankid_api_url":"https:\/\/bankid.lime-technologies.com\/api\/v2\/","lime_signatures_base_url":null,"simpliform_version":"2.149.1","csrf_token":"2RRJRyjz5L9gvWB7rOV9ldAmFuDwEUjys1iUoyan","captcha_available":true,"esignatures_provider":null,"google_maps_identifier":"","google_recaptcha_site_key":"6LdXOY0UAAAAAKrnZHZAFpQ-oy2SoNG76r3eDV5L","default_date_format":"yyyy-mm-dd","modules":[{"name":"Enter your information","heading":"Enter your information","description":null,"next_module":"GO_TO_CONFIRMATION","uuid":"08ae69ee-afef-457a-8f1e-ca72cf466a86","parts":[{"id":7587,"parent_module_part_id":null,"model_type":"HiddenField","classes":null,"model":{"show":true,"has_input":true,"name":"wp_nonce","value":null,"uuid":"7d5e646d-6b7a-4232-8c54-32647abd31ee","required":false,"show_in_confirmation":false,"label":null,"required_validation_msg":null},"children":[]},{"id":7588,"parent_module_part_id":null,"model_type":"HiddenField","classes":null,"model":{"show":true,"has_input":true,"name":"wp_current_page","value":null,"uuid":"5d3f7446-ade5-4683-bad8-bfacaaa43f2d","required":false,"show_in_confirmation":false,"label":null,"required_validation_msg":null},"children":[]},{"id":7589,"parent_module_part_id":null,"model_type":"HiddenField","classes":null,"model":{"show":true,"has_input":true,"name":"wp_referrer","value":null,"uuid":"3f58cf93-da2c-4659-836c-7cbd0b6452db","required":false,"show_in_confirmation":false,"label":null,"required_validation_msg":null},"children":[]},{"id":7590,"parent_module_part_id":null,"model_type":"HiddenField","classes":null,"model":{"show":true,"has_input":true,"name":"wp_source","value":null,"uuid":"ec483097-91ae-4548-aacb-e8370f2f9d89","required":false,"show_in_confirmation":false,"label":null,"required_validation_msg":null},"children":[]},{"id":7591,"parent_module_part_id":null,"model_type":"HiddenField","classes":null,"model":{"show":true,"has_input":true,"name":"wp_tp","value":null,"uuid":"3fb5b4bb-997a-4894-9880-d45ff03ada44","required":false,"show_in_confirmation":false,"label":null,"required_validation_msg":null},"children":[]},{"id":7592,"parent_module_part_id":null,"model_type":"HiddenField","classes":null,"model":{"show":true,"has_input":true,"name":"wp_qs","value":null,"uuid":"193f0ddf-0d01-47b6-8938-096da60acb8d","required":false,"show_in_confirmation":false,"label":null,"required_validation_msg":null},"children":[]},{"id":7593,"parent_module_part_id":null,"model_type":"HiddenField","classes":null,"model":{"show":true,"has_input":true,"name":"wp_utm_source","value":null,"uuid":"780fa6eb-be84-44da-bbfa-ad103ac43d36","required":false,"show_in_confirmation":false,"label":null,"required_validation_msg":null},"children":[]},{"id":7594,"parent_module_part_id":null,"model_type":"HiddenField","classes":null,"model":{"show":true,"has_input":true,"name":"wp_utm_medium","value":null,"uuid":"f0ff6a0c-5f9e-4670-bea0-a89d7eb2e7c2","required":false,"show_in_confirmation":false,"label":null,"required_validation_msg":null},"children":[]},{"id":7595,"parent_module_part_id":null,"model_type":"HiddenField","classes":null,"model":{"show":true,"has_input":true,"name":"wp_utm_campaign","value":null,"uuid":"27be7fdd-7889-44f4-afa7-530f95a5839b","required":false,"show_in_confirmation":false,"label":null,"required_validation_msg":null},"children":[]},{"id":7596,"parent_module_part_id":null,"model_type":"HiddenField","classes":null,"model":{"show":true,"has_input":true,"name":"wp_marketing_consent","value":null,"uuid":"d557a964-f520-4182-a550-3f981e26af0e","required":false,"show_in_confirmation":false,"label":null,"required_validation_msg":null},"children":[]},{"id":7597,"parent_module_part_id":null,"model_type":"TextField","classes":null,"model":{"show":true,"has_input":true,"label":"Your Name","name":"name","placeholder":"Your Name","uuid":"e1d5fbe0-c35d-4f15-b30c-fd69c47cfce5","required":true,"helptext":null,"disabled":false,"show_in_confirmation":false,"min_length":null,"max_length":null,"hide_label":0,"hide_placeholder":0,"regex_id":null,"regex_message":null,"autocomplete":"name","regex":null},"children":[]},{"id":7598,"parent_module_part_id":null,"model_type":"EmailField","classes":"two-cols","model":{"show":true,"has_input":true,"label":"Your Business E-Mail","name":"email","placeholder":"Your Business E-Mail","uuid":"c1bac1a9-f31d-46c5-847b-9ab5678dc8f3","required":true,"helptext":null,"disabled":false,"show_in_confirmation":true,"hide_label":0,"hide_placeholder":0,"autocomplete":"email"},"children":[]},{"id":7599,"parent_module_part_id":null,"model_type":"TextField","classes":"two-cols","model":{"show":true,"has_input":true,"label":"Your Phone number","name":"phone","placeholder":"Your Phone number","uuid":"b4cba7e4-4307-4c3b-8bb8-591cc3df3eb4","required":true,"helptext":null,"disabled":false,"show_in_confirmation":true,"min_length":null,"max_length":null,"hide_label":0,"hide_placeholder":0,"regex_id":null,"regex_message":null,"autocomplete":"tel","regex":null},"children":[]},{"id":7600,"parent_module_part_id":null,"model_type":"TextField","classes":null,"model":{"show":true,"has_input":true,"label":"Company name","name":"company","placeholder":"Company name","uuid":"216e49aa-2e38-4302-9628-ff782c8e16f7","required":true,"helptext":null,"disabled":false,"show_in_confirmation":true,"min_length":null,"max_length":null,"hide_label":0,"hide_placeholder":0,"regex_id":null,"regex_message":null,"autocomplete":"organization","regex":null},"children":[]},{"id":7601,"parent_module_part_id":null,"model_type":"SelectField","classes":"two-cols","model":{"show":true,"has_input":true,"label":"Company Size","name":"company_size","uuid":"d6681d3e-2a23-4b2b-9072-5f356d159690","required":true,"helptext":null,"disabled":false,"show_in_confirmation":true,"initial_value":null,"hide_label":0,"options":[{"text":"1-9","value":"1-9"},{"text":"10-99","value":"10-99"},{"text":"100-499","value":"100-499"},{"text":"500-4999","value":"500-4999"},{"text":"5000+","value":"5000+"}]},"children":[]},{"id":7602,"parent_module_part_id":null,"model_type":"SelectField","classes":"two-cols","model":{"show":true,"has_input":true,"label":"In which industry do you work?","name":"industry","uuid":"2156e028-08a6-43e6-b74b-360a2c5f507c","required":true,"helptext":null,"disabled":false,"show_in_confirmation":true,"initial_value":null,"hide_label":0,"options":[{"text":"Automotive","value":"Automotive"},{"text":"Education","value":"Education"},{"text":"Energy","value":"Energy"},{"text":"Engineering","value":"Engineering"},{"text":"Financial Services","value":"Financial Services"},{"text":"Government & Non-Profit","value":"Government & Non-Profit"},{"text":"Healthcare","value":"Healthcare"},{"text":"Insurance Services","value":"Insurance Services"},{"text":"IT-Services & Consultancy","value":"IT-Services & Consultancy"},{"text":"Manufacturing","value":"Manufacturing"},{"text":"Marketing & Advertising","value":"Marketing & Advertising"},{"text":"Media & Telecommunications","value":"Media & Telecommunications"},{"text":"Other","value":"Other"},{"text":"Professional & Business Support Services","value":"Professional & Business Support Services"},{"text":"Real Estate","value":"Real Estate"},{"text":"Retail","value":"Retail"},{"text":"Software","value":"Software"},{"text":"Transport & Logistics","value":"Transport & Logistics"},{"text":"Travel, Hospitality & Tourism","value":"Travel, Hospitality & Tourism"}]},"children":[]},{"id":7603,"parent_module_part_id":null,"model_type":"CheckboxField","classes":null,"model":{"id":268,"show":true,"has_input":true,"label":"About which solutions do you want to learn more?","name":"solutions_learn_more","uuid":"eb88af5f-c601-4762-83c4-91c11a826291","required":true,"helptext":null,"disabled":false,"show_in_confirmation":true,"hide_label":0,"options":[{"id":1558,"text":"Connect AI (Agent & Copilot)","value":"Connect AI (Agent & Copilot)","is_initial_value":false},{"id":1559,"text":"Messaging Channels","value":"Messaging Channels","is_initial_value":false},{"id":1560,"text":"WhatsApp Business API","value":"WhatsApp Business API","is_initial_value":false},{"id":1561,"text":"Website Live-Chat","value":"Website Live-Chat","is_initial_value":false},{"id":1562,"text":"WhatsApp Campaigns","value":"WhatsApp Campaigns","is_initial_value":false},{"id":1563,"text":"Workflows","value":"Workflows","is_initial_value":false}]},"children":[]},{"id":7604,"parent_module_part_id":null,"model_type":"SelectField","classes":null,"model":{"show":true,"has_input":true,"label":"How did you hear about us?","name":"how_did_you_hear_about_us","uuid":"0a4a7d7d-bcca-41cd-aeb6-f7ef7db4dd8e","required":true,"helptext":null,"disabled":false,"show_in_confirmation":true,"initial_value":null,"hide_label":0,"options":[{"text":"Search engine (Google, Bing, etc.)","value":"Google (Search)"},{"text":"AI search (ChatGPT, Claude, Gemini, etc.)","value":"AI Search (e.g. ChatGPT, Perplexity, Gemini)"},{"text":"Advertising (Google Ads, LinkedIn Ads, Meta Ads)","value":"Advertising (e.g. Google Ads, LinkedIn Ads)"},{"text":"Social media (LinkedIn, Instagram)","value":"Social Media (e.g. LinkedIn, Instagram, Facebook)"},{"text":"Personal recommendation (colleague, acquaintance, agency)","value":"Personal Recommendation (colleague, friend)"},{"text":"Review platform (OMR Reviews, Capterra, etc.)","value":"Review Platform (e.g. OMR Reviews, Capterra, G2)"},{"text":"Event (trade fair, webinar)","value":"Event (trade fair, webinar)"},{"text":"Already Familiar (previous usage or former employer)","value":"Already Familiar (previous usage or former employer)"},{"text":"Lime Connect Employee (Outbound)","value":"Lime Connect Employee (Outbound)"},{"text":"Other","value":"Other"}]},"children":[]},{"id":7605,"parent_module_part_id":null,"model_type":"TextAreaField","classes":null,"model":{"show":true,"has_input":true,"label":"Additional information (optional)","name":"additional_information","placeholder":"Additional information (optional)","uuid":"cfac7982-eec9-4a86-a922-e7f6ba8f4b0a","required":false,"helptext":null,"disabled":false,"show_in_confirmation":true,"min_length":null,"max_length":null,"hide_label":0,"hide_placeholder":0},"children":[]}],"conditional_groups":[]}]}}