VusionGroup
VusionGroup
Accelerate the digital transformation of physical commerce
Accelerate the digital transformation of physical commerce
Why this Challenge?

VusionGroup is the global leader in digitalization solutions for physical commerce. We develop technologies that create a positive impact on society by enabling sustainable and human-centered commerce.

By leveraging our IoT & Data technologies, we empower retailers to re-imagine their physical stores into efficient, intelligent, connected, and data-driven assets. We unlock higher economic performance, facilitate seamless collaboration across the value chain, enhance the shopping experience, create better jobs, cultivate healthier communities, and significantly reduce waste and carbon emissions.

Reinventing the In-Store Customer Experience

Join the VusionGroup Challenge to reinvent the in-store customer experience, and enable retailers as well as brands to better connect with consumers.

Context / Need:
At VusionGroup, we invent IoT & digital technologies that create a positive impact society by enabling human-centered commerce. During VivaTech, we want to highlight startups that can help us achieve that and create new experiences for consumers in stores.

Expected Solutions
The solutions highlighted should help consumers to have a better experience while shopping, through in-store navigation, better information, richer content, activations and all solutions that can enable great interactivity in stores.

Scope
The solutions must be designed to be operating in physical stores, through digital technologies such as IoT, Data & AI.

Reinventing the In-Store Customer Experience

Join the VusionGroup Challenge to reinvent the in-store customer experience, and enable retailers as well as brands to better connect with consumers.

Context / Need:
At VusionGroup, we invent IoT & digital technologies that create a positive impact society by enabling human-centered commerce. During VivaTech, we want to highlight startups that can help us achieve that and create new experiences for consumers in stores.

Expected Solutions
The solutions highlighted should help consumers to have a better experience while shopping, through in-store navigation, better information, richer content, activations and all solutions that can enable great interactivity in stores.

Scope
The solutions must be designed to be operating in physical stores, through digital technologies such as IoT, Data & AI.

Reinventing the In-Store Customer Experience

Join the VusionGroup Challenge to reinvent the in-store customer experience, and enable retailers as well as brands to better connect with consumers.

Context / Need:
At VusionGroup, we invent IoT & digital technologies that create a positive impact society by enabling human-centered commerce. During VivaTech, we want to highlight startups that can help us achieve that and create new experiences for consumers in stores.

Expected Solutions
The solutions highlighted should help consumers to have a better experience while shopping, through in-store navigation, better information, richer content, activations and all solutions that can enable great interactivity in stores.

Scope
The solutions must be designed to be operating in physical stores, through digital technologies such as IoT, Data & AI.

Selection Criteria
Relevance of solution

The solution needs to be impactful for shoppers with tangible use cases in the retail world.

Scalability

The solution needs to be scalable at the scale of a full chain (hundreds / thousands of stores).

Technologies

Built on digital technologies such as IoT / Data / AI. Solutions must be exclusively designed for physical stores.

Global
Maturity

The solution needs to be ready to be piloted or deployed in physical stores and used by consumers.

Rewards
Play an active role in our six business sectors

Your solution, product or service demonstrates that you can play an active role in LVMH's ecosystem and deliver on a large scale. Whether it be the creation process, the omnichannel customer journey, or operation and manufacturing, you support the Group's legacy of excellence and innovation in all areas of its 6 business sectors.

  • Fashion & Leather Goods

  • Wines & Spirits

  • Perfumes & Cosmetics

  • Watches & Jewelry

  • Other Activities

  • Selective Retailing

Timeline

00:00:00:00

left to apply

left to apply

FAQ

Who can apply?

Can I apply for more than one Startup Challenge/Award?

What is the difference between a Startup Challenge and an Award?

Is applying for an Award or Startup Challenge free?

Who can apply?

Can I apply for more than one Startup Challenge/Award?

What is the difference between a Startup Challenge and an Award?

Is applying for an Award or Startup Challenge free?

Who can apply?

Can I apply for more than one Startup Challenge/Award?

What is the difference between a Startup Challenge and an Award?

Is applying for an Award or Startup Challenge free?

******* JAVASCRIPT *******/ /** * Allowed parameters for the tracking code */ const allowedParameters: string[] = [ 'ca', 'utm', 'utm_source', 'utm_medium', 'utm_campaign', 'utm_term', 'utm_content', // 'cat', // Blog // 'ag_t', 't', // Warning this parameters is used like tracking for Challenges partners "Agorize", 'wid' // Paramters for revolugo urls ]; /** * Rreturn the object with the allowed parameters * @param ownParams URLSearchParams * @returns Object */ const ownCtmParameters = (ownParams: URLSearchParams) => { let obj = {}; for (const [key, value] of ownParams.entries()) { //console.log("ownCtmParameters key: ", key); if (allowedParameters.includes(key)) { // console.log("PAss key: ", key); obj[key] = value; } else { // console.log("No PAss key: ", key); } } return obj; }; /** * Insert the tracking code in the anchor elements * @returns void */ const insertTrackingCode = () => { // Get tracking parameters from URL search params const searchParams = new URLSearchParams(window.location.search); // Convert search params to object const filteredParams = ownCtmParameters(searchParams); // If no parameters, return early if (Object.keys(filteredParams).length === 0) { return; } const paramsString = new URLSearchParams(filteredParams).toString(); const baseUrl = window.location.origin; // Get all anchor elements from the current document const anchors = document.querySelectorAll('a'); for (const anchor of anchors) { const href = anchor.getAttribute('href'); const target = anchor.getAttribute('target'); if (!href || target === '_blank') { continue; } // Normalize href const normalizedHref = href.startsWith('https') ? href : href.replace(/^\.\//, '/'); try { const url = normalizedHref.startsWith('http') ? new URL(normalizedHref) : new URL(normalizedHref, baseUrl); const baseUrlObj = new URL(baseUrl); const isExternal = url.origin !== baseUrlObj.origin && !normalizedHref.includes('vivatech.com') && !normalizedHref.includes('vivatechnology.com'); if (isExternal) { continue; } // Add tracking parameters const hasExistingParams = url.search.length > 0; if (hasExistingParams) { url.search += '&' + paramsString; } else { url.search = '?' + paramsString; } anchor.setAttribute('href', url.origin + url.pathname + url.search + (url.hash || '')); } catch (e) { // If href is not a valid URL, skip it continue; } } }; /******* END JAVASCRIPT *******/ /******* INTEGRATION *******/ // Or with DOMContentLoaded document.addEventListener('DOMContentLoaded', () => { insertTrackingCode(); }); /******* END INTEGRATION *******/