CINXE.COM

Increase customer engagement, service levels, & sales | Zoom

<!doctype html> <html xmlns:fb="http://ogp.me/ns/fb#" lang="en"> <head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb# zoomvideocall: http://ogp.me/ns/fb/zoomvideocall#"> <title>Increase customer engagement, service levels, &amp; sales | Zoom</title> <meta charset="UTF-8"> <meta http-equiv="content-type" content="text/html; charset=UTF-8"> <meta name="referrer" content="origin-when-cross-origin"> <meta name="description" content="Zoom&#x2019;s unified communication platform helps retailers implement innovative solutions that streamline operations, improve customer service and increase sales."> <link rel="canonical" href="https://www.zoom.com/en/industry/retail/" /> <meta name="robots" content="index, follow"> <link href="https://www.zoom.com/en/industry/retail/" hreflang="x-default" rel="alternate" /> <link href="https://www.zoom.com/en/industry/retail/" hreflang="en" rel="alternate" /> <link href="https://www.zoom.com/de/industry/retail/" hreflang="de" rel="alternate" /> <link href="https://www.zoom.com/fr/industry/retail/" hreflang="fr" rel="alternate" /> <link href="https://www.zoom.com/es/industry/retail/" hreflang="es" rel="alternate" /> <link href="https://www.zoom.com/sv/industry/retail/" hreflang="sv" rel="alternate" /> <link href="https://www.zoom.com/nl/industry/retail/" hreflang="nl" rel="alternate" /> <link href="https://www.zoom.com/vi/industry/retail/" hreflang="vi" rel="alternate" /> <link href="https://www.zoom.com/tr/industry/retail/" hreflang="tr" rel="alternate" /> <link href="https://www.zoom.com/ru/industry/retail/" hreflang="ru" rel="alternate" /> <link href="https://www.zoom.com/pt/industry/retail/" hreflang="pt" rel="alternate" /> <link href="https://www.zoom.com/pl/industry/retail/" hreflang="pl" rel="alternate" /> <link href="https://www.zoom.com/ko/industry/retail/" hreflang="ko" rel="alternate" /> <link href="https://www.zoom.com/ja/industry/retail/" hreflang="ja" rel="alternate" /> <link href="https://www.zoom.com/it/industry/retail/" hreflang="it" rel="alternate" /> <link href="https://www.zoom.com/id/industry/retail/" hreflang="id" rel="alternate" /> <link href="https://www.zoom.com/zh-tw/industry/retail/" hreflang="zh-Hant-TW" rel="alternate" /> <link href="https://www.zoom.com/zh-cn/industry/retail/" hreflang="zh-Hans-CN" rel="alternate" /> <link rel="icon" type="image/png" href="/favicon.ico" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <link rel="stylesheet" href="/dist/main.css?t=638750480520000000" media="screen,print" /> <script nonce="7becM8TIoTks8TmpJQ5EDTXLQ+Rohvgs+dmwKxYsq9c="> document.addEventListener('DOMContentLoaded', function () { try { //console.log('DOMContentLoaded event fired'); function excludeUrls() { const excludedUrl = 'https://www.zoom.com/en/contact/contact-vb-sales'; if (window.location.href.includes(excludedUrl)) { //console.log('URL is excluded, exiting script execution'); return true; } return false; } function checkLoggedInStatus() { const cmsGuidKey = "authorized-access"; const roles = [ "e833b0a4-49b2-4a65-8270-598b5650186f", "be0a4727-2dc2-47cf-aa36-55e9b69bb501", "82c0350d-4c26-4b95-8feb-330fef53cda3", ]; const cookieValue = document.cookie .split(";") .map(c => c.trim()) .find(c => c.startsWith(`${cmsGuidKey}=`)) ?.split("=")[1]?.trim(); //console.log("Authorized-access cookie value:", cookieValue); const hasValidRole = roles.includes(cookieValue); //console.log("User has valid role:", hasValidRole); return hasValidRole; // Return logged-in status } function isSMBUser() { const cookieName = "isSMBUser"; const cookieValue = getCookie(cookieName); // Check if the cookie is already set if (cookieValue) { //console.log(`isSMBUser value retrieved from cookie: ${cookieValue}`); return cookieValue === "true"; } // If no cookie, determine the value from dataLayer const dataLayer = window.dataLayer || []; //console.log("Data layer content:", dataLayer); const smbValue = dataLayer.some(s => ['Just Me', '2-10', '11-50'].includes(s.employeeCount) || (s.employee_count && s.employee_count < 51) || ['Small (10 - 49 Employees)', 'Micro (1 - 9 Employees)'].includes(s.rwCompanySize) ); // Store the computed value in a cookie createCookieWithValue(cookieName, smbValue ? "true" : "false"); return smbValue ; } window.addEventListener("beforeunload", () => { //console.log("Resetting isSMBUser on refresh..."); document.cookie = "isSMBUser=; max-age=0; path=/; domain=.zoom.com"; }); function getCookie(name) { const match = document.cookie.split(";").map(c => c.trim()) .find(c => c.startsWith(`${name}=`)); return match ? match.split("=")[1] : null; } function waitForPersonalizationData(callback) { const interval = 100; // Check every 100ms const timeout = 10000; // Timeout after 10 seconds const startTime = Date.now(); const checkDataLayer = () => { const dataLayer = window.dataLayer || []; const eventLoaded = dataLayer.some(item => item.event === "rw_personalization_data"); if (eventLoaded) { //console.log("rw_personalization_data event is loaded in the dataLayer."); const smbValue = isSMBUser(); //console.log("isSMBUser value:", smbValue); // Store the isSMB value in a cookie createCookieWithValue("isSMBUser", smbValue ? "true" : "false"); callback(smbValue); // Pass the SMB value to the callback return; } if (Date.now() - startTime > timeout) { //console.error("Timed out waiting for rw_personalization_data event."); // Default to false in the cookie if timeout occurs createCookieWithValue("isSMBUser", "false"); callback(false); // Proceed with false if timeout occurs return; } setTimeout(checkDataLayer, interval); // Retry after interval }; checkDataLayer(); } function createCookieWithValue(cookieName, cookieValue) { if (cookieValue !== undefined) { let domain = location.hostname.split('.').reverse()[1] + '.' + location.hostname.split('.').reverse()[0]; setCookie(cookieName, cookieValue, 365, domain); } } function setCookie(cookieName, value, days, domain) { let expires = ""; if (days) { const date = new Date(); date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000)); expires = "; expires=" + date.toUTCString(); } // Create the cookie document.cookie = `${cookieName}=${value || ""}${expires}; path=/; secure; samesite=none; domain=.${domain}`; } function monitorAuthorizationState() { let lastCookieValue = getCookie("authorized-access"); setInterval(() => { const currentCookieValue = getCookie("authorized-access"); if (currentCookieValue !== lastCookieValue) { //console.log(`Authorization state changed from ${lastCookieValue} to ${currentCookieValue}`); lastCookieValue = currentCookieValue; // Refresh the page when the authorization state changes //console.log("Refreshing the page due to authorization state change."); window.location.reload(); } }, 1000); // Check every second } function monitorSMBUserState() { let lastSMBValue = isSMBUser(); // Initial state setInterval(() => { const currentSMBValue = isSMBUser(); if (currentSMBValue !== lastSMBValue) { //console.log(`isSMBUser state changed from ${lastSMBValue} to ${currentSMBValue}`); lastSMBValue = currentSMBValue; // Trigger DOM updates based on the new state updateDOMBasedOnState(currentSMBValue); } }, 1000); // Check every second } function logElementAction(action, element) { if (element) { console.log(`${action}:`, { tagName: element.tagName, classList: Array.from(element.classList), innerHTML: element.innerHTML, }); } else { console.warn(`${action} failed: Element is null or undefined.`); } } function initializeNavElements() { //console.log("Initializing navigation elements"); const navLeft = document.querySelector('.main-nav__left .main-nav__list'); const navRight = document.querySelector('.main-nav__right .main-nav__list'); if (!navLeft || !navRight) { console.error("Navigation elements not found"); return; } // Refined selector logic for Plans & Pricing const backendPlansPricingLeft = navLeft.querySelector('li.main-nav__list-item > a.main-nav__link[href*="zoom.us/pricing"]'); if (backendPlansPricingLeft) { const parentElement = backendPlansPricingLeft.closest('li.main-nav__list-item'); if (parentElement && !parentElement.hasAttribute('data-added-by')) { //console.log("Adding 'data-added-by=backend' to backend Plans & Pricing in the main-nav__list"); parentElement.setAttribute('data-added-by', 'backend'); } else { console.warn("Parent element already has 'data-added-by' or is null."); } } else { console.warn("Plans & Pricing link not found in the correct navigation context."); } // Locate "Contact Sales" in the right navigation and add the data attribute const backendContactSalesRight = navRight.querySelector('li.main-nav__list-item > a[href*="contact-sales"]'); //console.log("backendContactSalesRight -> ", backendContactSalesRight); if (backendContactSalesRight) { const parentElement = backendContactSalesRight.closest('li.main-nav__list-item'); if (parentElement && !parentElement.hasAttribute('data-added-by')) { //console.log("Adding 'data-added-by=backend' to backend-rendered Contact Sales in the main-nav__list"); parentElement.setAttribute('data-added-by', 'backend'); } } else { console.warn("Contact Sales link not found in right navigation."); } // Add custom-script elements for Contact Sales (left) and Plans & Pricing (right) const contactSalesWrapperLeft = document.createElement('li'); contactSalesWrapperLeft.className = 'main-nav__list-item'; contactSalesWrapperLeft.setAttribute('data-added-by', 'custom-script'); contactSalesWrapperLeft.setAttribute('data-nav-type', 'contact-sales'); contactSalesWrapperLeft.style.display = "none"; const contactSalesLinkLeft = document.createElement('a'); contactSalesLinkLeft.href = 'https://www.zoom.com/en/contact/contact-sales/'; contactSalesLinkLeft.textContent = 'Contact Sales'; contactSalesLinkLeft.className = 'main-nav__link'; contactSalesWrapperLeft.appendChild(contactSalesLinkLeft); navLeft.appendChild(contactSalesWrapperLeft); const plansPricingWrapperRight = document.createElement('li'); plansPricingWrapperRight.className = 'main-nav__list-item'; plansPricingWrapperRight.setAttribute('data-added-by', 'custom-script'); plansPricingWrapperRight.setAttribute('data-nav-type', 'plans-pricing'); plansPricingWrapperRight.style.display = "none"; const plansPricingLinkRight = document.createElement('a'); plansPricingLinkRight.href = 'https://www.zoom.com/pricing'; plansPricingLinkRight.textContent = 'Plans & Pricing'; plansPricingLinkRight.classList.add('fdn-button', 'fdn-button--button-style-tertiary', 'fdn-button--button-small'); plansPricingWrapperRight.appendChild(plansPricingLinkRight); const signUpFreeButton = navRight.querySelector('.fdn-button--button-style-primary'); if (signUpFreeButton) { navRight.insertBefore(plansPricingWrapperRight, signUpFreeButton.parentElement); } //console.log("Navigation elements initialized."); } function updateNavVisibility(isSMB, isLoggedIn) { //console.log(`Updating navigation visibility. State: ${isSMB ? "SMB" : "Non-SMB"} | Logged In: ${isLoggedIn}`); const navLeftList = document.querySelector('.main-nav__left .main-nav__list'); const navRightList = document.querySelector('.main-nav__right .main-nav__list'); const contactSalesLeftItem = navLeftList.querySelector('[data-nav-type="contact-sales"], [data-added-by="backend"][data-nav-type="contact-sales"]'); const contactSalesRightItem = navRightList.querySelector('[data-added-by="backend"]'); const plansPricingLeftItem = navLeftList.querySelector('[data-added-by="backend"][data-nav-type="plans-pricing"], li.main-nav__list-item > a.main-nav__link[href*="pricing"]')?.parentElement; const plansPricingRightItem = navRightList.querySelector('[data-nav-type="plans-pricing"]'); const loggedInPlansPricingItem = navRightList.querySelector('[data-nav-type="plans-pricing-logged-in"]'); // Handle logged-out SMB users if (!isLoggedIn && isSMB) { //console.log("SMB user and not logged in: Show Contact Sales on left and Plans & Pricing on right"); // Show Contact Sales on the left if (contactSalesLeftItem) { contactSalesLeftItem.style.display = ''; } // Hide Contact Sales on the right if (contactSalesRightItem) { contactSalesRightItem.style.display = 'none'; } // Show Plans & Pricing on the right if (plansPricingRightItem) { plansPricingRightItem.style.display = ''; } // Hide Plans & Pricing on the left if (plansPricingLeftItem) { plansPricingLeftItem.style.display = 'none'; } // Hide logged-in Plans & Pricing if (loggedInPlansPricingItem) { loggedInPlansPricingItem.style.display = 'none'; } } // Handle logged-in SMB users else if (isLoggedIn && isSMB) { //console.log("SMB user and logged in: Show custom 'Plans & Pricing' on right, hide existing elements"); // Hide Contact Sales on the right if (contactSalesRightItem) { contactSalesRightItem.style.display = 'none'; } // Create or show the logged-in Plans & Pricing if (!loggedInPlansPricingItem) { //console.log("Adding custom 'Plans & Pricing' for logged-in users on the right between Web App and My Account"); const plansPricingWrapper = document.createElement('li'); plansPricingWrapper.className = 'main-nav__list-item'; plansPricingWrapper.setAttribute('data-added-by', 'custom-script'); plansPricingWrapper.setAttribute('data-nav-type', 'plans-pricing-logged-in'); const plansPricingLink = document.createElement('a'); plansPricingLink.href = 'https://www.zoom.com/pricing'; plansPricingLink.textContent = 'Plans & Pricing'; plansPricingLink.classList.add('fdn-button', 'fdn-button--button-style-tertiary', 'fdn-button--button-small'); plansPricingWrapper.appendChild(plansPricingLink); // Place the new Plans & Pricing between Web App and My Account const myAccountItem = navRightList.querySelector('li > a[href*="profile"]')?.parentElement; const webAppItem = navRightList.querySelector('.resources-nav__dropdown-webapprestricted')?.parentElement; if (webAppItem && myAccountItem) { navRightList.insertBefore(plansPricingWrapper, myAccountItem); } else if (myAccountItem) { navRightList.insertBefore(plansPricingWrapper, myAccountItem); } else if (webAppItem) { navRightList.insertBefore(plansPricingWrapper, webAppItem.nextSibling); } else { navRightList.appendChild(plansPricingWrapper); } } else { loggedInPlansPricingItem.style.display = ''; } // Hide existing Plans & Pricing on the right if (plansPricingRightItem) { plansPricingRightItem.style.display = 'none'; } // Hide Contact Sales on the left if (contactSalesLeftItem) { contactSalesLeftItem.style.display = 'none'; } // Hide existing Plans & Pricing on the left if (plansPricingLeftItem) { plansPricingLeftItem.style.display = 'none'; } } // Handle logged-in Non-SMB users else if (isLoggedIn && !isSMB) { //console.log("Non-SMB user and logged in: Show Plans & Pricing on left, hide Contact Sales and Plans & Pricing from right"); // Show Plans & Pricing on the left if (plansPricingLeftItem) { plansPricingLeftItem.style.display = ''; } // Hide Contact Sales on the right if (contactSalesRightItem) { contactSalesRightItem.style.display = 'none'; } // Hide logged-in Plans & Pricing if (loggedInPlansPricingItem) { loggedInPlansPricingItem.style.display = 'none'; } // Hide Plans & Pricing on the right if (plansPricingRightItem) { plansPricingRightItem.style.display = 'none'; } // Hide Contact Sales on the left if (contactSalesLeftItem) { contactSalesLeftItem.style.display = 'none'; } } // Handle logged-out Non-SMB users else if (!isLoggedIn && !isSMB) { //console.log("Non-SMB user and not logged in: Show Plans & Pricing on left and Contact Sales on right"); // Show Plans & Pricing on the left if (plansPricingLeftItem) { plansPricingLeftItem.style.display = ''; } // Show Contact Sales on the right if (contactSalesRightItem) { contactSalesRightItem.style.display = ''; } // Hide Contact Sales on the left if (contactSalesLeftItem) { contactSalesLeftItem.style.display = 'none'; } // Hide logged-in Plans & Pricing if (loggedInPlansPricingItem) { loggedInPlansPricingItem.style.display = 'none'; } // Hide Plans & Pricing on the right if (plansPricingRightItem) { plansPricingRightItem.style.display = 'none'; } } //console.log("Navigation visibility updated."); } function updateDOMBasedOnState(isSMB) { //console.log("Updating DOM based on state"); // Use checkLoggedInStatus to determine the logged-in state const isLoggedIn = checkLoggedInStatus(); //console.log('current state logged in- ', isLoggedIn) updateNavVisibility(isSMB, isLoggedIn); } function initializeScript() { //console.log("Initializing script"); // Set up navigation elements initializeNavElements(); // Wait for personalization data and update the state waitForPersonalizationData((isSMB) => { updateDOMBasedOnState(isSMB); }); monitorAuthorizationState(); // Monitor SMB state changes monitorSMBUserState(); } initializeScript(); } catch (error) { console.error('Error in executing navigation modification:', error); } }); setTimeout(() => { // Check if the _zm_currency cookie is set to 'usd' const cookies = document.cookie.split(';'); const zmCurrencyCookie = cookies.find(cookie => cookie?.trim()?.startsWith('_zm_currency=USD')); if (zmCurrencyCookie) { document.querySelectorAll('[data-price="zo_pro_yearly"][data-price-type="1"]').forEach(element => { let priceSub = element.getAttribute('data-price-sub'); if (priceSub === "1") { element.innerHTML = "$13<sup>33</sup>"; } else { element.innerHTML = "$13.33"; } }); } }, 4000); </script> <meta property="og:title" content="Increase customer engagement, service levels, & sales"> <meta property="og:type" content="website"> <meta property="og:url" content="https://www.zoom.com/en/industry/retail/"> <meta property="og:image" content="https://media.zoom.com/images/assets/Social+Share+Image.png/Zz02MGNiNzYxY2U0MzYxMWVkYWQ1N2E2ZDhkNmJkZjlkMQ=="> <meta property="og:image:secure_url" content="https://media.zoom.com/images/assets/Social+Share+Image.png/Zz02MGNiNzYxY2U0MzYxMWVkYWQ1N2E2ZDhkNmJkZjlkMQ=="> <meta property="og:description" content="Zoom’s unified communication platform helps retailers implement innovative solutions that streamline operations, improve customer service and increase sales."> <meta property="og:site_name" content="Zoom"> <meta property="og:locale" content="en"> <meta property="og:locale:alternate" content="de"> <meta property="og:locale:alternate" content="fr"> <meta property="og:locale:alternate" content="es"> <meta property="og:locale:alternate" content="sv"> <meta property="og:locale:alternate" content="nl"> <meta property="og:locale:alternate" content="vi"> <meta property="og:locale:alternate" content="tr"> <meta property="og:locale:alternate" content="ru"> <meta property="og:locale:alternate" content="pt"> <meta property="og:locale:alternate" content="pl"> <meta property="og:locale:alternate" content="ko"> <meta property="og:locale:alternate" content="ja"> <meta property="og:locale:alternate" content="it"> <meta property="og:locale:alternate" content="id"> <meta property="og:locale:alternate" content="zh_Hant_TW"> <meta property="og:locale:alternate" content="zh_Hans_CN"> <meta name="twitter:card" content="summary_large_image"> <meta name="twitter:site" content="@zoom"> <meta name="twitter:url" content="https://www.zoom.com/en/industry/retail/%3fcms_guid%3dfalse%26lang%3dnull"> <meta name="twitter:title" content="Increase customer engagement, service levels, & sales"> <meta name="twitter:description" content="Zoom’s unified communication platform helps retailers implement innovative solutions that streamline operations, improve customer service and increase sales."> <meta name="twitter:image" content="https://media.zoom.com/images/assets/Social+Share+Image.png/Zz02MGNiNzYxY2U0MzYxMWVkYWQ1N2E2ZDhkNmJkZjlkMQ=="> <script type="application/ld+json" nonce="7becM8TIoTks8TmpJQ5EDTXLQ+Rohvgs+dmwKxYsq9c="> { "@context": "https://schema.org", "@type": "Corporation", "@id": "https://www.zoom.com/#corporation", "url": "https://www.zoom.com/", "founder": { "@type": "Person", "name": "Eric Yuan" }, "foundingDate": "2011-04-21", "legalName": "Zoom Communications, Inc.", "name": "Zoom Communications", "alternateName": [ "Zoom", "Zoom Video Communications" ], "description": "Modernize workflows with Zoom's trusted collaboration tools: including video meetings, team chat, VoIP phone, webinars, whiteboard, contact center, and events.", "address": { "@type": "PostalAddress", "addressLocality": "San Jose, CA", "postalCode": "95113", "streetAddress": "55 Almaden Boulevard", "addressCountry": "US" }, "logo": "https://st3.zoom.us/static/6.2.7916/image/thumb.png", "sameAs": [ "https://en.wikipedia.org/wiki/Zoom_Video_Communications", "https://g.co/kgs/UdsQY1Y", "https://www.linkedin.com/company/zoom", "https://x.com/Zoom", "https://www.youtube.com/zoommeetings", "https://www.facebook.com/zoom", "https://www.instagram.com/zoom", "https://zoom.us/", "https://support.zoom.com/" ] } </script> <script type="text/javascript" charset="UTF-8" data-domain-script="054bb50c-9aa4-49a0-8c41-57b963195b3a" src="https://cdn.cookielaw.org/scripttemplates/otSDKStub.js" async="" nonce="7becM8TIoTks8TmpJQ5EDTXLQ+Rohvgs+dmwKxYsq9c="></script> <script defer="" nonce="7becM8TIoTks8TmpJQ5EDTXLQ&#x2B;Rohvgs&#x2B;dmwKxYsq9c=" type="text/javascript"> window.dataLayer = window.dataLayer || []; </script> <script nonce="7becM8TIoTks8TmpJQ5EDTXLQ&#x2B;Rohvgs&#x2B;dmwKxYsq9c="> createOnPageCookie('_zm_visitor_guid'); function createOnPageCookie(cookieName) { let thisCookie = getOnPageCookie(cookieName) let now = new Date() let threshold = new Date('October 10, 2023') if (!(thisCookie && '' != thisCookie) || now < threshold) { let value = generateId() let domain = location.hostname.split('.').reverse()[1] + '.' + location.hostname.split('.').reverse()[0] setOnPageCookie(cookieName,value,365,domain) } } function generateId() { return 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'.replace(/[xy]/g, function(ad) { var ac = (Math.random() * 16) | 0 , ab = ad == 'x' ? ac : (ac & 3) | 8 return ab.toString(16) }) } function getOnPageCookie(name) { var nameEQ = name + "="; var ca = document.cookie.split(';'); // see if value is JSON let isJSON = function isJson(str) { try { JSON.parse(str); } catch (e) { return false; } return true; }; for (var i = 0; i < ca.length; i++) { var c = ca[i]; while (c.charAt(0) == ' ') c = c.substring(1, c.length); if (c.indexOf(nameEQ) == 0) { let content = c.substring(nameEQ.length, c.length); if (isJSON(content)) { content = JSON.parse(content); // replace commas for (const [key, item] of Object.entries(content)) { if (typeof item == 'string') content[key] = item.replace('U+0002C',',') } } return content; } } return null; } function setOnPageCookie(cookieName, value, days, domain) { var expires = "" if (days) { var date = new Date() date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000)) expires = "; expires=" + date.toUTCString() } if (typeof value === 'object') { // because of Safari bug handling JSON in cookies commas need to be stripped out let obj = {} for (const [key, item] of Object.entries(value)) { if (typeof item == 'string') obj[key] = item.replace(/,/,'U+0002C') else obj[key] = item } // turn value into JSON value = JSON.stringify(obj) } // create cookie document.cookie = cookieName + "=" + (value || "") + expires + "; path=/;secure;samesite=none;domain=." + domain } </script> <script nonce="7becM8TIoTks8TmpJQ5EDTXLQ&#x2B;Rohvgs&#x2B;dmwKxYsq9c="> console.log(window.zmGlobalMrktKey); window.zmGlobalMrktId = "" || null; window.zmGlobalMrktKey = "" || null; window['optimizely'] = window['optimizely'] || [];</script> <script nonce="7becM8TIoTks8TmpJQ5EDTXLQ&#x2B;Rohvgs&#x2B;dmwKxYsq9c="> var optimizely = window["optimizely"] || []; optimizely.push({"type": "holdEvents"}); </script> <script nonce="7becM8TIoTks8TmpJQ5EDTXLQ&#x2B;Rohvgs&#x2B;dmwKxYsq9c=" src="https://cdn.optimizely.com/js/20917322331.js"></script> <script nonce="7becM8TIoTks8TmpJQ5EDTXLQ&#x2B;Rohvgs&#x2B;dmwKxYsq9c="> (function () { var optimizely = window["optimizely"] || []; window.sendOptimizelyEvents = function (oneTrustConsentId) { optimizely.push({ "type": "tags", "tags": { "onetrust_id": oneTrustConsentId || "" } }); optimizely.push({"type": "sendEvents"}); } })(); </script> <!-- Google Tag Manager --><script nonce="7becM8TIoTks8TmpJQ5EDTXLQ+Rohvgs+dmwKxYsq9c=">(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src='https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);})(window,document,'script','dataLayer','GTM-5WKFT9');</script><!-- End Google Tag Manager --> <script nonce="7becM8TIoTks8TmpJQ5EDTXLQ&#x2B;Rohvgs&#x2B;dmwKxYsq9c="> !function(T,l,y){var S=T.location,k="script",D="instrumentationKey",C="ingestionendpoint",I="disableExceptionTracking",E="ai.device.",b="toLowerCase",w="crossOrigin",N="POST",e="appInsightsSDK",t=y.name||"appInsights";(y.name||T[e])&&(T[e]=t);var n=T[t]||function(d){var g=!1,f=!1,m={initialize:!0,queue:[],sv:"5",version:2,config:d};function v(e,t){var n={},a="Browser";return n[E+"id"]=a[b](),n[E+"type"]=a,n["ai.operation.name"]=S&&S.pathname||"_unknown_",n["ai.internal.sdkVersion"]="javascript:snippet_"+(m.sv||m.version),{time:function(){var e=new Date;function t(e){var t=""+e;return 1===t.length&&(t="0"+t),t}return e.getUTCFullYear()+"-"+t(1+e.getUTCMonth())+"-"+t(e.getUTCDate())+"T"+t(e.getUTCHours())+":"+t(e.getUTCMinutes())+":"+t(e.getUTCSeconds())+"."+((e.getUTCMilliseconds()/1e3).toFixed(3)+"").slice(2,5)+"Z"}(),iKey:e,name:"Microsoft.ApplicationInsights."+e.replace(/-/g,"")+"."+t,sampleRate:100,tags:n,data:{baseData:{ver:2}}}}var h=d.url||y.src;if(h){function a(e){var t,n,a,i,r,o,s,c,u,p,l;g=!0,m.queue=[],f||(f=!0,t=h,s=function(){var e={},t=d.connectionString;if(t)for(var n=t.split(";"),a=0;a<n.length;a++){var i=n[a].split("=");2===i.length&&(e[i[0][b]()]=i[1])}if(!e[C]){var r=e.endpointsuffix,o=r?e.location:null;e[C]="https://"+(o?o+".":"")+"dc."+(r||"services.visualstudio.com")}return e}(),c=s[D]||d[D]||"",u=s[C],p=u?u+"/v2/track":d.endpointUrl,(l=[]).push((n="SDK LOAD Failure: Failed to load Application Insights SDK script (See stack for details)",a=t,i=p,(o=(r=v(c,"Exception")).data).baseType="ExceptionData",o.baseData.exceptions=[{typeName:"SDKLoadFailed",message:n.replace(/\./g,"-"),hasFullStack:!1,stack:n+"\nSnippet failed to load ["+a+"] -- Telemetry is disabled\nHelp Link: https://go.microsoft.com/fwlink/?linkid=2128109\nHost: "+(S&&S.pathname||"_unknown_")+"\nEndpoint: "+i,parsedStack:[]}],r)),l.push(function(e,t,n,a){var i=v(c,"Message"),r=i.data;r.baseType="MessageData";var o=r.baseData;return o.message='AI (Internal): 99 message:"'+("SDK LOAD Failure: Failed to load Application Insights SDK script (See stack for details) ("+n+")").replace(/\"/g,"")+'"',o.properties={endpoint:a},i}(0,0,t,p)),function(e,t){if(JSON){var n=T.fetch;if(n&&!y.useXhr)n(t,{method:N,body:JSON.stringify(e),mode:"cors"});else if(XMLHttpRequest){var a=new XMLHttpRequest;a.open(N,t),a.setRequestHeader("Content-type","application/json"),a.send(JSON.stringify(e))}}}(l,p))}function i(e,t){f||setTimeout(function(){!t&&m.core||a()},500)}var e=function(){var n=l.createElement(k);n.src=h;var e=y[w];return!e&&""!==e||"undefined"==n[w]||(n[w]=e),n.onload=i,n.onerror=a,n.onreadystatechange=function(e,t){"loaded"!==n.readyState&&"complete"!==n.readyState||i(0,t)},n}();y.ld<0?l.getElementsByTagName("head")[0].appendChild(e):setTimeout(function(){l.getElementsByTagName(k)[0].parentNode.appendChild(e)},y.ld||0)}try{m.cookie=l.cookie}catch(p){}function t(e){for(;e.length;)!function(t){m[t]=function(){var e=arguments;g||m.queue.push(function(){m[t].apply(m,e)})}}(e.pop())}var n="track",r="TrackPage",o="TrackEvent";t([n+"Event",n+"PageView",n+"Exception",n+"Trace",n+"DependencyData",n+"Metric",n+"PageViewPerformance","start"+r,"stop"+r,"start"+o,"stop"+o,"addTelemetryInitializer","setAuthenticatedUserContext","clearAuthenticatedUserContext","flush"]),m.SeverityLevel={Verbose:0,Information:1,Warning:2,Error:3,Critical:4};var s=(d.extensionConfig||{}).ApplicationInsightsAnalytics||{};if(!0!==d[I]&&!0!==s[I]){var c="onerror";t(["_"+c]);var u=T[c];T[c]=function(e,t,n,a,i){var r=u&&u(e,t,n,a,i);return!0!==r&&m["_"+c]({message:e,url:t,lineNumber:n,columnNumber:a,error:i}),r},d.autoExceptionInstrumented=!0}return m}(y.cfg);function a(){y.onInit&&y.onInit(n)}(T[t]=n).queue&&0===n.queue.length?(n.queue.push(a),n.trackPageView({})):a()}(window,document,{src: "https://js.monitor.azure.com/scripts/b/ai.2.gbl.min.js", crossOrigin: "anonymous", cfg: { instrumentationKey:'19a17737-94f4-4af6-b75e-bd513bb1c305', disableCookiesUsage: false }}); </script> <link href="https://cdn.jsdelivr.net/npm/swiper@9/swiper-bundle.min.css" rel="stylesheet"></link> <link href="https://cdn.jsdelivr.net/npm/swiper@9/swiper-bundle.min.css" rel="stylesheet"></link> </head> <body data-layer-site="" class="fonts-loaded "> <!-- Google Tag Manager (noscript) --> <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-5WKFT9" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript> <!-- End Google Tag Manager (noscript) --> <input id="market-verify-eventname" type="hidden" value="pageLoad"></input> <input id="market-verify-pagename" type="hidden" value="retail"></input> <input id="market-verify-pagelanguage" type="hidden" value="en"></input> <input id="market-verify-usercountry" type="hidden" value="SG"></input> <input id="market-verify-fullUrl" type="hidden" value="https://www.zoom.com/en/industry/retail/"></input> <header class="header header-v3 " data-cmp-is="navigator"> <input type="hidden" id="market-verify" value="https://zoom.us/market_verify/v2" /> <input type="hidden" id="plan-price-api" value="https://zoom.us/pricing/planprice.json" /> <nav class="resources-nav" aria-label="Resources"> <div class="resources-nav__container"> <a href="#main" class="resources-nav__skip">Skip to main content</a> <a href="#" class="skip_to_chat resources-nav__skip">Skip To Help Chat</a> <a href="/en/accessibility/" class="resources-nav__accessibility js-analytics-cta" title="Accessibility Overview" data-title="" data-link-type="" data-en-text="" >Accessibility Overview</a> <ul class="resources-nav__list"> <li class="resources-nav__list-item resources-nav__list-item--search"> <div class="FlyoutContainer"> <div id="standaloneSearchbox" class="CoveoSearchInterface"> <div class="CoveoAnalytics"></div> <div class="FlyoutButton"> <span class="coveo-search-button"> <svg focusable="false" enable-background="new 0 0 20 20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg" role="img" aria-label="Search" class="coveo-search-button-svg"> <g fill="currentColor"> <path class="coveo-magnifier-circle-svg" d="m8.368 16.736c-4.614 0-8.368-3.754-8.368-8.368s3.754-8.368 8.368-8.368 8.368 3.754 8.368 8.368-3.754 8.368-8.368 8.368m0-14.161c-3.195 0-5.793 2.599-5.793 5.793s2.599 5.793 5.793 5.793 5.793-2.599 5.793-5.793-2.599-5.793-5.793-5.793"> </path> <path d="m18.713 20c-.329 0-.659-.126-.91-.377l-4.552-4.551c-.503-.503-.503-1.318 0-1.82.503-.503 1.318-.503 1.82 0l4.552 4.551c.503.503.503 1.318 0 1.82-.252.251-.581.377-.91.377"> </path> </g> </svg> </span> <div class="CoveoText" data-value="Search"></div> </div> <div class="CoveoSearchbox transition-hidden" data-enable-omnibox="true"></div> </div> </div> </li> <li class="resources-nav__list-item"> <a href="https://support.zoom.com/hc/en" target="_blank" class="resources-nav__link js-analytics-cta" title="Support" data-title="" data-link-type="" data-en-text="" >Support<span class="visually-hidden"> Support</span></a> </li> <li class="resources-nav__list-item"> <a href="tel:65 8003211528" class="resources-nav__link js-analytics-cta" data-title="" rel="noopener noreferrer" data-link-type="" data-en-text="" >65 8003211528</a> </li> <li class="resources-nav__list-item authorized-access" data-user-for="82c0350d-4c26-4b95-8feb-330fef53cda3"> <span></span> </li> <li class="resources-nav__list-item authorized-access" data-user-for="82c0350d-4c26-4b95-8feb-330fef53cda3"> <a href="/en/contact/contact-sales/" class="resources-nav__link js-analytics-cta" title="Contact Sales" data-title="" data-link-type="" data-en-text="Contact Sales" >Contact Sales<span class="visually-hidden"> Contact Sales</span></a> </li> <li class="resources-nav__list-item"> <a href="/en/contact/live-demo/" class="resources-nav__link js-analytics-cta" title="Request a Demo" data-title="" data-link-type="" data-en-text="" >Request a Demo</a> </li> <li class="resources-nav__list-item " data-user-for="97af72b4-4108-4885-b753-f02a39956839"> <span></span> </li> <li class="resources-nav__list-item " data-user-for="97af72b4-4108-4885-b753-f02a39956839"> <a href="https://zoom.us/join" target="_top" class="resources-nav__link js-analytics-cta" title="Join" data-title="" data-link-type="" data-en-text="" >Join<span class="visually-hidden"> Join</span></a> </li> <li class="resources-nav__list-item " data-user-for="97af72b4-4108-4885-b753-f02a39956839"> <button href="#" class="resources-nav__dropdown" aria-haspopup="true" aria-expanded="false"> Host </button> <div class="resources-nav__dropdown-list"> <ul> <li class="resources-nav__dropdown-list-item"> <a href="https://zoom.us/start/videomeeting" target="_blank" class="resources-nav__dropdown-link js-analytics-cta" title="With Video On" data-title="" data-link-type="" data-en-text="" >With Video On</a> </li> <li class="resources-nav__dropdown-list-item"> <a href="https://zoom.us/start/webmeeting" target="_blank" class="resources-nav__dropdown-link js-analytics-cta" title="With Video Off" data-title="" data-link-type="" data-en-text="" >With Video Off</a> </li> <li class="resources-nav__dropdown-list-item"> <a href="https://zoom.us/start/sharemeeting" target="_blank" class="resources-nav__dropdown-link js-analytics-cta" title="Screen Share Only" data-title="" data-link-type="" data-en-text="" >Screen Share Only</a> </li> </ul> </div> </li> <li class="resources-nav__list-item " data-user-for="97af72b4-4108-4885-b753-f02a39956839"> <a href="https://zoom.us/signin" class="resources-nav__link js-analytics-cta" title="Sign In" data-title="" data-link-type="" data-en-text="" >Sign In<span class="visually-hidden"> to your Zoom account</span></a> </li> </ul> </div> </nav> <nav aria-label="Main Navigation" class="main-nav"><div class="main-nav__container"><div class="main-nav__left"><a class="main-nav__logo" href="https://www.zoom.com/"><img alt="Zoom Logo" height="26" src="https://media.zoom.com/images/assets/Zoom&#x2B;Logo/Zz01ZGU4MDMzZWJmNDcxMWVkOTI4NGEyNDU1OWRiZTc5Zg==?token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOlsiNWRlODAzM2ViZjQ3MTFlZDkyODRhMjQ1NTlkYmU3OWYiXSwiZXhwIjoxNjgxMzM0MTEwfQ.3_IFoXtmS8ExOGbL0F1oGPu8z6lgijgDWFf82zrDFzk" width="114"></img></a><ul class="main-nav__list"><li class="main-nav__list-item"><button aria-expanded="false" aria-haspopup="true" class="main-nav__megamenu-trigger">Products</button><section aria-label="Products" class="megamenu megamenu-products"><div class="megamenu-products-wrapper"><div class="megamenu-products--title"><div class="megamenu-products--subtitle"><a data-en-text="" data-link-type="" href="/en/ai-assistant/"><img alt="AI Companion" class="nav-title-logo" fetchpriority="auto" loading="lazy" src="https://media.zoom.com/images/assets/Full-Color.svg/Zz0zZTU4NjkxMmUwNDAxMWVlOGRjNWFhZTRmMzFmZjlkNg==" title="AI Companion"></img></a></div><div class="megamenu-products--description"><p>Empowering you to increase productivity, improve team effectiveness, and enhance skills. <a data-en-text="" data-link-type="" href="/en/ai-assistant/">Learn more</a></p></div></div><div class="megamenu__bottom"><div class="megamenu__column"><div class="megamenu__column__zoomWorkplace column"><div class="megamenu__head"><div class="megamenu__column-title column-1"><a data-en-text="" data-link-type="" href="/en/products/collaboration-tools/"><img alt="Zoom Workplace" class="nav-title-logo" fetchpriority="auto" loading="lazy" src="https://media.zoom.com/images/assets/logo_product_ZM-workplace_1-line_color-RGB&#x2B;3.svg/Zz01MTA2NTc2MGUwM2UxMWVlOTkyNDkyMTRhMzBjNjAxZg==" title="Zoom Workplace"></img></a><span><img class="megamenu__list-item-icon" src="/dist/assets/icons/icon-right-bloom.svg" alt="" /></span></div></div><div class="megamenu__column--block"><div class="megamenu__workplace__column"><ul class="megamenu__list"><li class="megamenu__list-item-heading--disabled">Communication</li><li class="megamenu__list-item megamenu__list-item--has-icon"><img alt="Meetings" class="megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/one-meetings.svg/Zz01YTBmNDRkMmVhOGMxMWVkODExZDRhYjdlM2I2YjFmNQ==" title="Meetings" width="28"></img><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="/en/products/virtual-meetings/">Meetings<span class="visually-hidden"> Meetings</span></a></div></li><li class="megamenu__list-item megamenu__list-item--has-icon"><img alt="Team Chat" class="megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/product-team-chat.svg/Zz1lZGNhYmY5MmU0NGUxMWVkYjM1OGEyNzVhMWI2ODM4Yw==" title="Team Chat" width="28"></img><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="/en/products/team-chat/">Team Chat<span class="visually-hidden"> Team Chat</span></a></div></li><li class="megamenu__list-item megamenu__list-item--has-icon"><img alt="Phone" class="megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/product-phone.svg/Zz1lZDNmZDE4NGU0NGUxMWVkOTZiZTllNDY0OTU3ZDg4Zg==" title="Phone" width="28"></img><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="/en/products/voip-phone/">Phone<span class="visually-hidden"> Phone</span></a></div></li><li class="megamenu__list-item megamenu__list-item--has-icon"><img alt="Mail &amp; Calendar" class="megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/mail&#x2B;calendar&#x2B;Icon.svg/Zz00MWE3YmZiMGRiYmMxMWVlYWQzZjkyZDMwZWIwZDkwYw==" title="Mail &amp; Calendar" width="28"></img><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="/en/products/email-calendar/">Mail & Calendar<span class="visually-hidden"> Mail & Calendar</span></a></div></li><li class="megamenu__list-item megamenu__list-item--has-icon"><img alt="Scheduler" class="megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/appointment-scheduler.svg/Zz01MTRiNTg1ZTM1MGYxMWVlYjc3NmQ2NTU5Nzc3NzFhOQ==" title="Scheduler" width="28"></img><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="/en/products/appointment-scheduler/">Scheduler<span class="visually-hidden"> Scheduler</span></a></div></li></ul></div><div class="megamenu__workplace__column"><ul class="megamenu__list"><li class="megamenu__list-item-heading--disabled">Productivity</li><li class="megamenu__list-item megamenu__list-item--has-icon"><img alt="Docs" class="megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/mark_product_docs.svg/Zz0zNTAwYmRkNGRiYzExMWVlYjY2NWNlOTkyMzIwMjc2OA==" title="Docs" width="28"></img><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="/en/products/collaborative-docs/">Docs<span class="visually-hidden"> Docs</span></a></div></li><li class="megamenu__list-item megamenu__list-item--has-icon"><img alt="Whiteboard" class="megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/product-whiteboard.svg/Zz1lZDJjOTczNmU0NGUxMWVkOGFmNmI2NWQ2NDcyM2M3Mg==" title="Whiteboard" width="28"></img><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="/en/products/online-whiteboard/">Whiteboard<span class="visually-hidden"> Whiteboard</span></a></div></li><li class="megamenu__list-item megamenu__list-item--has-icon"><img alt="Clips" class="megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/product-clips.svg/Zz00OTAyYWM5NjVjNTcxMWVlOTA5MDU2NmQ1MzA1MjExNQ==" title="Clips" width="28"></img><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="/en/products/video-recording/">Clips<span class="visually-hidden"> Clips</span></a></div></li><li class="megamenu__list-item megamenu__list-item--has-icon"><img alt="Notes" class="megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/Notes-Logo.svg/Zz02MmFkNzBjYWRiYzAxMWVlOWYzNDZhZTY1ZDYyODc3MA==" title="Notes" width="28"></img><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="/en/products/productivity/">Tasks<span class="visually-hidden"> Tasks</span></a></div></li><li class="megamenu__list-item-heading--disabled">Apps & Integrations</li><li class="megamenu__list-item megamenu__list-item--has-icon"><img alt="App Marketplace" class="megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/developer-marketplace.svg/Zz02OWE4YzY1OGVhOTUxMWVkODU1MWU2NWI4Njg2NmUxNA==" title="App Marketplace" width="28"></img><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="https://marketplace.zoom.us/workplace-apps">App Marketplace<span class="visually-hidden"> App Marketplace</span></a></div></li></ul></div><div class="megamenu__workplace__column"><ul class="megamenu__list"><li class="megamenu__list-item-heading--disabled">Spaces</li><li class="megamenu__list-item megamenu__list-item--has-icon"><img alt="Rooms" class="megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/Rooms.svg/Zz02ODUyMWZiZWRiYzMxMWVlOTExYjA2NmQzNDk4YmEzNQ==" title="Rooms" width="28"></img><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="/en/products/meeting-rooms/">Rooms<span class="visually-hidden"> Rooms</span></a></div></li><li class="megamenu__list-item megamenu__list-item--has-icon"><img alt="Workspace Reservations" class="megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/mark_product_workspace-reservation.svg/Zz1jY2EzMDQ1NmRiYzMxMWVlYmFhMGVhMDc5Nzg3Mjk1OA==" title="Workspace Reservations" width="28"></img><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="/en/products/meeting-rooms/features/workspace/">Workspace Reservation<span class="visually-hidden"> Workspace Reservation</span></a></div></li><li class="megamenu__list-item megamenu__list-item--has-icon"><img alt="Digital Signage" class="megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/digital&#x2B;sign.svg/Zz04ZmQ1MGJlMGRiYzQxMWVlODNlYjBhZjZlZjU5YjMxYw==" title="Digital Signage" width="28"></img><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="/en/products/meeting-rooms/features/workspace/">Digital Signage<span class="visually-hidden"> Digital Signage</span></a></div></li><li class="megamenu__list-item megamenu__list-item--has-icon"><img alt="Visitor Management" class="megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/visitor-manage.svg/Zz00Mjc3ZDUwY2RiYzUxMWVlOTI3N2VhMDc5Nzg3Mjk1OA==" title="Visitor Management" width="28"></img><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="/en/products/meeting-rooms/features/workspace/#visitor-management">Visitor Management<span class="visually-hidden"> Visitor Management</span></a></div></li><li class="megamenu__list-item-heading--disabled">Employee Engagement</li><li class="megamenu__list-item megamenu__list-item--has-icon"><img alt="Workvivo" class="megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/workvivo-zm.svg/Zz00OTI4MjQ4MDVjNTcxMWVlYjY2ZTFlZThhMTdjNjk4Yg==" title="Workvivo" width="28"></img><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="/en/products/workvivo/">Workvivo<span class="visually-hidden"> Workvivo</span></a></div></li></ul></div></div></div></div><div class="megamenu__column"><div class="megamenu__column__businessService column"><div class="megamenu__head"><div class="megamenu__column-title column-2"><a data-en-text="" data-link-type="" href="/en/products/business-services/">Business Services</a><span><img class="megamenu__list-item-icon" src="/dist/assets/icons/icon-right-bloom.svg" alt="" /></span></div></div><div class="megamenu__column--block"><div class="megamenu__workplace__column"><ul class="megamenu__list"><li class="megamenu__list-item-heading--disabled">Customer Experience</li><li class="megamenu__list-item megamenu__list-item--has-icon"><img alt="Contact Center" class="megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/cc-contact-center.svg/Zz01OTgzNDIwMmVhOGMxMWVkYWEwOWNhMjZkMjg1ODQxMg==" title="Contact Center" width="28"></img><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="/en/products/contact-center/">Contact Center<span class="visually-hidden"> Contact Center</span></a></div></li><li class="megamenu__list-item megamenu__list-item--has-icon"><img alt="Virtual Agent" class="megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/product-virtual-agent.svg/Zz1lZTMzZjllNGU0NGUxMWVkOGRiN2I2NWQ2NDcyM2M3Mg==" title="Virtual Agent" width="28"></img><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="/en/products/virtual-agent/">Virtual Agent<span class="visually-hidden"> Virtual Agent</span></a></div></li><li class="megamenu__list-item megamenu__list-item--has-icon"><img alt="Workforce Engagement Management" class="megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/mark_product_workforce-engagement-management.svg/Zz1kMTNkNDdmZWU3MzIxMWVlOGQwYTgyM2JmOTdlNjdmNA==" title="Workforce Engagement Management" width="28"></img><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="/en/products/workforce-engagement-management/">Workforce Engagement<span class="visually-hidden"> Workforce Engagement</span></a></div></li><li class="megamenu__list-item-heading--disabled">Sales</li><li class="megamenu__list-item megamenu__list-item--has-icon"><img alt="Revenue Accelerator" class="megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/mark_product_revenue-accelerator.svg/Zz1kZjRjZWQ2YWRiY2QxMWVlYmRhNmFhMDkzYjQ2OGZiZA==" title="Revenue Accelerator" width="28"></img><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="/en/products/conversation-intelligence/">Revenue Accelerator<span class="visually-hidden"> Revenue Accelerator</span></a></div></li></ul></div><div class="megamenu__workplace__column"><ul class="megamenu__list"><li class="megamenu__list-item-heading--disabled">Marketing</li><li class="megamenu__list-item megamenu__list-item--has-icon"><img alt="Events" class="megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/mark_product_events.svg/Zz0wNDhmOTg1NGRiY2MxMWVlYjQ3MWQyNTdlYzNkN2VhZg==" title="Events" width="28"></img><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="/en/products/event-platform/">Events<span class="visually-hidden"> Events</span></a></div></li><li class="megamenu__list-item megamenu__list-item--has-icon"><img alt="Sessions" class="megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/mark_product_sessions.svg/Zz0yZTUzYjZjNGRiY2QxMWVlOTRlODNhZWU2NWQ2NTAxNA==" title="Sessions" width="28"></img><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="/en/products/single-session-events/">Sessions<span class="visually-hidden"> Sessions</span></a></div></li><li class="megamenu__list-item megamenu__list-item--has-icon"><img alt="Webinars" class="megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/mark_product_webinars.svg/Zz03Y2QyMWY1Y2RiY2QxMWVlOTVlZDEyMzJmZDU0MGZkZQ==" title="Webinars" width="28"></img><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="/en/products/webinars/">Webinars<span class="visually-hidden"> Webinars</span></a></div></li><li class="megamenu__list-item-heading--disabled">Developer Tools</li><li class="megamenu__list-item megamenu__list-item--has-icon"><img alt="APIs &amp; SDKs" class="megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/mark_product_revenue-accelerator.svg/Zz05MTQ1ZmQ4MGRiY2YxMWVlYjI1MmYyMTViMGQ3YTJlNA==" title="APIs &amp; SDKs" width="28"></img><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="/en/video-sdk/">APIs & SDKs<span class="visually-hidden"> APIs & SDKs</span></a></div></li></ul></div></div></div></div></div></div><div class="megamenu-products--actionbar"><ul><li class="action-bar-primary"><a data-en-text="" data-link-type="" href="/en/products/">Discover all products</a></li><li class="action-bar-secondary"><a data-en-text="" data-link-type="" href="https://zoom.us/pricing">Plans & pricing</a></li></ul></div></section><div class="activeSegment"><span class="leftTriangle"></span><span class="rightTriangle"></span></div></li><li class="main-nav__list-item"><button aria-expanded="false" aria-haspopup="true" class="main-nav__megamenu-trigger">Solutions</button><section aria-label="Solutions" class="megamenu megamenu-solutions"><div class="megamenu__bottom"><div class="megamenu__column"><div class="column"><div class="megamenu__head"><div class="megamenu__column-title"><a data-en-text="" data-link-type="" href="/en/industry/">By industry</a><span><img class="megamenu__list-item-icon" src="/dist/assets/icons/icon-right-bloom.svg" alt="" /></span></div></div><ul class="megamenu__list"><li class="megamenu__list-item"><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="/en/industry/education/">Education</a></div></li><li class="megamenu__list-item"><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="/en/industry/finance/">Financial Services</a></div></li><li class="megamenu__list-item"><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="/en/industry/government/">Government</a></div></li><li class="megamenu__list-item"><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="/en/industry/healthcare/">Healthcare</a></div></li><li class="megamenu__list-item"><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="/en/industry/manufacturing/">Manufacturing</a></div></li><li class="megamenu__list-item"><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="/en/industry/retail/">Retail</a></div></li><li class="megamenu__list-item"><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="/en/frontline-workers/">Frontline</a></div></li></ul></div></div><div class="megamenu__column"><div class="column"><div class="megamenu__head"><div class="megamenu__column-title">By audience</div></div><ul class="megamenu__list"><li class="megamenu__list-item"><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="/en/audiences/small-business/">Small and Midsized Businesses</a></div></li><li class="megamenu__list-items"><span class="">Enterprise</span><ul><li class="megamenu__list-item"><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="/en/audiences/information-technology/">Information Technology</a></div></li><li class="megamenu__list-item"><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="/en/audiences/cx/">Customer Experience</a></div></li><li class="megamenu__list-item"><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="/en/audiences/sales-and-revenue/">Sales and Revenue</a></div></li><li class="megamenu__list-item"><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="/en/audiences/av-facilities/">Facilities</a></div></li><li class="megamenu__list-item"><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="/en/audiences/marketing-events/">Marketing and Events</a></div></li></ul></li></ul></div></div><div class="megamenu__column"><div class="column"><div class="megamenu__head"><div class="megamenu__column-title"><a data-en-text="" data-link-type="" href="https://developers.zoom.us/docs/" target="_blank">For developers</a><span><img class="megamenu__list-item-icon" src="/dist/assets/icons/icon-right-bloom.svg" alt="" /></span></div></div><ul class="megamenu__list"><li class="megamenu__list-item"><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="/en/video-sdk/">Video SDK</a></div></li><li class="megamenu__list-item"><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="https://developers.zoom.us/docs/meeting-sdk/" target="_blank">Meeting SDK</a></div></li><li class="megamenu__list-item"><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="https://marketplace.zoom.us/" target="_blank">App Marketplace</a></div></li><li class="megamenu__list-item"><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="https://developers.zoom.us/docs/api/" target="_blank">APIs</a></div></li><li class="megamenu__list-item"><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="https://developers.zoom.us/docs/api/rest/webhook-reference/" target="_blank">Webhooks</a></div></li><li class="megamenu__list-item"><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="/en/zoom-apps/">Zoom Apps</a></div></li><li class="megamenu__list-item"><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="https://developers.zoom.us/docs/" target="_blank">Developer Solutions</a></div></li></ul></div></div><div class="megamenu__column"><div class="column"><div class="megamenu__head"><div class="megamenu__column-title"><a data-en-text="" data-link-type="" href="https://partner.zoom.us/" target="_blank">For partners</a><span><img class="megamenu__list-item-icon" src="/dist/assets/icons/icon-right-bloom.svg" alt="" /></span></div></div><ul class="megamenu__list"><li class="megamenu__list-item"><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="https://partner.zoom.us/solutions/" target="_blank">Partner Solutions</a></div></li><li class="megamenu__list-item"><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="https://partner.zoom.us/partner-locator/" target="_blank">Find a Partner</a></div></li><li class="megamenu__list-item"><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="https://partner.zoom.us/" target="_blank">Become a Partner</a></div></li><li class="megamenu__list-item"><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="https://mypartnerportal.zoom.us/" target="_blank">Partner Portal</a></div></li><li class="megamenu__list-item"><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="https://mypartnerportal.zoom.us/?sso=21&amp;RelayState=/pages/38/home" target="_blank">Partner Learning Center</a></div></li></ul></div></div><div class="megamenu__bottom-action-bar"><ul><li class="action-bar-primary"><a data-en-text="" data-link-type="" href="https://zoom.us/pricing" target="_blank">Plans & pricing<span class="visually-hidden"> Solutions</span></a><span class="leftTriangle"></span><span class="rightTriangle"></span></li></ul></div></div></section><div class="activeSegment"><span class="leftTriangle"></span><span class="rightTriangle"></span></div></li><li class="main-nav__list-item"><button aria-expanded="false" aria-haspopup="true" class="main-nav__megamenu-trigger">Resources</button><section aria-label="Resources" class="megamenu megamenu-resources"><div class="megamenu__bottom"><div class="megamenu__column"><div class="column"><div class="megamenu__head"><div class="megamenu__column-title">Explore</div></div><ul class="megamenu__list"><li class="megamenu__list-item"><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="/en/blog/">Zoom Blog</a></div></li><li class="megamenu__list-item"><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="/en/resources/">Resource Library</a></div></li><li class="megamenu__list-item"><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="https://ev.zoom.us/">Webinars & Events</a></div></li><li class="megamenu__list-item"><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="/en/customer-stories/all/">Customer Stories</a></div></li><li class="megamenu__list-item"><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="/en/trust/">Zoom Trust Center</a></div></li></ul></div></div><div class="megamenu__column"><div class="column"><div class="megamenu__head"><div class="megamenu__column-title">Connect & Learn</div></div><ul class="megamenu__list"><li class="megamenu__list-item"><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="https://community.zoom.com/">Zoom Community</a></div></li><li class="megamenu__list-item"><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="https://learning.zoom.us/learn">Learning Center</a></div></li><li class="megamenu__list-item"><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="https://learn-zoom.us/show-me">How-to Videos</a></div></li><li class="megamenu__list-item"><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="https://events.zoom.us/eo/AsGmtVcsNuaXLrlYNfkaKSphxX-acfgoGLA3gKJv74EKmPPf34Bc~AggLXsr32QYFjq8BlYLZ5I06Dg" target="_blank">Customer Success Hub</a></div></li><li class="megamenu__list-item"><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="/en/products/resources/tech-library/">Technical Content Library</a></div></li></ul></div></div><div class="megamenu__column"><div class="column"><div class="megamenu__head"><div class="megamenu__column-title">Hardware & Services</div></div><ul class="megamenu__list"><li class="megamenu__list-item"><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="https://explore.zoom.us/en/global-services/">Global Services</a></div></li><li class="megamenu__list-item"><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="/en/hardware/">Hardware Options</a></div></li><li class="megamenu__list-item"><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="/en/products/cmk/">Customer Managed Key</a></div></li></ul></div></div><div class="megamenu__column"><div class="column"><div class="megamenu__head"><div class="megamenu__column-title">Support</div></div><ul class="megamenu__list"><li class="megamenu__list-item"><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="https://support.zoom.com/hc/en">Customer Support</a></div></li><li class="megamenu__list-item"><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="https://explore.zoom.us/en/support-plans/">Premier Support</a></div></li><li class="megamenu__list-item"><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="https://developers.zoom.us/support/">Developer Support</a></div></li><li class="megamenu__list-item"><div class="megamenu__list-item-heading"><a data-en-text="" data-link-type="" href="https://explore.zoom.us/en/support-plans/developer/">Premier Developer Support</a></div></li></ul></div></div><div class="megamenu__bottom-action-bar"><ul></ul></div></div><div class="megamenu__highlight"><div class="megamenu__highlight-item"><img alt="Download the Zoom app" class="megamenu__highlight-item-image" fetchpriority="auto" height="120" loading="lazy" src="https://media.zoom.com/images/assets/Resources-ZoomClient.png/Zz05YzJhYzg5NGM0NjkxMWVkYWI2NDEyZjk5ZTY0ZGM3Nw==" title="Download the Zoom app" width="120"></img><div class="megamenu__highlight-item-content"><div class="megamenu__highlight-item-heading">Download the Zoom app</div><p class="megamenu__highlight-item-description">Keep your Zoom app up to date to access the latest features.</p><a class="megamenu__highlight-item-cta" data-en-text="" data-link-type="" href="https://zoom.us/download">Download Center</a></div></div><div class="megamenu__highlight-item"><img alt="Zoom Virtual Backgrounds" class="megamenu__highlight-item-image" fetchpriority="auto" height="120" loading="lazy" src="https://media.zoom.com/images/assets/Resources-VirtualBG.png/Zz01MTc3YTRkNmE2YTExMWVmOWEyNTMyZDUxNWJkZWVjOA==" title="Zoom Virtual Backgrounds" width="120"></img><div class="megamenu__highlight-item-content"><div class="megamenu__highlight-item-heading">Zoom Virtual Backgrounds</div><p class="megamenu__highlight-item-description">Download hi-res images and animations to elevate your next Zoom meeting.</p><a class="megamenu__highlight-item-cta" data-en-text="" data-link-type="" href="/en/products/virtual-meetings/features/virtual-background-library/">Browse backgrounds</a></div></div></div></section><div class="activeSegment"><span class="leftTriangle"></span><span class="rightTriangle"></span></div></li><li class="main-nav__list-item"><a class="main-nav__link" data-en-text="" data-link-type="" href="https://zoom.us/pricing">Plans & Pricing</a></li></ul></div><div class="main-nav__right"><ul class="main-nav__list"><li class="main-nav__list-item main-nav__list-item--mobile"><a class="main-nav__mobile-link" data-en-text="" data-link-type="" href="https://zoom.us/join" target="_top">Join</a></li><li class="main-nav__list-item main-nav__list-item--mobile"><a class="main-nav__mobile-link" data-en-text="" data-link-type="" href="https://zoom.us/join" target="_blank">Host</a></li><li class="main-nav__list-item " data-user-for="97af72b4-4108-4885-b753-f02a39956839"><a class="fdn-button fdn-button--button-style-tertiary fdn-button--button-small" data-en-text="" data-link-type="" href="/en/contact/contact-sales/">Contact Sales<span class="visually-hidden"> Contact Sales</span></a></li><li class="main-nav__list-item " data-user-for="97af72b4-4108-4885-b753-f02a39956839"><a class="fdn-button fdn-button--button-style-primary fdn-button--button-small" data-en-text="" data-link-type="" href="https://zoom.us/signup">Sign Up Free</a></li><li class="resources-nav__list-item authorized-access" data-user-for="82c0350d-4c26-4b95-8feb-330fef53cda3"><a class="resources-nav__join" data-en-text="" data-link-type="" href="https://zoom.us/join" target="_top">Join<span class="visually-hidden"> Join</span></a></li><li class="resources-nav__list-item authorized-access" data-user-for="82c0350d-4c26-4b95-8feb-330fef53cda3"><button aria-expanded="false" aria-haspopup="true" class="resources-nav__dropdown-joinrestricted">Join</button><div class="resources-nav__dropdown-list-joinrestricted"><ul><li class="resources-nav__dropdown-list-item"><a class="resources-nav__dropdown-link" data-en-text="" data-link-type="" href="https://zoom.us/join" target="_blank">By Meeting ID<span class="visually-hidden"> By Meeting ID</span></a><a class="resources-nav__dropdown-link" data-en-text="" data-link-type="" href="https://zoom.us/calendar/list" target="_blank">Public event list<span class="visually-hidden"> Public event list</span></a></li></ul></div></li><li class="resources-nav__list-item authorized-access" data-user-for="82c0350d-4c26-4b95-8feb-330fef53cda3"><button aria-expanded="false" aria-haspopup="true" class="resources-nav__dropdownrestricted">Host</button><div class="resources-nav__dropdown-listrestricted"><ul><li class="resources-nav__dropdown-list-item"><a class="resources-nav__dropdown-link" data-en-text="" data-link-type="" href="https://zoom.us/start/videomeeting" target="_blank">With Video On</a><a class="resources-nav__dropdown-link" data-en-text="" data-link-type="" href="https://zoom.us/start/webmeeting" target="_blank">With Video Off</a><a class="resources-nav__dropdown-link" data-en-text="" data-link-type="" href="https://zoom.us/start/sharemeeting" target="_blank">Screen Share Only</a></li></ul></div></li><li class="resources-nav__list-item authorized-access" data-user-for="82c0350d-4c26-4b95-8feb-330fef53cda3"><button aria-expanded="false" aria-haspopup="true" class="resources-nav__dropdown-webapprestricted">Web App</button><div class="resources-nav__dropdown-list-webapprestricted"><ul><li class="resources-nav__dropdown-list-item"><a class="resources-nav__dropdown-link" data-en-text="" data-link-type="" href="https://app.zoom.us/wc?webp=1"><img alt="Home " class="" fetchpriority="auto" id="webApps-home" loading="lazy" src="https://media.zoom.com/images/assets/webApps-sprites.svg/Zz1hZTNiMGNmMDAxOGIxMWVmOTZhM2MyOGQwNmQwMTc4OA==" title="Home">Home</img><span class="visually-hidden"> Home</span></a><a class="resources-nav__dropdown-link" data-en-text="" data-link-type="" href="https://app.zoom.us/wc/team-chat?webp=1"><img alt="Team Chat" class="" fetchpriority="auto" id="webApps-teamchat" loading="lazy" src="https://media.zoom.com/images/assets/webApps-sprites.svg/Zz1hZTNiMGNmMDAxOGIxMWVmOTZhM2MyOGQwNmQwMTc4OA==" title="Team Chat">Team Chat</img><span class="visually-hidden"> Team Chat</span></a><a class="resources-nav__dropdown-link" data-en-text="" data-link-type="" href="https://app.zoom.us/wc/phone?webp=1"><img alt="Phone " class="" fetchpriority="auto" id="webApps-phone" loading="lazy" src="https://media.zoom.com/images/assets/webApps-sprites.svg/Zz1hZTNiMGNmMDAxOGIxMWVmOTZhM2MyOGQwNmQwMTc4OA==" title="Phone ">Phone</img><span class="visually-hidden"> Phone</span></a><a class="resources-nav__dropdown-link" data-en-text="" data-link-type="" href="https://app.zoom.us/wc/meetings?webp=1"><img alt="Meetings" class="" fetchpriority="auto" id="webApps-meetings" loading="lazy" src="https://media.zoom.com/images/assets/webApps-sprites.svg/Zz1hZTNiMGNmMDAxOGIxMWVmOTZhM2MyOGQwNmQwMTc4OA==" title="Meetings ">Meetings</img><span class="visually-hidden"> Meetings</span></a><a class="resources-nav__dropdown-link" data-en-text="" data-link-type="" href="https://app.zoom.us/wc/contacts?webp=1"><img alt="Contacts" class="" fetchpriority="auto" id="webApps-contact" loading="lazy" src="https://media.zoom.com/images/assets/webApps-sprites.svg/Zz1hZTNiMGNmMDAxOGIxMWVmOTZhM2MyOGQwNmQwMTc4OA==" title="Contacts">Contacts</img><span class="visually-hidden"> Contacts</span></a><a class="resources-nav__dropdown-link" data-en-text="" data-link-type="" href="https://app.zoom.us/wc/whiteboards?webp=1"><img alt="Whiteboards" class="" fetchpriority="auto" id="webApps-whiteboards" loading="lazy" src="https://media.zoom.com/images/assets/webApps-sprites.svg/Zz1hZTNiMGNmMDAxOGIxMWVmOTZhM2MyOGQwNmQwMTc4OA==" title="Whiteboards">Whiteboards</img><span class="visually-hidden"> Whiteboards</span></a></li></ul></div></li><li class="main-nav__list-item authorized-access" data-user-for="82c0350d-4c26-4b95-8feb-330fef53cda3"><a class="fdn-button fdn-button--button-style-primary fdn-button--button-small" data-en-text="My Account" data-link-type="" href="https://zoom.us/profile">My Account<span class="visually-hidden"> My Account</span></a></li></ul><button aria-expanded="false" aria-haspopup="true" aria-label="Toggle Menu" class="main-nav__hamburger-trigger"><span></span></button></div></div></nav> <nav class="mobile-menu"><div class="mobile-menu__container" data-block-size-ref=""><nav aria-label="Main Navigation" class="mobile-menu__main-nav"><ul class="mobile-menu__list"><li class="mobile-menu__list-item"><a aria-label="Search" class="mobile-menu__search" href="/en/search/"><img alt="Search" height="12" src="/dist/assets/icons/icon-search-gray.svg" width="12"></img>Search</a></li><li class="mobile-menu__list-item"><button aria-controls="panel-1" class="mobile-menu__accordion js-accordion-trigger">Products</button><section aria-label="Products" class="mobile-megamenu megamenu-products js-accordion-panel"><div class="mobile-megamenu-products-wrapper"><div class="mobile-megamenu-products--title"><div class="mobile-megamenu-products--subtitle"><a href="/en/ai-assistant/"><img alt="AI Companion" class="nav-title-logo" fetchpriority="auto" loading="lazy" src="https://media.zoom.com/images/assets/Full-Color.svg/Zz0zZTU4NjkxMmUwNDAxMWVlOGRjNWFhZTRmMzFmZjlkNg==" title="AI Companion"></img></a></div><div class="mobile-megamenu-products--description"><p>Empowering you to increase productivity, improve team effectiveness, and enhance skills. <a href="/en/ai-assistant/">Learn more</a></p></div></div><div class="mobile-megamenu__bottom"><div class="mobile-megamenu__column"><div class="mobile-megamenu__column__zoomWorkplace column"><div class="mobile-megamenu__head"><div class="mobile-megamenu__column-title"><a href="/en/products/collaboration-tools/"><img alt="Zoom Workplace" class="nav-title-logo" fetchpriority="auto" loading="lazy" src="https://media.zoom.com/images/assets/logo_product_ZM-workplace_1-line_color-RGB&#x2B;3.svg/Zz01MTA2NTc2MGUwM2UxMWVlOTkyNDkyMTRhMzBjNjAxZg==" title="Zoom Workplace"></img></a><span><img class="megamenu__list-item-icon" src="/dist/assets/icons/icon-right-bloom.svg" alt="" /></span></div></div><div class="mobile-megamenu__column--block"><div class="mobile-megamenu__workplace__column"><ul class="mobile-megamenu__list"><li class="mobile-megamenu__list-item-heading--disabled">Communication</li><li class="mobile-megamenu__list-item mobile-megamenu__list-item"><img alt="Meetings" class="mobile-megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/one-meetings.svg/Zz01YTBmNDRkMmVhOGMxMWVkODExZDRhYjdlM2I2YjFmNQ==" title="Meetings" width="28"></img><div class="mobile-megamenu__list-item-heading"><a href="/en/products/virtual-meetings/">Meetings</a></div></li><li class="mobile-megamenu__list-item mobile-megamenu__list-item"><img alt="Team Chat" class="mobile-megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/product-team-chat.svg/Zz1lZGNhYmY5MmU0NGUxMWVkYjM1OGEyNzVhMWI2ODM4Yw==" title="Team Chat" width="28"></img><div class="mobile-megamenu__list-item-heading"><a href="/en/products/team-chat/">Team Chat</a></div></li><li class="mobile-megamenu__list-item mobile-megamenu__list-item"><img alt="Phone" class="mobile-megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/product-phone.svg/Zz1lZDNmZDE4NGU0NGUxMWVkOTZiZTllNDY0OTU3ZDg4Zg==" title="Phone" width="28"></img><div class="mobile-megamenu__list-item-heading"><a href="/en/products/voip-phone/">Phone</a></div></li><li class="mobile-megamenu__list-item mobile-megamenu__list-item"><img alt="Mail &amp; Calendar" class="mobile-megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/mail&#x2B;calendar&#x2B;Icon.svg/Zz00MWE3YmZiMGRiYmMxMWVlYWQzZjkyZDMwZWIwZDkwYw==" title="Mail &amp; Calendar" width="28"></img><div class="mobile-megamenu__list-item-heading"><a href="/en/products/email-calendar/">Mail & Calendar</a></div></li><li class="mobile-megamenu__list-item mobile-megamenu__list-item"><img alt="Scheduler" class="mobile-megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/appointment-scheduler.svg/Zz01MTRiNTg1ZTM1MGYxMWVlYjc3NmQ2NTU5Nzc3NzFhOQ==" title="Scheduler" width="28"></img><div class="mobile-megamenu__list-item-heading"><a href="/en/products/appointment-scheduler/">Scheduler</a></div></li></ul></div><div class="mobile-megamenu__workplace__column"><ul class="mobile-megamenu__list"><li class="mobile-megamenu__list-item-heading--disabled">Productivity</li><li class="mobile-megamenu__list-item mobile-megamenu__list-item"><img alt="Docs" class="mobile-megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/mark_product_docs.svg/Zz0zNTAwYmRkNGRiYzExMWVlYjY2NWNlOTkyMzIwMjc2OA==" title="Docs" width="28"></img><div class="mobile-megamenu__list-item-heading"><a href="/en/products/collaborative-docs/">Docs</a></div></li><li class="mobile-megamenu__list-item mobile-megamenu__list-item"><img alt="Whiteboard" class="mobile-megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/product-whiteboard.svg/Zz1lZDJjOTczNmU0NGUxMWVkOGFmNmI2NWQ2NDcyM2M3Mg==" title="Whiteboard" width="28"></img><div class="mobile-megamenu__list-item-heading"><a href="/en/products/online-whiteboard/">Whiteboard</a></div></li><li class="mobile-megamenu__list-item mobile-megamenu__list-item"><img alt="Clips" class="mobile-megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/product-clips.svg/Zz00OTAyYWM5NjVjNTcxMWVlOTA5MDU2NmQ1MzA1MjExNQ==" title="Clips" width="28"></img><div class="mobile-megamenu__list-item-heading"><a href="/en/products/video-recording/">Clips</a></div></li><li class="mobile-megamenu__list-item mobile-megamenu__list-item"><img alt="Notes" class="mobile-megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/Notes-Logo.svg/Zz02MmFkNzBjYWRiYzAxMWVlOWYzNDZhZTY1ZDYyODc3MA==" title="Notes" width="28"></img><div class="mobile-megamenu__list-item-heading"><a href="/en/products/productivity/">Tasks</a></div></li><li class="mobile-megamenu__list-item-heading--disabled">Apps & Integrations</li><li class="mobile-megamenu__list-item mobile-megamenu__list-item"><img alt="App Marketplace" class="mobile-megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/developer-marketplace.svg/Zz02OWE4YzY1OGVhOTUxMWVkODU1MWU2NWI4Njg2NmUxNA==" title="App Marketplace" width="28"></img><div class="mobile-megamenu__list-item-heading"><a href="https://marketplace.zoom.us/workplace-apps">App Marketplace</a></div></li></ul></div><div class="mobile-megamenu__workplace__column"><ul class="mobile-megamenu__list"><li class="mobile-megamenu__list-item-heading--disabled">Spaces</li><li class="mobile-megamenu__list-item mobile-megamenu__list-item"><img alt="Rooms" class="mobile-megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/Rooms.svg/Zz02ODUyMWZiZWRiYzMxMWVlOTExYjA2NmQzNDk4YmEzNQ==" title="Rooms" width="28"></img><div class="mobile-megamenu__list-item-heading"><a href="/en/products/meeting-rooms/">Rooms</a></div></li><li class="mobile-megamenu__list-item mobile-megamenu__list-item"><img alt="Workspace Reservations" class="mobile-megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/mark_product_workspace-reservation.svg/Zz1jY2EzMDQ1NmRiYzMxMWVlYmFhMGVhMDc5Nzg3Mjk1OA==" title="Workspace Reservations" width="28"></img><div class="mobile-megamenu__list-item-heading"><a href="/en/products/meeting-rooms/features/workspace/">Workspace Reservation</a></div></li><li class="mobile-megamenu__list-item mobile-megamenu__list-item"><img alt="Digital Signage" class="mobile-megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/digital&#x2B;sign.svg/Zz04ZmQ1MGJlMGRiYzQxMWVlODNlYjBhZjZlZjU5YjMxYw==" title="Digital Signage" width="28"></img><div class="mobile-megamenu__list-item-heading"><a href="/en/products/meeting-rooms/features/workspace/">Digital Signage</a></div></li><li class="mobile-megamenu__list-item mobile-megamenu__list-item"><img alt="Visitor Management" class="mobile-megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/visitor-manage.svg/Zz00Mjc3ZDUwY2RiYzUxMWVlOTI3N2VhMDc5Nzg3Mjk1OA==" title="Visitor Management" width="28"></img><div class="mobile-megamenu__list-item-heading"><a href="/en/products/meeting-rooms/features/workspace/#visitor-management">Visitor Management</a></div></li><li class="mobile-megamenu__list-item-heading--disabled">Employee Engagement</li><li class="mobile-megamenu__list-item mobile-megamenu__list-item"><img alt="Workvivo" class="mobile-megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/workvivo-zm.svg/Zz00OTI4MjQ4MDVjNTcxMWVlYjY2ZTFlZThhMTdjNjk4Yg==" title="Workvivo" width="28"></img><div class="mobile-megamenu__list-item-heading"><a href="/en/products/workvivo/">Workvivo</a></div></li></ul></div></div></div></div></div><div class="mobile-megamenu__bottom"><div class="mobile-megamenu__column"><div class="mobile-megamenu__column__businessService column"><div class="mobile-megamenu__head"><div class="mobile-megamenu__column-title"><a href="/en/products/business-services/">Business Services</a><span><img class="megamenu__list-item-icon" src="/dist/assets/icons/icon-right-bloom.svg" alt="" /></span></div></div><div class="mobile-megamenu__column--block"><div class="mobile-megamenu__workplace__column"><ul class="mobile-megamenu__list"><li class="mobile-megamenu__list-item-heading--disabled">Customer Experience</li><li class="mobile-megamenu__list-item mobile-megamenu__list-item"><img alt="Contact Center" class="mobile-megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/cc-contact-center.svg/Zz01OTgzNDIwMmVhOGMxMWVkYWEwOWNhMjZkMjg1ODQxMg==" title="Contact Center" width="28"></img><div class="mobile-megamenu__list-item-heading"><a href="/en/products/contact-center/">Contact Center</a></div></li><li class="mobile-megamenu__list-item mobile-megamenu__list-item"><img alt="Virtual Agent" class="mobile-megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/product-virtual-agent.svg/Zz1lZTMzZjllNGU0NGUxMWVkOGRiN2I2NWQ2NDcyM2M3Mg==" title="Virtual Agent" width="28"></img><div class="mobile-megamenu__list-item-heading"><a href="/en/products/virtual-agent/">Virtual Agent</a></div></li><li class="mobile-megamenu__list-item mobile-megamenu__list-item"><img alt="Workforce Engagement Management" class="mobile-megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/mark_product_workforce-engagement-management.svg/Zz1kMTNkNDdmZWU3MzIxMWVlOGQwYTgyM2JmOTdlNjdmNA==" title="Workforce Engagement Management" width="28"></img><div class="mobile-megamenu__list-item-heading"><a href="/en/products/workforce-engagement-management/">Workforce Engagement</a></div></li></ul></div><div class="mobile-megamenu__workplace__column"><ul class="mobile-megamenu__list"><li class="mobile-megamenu__list-item-heading--disabled">Marketing</li><li class="mobile-megamenu__list-item mobile-megamenu__list-item"><img alt="Events" class="mobile-megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/mark_product_events.svg/Zz0wNDhmOTg1NGRiY2MxMWVlYjQ3MWQyNTdlYzNkN2VhZg==" title="Events" width="28"></img><div class="mobile-megamenu__list-item-heading"><a href="/en/products/event-platform/">Events</a></div></li><li class="mobile-megamenu__list-item mobile-megamenu__list-item"><img alt="Sessions" class="mobile-megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/mark_product_sessions.svg/Zz0yZTUzYjZjNGRiY2QxMWVlOTRlODNhZWU2NWQ2NTAxNA==" title="Sessions" width="28"></img><div class="mobile-megamenu__list-item-heading"><a href="/en/products/single-session-events/">Sessions</a></div></li><li class="mobile-megamenu__list-item mobile-megamenu__list-item"><img alt="Webinars" class="mobile-megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/mark_product_webinars.svg/Zz03Y2QyMWY1Y2RiY2QxMWVlOTVlZDEyMzJmZDU0MGZkZQ==" title="Webinars" width="28"></img><div class="mobile-megamenu__list-item-heading"><a href="/en/products/webinars/">Webinars</a></div></li></ul></div><div class="mobile-megamenu__workplace__column"><ul class="mobile-megamenu__list"><li class="mobile-megamenu__list-item-heading--disabled">Sales</li><li class="mobile-megamenu__list-item mobile-megamenu__list-item"><img alt="Revenue Accelerator" class="mobile-megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/mark_product_revenue-accelerator.svg/Zz1kZjRjZWQ2YWRiY2QxMWVlYmRhNmFhMDkzYjQ2OGZiZA==" title="Revenue Accelerator" width="28"></img><div class="mobile-megamenu__list-item-heading"><a href="/en/products/conversation-intelligence/">Revenue Accelerator</a></div></li><li class="mobile-megamenu__list-item-heading--disabled">Developer Tools</li><li class="mobile-megamenu__list-item mobile-megamenu__list-item"><img alt="APIs &amp; SDKs" class="mobile-megamenu__list-item-icon" fetchpriority="auto" height="28" loading="lazy" src="https://media.zoom.com/images/assets/mark_product_revenue-accelerator.svg/Zz05MTQ1ZmQ4MGRiY2YxMWVlYjI1MmYyMTViMGQ3YTJlNA==" title="APIs &amp; SDKs" width="28"></img><div class="mobile-megamenu__list-item-heading"><a href="/en/video-sdk/">APIs & SDKs</a></div></li></ul></div></div></div></div></div></div><div class="mobile-megamenu__actionBar"><ul><li><a class="fdn-button fdn-button--button-style-primary fdn-button--button-small" href="/en/products/">Discover all products</a></li><li><a class="fdn-button fdn-button--button-style-textLink fdn-button--button-small" href="https://zoom.us/pricing">Plans & pricing</a></li></ul></div></section></li><li class="mobile-menu__list-item"><button aria-controls="panel-2" class="mobile-menu__accordion js-accordion-trigger">Solutions</button><section aria-label="Solutions" class="mobile-megamenu megamenu-solutions js-accordion-panel"><div class="mobile-megamenu__column"><div class="column"><div class="megamenu__head"><div class="megamenu__column-title"><a href="/en/industry/"><span class="visually-hidden">By industry</span>By industry</a><span><img class="megamenu__list-item-icon" src="/dist/assets/icons/icon-right-bloom.svg" alt="" /></span></div></div><ul class="mobile-megamenu__list"><li class="mobile-megamenu__list-item"><div class="mobile-megamenu__list-item-heading"><a href="/en/industry/education/"><span class="visually-hidden">Education</span>Education</a></div></li><li class="mobile-megamenu__list-item"><div class="mobile-megamenu__list-item-heading"><a href="/en/industry/finance/"><span class="visually-hidden">Financial Services</span>Financial Services</a></div></li><li class="mobile-megamenu__list-item"><div class="mobile-megamenu__list-item-heading"><a href="/en/industry/government/"><span class="visually-hidden">Government</span>Government</a></div></li><li class="mobile-megamenu__list-item"><div class="mobile-megamenu__list-item-heading"><a href="/en/industry/healthcare/"><span class="visually-hidden">Healthcare</span>Healthcare</a></div></li><li class="mobile-megamenu__list-item"><div class="mobile-megamenu__list-item-heading"><a href="/en/industry/manufacturing/"><span class="visually-hidden">Manufacturing</span>Manufacturing</a></div></li><li class="mobile-megamenu__list-item"><div class="mobile-megamenu__list-item-heading"><a href="/en/industry/retail/"><span class="visually-hidden">Retail</span>Retail</a></div></li><li class="mobile-megamenu__list-item"><div class="mobile-megamenu__list-item-heading"><a href="/en/frontline-workers/"><span class="visually-hidden">Frontline</span>Frontline</a></div></li></ul></div></div><div class="mobile-megamenu__column"><div class="column"><div class="megamenu__head"><div class="megamenu__column-title">By audience</div></div><ul class="mobile-megamenu__list"><li class="mobile-megamenu__list-item"><div class="mobile-megamenu__list-item-heading"><a href="/en/audiences/small-business/"><span class="visually-hidden">Small and Midsized Businesses</span>Small and Midsized Businesses</a></div></li><li class="megamenu__list-item disabled"><div class="megamenu__list-item-heading"><p class="megamenu__list-item-heading--disabled">Enterprise</p></div><ul><li class="mobile-megamenu__list-item"><div class="mobile-megamenu__list-item-heading"><a href="/en/audiences/information-technology/"><span class="visually-hidden">Information Technology</span>Information Technology</a></div></li><li class="mobile-megamenu__list-item"><div class="mobile-megamenu__list-item-heading"><a href="/en/audiences/cx/"><span class="visually-hidden">Customer Experience</span>Customer Experience</a></div></li><li class="mobile-megamenu__list-item"><div class="mobile-megamenu__list-item-heading"><a href="/en/audiences/sales-and-revenue/"><span class="visually-hidden">Sales and Revenue</span>Sales and Revenue</a></div></li><li class="mobile-megamenu__list-item"><div class="mobile-megamenu__list-item-heading"><a href="/en/audiences/av-facilities/"><span class="visually-hidden">Facilities</span>Facilities</a></div></li><li class="mobile-megamenu__list-item"><div class="mobile-megamenu__list-item-heading"><a href="/en/audiences/marketing-events/"><span class="visually-hidden">Marketing and Events</span>Marketing and Events</a></div></li></ul></li></ul></div></div><div class="mobile-megamenu__column"><div class="column"><div class="megamenu__head"><div class="megamenu__column-title"><a href="https://developers.zoom.us/docs/">For developers</a><span><img class="megamenu__list-item-icon" src="/dist/assets/icons/icon-right-bloom.svg" alt="" /></span></div></div><ul class="mobile-megamenu__list"><li class="mobile-megamenu__list-item"><div class="mobile-megamenu__list-item-heading"><a href="/en/video-sdk/"><span class="visually-hidden">Video SDK</span>Video SDK</a></div></li><li class="mobile-megamenu__list-item"><div class="mobile-megamenu__list-item-heading"><a href="https://developers.zoom.us/docs/meeting-sdk/"><span class="visually-hidden">Meeting SDK</span>Meeting SDK</a></div></li><li class="mobile-megamenu__list-item"><div class="mobile-megamenu__list-item-heading"><a href="https://marketplace.zoom.us/"><span class="visually-hidden">App Marketplace</span>App Marketplace</a></div></li><li class="mobile-megamenu__list-item"><div class="mobile-megamenu__list-item-heading"><a href="https://developers.zoom.us/docs/api/"><span class="visually-hidden">APIs</span>APIs</a></div></li><li class="mobile-megamenu__list-item"><div class="mobile-megamenu__list-item-heading"><a href="https://developers.zoom.us/docs/api/rest/webhook-reference/"><span class="visually-hidden">Webhooks</span>Webhooks</a></div></li><li class="mobile-megamenu__list-item"><div class="mobile-megamenu__list-item-heading"><a href="/en/zoom-apps/"><span class="visually-hidden">Zoom Apps</span>Zoom Apps</a></div></li><li class="mobile-megamenu__list-item"><div class="mobile-megamenu__list-item-heading"><a href="https://developers.zoom.us/docs/"><span class="visually-hidden">Developer Solutions</span>Developer Solutions</a></div></li></ul></div></div><div class="mobile-megamenu__column"><div class="column"><div class="megamenu__head"><div class="megamenu__column-title"><a href="https://partner.zoom.us/"><span class="visually-hidden">For partners</span>For partners</a><span><img class="megamenu__list-item-icon" src="/dist/assets/icons/icon-right-bloom.svg" alt="" /></span></div></div><ul class="mobile-megamenu__list"><li class="mobile-megamenu__list-item"><div class="mobile-megamenu__list-item-heading"><a href="https://partner.zoom.us/solutions/"><span class="visually-hidden">Partner Solutions</span>Partner Solutions</a></div></li><li class="mobile-megamenu__list-item"><div class="mobile-megamenu__list-item-heading"><a href="https://partner.zoom.us/partner-locator/"><span class="visually-hidden">Find a Partner</span>Find a Partner</a></div></li><li class="mobile-megamenu__list-item"><div class="mobile-megamenu__list-item-heading"><a href="https://partner.zoom.us/"><span class="visually-hidden">Become a Partner</span>Become a Partner</a></div></li><li class="mobile-megamenu__list-item"><div class="mobile-megamenu__list-item-heading"><a href="https://mypartnerportal.zoom.us/"><span class="visually-hidden">Partner Portal</span>Partner Portal</a></div></li><li class="mobile-megamenu__list-item"><div class="mobile-megamenu__list-item-heading"><a href="https://mypartnerportal.zoom.us/?sso=21&amp;RelayState=/pages/38/home"><span class="visually-hidden">Partner Learning Center</span>Partner Learning Center</a></div></li></ul></div></div><div class="mobile-megamenu-products-wrapper"></div></section></li><li class="mobile-menu__list-item"><button aria-controls="panel-3" class="mobile-menu__accordion js-accordion-trigger">Resources</button><section aria-label="Resources" class="mobile-megamenu megamenu-resources js-accordion-panel"><div class="mobile-megamenu__highlight mobile-megamenu__highlight--mobile"><div class="mobile-megamenu__highlight-item"><img alt="Download the Zoom app" class="mobile-megamenu__highlight-item-image" fetchpriority="auto" height="50" loading="lazy" src="https://media.zoom.com/images/assets/Resources-ZoomClient.png/Zz05YzJhYzg5NGM0NjkxMWVkYWI2NDEyZjk5ZTY0ZGM3Nw==" title="Download the Zoom app" width="50"></img><div class="mobile-megamenu__highlight-item-heading"><a href="https://zoom.us/download"><span class="visually-hidden">Download Center</span>Download the Zoom app</a></div></div><div class="mobile-megamenu__highlight-item"><img alt="Zoom Virtual Backgrounds" class="mobile-megamenu__highlight-item-image" fetchpriority="auto" height="50" loading="lazy" src="https://media.zoom.com/images/assets/Resources-VirtualBG.png/Zz01MTc3YTRkNmE2YTExMWVmOWEyNTMyZDUxNWJkZWVjOA==" title="Zoom Virtual Backgrounds" width="50"></img><div class="mobile-megamenu__highlight-item-heading"><a href="/en/products/virtual-meetings/features/virtual-background-library/"><span class="visually-hidden">Browse backgrounds</span>Zoom Virtual Backgrounds</a></div></div></div><div class="mobile-megamenu__column"><div class="column"><div class="megamenu__head"><div class="megamenu__column-title">Explore</div></div><ul class="mobile-megamenu__list"><li class="mobile-megamenu__list-item"><div class="mobile-megamenu__list-item-heading"><a href="/en/blog/"><span class="visually-hidden">Zoom Blog</span>Zoom Blog</a></div></li><li class="mobile-megamenu__list-item"><div class="mobile-megamenu__list-item-heading"><a href="/en/resources/"><span class="visually-hidden">Resource Library</span>Resource Library</a></div></li><li class="mobile-megamenu__list-item"><div class="mobile-megamenu__list-item-heading"><a href="https://ev.zoom.us/"><span class="visually-hidden">Webinars &amp; Events</span>Webinars & Events</a></div></li><li class="mobile-megamenu__list-item"><div class="mobile-megamenu__list-item-heading"><a href="/en/customer-stories/all/"><span class="visually-hidden">Customer Stories</span>Customer Stories</a></div></li><li class="mobile-megamenu__list-item"><div class="mobile-megamenu__list-item-heading"><a href="/en/trust/"><span class="visually-hidden">Zoom Trust Center</span>Zoom Trust Center</a></div></li></ul></div></div><div class="mobile-megamenu__column"><div class="column"><div class="megamenu__head"><div class="megamenu__column-title">Connect & Learn</div></div><ul class="mobile-megamenu__list"><li class="mobile-megamenu__list-item"><div class="mobile-megamenu__list-item-heading"><a href="https://community.zoom.com/"><span class="visually-hidden">Zoom Community</span>Zoom Community</a></div></li><li class="mobile-megamenu__list-item"><div class="mobile-megamenu__list-item-heading"><a href="https://learning.zoom.us/learn"><span class="visually-hidden">Learning Center</span>Learning Center</a></div></li><li class="mobile-megamenu__list-item"><div class="mobile-megamenu__list-item-heading"><a href="https://learn-zoom.us/show-me"><span class="visually-hidden">How-to Videos</span>How-to Videos</a></div></li><li class="mobile-megamenu__list-item"><div class="mobile-megamenu__list-item-heading"><a href="https://events.zoom.us/eo/AsGmtVcsNuaXLrlYNfkaKSphxX-acfgoGLA3gKJv74EKmPPf34Bc~AggLXsr32QYFjq8BlYLZ5I06Dg"><span class="visually-hidden">Customer Success Hub</span>Customer Success Hub</a></div></li><li class="mobile-megamenu__list-item"><div class="mobile-megamenu__list-item-heading"><a href="/en/products/resources/tech-library/"><span class="visually-hidden">Technical Content Library</span>Technical Content Library</a></div></li></ul></div></div><div class="mobile-megamenu__column"><div class="column"><div class="megamenu__head"><div class="megamenu__column-title">Hardware & Services</div></div><ul class="mobile-megamenu__list"><li class="mobile-megamenu__list-item"><div class="mobile-megamenu__list-item-heading"><a href="https://explore.zoom.us/en/global-services/"><span class="visually-hidden">Global Services</span>Global Services</a></div></li><li class="mobile-megamenu__list-item"><div class="mobile-megamenu__list-item-heading"><a href="/en/hardware/"><span class="visually-hidden">Hardware Options</span>Hardware Options</a></div></li><li class="mobile-megamenu__list-item"><div class="mobile-megamenu__list-item-heading"><a href="/en/products/cmk/"><span class="visually-hidden">Customer Managed Key</span>Customer Managed Key</a></div></li></ul></div></div><div class="mobile-megamenu__column"><div class="column"><div class="megamenu__head"><div class="megamenu__column-title">Support</div></div><ul class="mobile-megamenu__list"><li class="mobile-megamenu__list-item"><div class="mobile-megamenu__list-item-heading"><a href="https://support.zoom.com/hc/en"><span class="visually-hidden">Customer Support</span>Customer Support</a></div></li><li class="mobile-megamenu__list-item"><div class="mobile-megamenu__list-item-heading"><a href="https://explore.zoom.us/en/support-plans/"><span class="visually-hidden">Premier Support</span>Premier Support</a></div></li><li class="mobile-megamenu__list-item"><div class="mobile-megamenu__list-item-heading"><a href="https://developers.zoom.us/support/"><span class="visually-hidden">Developer Support</span>Developer Support</a></div></li><li class="mobile-megamenu__list-item"><div class="mobile-megamenu__list-item-heading"><a href="https://explore.zoom.us/en/support-plans/developer/"><span class="visually-hidden">Premier Developer Support</span>Premier Developer Support</a></div></li></ul></div></div><div class="mobile-megamenu-products-wrapper"></div><div class="mobile-megamenu__highlight"><div class="mobile-megamenu__highlight-item"><img alt="Download the Zoom app" class="mobile-megamenu__highlight-item-image" fetchpriority="auto" height="50" loading="lazy" src="https://media.zoom.com/images/assets/Resources-ZoomClient.png/Zz05YzJhYzg5NGM0NjkxMWVkYWI2NDEyZjk5ZTY0ZGM3Nw==" title="Download the Zoom app" width="50"></img><div class="mobile-megamenu__highlight-item-heading"><a href="https://zoom.us/download"><span class="visually-hidden">Download Center</span>Download the Zoom app</a></div></div><div class="mobile-megamenu__highlight-item"><img alt="Zoom Virtual Backgrounds" class="mobile-megamenu__highlight-item-image" fetchpriority="auto" height="50" loading="lazy" src="https://media.zoom.com/images/assets/Resources-VirtualBG.png/Zz01MTc3YTRkNmE2YTExMWVmOWEyNTMyZDUxNWJkZWVjOA==" title="Zoom Virtual Backgrounds" width="50"></img><div class="mobile-megamenu__highlight-item-heading"><a href="/en/products/virtual-meetings/features/virtual-background-library/"><span class="visually-hidden">Browse backgrounds</span>Zoom Virtual Backgrounds</a></div></div></div></section></li><li class="mobile-menu__list-item"><a class="mobile-menu__link" href="https://zoom.us/pricing"><span class="visually-hidden">Plans &amp; Pricing</span>Plans & Pricing</a></li></ul></nav><nav aria-label="Secondary Navigation" class="mobile-menu__secondary-nav"><ul class="mobile-menu__list"><li class="mobile-menu__list-item"><a class="mobile-menu__link" href="https://support.zoom.com/hc/en"><span class="visually-hidden">Support</span>Support</a></li><li class="mobile-menu__list-item"><a class="mobile-menu__link" href="tel:65 8003211528">65 8003211528</a></li><li class="mobile-menu__list-item"><a class="mobile-menu__link" href="/en/contact/contact-sales/"><span class="visually-hidden">Contact Sales</span>Contact Sales</a></li><li class="mobile-menu__list-item"><a class="mobile-menu__link" href="/en/contact/live-demo/">Request a Demo</a></li></ul></nav><div class="mobile-menu__buttons-container " data-user-for="97af72b4-4108-4885-b753-f02a39956839"><a class="fdn-button fdn-button--button-style-tertiary" href="https://zoom.us/signin"><span class="visually-hidden">to your Zoom account</span>Sign In</a><a class="fdn-button fdn-button--button-style-primary" href="https://zoom.us/signup">Sign Up Free</a></div><div class="mobile-menu__buttons-container restricted item-center authorized-access" data-user-for="82c0350d-4c26-4b95-8feb-330fef53cda3"><a class="fdn-button fdn-button--button-style-primary" href="https://zoom.us/profile"><span class="visually-hidden">My Account</span>My Account</a></div></div></nav> </header> <main role="main" id="main" class="content-max-width"> <section class="hero hero--no-line hero--no-color-block hero--with-image hero--simple-image hero--no-color-block module-spacing-zero " data-cmp-is="hero"> <div class="hero__container"> <div class="hero__content"> <nav class="fdn-breadcrumb fdn-breadcrumb--light" aria-label="Breadcrumbs"> <ol class="fdn-breadcrumb__list"> <li class="fdn-breadcrumb__item"> <a href="/en/industry/" class="fdn-breadcrumb__link" >Industries</a> </li> <li class="fdn-breadcrumb__item"> <a href="/en/industry/retail/" class="fdn-breadcrumb__link" aria-current="page">Retail</a> </li> </ol> <script type="application/ld+json"> { "@context": "https://schema.org/", "@type": "BreadcrumbList", "itemListElement": [ { "type": "ListItem", "position": 1, "Item": { "@id": "https://www.zoom.com/en/industry/", "name": "Industries" } }, { "type": "ListItem", "position": 2, "Item": { "name": "Retail" } } ] } </script> </nav> <h1 class="hero__title">Increase customer engagement, service levels and sales</h1> <div class="hero__body-text "> <p>From store operations to supply chain management Zoom is helping retailers implement innovative solutions that streamline operations, improve customer service and increase sales.</p> </div> <div class="hero__cta"> <a href="/en/contact/contact-sales/" target="_blank" class="fdn-button fdn-button--button-style-primary fdn-button--button-large js-analytics-cta" title="Contact Sales" data-title="" data-link-type="contact-sales" data-en-text="" >Contact Sales</a> <a href="https://www.youtube.com/watch?v=LGSN3VFgqkA" target="_blank" class="fdn-button fdn-button--button-style-textLink fdn-button--button-small js-analytics-cta" title="Watch Video" data-title="" rel="noopener noreferrer" data-link-type="" data-en-text="" >Watch Video</a> </div> </div> <img width="688" height="512" title="Collage of images" alt="Collage of images" class="hero__image" loading="eager" fetchpriority="auto" srcset="https://media.zoom.com/images/assets/Retail&#x2B;Hero.png/Zz04YzIzMWE1ZWU0MzYxMWVkODRkMmFlOGVmYzI4MDIyYw==?t=20250218072047 2x" src="https://media.zoom.com/images/assets/Retail&#x2B;Hero.png/Zz04YzIzMWE1ZWU0MzYxMWVkODRkMmFlOGVmYzI4MDIyYw==?t=20250218072047" /> </div> </section> <div class="module-columns layout-3-columns theme-dark-blue module-spacing-top-zero module-spacing-zero module-padding-top-medium module-padding-medium " id="3-column-icons-dark" data-cardcount="0" data-cmp-is="column"> <div class="wrapper"> </headline> <div class="column column-1"> <div class="fdn-icon-block fdn-icon-block--icon-large fdn-icon-block--dark fdn-icon-block-- fdn-icon-block--hover-agave-20" data-title="true"> <ul> <li > <div class="fdn-icon-block__icon-container"> <div class="fdn-icon-block__large-icon-bg"></div> <img title="Shield with lock" alt="Icon" class="fdn-icon-block__large-icon" loading="lazy" fetchpriority="auto" srcset="https://media.zoom.com/images/assets/Cloud&#x2B;%26&#x2B;File&#x2B;Management&#x2B;49.svg/Zz03MzI0ZGYwZWRkMzAxMWVkYTM2OWYyYjhjOWNlNzBkZQ==?t=20250218072047 2x" src="https://media.zoom.com/images/assets/Cloud&#x2B;%26&#x2B;File&#x2B;Management&#x2B;49.svg/Zz03MzI0ZGYwZWRkMzAxMWVkYTM2OWYyYjhjOWNlNzBkZQ==?t=20250218072047" /> </div> <div class="fdn-icon-block__body-container"> <div class="fdn-icon-block__body-title">Trusted communications</div> <div class="fdn-icon-block__body-text"> <p>Our secure platform ensures that retailers and consumers feel confident when using Zoom in communications and transactions.</p> </div> </div> </li> </ul> </div> </div> <div class="column column-1"> <div class="fdn-icon-block fdn-icon-block--icon-large fdn-icon-block--dark fdn-icon-block-- fdn-icon-block--hover-bloom-20" data-title="true"> <ul> <li > <div class="fdn-icon-block__icon-container"> <div class="fdn-icon-block__large-icon-bg"></div> <img title="Graph with upwards arrow" alt="Graph with upwards arrow" class="fdn-icon-block__large-icon" loading="lazy" fetchpriority="auto" srcset="https://media.zoom.com/images/assets/Finance96.svg/Zz02ZWYxYjVhZWRkMmQxMWVkOTgwYWYyYjhjOWNlNzBkZQ==?t=20250218072047 2x" src="https://media.zoom.com/images/assets/Finance96.svg/Zz02ZWYxYjVhZWRkMmQxMWVkOTgwYWYyYjhjOWNlNzBkZQ==?t=20250218072047" /> </div> <div class="fdn-icon-block__body-container"> <div class="fdn-icon-block__body-title">State-of-the-art scalability</div> <div class="fdn-icon-block__body-text"> <p>Zoom&rsquo;s modern architecture enables organizations of any size and complexity to scale without compromising quality or reliability.</p> </div> </div> </li> </ul> </div> </div> <div class="column column-1"> <div class="fdn-icon-block fdn-icon-block--icon-large fdn-icon-block--dark fdn-icon-block-- fdn-icon-block--hover-saffron-20" data-title="true"> <ul> <li > <div class="fdn-icon-block__icon-container"> <div class="fdn-icon-block__large-icon-bg"></div> <img title="Spaceship with $ &amp; 0&#x27;s" alt="Spaceship with $ &amp; 0&#x27;s" class="fdn-icon-block__large-icon" loading="lazy" fetchpriority="auto" srcset="https://media.zoom.com/images/assets/Business&#x2B;%26&#x2B;Corporate&#x2B;82.svg/Zz0xZjg0OTg4MGRkMzAxMWVkYmNmNWFlOWFmMjk0YzY4ZQ==?t=20250218072047 2x" src="https://media.zoom.com/images/assets/Business&#x2B;%26&#x2B;Corporate&#x2B;82.svg/Zz0xZjg0OTg4MGRkMzAxMWVkYmNmNWFlOWFmMjk0YzY4ZQ==?t=20250218072047" /> </div> <div class="fdn-icon-block__body-container"> <div class="fdn-icon-block__body-title">A range of possibilities</div> <div class="fdn-icon-block__body-text"> <p>From video ecommerce to store-wide communications to virtual inventory control, our flexible platform and integrations power a variety of use cases.</p> </div> </div> </li> </ul> </div> </div> </div> </div> <div class="module-columns layout-1-columns theme-white module-spacing-top-zero module-spacing-zero module-padding-top-x-small module-padding-medium " id="use-case-4x"> <div class="wrapper"> <div class="module-columns-title">Your platform for customer service, satisfaction and loyalty</div></headline> <div class="column column-1"> <section aria-label="Tabbed Carousel" class="tabbed-carousel theme-white" data-cmp-is="tabbed-carousel"> <div class="tabbed-carousel__tabs" role="tablist"> <button class="tabbed-carousel__tab" aria-controls="tabbed-carousel__panel-use-case-4x-1" aria-selected="true" id="tabbed-carousel__tab-use-case-4x-1" role="tab"> <h3 class="tabbed-carousel__tab-title">Enhance the virtual shopping experience</h3> <span class="tabbed-carousel__tab-description"> Merge digital and physical retail operations </span> </button> <button class="tabbed-carousel__tab" aria-controls="tabbed-carousel__panel-use-case-4x-2" aria-selected="false" id="tabbed-carousel__tab-use-case-4x-2" role="tab"> <h3 class="tabbed-carousel__tab-title">Improve in-store operations</h3> <span class="tabbed-carousel__tab-description"> Increase sales and service levels virtually </span> </button> <button class="tabbed-carousel__tab" aria-controls="tabbed-carousel__panel-use-case-4x-3" aria-selected="false" id="tabbed-carousel__tab-use-case-4x-3" role="tab"> <h3 class="tabbed-carousel__tab-title">Collaborate globally</h3> <span class="tabbed-carousel__tab-description"> Connect with customers and partners around the world </span> </button> <button class="tabbed-carousel__tab" aria-controls="tabbed-carousel__panel-use-case-4x-4" aria-selected="false" id="tabbed-carousel__tab-use-case-4x-4" role="tab"> <h3 class="tabbed-carousel__tab-title">Host virtual events</h3> <span class="tabbed-carousel__tab-description"> Extend reach to broader audiences </span> </button> <button class="tabbed-carousel__tab" aria-controls="tabbed-carousel__panel-use-case-4x-5" aria-selected="false" id="tabbed-carousel__tab-use-case-4x-5" role="tab"> <h3 class="tabbed-carousel__tab-title">Build custom integrations</h3> <span class="tabbed-carousel__tab-description"> Customize how you use Zoom </span> </button> </div> <div class="tabbed-carousel__panels swiper"> <div class="swiper-wrapper"> <div class="swiper-slide swiper-slide-active" role="tabpanel" aria-labelledby="tabbed-carousel__tab-use-case-4x-1" id="tabbed-carousel__panel-use-case-4x-1"> <div class="tabbed-carousel__card-heading"> <h3 class="tabbed-carousel__card-heading-title">Enhance the virtual shopping experience</h3> <p class="tabbed-carousel__card-heading-description">Merge digital and physical retail operations</p> </div> <article class="tabbed-carousel__card tabbed-carousel__card--horizontal" aria-label="Card Label"> <img width="840" height="580" title="Woman shopping online" alt="Woman shopping online" class="tabbed-carousel__card-image" loading="lazy" fetchpriority="auto" srcset="https://media.zoom.com/images/assets/Virtual-shopping.png/Zz04Y2U4ZTRhYWU0MzYxMWVkYjM4YWU2MmZlODUyNzBkNA==?t=20250218072047 2x" src="https://media.zoom.com/images/assets/Virtual-shopping.png/Zz04Y2U4ZTRhYWU0MzYxMWVkYjM4YWU2MmZlODUyNzBkNA==?t=20250218072047" /> <div class="tabbed-carousel__card-content"> <div class="tabbed-carousel__card-description"> <p>Use Zoom to create highly customized, &ldquo;Commerce Anywhere&rdquo; visual experiences for shoppers that increase sales, enhance service levels and build customer loyalty.</p> <ul class="tabbed-carousel__card-list"> <li class="tabbed-carousel__card-list-item"> <img width="32" height="32" title="Zoom Meetings logo" alt="Zoom Meetings logo" class="tabbed-carousel__card-list-item-icon" loading="lazy" fetchpriority="auto" srcset="https://media.zoom.com/images/assets/virtual-meetings-white.svg/Zz02OTBlMzAzOGJkY2QxMWVkYjk4Y2NlMzFjZDhkNzM5MA==?t=20250218072047 2x" src="https://media.zoom.com/images/assets/virtual-meetings-white.svg/Zz02OTBlMzAzOGJkY2QxMWVkYjk4Y2NlMzFjZDhkNzM5MA==?t=20250218072047" /> <div> <h4 class="tabbed-carousel__card-list-item-title"> <a href="/en/products/virtual-meetings/" target="Zoom Meetings">Zoom Meetings</a> </h4> <p class="tabbed-carousel__card-list-item-description"> <p>Make virtual shopping a reality with HD video and audio</p></p> </div> </li> <li class="tabbed-carousel__card-list-item"> <img width="32" height="32" title="Zoom Phone logo" alt="Zoom Phone logo" class="tabbed-carousel__card-list-item-icon" loading="lazy" fetchpriority="auto" srcset="https://media.zoom.com/images/assets/product-phone.svg/Zz1lZDNmZDE4NGU0NGUxMWVkOTZiZTllNDY0OTU3ZDg4Zg==?t=20250218072047 2x" src="https://media.zoom.com/images/assets/product-phone.svg/Zz1lZDNmZDE4NGU0NGUxMWVkOTZiZTllNDY0OTU3ZDg4Zg==?t=20250218072047" /> <div> <h4 class="tabbed-carousel__card-list-item-title"> <a href="/en/products/voip-phone/" target="Zoom Phone">Zoom Phone</a> </h4> <p class="tabbed-carousel__card-list-item-description"> <p>Enable flexible phone communications with availability on any device</p></p> </div> </li> <li class="tabbed-carousel__card-list-item"> <img width="32" height="32" title="App Marketplace logo" alt="App Marketplace logo" class="tabbed-carousel__card-list-item-icon" loading="lazy" fetchpriority="auto" srcset="https://media.zoom.com/images/assets/developer-marketplace.svg/Zz02OWE4YzY1OGVhOTUxMWVkODU1MWU2NWI4Njg2NmUxNA==?t=20250218072047 2x" src="https://media.zoom.com/images/assets/developer-marketplace.svg/Zz02OWE4YzY1OGVhOTUxMWVkODU1MWU2NWI4Njg2NmUxNA==?t=20250218072047" /> <div> <h4 class="tabbed-carousel__card-list-item-title"> <a href="https://marketplace.zoom.us/" target="App Marketplace">App Marketplace</a> </h4> <p class="tabbed-carousel__card-list-item-description"> <p>Elevate the virtual shopping experience with easy-to-deploy integrations</p></p> </div> </li> <li class="tabbed-carousel__card-list-item"> <img width="32" height="32" title="Zoom Contact Centerlogo" alt="Zoom Contact Center logo" class="tabbed-carousel__card-list-item-icon" loading="lazy" fetchpriority="auto" srcset="https://media.zoom.com/images/assets/product-contact-center.svg/Zz1lZWZkMTBjMmU0NGUxMWVkOWNhY2NhMTY3MjcxODE1Yw==?t=20250218072047 2x" src="https://media.zoom.com/images/assets/product-contact-center.svg/Zz1lZWZkMTBjMmU0NGUxMWVkOWNhY2NhMTY3MjcxODE1Yw==?t=20250218072047" /> <div> <h4 class="tabbed-carousel__card-list-item-title"> <a href="/en/products/contact-center/" target="Zoom Contact Center">Zoom Contact Center</a> </h4> <p class="tabbed-carousel__card-list-item-description"> <p>Connect your customers with experts using a video-optimized contact center</p></p> </div> </li> </ul> </div> </div> </article> </div> <div class="swiper-slide" role="tabpanel" aria-labelledby="tabbed-carousel__tab-use-case-4x-2" id="tabbed-carousel__panel-use-case-4x-2"> <div class="tabbed-carousel__card-heading"> <h3 class="tabbed-carousel__card-heading-title">Improve in-store operations</h3> <p class="tabbed-carousel__card-heading-description">Increase sales and service levels virtually</p> </div> <article class="tabbed-carousel__card tabbed-carousel__card--horizontal" aria-label="Card Label"> <img width="840" height="580" title="Man on the computer" alt="Man on the computer" class="tabbed-carousel__card-image" loading="lazy" fetchpriority="auto" srcset="https://media.zoom.com/images/assets/Store-operations.png/Zz04YzY2ZDVjOGU0MzYxMWVkYWY1OGU2MmZlODUyNzBkNA==?t=20250218072047 2x" src="https://media.zoom.com/images/assets/Store-operations.png/Zz04YzY2ZDVjOGU0MzYxMWVkYWY1OGU2MmZlODUyNzBkNA==?t=20250218072047" /> <div class="tabbed-carousel__card-content"> <div class="tabbed-carousel__card-description"> <p>Zoom can be used for store-wide communications to enhance store operations, optimize inventory levels, highlight promotions and provide customer service and support.</p> <ul class="tabbed-carousel__card-list"> <li class="tabbed-carousel__card-list-item"> <img width="32" height="32" title="Zoom Meetings logo" alt="Zoom Meetings logo" class="tabbed-carousel__card-list-item-icon" loading="lazy" fetchpriority="auto" srcset="https://media.zoom.com/images/assets/one-meetings.svg/Zz01YTBmNDRkMmVhOGMxMWVkODExZDRhYjdlM2I2YjFmNQ==?t=20250218072047 2x" src="https://media.zoom.com/images/assets/one-meetings.svg/Zz01YTBmNDRkMmVhOGMxMWVkODExZDRhYjdlM2I2YjFmNQ==?t=20250218072047" /> <div> <h4 class="tabbed-carousel__card-list-item-title"> <a href="/en/products/virtual-meetings/" target="Zoom Meetings">Zoom Meetings</a> </h4> <p class="tabbed-carousel__card-list-item-description"> <p>Provide operational staff and personnel the ability to communicate visually</p></p> </div> </li> </ul> </div> </div> </article> </div> <div class="swiper-slide" role="tabpanel" aria-labelledby="tabbed-carousel__tab-use-case-4x-3" id="tabbed-carousel__panel-use-case-4x-3"> <div class="tabbed-carousel__card-heading"> <h3 class="tabbed-carousel__card-heading-title">Collaborate globally</h3> <p class="tabbed-carousel__card-heading-description">Connect with customers and partners around the world</p> </div> <article class="tabbed-carousel__card tabbed-carousel__card--horizontal" aria-label="Card Label"> <img width="840" height="580" title="Woman on video call" alt="Woman on video call" class="tabbed-carousel__card-image" loading="lazy" fetchpriority="auto" srcset="https://media.zoom.com/images/assets/Collaborate-globally.png/Zz04YmIxMWFkMGU0MzYxMWVkYWEwNjY2MTM5Mjg3NTA2Zg==?t=20250218072047 2x" src="https://media.zoom.com/images/assets/Collaborate-globally.png/Zz04YmIxMWFkMGU0MzYxMWVkYWEwNjY2MTM5Mjg3NTA2Zg==?t=20250218072047" /> <div class="tabbed-carousel__card-content"> <div class="tabbed-carousel__card-description"> <p>Zoom helps to fortify relationships and tighten alignment between employees, store operational personnel, suppliers and partners.</p> <ul class="tabbed-carousel__card-list"> <li class="tabbed-carousel__card-list-item"> <img width="32" height="32" title="Zoom Meetings logo" alt="Zoom Meetings logo" class="tabbed-carousel__card-list-item-icon" loading="lazy" fetchpriority="auto" srcset="https://media.zoom.com/images/assets/one-meetings.svg/Zz01YTBmNDRkMmVhOGMxMWVkODExZDRhYjdlM2I2YjFmNQ==?t=20250218072047 2x" src="https://media.zoom.com/images/assets/one-meetings.svg/Zz01YTBmNDRkMmVhOGMxMWVkODExZDRhYjdlM2I2YjFmNQ==?t=20250218072047" /> <div> <h4 class="tabbed-carousel__card-list-item-title"> <a href="/en/products/virtual-meetings/" target="Zoom Meetings">Zoom Meetings</a> </h4> <p class="tabbed-carousel__card-list-item-description"> <p>Overcome barriers of location and build team culture with video collaboration</p></p> </div> </li> <li class="tabbed-carousel__card-list-item"> <img width="32" height="32" title="Zoom Phone logo" alt="Zoom Phone logo" class="tabbed-carousel__card-list-item-icon" loading="lazy" fetchpriority="auto" srcset="https://media.zoom.com/images/assets/one-phone.svg/Zz01YTM5ZTFiMGVhOGMxMWVkYjBmMmU2NWI4Njg2NmUxNA==?t=20250218072047 2x" src="https://media.zoom.com/images/assets/one-phone.svg/Zz01YTM5ZTFiMGVhOGMxMWVkYjBmMmU2NWI4Njg2NmUxNA==?t=20250218072047" /> <div> <h4 class="tabbed-carousel__card-list-item-title"> <a href="/en/products/voip-phone/" target="Zoom Phone">Zoom Phone</a> </h4> <p class="tabbed-carousel__card-list-item-description"> Connect distributed teams with domestic calling in 45+ countries and territories</p> </div> </li> <li class="tabbed-carousel__card-list-item"> <img width="32" height="32" title="Zoom Team Chat logo" alt="Zoom Team Chat logo" class="tabbed-carousel__card-list-item-icon" loading="lazy" fetchpriority="auto" srcset="https://media.zoom.com/images/assets/one-chat.svg/Zz01OTlmODM5YWVhOGMxMWVkYjg2MjFlZmFmYTM4OTM2Ng==?t=20250218072047 2x" src="https://media.zoom.com/images/assets/one-chat.svg/Zz01OTlmODM5YWVhOGMxMWVkYjg2MjFlZmFmYTM4OTM2Ng==?t=20250218072047" /> <div> <h4 class="tabbed-carousel__card-list-item-title"> <a href="/en/products/team-chat/" target="Zoom Team Chat">Zoom Team Chat</a> </h4> <p class="tabbed-carousel__card-list-item-description"> <p>Experience real-time collaboration at your fingertips</p></p> </div> </li> <li class="tabbed-carousel__card-list-item"> <img width="32" height="32" title="Zoom Rooms logo" alt="Zoom Rooms logo" class="tabbed-carousel__card-list-item-icon" loading="lazy" fetchpriority="auto" srcset="https://media.zoom.com/images/assets/spaces-rooms.svg/Zz01YTdhY2RiMGVhOGMxMWVkOWY1NzAyMWQ1MDIzMzViYw==?t=20250218072047 2x" src="https://media.zoom.com/images/assets/spaces-rooms.svg/Zz01YTdhY2RiMGVhOGMxMWVkOWY1NzAyMWQ1MDIzMzViYw==?t=20250218072047" /> <div> <h4 class="tabbed-carousel__card-list-item-title"> <a href="/en/products/meeting-rooms/" target="Zoom Rooms">Zoom Rooms</a> </h4> <p class="tabbed-carousel__card-list-item-description"> <p>Introduce one-touch meeting rooms for effortless connection</p></p> </div> </li> </ul> </div> </div> </article> </div> <div class="swiper-slide" role="tabpanel" aria-labelledby="tabbed-carousel__tab-use-case-4x-4" id="tabbed-carousel__panel-use-case-4x-4"> <div class="tabbed-carousel__card-heading"> <h3 class="tabbed-carousel__card-heading-title">Host virtual events</h3> <p class="tabbed-carousel__card-heading-description">Extend reach to broader audiences</p> </div> <article class="tabbed-carousel__card tabbed-carousel__card--horizontal" aria-label="Card Label"> <img width="840" height="580" title="Woman speaking to team members" alt="Woman speaking to team members" class="tabbed-carousel__card-image" loading="lazy" fetchpriority="auto" srcset="https://media.zoom.com/images/assets/Virtual-events.png/Zz04Y2IzOTU2NmU0MzYxMWVkOGE2MWNlNjE5MjFhMmQ0YQ==?t=20250218072047 2x" src="https://media.zoom.com/images/assets/Virtual-events.png/Zz04Y2IzOTU2NmU0MzYxMWVkOGE2MWNlNjE5MjFhMmQ0YQ==?t=20250218072047" /> <div class="tabbed-carousel__card-content"> <div class="tabbed-carousel__card-description"> <p>Use Zoom to share with widespread audiences employee communications, company announcements, training sessions, upcoming events and more.</p> <ul class="tabbed-carousel__card-list"> <li class="tabbed-carousel__card-list-item"> <img width="32" height="32" title="Zoom Meetings logo" alt="Zoom Meetings logo" class="tabbed-carousel__card-list-item-icon" loading="lazy" fetchpriority="auto" srcset="https://media.zoom.com/images/assets/one-meetings.svg/Zz01YTBmNDRkMmVhOGMxMWVkODExZDRhYjdlM2I2YjFmNQ==?t=20250218072047 2x" src="https://media.zoom.com/images/assets/one-meetings.svg/Zz01YTBmNDRkMmVhOGMxMWVkODExZDRhYjdlM2I2YjFmNQ==?t=20250218072047" /> <div> <h4 class="tabbed-carousel__card-list-item-title"> <a href="/en/products/virtual-meetings/" target="Zoom Meetings">Zoom Meetings</a> </h4> <p class="tabbed-carousel__card-list-item-description"> <p>Deliver interactive, face-to-face events and live trainings</p></p> </div> </li> <li class="tabbed-carousel__card-list-item"> <img width="32" height="32" title="Zoom Webinars logo" alt="Zoom Webinars logo" class="tabbed-carousel__card-list-item-icon" loading="lazy" fetchpriority="auto" srcset="https://media.zoom.com/images/assets/events-spaces-webinars.svg/Zz01OTljMjU3ZWVhOGMxMWVkOTJmMDBhOTA1NjBlNjE4Ng==?t=20250218072047 2x" src="https://media.zoom.com/images/assets/events-spaces-webinars.svg/Zz01OTljMjU3ZWVhOGMxMWVkOTJmMDBhOTA1NjBlNjE4Ng==?t=20250218072047" /> <div> <h4 class="tabbed-carousel__card-list-item-title"> <a href="/en/products/webinars/" target="Zoom Webinars">Zoom Webinars</a> </h4> <p class="tabbed-carousel__card-list-item-description"> <p>Scale training sessions or seminars to a large audience</p></p> </div> </li> <li class="tabbed-carousel__card-list-item"> <img width="32" height="32" title="Zoom Eventslogo" alt="Zoom Events logo" class="tabbed-carousel__card-list-item-icon" loading="lazy" fetchpriority="auto" srcset="https://media.zoom.com/images/assets/events-events-sessions.svg/Zz01OTYzNTRiMGVhOGMxMWVkOGUxNzVhNmI0OTMwNzAxNw==?t=20250218072047 2x" src="https://media.zoom.com/images/assets/events-events-sessions.svg/Zz01OTYzNTRiMGVhOGMxMWVkOGUxNzVhNmI0OTMwNzAxNw==?t=20250218072047" /> <div> <h4 class="tabbed-carousel__card-list-item-title"> <a href="/en/products/event-platform/" target="Zoom Events">Zoom Events</a> </h4> <p class="tabbed-carousel__card-list-item-description"> <p>Reimagine what an all-in-one events solution can do for engagement and networking</p></p> </div> </li> </ul> </div> </div> </article> </div> <div class="swiper-slide" role="tabpanel" aria-labelledby="tabbed-carousel__tab-use-case-4x-5" id="tabbed-carousel__panel-use-case-4x-5"> <div class="tabbed-carousel__card-heading"> <h3 class="tabbed-carousel__card-heading-title">Build custom integrations</h3> <p class="tabbed-carousel__card-heading-description">Customize how you use Zoom</p> </div> <article class="tabbed-carousel__card tabbed-carousel__card--horizontal" aria-label="Card Label"> <img width="840" height="580" title="Man presenting" alt="Man presenting" class="tabbed-carousel__card-image" loading="lazy" fetchpriority="auto" srcset="https://media.zoom.com/images/assets/Custom-integrations.png/Zz04YmMxYTIyNGU0MzYxMWVkOWVlY2NlNjE5MjFhMmQ0YQ==?t=20250218072047 2x" src="https://media.zoom.com/images/assets/Custom-integrations.png/Zz04YmMxYTIyNGU0MzYxMWVkOWVlY2NlNjE5MjFhMmQ0YQ==?t=20250218072047" /> <div class="tabbed-carousel__card-content"> <div class="tabbed-carousel__card-description"> <p>Build powerful integrations or video-based retail apps with our robust developer platform.</p> <ul class="tabbed-carousel__card-list"> <li class="tabbed-carousel__card-list-item"> <img width="32" height="32" title="APIs logo" alt="APIs logo" class="tabbed-carousel__card-list-item-icon" loading="lazy" fetchpriority="auto" srcset="https://media.zoom.com/images/assets/developer-api-sdks.svg/Zz02OWI3MWFmMGVhOTUxMWVkOWViMDRhYjdlM2I2YjFmNQ==?t=20250218072047 2x" src="https://media.zoom.com/images/assets/developer-api-sdks.svg/Zz02OWI3MWFmMGVhOTUxMWVkOWViMDRhYjdlM2I2YjFmNQ==?t=20250218072047" /> <div> <h4 class="tabbed-carousel__card-list-item-title"> <a href="https://marketplace.zoom.us/docs/api-reference/introduction/" target="APIs">APIs</a> </h4> <p class="tabbed-carousel__card-list-item-description"> Enable a tighter integration of workstreams with Zoom APIs</p> </div> </li> <li class="tabbed-carousel__card-list-item"> <img width="32" height="32" title="SDKs logo" alt="SDKs logo" class="tabbed-carousel__card-list-item-icon" loading="lazy" fetchpriority="auto" srcset="https://media.zoom.com/images/assets/developer-api-sdks.svg/Zz02OWI3MWFmMGVhOTUxMWVkOWViMDRhYjdlM2I2YjFmNQ==?t=20250218072047 2x" src="https://media.zoom.com/images/assets/developer-api-sdks.svg/Zz02OWI3MWFmMGVhOTUxMWVkOWViMDRhYjdlM2I2YjFmNQ==?t=20250218072047" /> <div> <h4 class="tabbed-carousel__card-list-item-title"> <a href="/en/video-sdk/" target="SDKs">SDKs</a> </h4> <p class="tabbed-carousel__card-list-item-description"> Develop Zoom functionality within third-party apps with Video and Meeting SDKs</p> </div> </li> <li class="tabbed-carousel__card-list-item"> <img width="32" height="32" title="Webhooks logo" alt="Webhooks logo" class="tabbed-carousel__card-list-item-icon" loading="lazy" fetchpriority="auto" srcset="https://media.zoom.com/images/assets/developer-platform-solutions.svg/Zz02OWFmMTMxNGVhOTUxMWVkYjg1N2NhMjZkMjg1ODQxMg==?t=20250218072047 2x" src="https://media.zoom.com/images/assets/developer-platform-solutions.svg/Zz02OWFmMTMxNGVhOTUxMWVkYjg1N2NhMjZkMjg1ODQxMg==?t=20250218072047" /> <div> <h4 class="tabbed-carousel__card-list-item-title"> <a href="https://marketplace.zoom.us/docs/api-reference/webhook-reference/" target="Webhooks">Webhooks</a> </h4> <p class="tabbed-carousel__card-list-item-description"> <p>Automate retail operational workflows with Zoom webhooks</p></p> </div> </li> </ul> </div> </div> </article> </div> </div> <div class="swiper-pagination"></div> </div> </section> </div> </div> </div> <div class="module-columns layout-2-columns theme-light-gray module-spacing-top-zero module-spacing-zero module-padding-top-medium module-padding-medium " id="5050-imagetext-dark"> <div class="wrapper"> </headline> <div class="column column-1"> <div class="fdn-autoImage" id="image"> <div class="fdn-autoImage--container aspect-ratio-4-3"> <img width="640" height="480" title="Team looking at an Ipad" alt="Team looking at an Ipad" class="large-radius" loading="lazy" fetchpriority="auto" srcset="https://media.zoom.com/images/assets/Customer-service.png/Zz04YjkxNzVkNmU0MzYxMWVkYWUyOTI2OTk4ZTJiOGZiYw==?t=20250218072047 2x" src="https://media.zoom.com/images/assets/Customer-service.png/Zz04YjkxNzVkNmU0MzYxMWVkYWUyOTI2OTk4ZTJiOGZiYw==?t=20250218072047" /> </div> </div> </div> <div class="column column-2"> <div class="fdn-copy-block fdn-copy-block--icon-small fdn-copy-block--light fdn-copy-block--vertical-center" id="2f3e64e2-f272-428a-aa35-892b2cdf006a-2"> <h3 class="fdn-copy-block__title">Retail solutions that focus on customer service, satisfaction and loyalty</h3> <div class="fdn-copy-block__sub-title"> <p>Zoom provides a secure, scalable platform that meets the ever-changing needs of today&rsquo;s retail organizations globally. Internally, Zoom can be used by IT, HR, Marketing and other functional groups for collaboration, training, employee communications and more. Externally, Zoom can be used to enhance the overall buying experience with innovative customer-focused solutions that help make the vision of Commerce Anywhere a reality.</p> </div> <div class="fdn-copy-block__btn-container"> <span> <a href="https://media.zoom.com/download/assets/zoom-for-retail.pdf/1ba15280abcf11ee9d1ac28842f7962c" target="_blank" class="fdn-button fdn-button--button-style-tertiary fdn-button--button-small js-analytics-cta" title="Why Zoom for Retail" data-title="" data-link-type="" data-en-text="" >Why Zoom for Retail<span class="visually-hidden"> Why Zoom for Retail</span></a> </span> </div> </div> </div> </div> </div> <div class="module-columns layout-4-columns theme-dark-blue module-spacing-top-zero module-spacing-zero module-padding-top-medium module-padding-medium " id="4-column-listed-text-dark" data-cardcount="0" data-cmp-is="column"> <div class="wrapper"> </headline> <div class="column column-1"> <div class="fdn-copy-block fdn-copy-block--icon-small fdn-copy-block--dark " data-title="true" id="79e9cdb1-fd6b-485c-94da-4e4f5e5e0924-1"> <ul class=""> <li> <div class="fdn-copy-block__icon-container"> <img alt="" class="fdn-copy-block__small-icon" loading="lazy" fetchpriority="auto" src="https://media.zoom.com/images/assets/zoom-icon-green-check.svg/Zz01MDc1YTNjOGI4NTMxMWVkOGE5M2FhZDY3NTgzNzM2OA==?t=20250214120000" /> </div> <div class="fdn-copy-block__body-container"> <div class="fdn-copy-block__body-title"> Video eCommerce </div> <div style="margin-top: 5px"></div> <div class="fdn-copy-block__body-text"> <div class="zmc__fourColTextList__content"> <div class="list__content__description"> <p>Leverage the power of video communications to provide highly customized visual experiences to shoppers. Remotely connect sales specialists with customers using Zoom Contact Center for a virtual shopping experience.</p> </div> </div> </div> </div> </li> </ul> </div> </div> <div class="column column-1"> <div class="fdn-copy-block fdn-copy-block--icon-small fdn-copy-block--dark " data-title="true" id="ef8f0dcd-c1d8-4675-abee-24fd1e54ed89-2"> <ul class=""> <li> <div class="fdn-copy-block__icon-container"> <img alt="" class="fdn-copy-block__small-icon" loading="lazy" fetchpriority="auto" src="https://media.zoom.com/images/assets/zoom-icon-green-check.svg/Zz01MDc1YTNjOGI4NTMxMWVkOGE5M2FhZDY3NTgzNzM2OA==?t=20250214120000" /> </div> <div class="fdn-copy-block__body-container"> <div class="fdn-copy-block__body-title"> Customer Engagement </div> <div style="margin-top: 5px"></div> <div class="fdn-copy-block__body-text"> <p>Highlight and broadcast major announcements, partnerships, advertisements and promotions with customers using Zoom Events, digital signage, virtual kiosks and more.</p> </div> </div> </li> </ul> </div> </div> <div class="column column-1"> <div class="fdn-copy-block fdn-copy-block--icon-small fdn-copy-block--dark " data-title="true" id="d8583b10-8d74-440a-8bdd-1321fe6ca40e-3"> <ul class=""> <li> <div class="fdn-copy-block__icon-container"> <img alt="" class="fdn-copy-block__small-icon" loading="lazy" fetchpriority="auto" src="https://media.zoom.com/images/assets/zoom-icon-green-check.svg/Zz01MDc1YTNjOGI4NTMxMWVkOGE5M2FhZDY3NTgzNzM2OA==?t=20250214120000" /> </div> <div class="fdn-copy-block__body-container"> <div class="fdn-copy-block__body-title"> Store-wide Connectivity </div> <div style="margin-top: 5px"></div> <div class="fdn-copy-block__body-text"> <p>Zoom can be used for store-wide communications to enhance store operations. From general inquiries to inventory assist, product questions to customer service, Zoom increases engagement with employees and customers alike.</p> </div> </div> </li> </ul> </div> </div> <div class="column column-1"> <div class="fdn-copy-block fdn-copy-block--icon-small fdn-copy-block--dark " data-title="true" id="c2fe3657-4946-4cf4-9f37-a13d06865728-4"> <ul class=""> <li> <div class="fdn-copy-block__icon-container"> <img alt="" class="fdn-copy-block__small-icon" loading="lazy" fetchpriority="auto" src="https://media.zoom.com/images/assets/zoom-icon-green-check.svg/Zz01MDc1YTNjOGI4NTMxMWVkOGE5M2FhZDY3NTgzNzM2OA==?t=20250214120000" /> </div> <div class="fdn-copy-block__body-container"> <div class="fdn-copy-block__body-title"> Supplier Management </div> <div style="margin-top: 5px"></div> <div class="fdn-copy-block__body-text"> <p>In addition to maintaining relationships with suppliers, Zoom is used for a number of supply chain-related use cases including remote inventory control, remote inspection and remote assist.</p> </div> </div> </li> </ul> </div> </div> </div> </div> <div class="module-columns layout-2-columns theme-light-gray module-spacing-top-zero module-spacing-zero module-padding-top-medium module-padding-medium module-columns-reverse " id="5050-textimage-dark"> <div class="wrapper"> </headline> <div class="column column-1"> <div class="fdn-copy-block fdn-copy-block--icon-small fdn-copy-block--light fdn-copy-block--vertical-center" id="1235d63e-de04-4494-8432-5177a1c6a42b-1"> <h3 class="fdn-copy-block__title">Seamless, uninterrupted workflows on a single platform</h3> <div class="fdn-copy-block__sub-title"> <p>Whether you&rsquo;re a large department store, a boutique shop, a grocery outlet or a distribution location, now&rsquo;s the time to simplify communication &mdash; not complicate it.</p> <p>Zoom unifies video, phone, chat, and smart workspaces so you can stay connected with one platform. A number of retail-specific integrations put Zoom inside your organization&rsquo;s workflows, making it easily adopted by teams of all sizes.</p> </div> <div class="fdn-copy-block__btn-container"> <span> <a href="https://marketplace.zoom.us/" target="_blank" class="fdn-button fdn-button--button-style-tertiary fdn-button--button-small js-analytics-cta" title="Explore integrations" data-title="" data-link-type="" data-en-text="" >Explore integrations</a> </span> </div> </div> </div> <div class="column column-2"> <div class="fdn-autoImage" id="image"> <div class="fdn-autoImage--container aspect-ratio-4-3"> <img width="640" height="480" title="Team having a meeting" alt="Team having a meeting" class="large-radius" loading="lazy" fetchpriority="auto" srcset="https://media.zoom.com/images/assets/Uninterrupted-workflows.png/Zz04YzkzNmQyMmU0MzYxMWVkYjI4YWNhNTY2M2EwODRjNQ==?t=20250218072047 2x" src="https://media.zoom.com/images/assets/Uninterrupted-workflows.png/Zz04YzkzNmQyMmU0MzYxMWVkYjI4YWNhNTY2M2EwODRjNQ==?t=20250218072047" /> </div> </div> </div> </div> </div> <div class="module-columns layout-4-columns theme-light module-spacing-top-default module-spacing-default module-padding-top-default module-padding-default " id="4-column-resource-cards" data-cardcount="0" data-cmp-is="column"> <div class="wrapper"> <h2 class="module-columns-title">Global connection with clients, partners & experts</h2></headline> <div class="module-columns-description"> <p>Enable global collaboration and learning with our solutions that focus on your employees and customers.</p> </div> <div class="column column-1 "> <a class="fdn-image-card medium-radius js-analytics-cta" id="card-1" href="/en/products/contact-center/?_ga=2.180816239.954694328.1697468410-923945301.1691998946" target="_blank" data-img="true" data-link-type="" data-en-text=""> <img width="300" height="169" title="woman on video chat" alt="woman on video chat" loading="lazy" fetchpriority="auto" srcset="https://media.zoom.com/images/assets/Delight-customers.png/Zz04YmRiNGU3Y2U0MzYxMWVkOTAwM2JlOTgwNDlmZmQ1Nw==?t=20250218072047 2x" src="https://media.zoom.com/images/assets/Delight-customers.png/Zz04YmRiNGU3Y2U0MzYxMWVkOTAwM2JlOTgwNDlmZmQ1Nw==?t=20250218072047" /> <div class="fdn-image-card__main-container"> <h3 class="fdn-image-card__header">Delight customers</h3> <div class="fdn-image-card__body"> <p>Zoom Contact Center provides omni-channel connections between product experts and consumers/buyers.</p> </div> <span class="fdn-button fdn-button--button-small fdn-button--button-style-textLink"> Learn about Contact Center </span> </div> </a> </div> <div class="column column-1 "> <a class="fdn-image-card medium-radius js-analytics-cta" id="card-2" href="/en/products/voip-phone/" target="_blank" data-img="true" data-link-type="" data-en-text=""> <img width="300" height="169" title="Zoom Phone image" alt="Zoom Phone image" loading="lazy" fetchpriority="auto" srcset="https://media.zoom.com/images/assets/Global-coverage.png/Zz04YmZkMGU3Y2U0MzYxMWVkYjJjNzI2OTk4ZTJiOGZiYw==?t=20250218072047 2x" src="https://media.zoom.com/images/assets/Global-coverage.png/Zz04YmZkMGU3Y2U0MzYxMWVkYjJjNzI2OTk4ZTJiOGZiYw==?t=20250218072047" /> <div class="fdn-image-card__main-container"> <h3 class="fdn-image-card__header">Global coverage</h3> <div class="fdn-image-card__body"> <p>Zoom Phone offers global coverage with local dialing codes in 45+ countries and territories, plus flexible options to extend your geographic reach further.</p> </div> <span class="fdn-button fdn-button--button-small fdn-button--button-style-textLink"> Learn about Phone </span> </div> </a> </div> <div class="column column-1 "> <a class="fdn-image-card medium-radius js-analytics-cta" id="card-3" href="/en/products/team-chat/" target="_blank" data-img="true" data-link-type="" data-en-text=""> <img width="300" height="169" title="Man on Zoom video" alt="Man on Zoom video" loading="lazy" fetchpriority="auto" srcset="https://media.zoom.com/images/assets/Video-communications.png/Zz04YzZmZWVjZWU0MzYxMWVkYmJjYmJlOTgwNDlmZmQ1Nw==?t=20250218072047 2x" src="https://media.zoom.com/images/assets/Video-communications.png/Zz04YzZmZWVjZWU0MzYxMWVkYmJjYmJlOTgwNDlmZmQ1Nw==?t=20250218072047" /> <div class="fdn-image-card__main-container"> <h3 class="fdn-image-card__header">Innovative use of Chat for communications</h3> <div class="fdn-image-card__body"> <p>Elevate your communications platform starting with Zoom Team Chat as a base. From Team Chat, elevate to a Zoom phone call or video meeting with the click of one button.</p> </div> <span class="fdn-button fdn-button--button-small fdn-button--button-style-textLink"> Learn about Chat </span> </div> </a> </div> <div class="column column-1 "> <a class="fdn-image-card medium-radius js-analytics-cta" id="card-4" href="/en/products/event-platform/" target="_blank" data-img="true" data-link-type="" data-en-text=""> <img width="300" height="169" title="Zoom events image" alt="Zoom events image" loading="lazy" fetchpriority="auto" srcset="https://media.zoom.com/images/assets/Expand-reach.png/Zz04YmVjZDllZWU0MzYxMWVkOGMzN2NlNjE5MjFhMmQ0YQ==?t=20250218072047 2x" src="https://media.zoom.com/images/assets/Expand-reach.png/Zz04YmVjZDllZWU0MzYxMWVkOGMzN2NlNjE5MjFhMmQ0YQ==?t=20250218072047" /> <div class="fdn-image-card__main-container"> <h3 class="fdn-image-card__header">Expand your reach</h3> <div class="fdn-image-card__body"> <p>Reach your audiences for live training, announcements, promotions and more with video webinars and Zoom Events.</p> </div> <span class="fdn-button fdn-button--button-small fdn-button--button-style-textLink"> Learn about Events </span> </div> </a> </div> </div> </div> <div class="module-columns layout-1-columns theme-light-gray module-spacing-top-zero module-spacing-zero module-padding-top-medium module-padding-medium " id="testimonial"> <div class="wrapper"> <h2 class="module-columns-title">Inspiring customer stories</h2></headline> <div class="column column-1"> <section class="testimonial-carousel " data-cmp-is="testimonial-carousel"> <div class="swiper"> <div class="swiper-button-prev"> <svg viewBox="0 0 19 32" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M14.5 30.9582L0.458333 16.9582C0.291666 16.7915 0.173888 16.611 0.105 16.4165C0.0349995 16.2221 0 16.0138 0 15.7915C0 15.5693 0.0349995 15.361 0.105 15.1665C0.173888 14.9721 0.291666 14.7915 0.458333 14.6249L14.5 0.583211C14.8889 0.194322 15.375 -0.00012207 15.9583 -0.00012207C16.5417 -0.00012207 17.0417 0.208211 17.4583 0.624878C17.875 1.04154 18.0833 1.52766 18.0833 2.08321C18.0833 2.63877 17.875 3.12488 17.4583 3.54154L5.20833 15.7915L17.4583 28.0415C17.8472 28.4304 18.0417 28.9093 18.0417 29.4782C18.0417 30.0482 17.8333 30.5415 17.4167 30.9582C17 31.3749 16.5139 31.5832 15.9583 31.5832C15.4028 31.5832 14.9167 31.3749 14.5 30.9582Z" fill="currentColor"/> </svg> </div> <div class="swiper-button-next"> <svg viewBox="0 0 19 32" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M4.5 1.04179L18.5417 15.0418C18.7083 15.2085 18.8261 15.389 18.895 15.5835C18.965 15.7779 19 15.9862 19 16.2085C19 16.4307 18.965 16.639 18.895 16.8335C18.8261 17.0279 18.7083 17.2085 18.5417 17.3751L4.5 31.4168C4.11111 31.8057 3.625 32.0001 3.04167 32.0001C2.45833 32.0001 1.95833 31.7918 1.54167 31.3751C1.125 30.9585 0.916668 30.4723 0.916668 29.9168C0.916668 29.3612 1.125 28.8751 1.54167 28.4585L13.7917 16.2085L1.54167 3.95846C1.15278 3.56957 0.958331 3.09068 0.958331 2.52179C0.958331 1.95179 1.16667 1.45846 1.58333 1.04179C2 0.625124 2.48611 0.41679 3.04166 0.416789C3.59722 0.416789 4.08333 0.625123 4.5 1.04179Z" fill="currentColor"/> </svg> </div> <div class="swiper-wrapper"> <div class="swiper-slide"> <article class="testimonial-carousel__slide" aria-label="TestimonialCarouselItemBlockProxy-0"> <img src="/dist/assets/icons/testimonial-story-light-grey.svg" alt="Testimonial Icon story" class="testimonial-carousel__icon" height="60" width="60" /> <div class="testimonial-carousel__slide-content"> <img width="186" height="60" title="Brauz logo" alt="Brauz logo" class="testimonial-carousel__slide-icon" loading="lazy" fetchpriority="auto" srcset="https://media.zoom.com/images/assets/Brauz-logo.png/Zz03NDA3ZTUwZWY2NzMxMWVkOWYzN2NhNWJlODdmYTMyYw==?t=20250218072047 2x" src="https://media.zoom.com/images/assets/Brauz-logo.png/Zz03NDA3ZTUwZWY2NzMxMWVkOWYzN2NhNWJlODdmYTMyYw==?t=20250218072047" /> <div class="testimonial-carousel__slide-quote"> <p>See how Brauz and Cue are implementing visual ecommerce solutions to customers in Australia.</p> <p>&nbsp;</p> <p class="text-body-medium">Brauz and Cue&nbsp; | &nbsp; <a class="" target="_blank" href="https://explore.zoom.us/en/customer_stories/brauz/?_ga=2.117573313.954694328.1697468410-923945301.1691998946" rel="noopener">Read the Story</a></p> </div> <a href="/en/customer-stories/all/?filter-products=&amp;filter-industries=Retail&amp;filter-countries=&amp;keywords=&amp;_ga=2.141101050.954694328.1697468410-923945301.1691998946" target="_blank" class="testimonial-carousel__slide-button fdn-button fdn-button--button-style-tertiary fdn-button--button-large js-analytics-cta" title="Discover more stories" data-title="" data-link-type="" data-en-text="" >Discover more stories</a> </div> <div class="fdn-autoImage--container aspect-ratio-1-1"> <img width="540" height="424" title="Woman holding a jacket" alt="Woman holding a jacket" class="testimonial-carousel__slide-image" loading="lazy" fetchpriority="auto" srcset="https://media.zoom.com/images/assets/Brauz.png/Zz04YmJiNjgxZWU0MzYxMWVkODA3YWE2ZDhkNmJkZjlkMQ==?t=20250218072047 2x" src="https://media.zoom.com/images/assets/Brauz.png/Zz04YmJiNjgxZWU0MzYxMWVkODA3YWE2ZDhkNmJkZjlkMQ==?t=20250218072047" /> </div> </article> </div> </div> </div> </section> </div> </div> </div> <div class="module-columns layout-3-columns theme-white module-spacing-top-default module-spacing-default module-padding-top-default module-padding-default " id="3-column-resource-cardlinklink" data-cardcount="0" data-cmp-is="column"> <div class="wrapper"> <h2 class="module-columns-title">Your Zoom for Retail questions, answered</h2></headline> <div class="module-columns-description"> <p>Find resources to help you explore all the benefits of the Zoom platform for connecting the retail industry.</p> </div> <div class="column column-1 "> <a class="fdn-image-card medium-radius js-analytics-cta" id="card" href="/en/products/collaboration-tools/" target="_self" aria-label="" data-img="true" data-link-type="" data-en-text=""> <div class="fdn-image-card__main-container"> <h3 class="fdn-image-card__header">Zoom Workplace</h3> <div class="fdn-image-card__body"> <p>Enable modern collaboration with Team Chat &amp; channels, Phone, Whiteboard, and Meetings in a single offering.</p> </div> <span class="fdn-button fdn-button--button-small fdn-button--button-style-textLink"> Discover Zoom Workplace </span> </div> </a> </div> <div class="column column-1"> <div class="fdn-resource-link" id="3-column-resource-cardlinklink-1-link-list-6x-1"> <div class="fdn-resource-link__group-title">Resource pages</div> <ul> <li id="3-column-resource-cardlinklink-1-link-list-6x-1-link-1"> <a href="/en/customer-stories/all/" target="_blank" > <div class="fdn-resource-link__body-container"> <div class="fdn-resource-link__title"> Customer Stories </div> </div> </a> </li> <li id="3-column-resource-cardlinklink-1-link-list-6x-1-link-2"> <a href="/en/industry/" target="_blank" > <div class="fdn-resource-link__body-container"> <div class="fdn-resource-link__title"> Industry Solutions </div> </div> </a> </li> <li id="3-column-resource-cardlinklink-1-link-list-6x-1-global-services-shared"> <a href="https://explore.zoom.us/en/global-services/" target="_blank" > <div class="fdn-resource-link__body-container"> <div class="fdn-resource-link__title"> Global Services </div> </div> </a> </li> </ul> </div> </div> <div class="column column-1"> <div class="fdn-resource-link" id="3-column-resource-cardlinklink-2-link-list-6x2-2"> <div class="fdn-resource-link__group-title">Partner</div> <ul> <li id="3-column-resource-cardlinklink-2-link-list-6x2-2-link-1"> <a href="https://www.realwear.com/" target="_blank" rel="noopener noreferrer"> <div class="fdn-resource-link__body-container"> <div class="fdn-resource-link__title"> RealWear </div> </div> </a> </li> </ul> </div> </div> </div> </div> <div class="module-columns layout-2-columns theme-dark-blue module-spacing-top-zero module-spacing-zero module-padding-top-medium module-padding-medium " id="5050-pricing-cards-dark"> <div class="wrapper"> <h2 class="module-columns-title">Get started with Zoom Workplace today</h2></headline> <div class="column column-1"> <div class="fdn-pricing-card large-radius fdn-pricing-card--white fdn-pricing-card--blue-bloom-10 " data-cmp-is="pricing-card"> <h3 class="fdn-pricing-card__header"> <span>Small retailers</span> </h3> <div class="fdn-pricing-card__main-container"> <div class="fdn-pricing-card__description"> <div class="tilePlan"> <p>Start using Zoom at</p> </div></div> <div class="fdn-pricing-card__price-container active" data-country="US" data-currency-value="USD"> <span class="fdn-pricing-card__currency">$15.99</span> <span class="fdn-pricing-card__additional-text"> / month</span> </div> <div class="fdn-pricing-card__content-container"> </div> <a href="https://zoom.us/pricing" target="_blank" class="fdn-button fdn-button--button-style-primary fdn-button--button-small js-analytics-cta" title="Buy Now" data-title="" data-link-type="" data-en-text="" >Buy Now</a> </div> </div> </div> <div class="column column-2"> <div class="fdn-pricing-card large-radius fdn-pricing-card--white fdn-pricing-card--blue-bloom-20 " data-cmp-is="pricing-card"> <h3 class="fdn-pricing-card__header"> <span>Large retailers &amp; enterprises</span> </h3> <div class="fdn-pricing-card__main-container"> <div class="fdn-pricing-card__description"> <p>Learn about our prepaid packages for mid-sized, large, and enterprise organi zations</p></div> <div class="fdn-pricing-card__content-container"> </div> <a href="/en/contact/contact-sales/" target="_blank" class="fdn-button fdn-button--button-style-primary fdn-button--button-small js-analytics-cta" title="Contact Sales" data-title="" data-link-type="contact-sales" data-en-text="" >Contact Sales</a> </div> </div> </div> </div> </div> </main> <footer class="module-footer" id="" data-cmp-is="footer"> <div class="module-footer-top"> <div class="container"> <div class="module-footer-top__primary"> <nav class="module-footer-nav js-module-footer-nav"> <section class="module-footer-nav__section"> <a href="/en/about/" class="module-footer-nav__title js-analytics-cta" title="About" data-title="" data-link-type="" data-en-text="" >About</a> <div class="module-footer-nav__panel"> <ul class="module-footer-nav__list"> <li class="module-footer-nav__item"> <a href="/en/blog/" class="module-footer-nav__link js-analytics-cta" title="Zoom Blog" data-title="" data-link-type="" data-en-text="" >Zoom Blog<span class="visually-hidden"> Zoom Blog</span></a> </li> <li class="module-footer-nav__item"> <a href="/en/customer-stories/all/" class="module-footer-nav__link js-analytics-cta" title="Customers" data-title="" data-link-type="" data-en-text="" >Customers</a> </li> <li class="module-footer-nav__item"> <a href="/en/about/team/" class="module-footer-nav__link js-analytics-cta" title="Our Team" data-title="" data-link-type="" data-en-text="" >Our Team</a> </li> <li class="module-footer-nav__item"> <a href="https://careers.zoom.us/home" class="module-footer-nav__link js-analytics-cta" title="Careers" data-title="" data-link-type="" data-en-text="" >Careers</a> </li> <li class="module-footer-nav__item"> <a href="https://marketplace.zoom.us/" target="_blank" class="module-footer-nav__link js-analytics-cta" title="Integrations" data-title="" data-link-type="" data-en-text="" >Integrations</a> </li> <li class="module-footer-nav__item"> <a href="https://partner.zoom.us/" target="_blank" class="module-footer-nav__link js-analytics-cta" title="Partners" data-title="" data-link-type="" data-en-text="" >Partners</a> </li> <li class="module-footer-nav__item"> <a href="https://investors.zoom.us/" target="_blank" class="module-footer-nav__link js-analytics-cta" title="Investors" data-title="" data-link-type="" data-en-text="" >Investors</a> </li> <li class="module-footer-nav__item"> <a href="https://news.zoom.us/" class="module-footer-nav__link js-analytics-cta" title="Press" data-title="" data-link-type="" data-en-text="" >Press</a> </li> <li class="module-footer-nav__item"> <a href="/en/about/esg-fy2024-impact-report/" class="module-footer-nav__link js-analytics-cta" title="Sustainability &amp; ESG" data-title="" data-link-type="" data-en-text="" >Sustainability & ESG</a> </li> <li class="module-footer-nav__item"> <a href="https://zoomcares.zoom.us/" class="module-footer-nav__link js-analytics-cta" data-title="" data-link-type="" data-en-text="Zoom Cares" >Zoom Cares<span class="visually-hidden"> Zoom Cares</span></a> </li> <li class="module-footer-nav__item"> <a href="/en/about/media-kit/" class="module-footer-nav__link js-analytics-cta" title="Media Kit" data-title="" data-link-type="" data-en-text="" >Media Kit</a> </li> <li class="module-footer-nav__item"> <a href="https://learn-zoom.us/show-me" target="_blank" class="module-footer-nav__link js-analytics-cta" title="How To Videos" data-title="" data-link-type="" data-en-text="" >How To Videos</a> </li> <li class="module-footer-nav__item"> <a href="https://developers.zoom.us/" target="_blank" class="module-footer-nav__link js-analytics-cta" title="Developer Platform" data-title="" data-link-type="" data-en-text="" >Developer Platform</a> </li> <li class="module-footer-nav__item"> <a href="/en/zoom-ventures/" class="module-footer-nav__link js-analytics-cta" title="Zoom Ventures" data-title="" data-link-type="" data-en-text="" >Zoom Ventures</a> </li> <li class="module-footer-nav__item"> <a href="https://shophappy.zoom.us/" class="module-footer-nav__link js-analytics-cta" data-title="" data-link-type="" data-en-text="Zoom Merchandise Store" >Zoom Merchandise Store<span class="visually-hidden"> Zoom Merchandise Store</span></a> </li> </ul> </div> </section> <section class="module-footer-nav__section"> <a href="https://zoom.us/download" target="_blank" class="module-footer-nav__title js-analytics-cta" title="Download" data-title="" data-link-type="" data-en-text="" >Download</a> <div class="module-footer-nav__panel"> <ul class="module-footer-nav__list"> <li class="module-footer-nav__item"> <a href="https://zoom.us/download" class="module-footer-nav__link js-analytics-cta" title="Zoom Workplace App" data-title="" data-link-type="" data-en-text="Zoom Workplace App" >Zoom Workplace App<span class="visually-hidden"> Zoom Workplace App</span></a> </li> <li class="module-footer-nav__item"> <a href="https://zoom.us/download#room_client" target="_blank" class="module-footer-nav__link js-analytics-cta" title="Zoom Rooms App" data-title="" data-link-type="" data-en-text="Zoom Rooms App" >Zoom Rooms App<span class="visually-hidden"> Zoom Rooms App</span></a> </li> <li class="module-footer-nav__item"> <a href="https://zoom.us/download#room_controller" target="_blank" class="module-footer-nav__link js-analytics-cta" title="Zoom Rooms Controller" data-title="" data-link-type="" data-en-text="" >Zoom Rooms Controller</a> </li> <li class="module-footer-nav__item"> <a href="https://zoom.us/download#chrome_ext" target="_blank" class="module-footer-nav__link js-analytics-cta" title="Browser Extension" data-title="" data-link-type="" data-en-text="" >Browser Extension</a> </li> <li class="module-footer-nav__item"> <a href="https://zoom.us/download#outlook_plugin" target="_blank" class="module-footer-nav__link js-analytics-cta" title="Outlook Plug-in" data-title="" data-link-type="" data-en-text="" >Outlook Plug-in</a> </li> <li class="module-footer-nav__item"> <a href="https://zoom.us/download#client_iphone" target="_blank" class="module-footer-nav__link js-analytics-cta" title="iPhone/iPad App" data-title="" data-link-type="" data-en-text="iPhone/iPad App" >iPhone/iPad App<span class="visually-hidden"> iPhone/iPad App</span></a> </li> <li class="module-footer-nav__item"> <a href="https://zoom.us/download#mobile_app" target="_blank" class="module-footer-nav__link js-analytics-cta" title="Android App" data-title="" data-link-type="" data-en-text="Android App" >Android App<span class="visually-hidden"> Android App</span></a> </li> <li class="module-footer-nav__item"> <a href="/en/products/virtual-meetings/features/virtual-background-library/" target="_blank" class="module-footer-nav__link js-analytics-cta" title="Zoom Virtual Backgrounds" data-title="" data-link-type="" data-en-text="" >Zoom Virtual Backgrounds</a> </li> </ul> </div> </section> <section class="module-footer-nav__section"> <a href="/en/contact/contact-sales/" class="module-footer-nav__title js-analytics-cta" title="Sales" data-title="" data-link-type="" data-en-text="" >Sales</a> <div class="module-footer-nav__panel"> <ul class="module-footer-nav__list"> <li class="module-footer-nav__item"> <a href="tel:65 8003211528" class="module-footer-nav__link js-analytics-cta" data-title="" rel="noopener noreferrer" data-link-type="" data-en-text="" >65 8003211528</a> </li> <li class="module-footer-nav__item"> <a href="/en/contact/contact-sales/" target="_blank" class="module-footer-nav__link js-analytics-cta" title="Contact Sales" data-title="" data-link-type="" data-en-text="" >Contact Sales</a> </li> <li class="module-footer-nav__item"> <a href="https://zoom.us/pricing" target="_blank" class="module-footer-nav__link js-analytics-cta" title="Plans and Pricing" data-title="" data-link-type="" data-en-text="" >Plans & Pricing</a> </li> <li class="module-footer-nav__item"> <a href="/en/contact/live-demo/" class="module-footer-nav__link js-analytics-cta" title="Request a Demo" data-title="" data-link-type="" data-en-text="" >Request a Demo</a> </li> <li class="module-footer-nav__item"> <a href="https://ev.zoom.us/" class="module-footer-nav__link js-analytics-cta" title="Webinars and Events" data-title="" data-link-type="" data-en-text="" >Webinars and Events</a> </li> <li class="module-footer-nav__item"> <a href="https://ebc.zoom.us/" class="module-footer-nav__link js-analytics-cta" title="Zoom Experience Center" data-title="" data-link-type="" data-en-text=" Zoom Experience Center" >Zoom Experience Center<span class="visually-hidden"> Zoom Experience Center</span></a> </li> </ul> </div> </section> <section class="module-footer-nav__section"> <a href="https://support.zoom.com/hc/en" target="_blank" class="module-footer-nav__title js-analytics-cta" title="Support" data-title="" data-link-type="" data-en-text="" >Support<span class="visually-hidden"> Support</span></a> <div class="module-footer-nav__panel"> <ul class="module-footer-nav__list"> <li class="module-footer-nav__item"> <a href="https://zoom.us/test" target="_blank" class="module-footer-nav__link js-analytics-cta" title="Test Zoom" data-title="" data-link-type="" data-en-text="" >Test Zoom</a> </li> <li class="module-footer-nav__item"> <a href="https://zoom.us/account" target="_blank" class="module-footer-nav__link js-analytics-cta" title="Account" data-title="" data-link-type="" data-en-text="" >Account</a> </li> <li class="module-footer-nav__item"> <a href="https://support.zoom.com/hc/en" target="_blank" class="module-footer-nav__link js-analytics-cta" title="Support Center" data-title="" data-link-type="" data-en-text="" >Support Center<span class="visually-hidden"> Support Center</span></a> </li> <li class="module-footer-nav__item"> <a href="https://learning.zoom.us/learn" target="_blank" class="module-footer-nav__link js-analytics-cta" title="Learning Center" data-title="" data-link-type="" data-en-text="" >Learning Center</a> </li> <li class="module-footer-nav__item"> <a href="/en/products/resources/tech-library/" class="module-footer-nav__link js-analytics-cta" title="Technical Content Library" data-title="" data-link-type="" data-en-text="" >Technical Content Library<span class="visually-hidden"> Technical Content Library</span></a> </li> <li class="module-footer-nav__item"> <a href="https://zoom.us/feed" target="_blank" class="module-footer-nav__link js-analytics-cta" title="Feedback" data-title="" data-link-type="" data-en-text="" >Feedback</a> </li> <li class="module-footer-nav__item"> <a href="/en/contact/" class="module-footer-nav__link js-analytics-cta" title="Contact Us" data-title="" data-link-type="" data-en-text="" >Contact Us</a> </li> <li class="module-footer-nav__item"> <a href="/en/accessibility/" class="module-footer-nav__link js-analytics-cta" title="Accessibility" data-title="" data-link-type="" data-en-text="" >Accessibility</a> </li> <li class="module-footer-nav__item"> <a href="https://developers.zoom.us/support/" target="_blank" class="module-footer-nav__link js-analytics-cta" title="Developer Support" data-title="" data-link-type="" data-en-text="" >Developer Support</a> </li> <li class="module-footer-nav__item"> <a href="/en/trust/legal-compliance/" class="module-footer-nav__link js-analytics-cta" title="Privacy, Security, Legal Policies, and Modern Slavery Act Transparency Statement" data-title="" data-link-type="" data-en-text="" >Privacy, Security, Legal Policies, and Modern Slavery Act Transparency Statement</a> </li> </ul> </div> </section> <section> <div class="module-footer-dropdown__description visually-hidden"> Language </div> <div class="module-footer-dropdown__title">Language</div> <button data-template="js-language-content" class="module-footer-dropdown__btn tooltip"> English <img class="module-footer-dropdown__svg" src="/dist/assets/icons/icon-triangle.svg" alt="Drop down icon" /> </button> <div id="js-language-content"> <ul class="module-footer-dropdown__list"> <li class="module-footer-dropdown__item"> <a href="/de/industry/retail/" target="_self" data-locale="de-DE" class="module-footer-dropdown__link ">Deutsch</a> </li> <li class="module-footer-dropdown__item"> <a href="/en/industry/retail/" target="_self" data-locale="en-US" class="module-footer-dropdown__link ">English</a> </li> <li class="module-footer-dropdown__item"> <a href="/es/industry/retail/" target="_self" data-locale="es-ES" class="module-footer-dropdown__link ">Espa&#xF1;ol</a> </li> <li class="module-footer-dropdown__item"> <a href="/fr/industry/retail/" target="_self" data-locale="fr-FR" class="module-footer-dropdown__link ">Fran&#xE7;ais</a> </li> <li class="module-footer-dropdown__item"> <a href="/id/industry/retail/" target="_self" data-locale="id-ID" class="module-footer-dropdown__link ">Indonesia</a> </li> <li class="module-footer-dropdown__item"> <a href="/it/industry/retail/" target="_self" data-locale="it-IT" class="module-footer-dropdown__link ">Italiano</a> </li> <li class="module-footer-dropdown__item"> <a href="/ja/industry/retail/" target="_self" data-locale="jp-JP" class="module-footer-dropdown__link ">&#x65E5;&#x672C;&#x8A9E;</a> </li> <li class="module-footer-dropdown__item"> <a href="/ko/industry/retail/" target="_self" data-locale="ko-KO" class="module-footer-dropdown__link ">&#xD55C;&#xAD6D;&#xC5B4;</a> </li> <li class="module-footer-dropdown__item"> <a href="/nl/industry/retail/" target="_self" data-locale="nl-NL" class="module-footer-dropdown__link ">Nederlands</a> </li> <li class="module-footer-dropdown__item"> <a href="/pl/industry/retail/" target="_self" data-locale="pl-PL" class="module-footer-dropdown__link ">Polski</a> </li> <li class="module-footer-dropdown__item"> <a href="/pt/industry/retail/" target="_self" data-locale="pt-PT" class="module-footer-dropdown__link ">Portugu&#xEA;s</a> </li> <li class="module-footer-dropdown__item"> <a href="/ru/industry/retail/" target="_self" data-locale="ru-RU" class="module-footer-dropdown__link ">&#x420;&#x443;&#x441;&#x441;&#x43A;&#x438;&#x439;</a> </li> <li class="module-footer-dropdown__item"> <a href="/sv/industry/retail/" target="_self" data-locale="sv-SE" class="module-footer-dropdown__link ">Svenska</a> </li> <li class="module-footer-dropdown__item"> <a href="/tr/industry/retail/" target="_self" data-locale="tr-TR" class="module-footer-dropdown__link ">T&#xFC;rk&#xE7;e</a> </li> <li class="module-footer-dropdown__item"> <a href="/vi/industry/retail/" target="_self" data-locale="vi-VN" class="module-footer-dropdown__link ">Ti&#x1EBF;ng Vi&#x1EC7;t</a> </li> <li class="module-footer-dropdown__item"> <a href="/zh-cn/industry/retail/" target="_self" data-locale="zh-CN" class="module-footer-dropdown__link ">&#x4E2D;&#x6587;&#xFF08;&#x7B80;&#x4F53;&#xFF0C;&#x4E2D;&#x56FD;&#xFF09;</a> </li> <li class="module-footer-dropdown__item"> <a href="/zh-tw/industry/retail/" target="_self" data-locale="zh-TW" class="module-footer-dropdown__link ">&#x4E2D;&#x6587;&#xFF08;&#x7E41;&#x9AD4;&#xFF0C;&#x53F0;&#x7063;&#xFF09;</a> </li> </ul> </div> <div class="module-footer-dropdown__description visually-hidden"> Currency </div> <div class="module-footer-dropdown__title">Currency</div> <button data-template="js-currency-content" class="module-footer-dropdown__btn tooltip"> Singapore Dollars $ <img class="module-footer-dropdown__svg" src="/dist/assets/icons/icon-triangle.svg" alt="Drop down icon" /> </button> <div id="js-currency-content"> <ul class="module-footer-dropdown__list"> <li class="module-footer-dropdown__item" id="USD" data-currency-value="USD" data-country-value="US"> <button class="module-footer-dropdown__link ">US Dollar $</button> </li> <li class="module-footer-dropdown__item" id="SGD" data-currency-value="SGD" data-country-value="SG"> <button class="module-footer-dropdown__link active">Singapore Dollars $</button> </li> </ul> </div> <input id="GeoLocation" name="GeoLocation" type="hidden" value="SG" /> <script type="text/javascript" nonce="7becM8TIoTks8TmpJQ5EDTXLQ+Rohvgs+dmwKxYsq9c="> const allCurrencyList = [{"currencyAbbreviation":"AUD","displayName":"Australian Dollar","currencySymbol":"AU$","isSelected":false},{"currencyAbbreviation":"BRL","displayName":"Brazillian Real","currencySymbol":"R$","isSelected":false},{"currencyAbbreviation":"CAD","displayName":"Canadian Dollar","currencySymbol":"CA$","isSelected":false},{"currencyAbbreviation":"DKK","displayName":"Danish Krone","currencySymbol":"kr","isSelected":false},{"currencyAbbreviation":"AED","displayName":"Emirati Dirham","currencySymbol":"د.إ","isSelected":false},{"currencyAbbreviation":"EUR","displayName":"Euro","currencySymbol":"€","isSelected":false},{"currencyAbbreviation":"HKD","displayName":"Hong Kong Dollars","currencySymbol":"$","isSelected":false},{"currencyAbbreviation":"INR","displayName":"Indian Rupee","currencySymbol":"₹","isSelected":false},{"currencyAbbreviation":"IDR","displayName":"Indonesian Rupiah","currencySymbol":"Rp","isSelected":false},{"currencyAbbreviation":"JPY","displayName":"Japanese Yen","currencySymbol":"¥","isSelected":false},{"currencyAbbreviation":"MYR","displayName":"Malaysian Ringgit","currencySymbol":"RM","isSelected":false},{"currencyAbbreviation":"MXN","displayName":"Mexican Peso","currencySymbol":"$","isSelected":false},{"currencyAbbreviation":"NZD","displayName":"New Zealand Dollar","currencySymbol":"NZ$","isSelected":false},{"currencyAbbreviation":"NOK","displayName":"Norwegian Krone","currencySymbol":"kr","isSelected":false},{"currencyAbbreviation":"PHP","displayName":"Philippine Peso","currencySymbol":"₱","isSelected":false},{"currencyAbbreviation":"PLN","displayName":"Polish Zloty","currencySymbol":"zł","isSelected":false},{"currencyAbbreviation":"GBP","displayName":"Pound Sterling","currencySymbol":"£","isSelected":false},{"currencyAbbreviation":"SAR","displayName":"Saudi Riyal","currencySymbol":"﷼","isSelected":false},{"currencyAbbreviation":"SGD","displayName":"Singapore Dollars","currencySymbol":"$","isSelected":true},{"currencyAbbreviation":"R","displayName":"South African Rand","currencySymbol":"R","isSelected":false},{"currencyAbbreviation":"KRW","displayName":"South Korean Won","currencySymbol":"₩","isSelected":false},{"currencyAbbreviation":"SEK","displayName":"Swedish Krona","currencySymbol":"kr","isSelected":false},{"currencyAbbreviation":"CHF","displayName":"Swiss Fran","currencySymbol":"CHF","isSelected":false},{"currencyAbbreviation":"USD","displayName":"US Dollar","currencySymbol":"$","isSelected":false},{"currencyAbbreviation":"VND","displayName":"Vietnamese Dong","currencySymbol":"₫","isSelected":false}] </script> <ul class="social__list"> <li class="social__item"> <a href="https://blog.zoom.us/" target="" class="social__link" title="Blog"> <img alt="" loading="lazy" fetchpriority="auto" src="https://media.zoom.com/images/assets/social-wordpress.svg/Zz1kMWRlNjQ5YWEzY2MxMWVkYmRiOGU2ZWE4YmQ4Y2E3MQ==?t=20250214120000" /> </a> </li> <li class="social__item"> <a href="https://www.linkedin.com/company/zoom/" rel="noopener noreferrer" target="_blank" class="social__link" title="Linked In"> <img alt="" loading="lazy" fetchpriority="auto" src="https://media.zoom.com/images/assets/social-linkedin.svg/Zz1kMWM5ZTI4NmEzY2MxMWVkOWJmZTU2NjcwZmJiNzBlNQ==?t=20250214120000" /> </a> </li> <li class="social__item"> <a href="https://twitter.com/zoom" rel="noopener noreferrer" target="_blank" class="social__link" title="Twitter"> <img alt="" loading="lazy" fetchpriority="auto" src="https://media.zoom.com/images/assets/twitter-x.svg/Zz0yMTQxYzM5NDVkMzQxMWVlYmZjMGQ2ZWM3ZWM3MGU2OQ==?t=20250214120000" /> </a> </li> <li class="social__item"> <a href="https://www.youtube.com/zoommeetings" rel="noopener noreferrer" target="_blank" class="social__link" title="YouTube"> <img alt="" loading="lazy" fetchpriority="auto" src="https://media.zoom.com/images/assets/social-youtube.svg/Zz1kMWViYTM5NGEzY2MxMWVkYmExMGJhNjNmYjRkMmQyYQ==?t=20250214120000" /> </a> </li> <li class="social__item"> <a href="https://www.facebook.com/zoom" rel="noopener noreferrer" target="_blank" class="social__link" title="Facebook"> <img alt="" loading="lazy" fetchpriority="auto" src="https://media.zoom.com/images/assets/social-facebook.svg/Zz1kMWMzYzNlMmEzY2MxMWVkYjhkYzU2NjcwZmJiNzBlNQ==?t=20250214120000" /> </a> </li> <li class="social__item"> <a href="https://www.instagram.com/zoom/" rel="noopener noreferrer" target="_blank" class="social__link" title="Instagram"> <img alt="" loading="lazy" fetchpriority="auto" src="https://media.zoom.com/images/assets/social-instagram.svg/Zz1kMWNiMGZmOGEzY2MxMWVkODkwM2U2ZWE4YmQ4Y2E3MQ==?t=20250214120000" /> </a> </li> </ul> </section> </nav> </div> </div> </div> <div class="module-footer-bottom"> <div class="container"> <div class="module-footer-bottom__primary"> <div class="module-footer__logo-dropdown"> <div class="logo-copyright"> <div class="copyright"> Copyright &#xA9;2025 Zoom Communications, Inc. All rights reserved. </div> </div> </div> <div class="utility-nav"> <ul class="utility-nav__list"> <li class="utility-nav__item"> <a href="/en/trust/terms/" class="utility-nav__link js-analytics-cta" title="Terms" data-title="" data-link-type="" data-en-text="" >Terms</a> </li> <li class="utility-nav__item"> <a href="/en/trust/privacy/privacy-statement/" class="utility-nav__link js-analytics-cta" title="Privacy" data-title="" data-link-type="" data-en-text="" >Privacy</a> </li> <li class="utility-nav__item"> <a href="/en/trust/" class="utility-nav__link js-analytics-cta" title="Trust Center" data-title="" data-link-type="" data-en-text="" >Trust Center</a> </li> <li class="utility-nav__item"> <a href="https://explore.zoom.us/en/acceptable-use-guidelines/" target="_top" class="utility-nav__link js-analytics-cta" title="Acceptable Use Guidelines" data-title="" data-link-type="" data-en-text="" >Acceptable Use Guidelines</a> </li> <li class="utility-nav__item"> <a href="/en/trust/legal-compliance/" class="utility-nav__link js-analytics-cta" title="Legal and Compliance" data-title="" data-link-type="" data-en-text="" >Legal & Compliance</a> </li> <li class="utility-nav__item"> <a id="ot-do-not-sell" class="ot-sdk-show-settings" style="cursor: pointer"> <img src="https://media.zoom.com/images/assets/privacyoptions.png/Zz0xMzFhOTdlYTM1MzUxMWVlOTBjN2UyZTQ3MjNmN2MyMg==" alt="" /> Your Privacy Choices </a> </li> <li class="utility-nav__item"> <a class="ot-sdk-show-settings" style="cursor: pointer"> Cookie Preferences </a> </li> </ul> </div> </div> </div> </div> </footer> <script src="/dist/zoomv.main.min.js?t=638750480520000000" nonce="7becM8TIoTks8TmpJQ5EDTXLQ+Rohvgs+dmwKxYsq9c="></script> <script defer="defer" nonce="7becM8TIoTks8TmpJQ5EDTXLQ&#x2B;Rohvgs&#x2B;dmwKxYsq9c=" src="/Util/Find/epi-util/find.js"></script> <script nonce="7becM8TIoTks8TmpJQ5EDTXLQ&#x2B;Rohvgs&#x2B;dmwKxYsq9c="> document.addEventListener('DOMContentLoaded',function(){if(typeof FindApi === 'function'){var api = new FindApi();api.setApplicationUrl('/');api.setServiceApiBaseUrl('/find_v2/');api.processEventFromCurrentUri();api.bindWindowEvents();api.bindAClickEvent();api.sendBufferedEvents();}}) </script> <script crossorigin="anonymous" nonce="7becM8TIoTks8TmpJQ5EDTXLQ+Rohvgs+dmwKxYsq9c=" src="https://cdn.jsdelivr.net/npm/swiper@9/swiper-bundle.min.js" type="text/javascript"></script> <script nonce="7becM8TIoTks8TmpJQ5EDTXLQ+Rohvgs+dmwKxYsq9c=" src="/ClientResources/Scripts/CoveoJsSearch.js?t=638750480020000000" type="text/javascript"></script> <script nonce="7becM8TIoTks8TmpJQ5EDTXLQ+Rohvgs+dmwKxYsq9c=" src="/ClientResources/Scripts/coveo-en.js?t=638750480020000000" type="text/javascript"></script> <script nonce="7becM8TIoTks8TmpJQ5EDTXLQ+Rohvgs+dmwKxYsq9c=" type="text/javascript"> var user_locale = 'en-us'; var user_language = 'English'; String.toLocaleString({ 'en-us': { "ZoomPlaceholder": "Enter search here...", "ZoomHeader": "What are you looking for?", "All": "All", "Support": "Support", "Videos": "Videos", "Source": "Source", "Explore Zoom": "Explore Zoom", "Solutions": "Solutions", "Support Articles": "Support Articles", "Community": "Community" } }); String["locale"] = user_locale; var APIKey_Search = 'xxf1623479-48a6-4dce-8475-28e0b0720fbc'; Coveo.SearchEndpoint.configureCloudV2Endpoint('', APIKey_Search, 'https://platform.cloud.coveo.com/rest/search'); document.addEventListener('DOMContentLoaded', function () { const standaloneSearchBoxRoot = document.querySelector('#standaloneSearchbox'); Coveo.initSearchbox(standaloneSearchBoxRoot, "/en/search/", { Analytics: { searchHub: 'Marketing', }, Searchbox: { placeholder: "ZoomPlaceholder" } }); document.querySelector('.FlyoutButton').addEventListener('click', function () { document.querySelector(".CoveoSearchbox").classList.toggle('transition-hidden'); document.querySelector(".FlyoutButton").classList.toggle('transition-hidden'); }); Coveo.$$(document.getElementById('standaloneSearchbox')).on(Coveo.InitializationEvents.afterComponentsInitialization, function (e, args) { document.querySelector(".magic-box-clear").addEventListener('click', function (e) { document.querySelector(".CoveoSearchbox").classList.toggle('transition-hidden'); document.querySelector(".FlyoutButton").classList.toggle('transition-hidden'); }); }); }) </script> <script crossorigin="anonymous" nonce="7becM8TIoTks8TmpJQ5EDTXLQ+Rohvgs+dmwKxYsq9c=" src="https://cdn.jsdelivr.net/npm/swiper@9/swiper-bundle.min.js" type="text/javascript"></script> <script opt-use-csp-nonce="true" type="text/javascript" nonce="7becM8TIoTks8TmpJQ5EDTXLQ+Rohvgs+dmwKxYsq9c="> function OptanonWrapper() { let trustDom = document.getElementById('ot-do-not-sell'); if (trustDom) { trustDom.innerHTML = '<img alt=\"\" src=\"https://media.zoom.com/images/assets/privacyoptions.png/Zz0xMzFhOTdlYTM1MzUxMWVlOTBjN2UyZTQ3MjNmN2MyMg==" />Your Privacy Choices'; } var oneTrustConsentId = OneTrust.getDataSubjectId(); var activeGroups = (OnetrustActiveGroups || '').split(','); activeGroups = activeGroups.filter(function (v) { return v !== ''; }); // send Optimizely events when Performance consent is given if (activeGroups.indexOf('C0002') > -1 && typeof sendOptimizelyEvents === 'function') { sendOptimizelyEvents(oneTrustConsentId); } // send Optimizely events when Targeting consent is given// create `OnetrustActiveGroups` cookie var oneTrustActiveCookie = activeGroups.length ? activeGroups.join('') : ''; var date = new Date(); date.setTime(date.getTime() + (365 * 24 * 60 * 60 * 1000)); var expires = "; expires=" + date.toUTCString(); document.cookie = "OnetrustActiveGroups=" + oneTrustActiveCookie + expires + "; path=/; secure=true; domain=" + ".zoom.com"; }</script> <script type="text/javascript" nonce="7becM8TIoTks8TmpJQ5EDTXLQ+Rohvgs+dmwKxYsq9c="> function getFromParam(name) { var reg = new RegExp('(^|&)' + name + '=([^&]*)(&|$)'); var r = window.location.search.substr(1).match(reg); if (r != null) return decodeURIComponent(r[2]); return ''; } if ('1' == getFromParam('onlycontent')) { var mainLinks = document.querySelectorAll('main a'); mainLinks.forEach(function(link) { var href = link.getAttribute('href'); if (href.indexOf('mailto:') > -1) { var textInsideAnchor = link.textContent || link.innerText; link.outerHTML = textInsideAnchor; } if (href !== undefined && href.indexOf('mailto:') === -1) { var params = window.location.href.slice(window.location.href.indexOf('?') + 0); var baseUrl = href.split('?')[0]; link.setAttribute('href', baseUrl + params); } }); var sheet = document.createElement('style') sheet.innerHTML = 'header,footer,.livesdk__invitation,#onetrust-consent-sdk{ display:none !important; }'; document.body.appendChild(sheet); } if ('1' == getFromParam('nohyperlink')) { var links = document.querySelectorAll('a'); for(var i = 0; i < links.length; i++) { var anchorElement = links[i]; var spanElement = document.createElement('span'); spanElement.innerHTML = anchorElement.innerHTML; anchorElement.parentNode.replaceChild(spanElement, anchorElement); } }</script> <style> header.header-v3>.main-nav ul li>div[class^="resources-nav__dropdown-"], header.header-v3>.resources-nav ul li>div[class^="resources-nav__dropdown-"] { min-width: max-content; } .height-holder:has(.blog-detail-speaker) { height: 100%!important; } .hardware-detailed .hardware-fdn-autoImage img { max-height: 400px; } @media(min-width: 1025px) and (max-width: 1200px) { .header-v3.header:has(.main-nav__logo--blog) .main-nav__left .main-nav__list li:not(:last-child) { display: none; } .header-v3.header:has(.main-nav__logo--blog) .main-nav__right .main-nav__list-item a.fdn-button { font-size: 12px; } } @media(min-width: 1025px) and (max-width: 1200px) { .main-nav__container:has(.main-nav__logo--blog) .main-nav__hamburger-trigger { display: flex !important; } .header-v3.header:has(.main-nav__logo--blog) nav.mobile-menu { display: block; } } .fdn-image-card .fdn-hero-banner-card__tag-list li:hover { border: 1px solid #e0e0e6; color: #666487; } .grid-landing-page__mobile-filters span { padding-right: 0; } .grid-landing-page__mobile-filters span .grid-landing-page__mobile-filters-sort { padding-right: 0.625rem; } @media (min-width: 1025px) { .fdn-icon-block li { align-items: center; } .testimonial-carousel .swiper-slide { padding-top: 3.125rem; } .testimonial-carousel .swiper-slide:only-child{ padding-top: 1.25rem; } } .customer-stories-hero__video-wrapper .blog-video-player .jwplayer{ max-width: 100%; max-height: 54vw; } .cmp-card-customer-story .customer-story-card__arrow-wrap { width: 100%; } .cmp-card-customer-story:hover .customer-story-card__story-link { white-space: normal; } .customer-story-card .customer-story-card__content { margin-bottom: 20px; } body:has(.fdn-copy-block) .fdn-stories-wrapper .fdn-copy-block__sub-title h2 { font-size: 1.25rem; margin-top: 20px; margin-bottom: 10px; } @media (min-width: 1025px) { body:has(.fdn-copy-block) .fdn-stories-wrapper .fdn-copy-block__sub-title h2 { font-size: 1.5rem; margin-top: 40px; margin-bottom: 10px; } } </style> <script type="text/javascript" data-lazy-load-campaign-url="_blank" data-apikey="AM_FKF55QOG_vdWum455Vg" src="https://us01ccistatic.zoom.us/us01cci/web-sdk/chat-client.js" defer nonce="7becM8TIoTks8TmpJQ5EDTXLQ+Rohvgs+dmwKxYsq9c="></script> <script type="text/javascript" nonce="7becM8TIoTks8TmpJQ5EDTXLQ+Rohvgs+dmwKxYsq9c=">var skip_to_chat = document.querySelector('.skip_to_chat'); if(skip_to_chat){ skip_to_chat.addEventListener('click', function(event) { event.preventDefault(); var elementToFocus = document.querySelector('.livesdk__invitation'); if (elementToFocus) { elementToFocus.focus(); elementToFocus.addEventListener('keydown', function(event) { if (event.key === 'Enter') { elementToFocus.click(); } }); } }); }</script> </body> </html>

Pages: 1 2 3 4 5 6 7 8 9 10