CINXE.COM
Mintlify - Enterprise
<!DOCTYPE html><!-- Last Published: Tue Nov 26 2024 20:09:59 GMT+0000 (Coordinated Universal Time) --><html data-wf-domain="landing.mintlify.com" data-wf-page="66f7e2b123083d9667fc7d59" data-wf-site="66cc2bd703ccf308a49a6188" lang="en"><head><meta charset="utf-8"/><title>Mintlify - Enterprise</title><meta content="Meet the modern standard for public facing documentation. Beautiful out of the box, easy to maintain, and optimized for user engagement." name="description"/><meta content="Mintlify - Enterprise" property="og:title"/><meta content="Meet the modern standard for public facing documentation. Beautiful out of the box, easy to maintain, and optimized for user engagement." property="og:description"/><meta content="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/6731aa4104da280d698c4084_Landing%20page%20OG%20Image.png" property="og:image"/><meta content="Mintlify - Enterprise" property="twitter:title"/><meta content="Meet the modern standard for public facing documentation. Beautiful out of the box, easy to maintain, and optimized for user engagement." property="twitter:description"/><meta content="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/6731aa4104da280d698c4084_Landing%20page%20OG%20Image.png" property="twitter:image"/><meta property="og:type" content="website"/><meta content="summary_large_image" name="twitter:card"/><meta content="width=device-width, initial-scale=1" name="viewport"/><link href="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/css/mintlify-lander.e68ba1a34.css" rel="stylesheet" type="text/css"/><script type="text/javascript">!function(o,c){var n=c.documentElement,t=" w-mod-";n.className+=t+"js",("ontouchstart"in o||o.DocumentTouch&&c instanceof DocumentTouch)&&(n.className+=t+"touch")}(window,document);</script><link href="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc3e0d67f2324645580a18_favicon.png" rel="shortcut icon" type="image/x-icon"/><link href="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc3e124fa129b7d5fd6c4a_webclip.png" rel="apple-touch-icon"/><script> (function() { var savedTheme = localStorage.getItem('isDarkMode'); var systemDark = window.matchMedia('(prefers-color-scheme: dark)').matches; var isDark = savedTheme === 'true' || (savedTheme === null && systemDark); if (isDark) { document.documentElement.classList.add('dark-mode'); } document.documentElement.classList.add('theme-loaded'); })(); </script> <script tr-color-vars="background-main,background-invert,text-main,text-invert,text-soft,text-sub,muted,muted-invert,muted-invert-90,border-solid,border-soft,border-sub,background-soft,transparent,transparent-invert,brand,brand-8"></script> <script> (function() { const htmlElement = document.documentElement; const scriptTag = document.querySelector("[tr-color-vars]"); const cssVariables = scriptTag ? scriptTag.getAttribute("tr-color-vars").split(",") : []; let lightColors = {}; let darkColors = {}; // Capture initial color values cssVariables.forEach(item => { const lightValue = getComputedStyle(htmlElement).getPropertyValue(`--color--${item}`); const darkValue = getComputedStyle(htmlElement).getPropertyValue(`--dark--${item}`) || lightValue; lightColors[`--color--${item}`] = lightValue; darkColors[`--color--${item}`] = darkValue; }); function setColors(colorObject) { Object.keys(colorObject).forEach(key => { htmlElement.style.setProperty(key, colorObject[key]); }); } function switchImageSource(element, isDarkMode) { const lightSrc = element.getAttribute('data-light-src'); const darkSrc = element.getAttribute('data-dark-src'); const lightSrcset = element.getAttribute('data-light-srcset'); const darkSrcset = element.getAttribute('data-dark-srcset'); if (isDarkMode) { if (darkSrc) element.src = darkSrc; if (darkSrcset) element.srcset = darkSrcset; } else { if (lightSrc) element.src = lightSrc; if (lightSrcset) element.srcset = lightSrcset; } } function switchAssets(isDarkMode) { document.querySelectorAll('.theme-asset').forEach(asset => { if (asset.tagName.toLowerCase() === 'picture') { asset.querySelectorAll('source, img').forEach(element => { switchImageSource(element, isDarkMode); }); } else if (asset.tagName.toLowerCase() === 'img') { switchImageSource(asset, isDarkMode); } }); document.querySelectorAll('.dark-asset, .light-asset').forEach(asset => { asset.classList.toggle('hidden', isDarkMode ? asset.classList.contains('light-asset') : asset.classList.contains('dark-asset')); }); } function setTheme(isDarkMode) { localStorage.setItem("isDarkMode", isDarkMode); htmlElement.classList.toggle("dark-mode", isDarkMode); document.body.classList.add('theme-loaded'); setColors(isDarkMode ? darkColors : lightColors); switchAssets(isDarkMode); updateToggleStates(isDarkMode); } function updateToggleStates(isDarkMode) { const systemDark = window.matchMedia("(prefers-color-scheme: dark)").matches; document.querySelector('[tr-color-system]')?.classList.toggle('active', isDarkMode === systemDark); document.querySelector('[tr-color-light]')?.classList.toggle('active', !isDarkMode); document.querySelector('[tr-color-dark]')?.classList.toggle('active', isDarkMode); } function initializeTheme() { const storedMode = localStorage.getItem("isDarkMode"); const systemDark = window.matchMedia("(prefers-color-scheme: dark)").matches; const isDarkMode = storedMode === null ? systemDark : storedMode === 'true'; setTheme(isDarkMode); window.matchMedia("(prefers-color-scheme: dark)").addListener(() => { if (localStorage.getItem("isDarkMode") === null) { setTheme(window.matchMedia("(prefers-color-scheme: dark)").matches); } }); } function setupToggles() { document.querySelector('[tr-color-system]')?.addEventListener("click", () => { localStorage.removeItem("isDarkMode"); setTheme(window.matchMedia("(prefers-color-scheme: dark)").matches); }); document.querySelector('[tr-color-light]')?.addEventListener("click", () => setTheme(false)); document.querySelector('[tr-color-dark]')?.addEventListener("click", () => setTheme(true)); } function preloadCorrectAssets() { const storedMode = localStorage.getItem("isDarkMode"); const systemDark = window.matchMedia("(prefers-color-scheme: dark)").matches; const isDarkMode = storedMode === null ? systemDark : storedMode === 'true'; switchAssets(isDarkMode); } // Preload correct assets immediately preloadCorrectAssets(); // Initialize theme and setup toggles when DOM is ready if (document.readyState === 'loading') { document.addEventListener('DOMContentLoaded', () => { initializeTheme(); setupToggles(); }); } else { initializeTheme(); setupToggles(); } })(); </script> <style> :root { --color--background-main: #ffffff; } .dark-mode { --color--background-main: #08090A; } body { background-color: var(--color--background-main); } /* Hide the body until the theme is loaded */ body:not(.theme-loaded) { visibility: hidden; } </style> <link rel="stylesheet" href="https://unpkg.com/swiper@8/swiper-bundle.min.css"/> <!-- Cal element-click embed code begins --> <script type="text/javascript"> (function (C, A, L) { let p = function (a, ar) { a.q.push(ar); }; let d = C.document; C.Cal = C.Cal || function () { let cal = C.Cal; let ar = arguments; if (!cal.loaded) { cal.ns = {}; cal.q = cal.q || []; d.head.appendChild(d.createElement("script")).src = A; cal.loaded = true; } if (ar[0] === L) { const api = function () { p(api, arguments); }; const namespace = ar[1]; api.q = api.q || []; if(typeof namespace === "string"){cal.ns[namespace] = cal.ns[namespace] || api;p(cal.ns[namespace], ar);p(cal, ["initNamespace", namespace]);} else p(cal, ar); return;} p(cal, ar); }; })(window, "https://app.cal.com/embed/embed.js", "init"); Cal("init", "demo-with-mintlify", {origin:"https://cal.com"}); Cal("init", "mintlify-enterprise", {origin:"https://cal.com"}); Cal.ns["demo-with-mintlify", "mintlify-enterprise"]("ui", {"styles":{"branding":{"brandColor":"#000000"}},"hideEventTypeDetails":false,"layout":"month_view"}); </script> <!-- Cal element-click embed code ends --> <!-- Posthog --> <script> !function(t,e){var o,n,p,r;e.__SV||(window.posthog=e,e._i=[],e.init=function(i,s,a){function g(t,e){var o=e.split(".");2==o.length&&(t=t[o[0]],e=o[1]),t[e]=function(){t.push([e].concat(Array.prototype.slice.call(arguments,0)))}}(p=t.createElement("script")).type="text/javascript",p.async=!0,p.src=s.api_host.replace(".i.posthog.com","-assets.i.posthog.com")+"/static/array.js",(r=t.getElementsByTagName("script")[0]).parentNode.insertBefore(p,r);var u=e;for(void 0!==a?u=e[a]=[]:a="posthog",u.people=u.people||[],u.toString=function(t){var e="posthog";return"posthog"!==a&&(e+="."+a),t||(e+=" (stub)"),e},u.people.toString=function(){return u.toString(1)+".people (stub)"},o="init capture register register_once register_for_session unregister unregister_for_session getFeatureFlag getFeatureFlagPayload isFeatureEnabled reloadFeatureFlags updateEarlyAccessFeatureEnrollment getEarlyAccessFeatures on onFeatureFlags onSessionId getSurveys getActiveMatchingSurveys renderSurvey canRenderSurvey getNextSurveyStep identify setPersonProperties group resetGroups setPersonPropertiesForFlags resetPersonPropertiesForFlags setGroupPropertiesForFlags resetGroupPropertiesForFlags reset get_distinct_id getGroups get_session_id get_session_replay_url alias set_config startSessionRecording stopSessionRecording sessionRecordingStarted captureException loadToolbar get_property getSessionProperty createPersonProfile opt_in_capturing opt_out_capturing has_opted_in_capturing has_opted_out_capturing clear_opt_in_out_capturing debug".split(" "),n=0;n<o.length;n++)g(u,o[n]);e._i.push([i,s,a])},e.__SV=1)}(document,window.posthog||[]); posthog.init('phc_eNuN6Ojnk9O7uWfC17z12AK85fNR0BY6IiGVy0Gfwzw',{api_host:'https://us.i.posthog.com', person_profiles: 'identified_only' // or 'always' to create profiles for anonymous users as well }) </script> <!-- Google Tag Manager --> <script>(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-MJWB25XN');</script> <!-- End Google Tag Manager --> <!-- Quora Pixel Code (JS Helper) --> <script> !function(q,e,v,n,t,s){if(q.qp) return; n=q.qp=function(){n.qp?n.qp.apply(n,arguments):n.queue.push(arguments);}; n.queue=[];t=document.createElement(e);t.async=!0;t.src=v; s=document.getElementsByTagName(e)[0]; s.parentNode.insertBefore(t,s);}(window, 'script', 'https://a.quora.com/qevents.js'); qp('init', 'c6c2eacaf9ae4ef89e5e5312c5333c7e'); qp('track', 'ViewContent'); </script> <noscript><img height="1" width="1" style="display:none" src="https://q.quora.com/_/ad/c6c2eacaf9ae4ef89e5e5312c5333c7e/pixel?tag=ViewContent&noscript=1"/></noscript> <!-- End of Quora Pixel Code --> <!-- Unify GTM Code (JS Helper) --> <script> !function(){window.unify||(window.unify=Object.assign([],["identify","page","startAutoPage","stopAutoPage","startAutoIdentify","stopAutoIdentify"].reduce((function(t,e){return t[e]=function(){return unify.push([e,[].slice.call(arguments)]),unify},t}),{})));var t=document.createElement("script");t.async=!0,t.setAttribute("src","https://tag.unifyintent.com/v1/ShALG1c5rTJzkBaNJWFZWP/script.js"),t.setAttribute("data-api-key","wk_98uM5hH8_CooeLr8Z3fRL39Q1rxtqo5fejQKhn3qL"),t.setAttribute("id","unifytag"),(document.body||document.head).appendChild(t)}(); </script> <!-- End of Quora Pixel Code --></head><body><div class="page-wrapper"><div class="bufo"><div id="bufo-cursor" class="bufo-cursor"></div><div class="code-embed w-embed w-script"><script> document.addEventListener('DOMContentLoaded', function() { let mintieCount = 0; let timeoutId = null; const mintieChars = ['m', 'i', 'n', 't', 'i', 'e']; function handleKeyDown(event) { if (document.activeElement instanceof HTMLInputElement || document.activeElement instanceof HTMLTextAreaElement) { return; } if (event.key.toLowerCase() === mintieChars[mintieCount]) { mintieCount++; if (mintieCount === mintieChars.length) { // URL to your mode-independent GIF const gifUrl = 'https://mintlify-assets.b-cdn.net/website/home/minties.gif'; const cursorImage = document.createElement('img'); cursorImage.src = gifUrl; cursorImage.style.position = 'fixed'; cursorImage.style.zIndex = 9999; cursorImage.style.pointerEvents = 'none'; cursorImage.style.width = '32px'; cursorImage.style.height = 'auto'; cursorImage.style.transform = 'translate(-50%, -50%)'; document.body.appendChild(cursorImage); function updateCursorPosition(e) { cursorImage.style.left = e.clientX + 'px'; cursorImage.style.top = e.clientY + 'px'; } updateCursorPosition(event); document.addEventListener('mousemove', updateCursorPosition); timeoutId = setTimeout(() => { cursorImage.remove(); document.removeEventListener('mousemove', updateCursorPosition); mintieCount = 0; }, 3000); } else { clearTimeout(timeoutId); timeoutId = setTimeout(() => { mintieCount = 0; }, 1000); } } else { mintieCount = 0; clearTimeout(timeoutId); } } document.addEventListener('keydown', handleKeyDown); }); </script>'</div></div><div class="global-styles w-embed"><style> /* Make text look crisper and more legible in all browsers */ body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; font-smoothing: antialiased; text-rendering: optimizeLegibility; } /* Focus state style for keyboard navigation for the focusable elements */ *[tabindex]:focus-visible, input[type="file"]:focus-visible { outline: 0.125rem solid #4d65ff; outline-offset: 0.125rem; } /* Set color style to inherit */ .inherit-color * { color: inherit; } /* Get rid of top margin on first element in any rich text element */ .w-richtext > :not(div):first-child, .w-richtext > div:first-child > :first-child { margin-top: 0 !important; } /* Get rid of bottom margin on last element in any rich text element */ .w-richtext>:last-child, .w-richtext ol li:last-child, .w-richtext ul li:last-child { margin-bottom: 0 !important; } /* Make sure containers never lose their center alignment */ .container-medium,.container-small, .container-large { margin-right: auto !important; margin-left: auto !important; } /* Make the following elements inherit typography styles from the parent and not have hardcoded values. Important: You will not be able to style for example "All Links" in Designer with this CSS applied. Uncomment this CSS to use it in the project. Leave this message for future hand-off. */ /* a, .w-input, .w-select, .w-tab-link, .w-nav-link, .w-dropdown-btn, .w-dropdown-toggle, .w-dropdown-link { color: inherit; text-decoration: inherit; font-size: inherit; } */ /* Apply "..." after 3 lines of text */ .text-style-3lines { display: -webkit-box; overflow: hidden; -webkit-line-clamp: 3; -webkit-box-orient: vertical; } /* Apply "..." after 2 lines of text */ .text-style-2lines { display: -webkit-box; overflow: hidden; -webkit-line-clamp: 2; -webkit-box-orient: vertical; } /* These classes are never overwritten */ .hide { display: none !important; } @media screen and (max-width: 991px) { .hide, .hide-tablet { display: none !important; } } @media screen and (max-width: 767px) { .hide-mobile-landscape{ display: none !important; } } @media screen and (max-width: 479px) { .hide-mobile{ display: none !important; } } .margin-0 { margin: 0rem !important; } .padding-0 { padding: 0rem !important; } .spacing-clean { padding: 0rem !important; margin: 0rem !important; } .margin-top { margin-right: 0rem !important; margin-bottom: 0rem !important; margin-left: 0rem !important; } .padding-top { padding-right: 0rem !important; padding-bottom: 0rem !important; padding-left: 0rem !important; } .margin-right { margin-top: 0rem !important; margin-bottom: 0rem !important; margin-left: 0rem !important; } .padding-right { padding-top: 0rem !important; padding-bottom: 0rem !important; padding-left: 0rem !important; } .margin-bottom { margin-top: 0rem !important; margin-right: 0rem !important; margin-left: 0rem !important; } .padding-bottom { padding-top: 0rem !important; padding-right: 0rem !important; padding-left: 0rem !important; } .margin-left { margin-top: 0rem !important; margin-right: 0rem !important; margin-bottom: 0rem !important; } .padding-left { padding-top: 0rem !important; padding-right: 0rem !important; padding-bottom: 0rem !important; } .margin-horizontal { margin-top: 0rem !important; margin-bottom: 0rem !important; } .padding-horizontal { padding-top: 0rem !important; padding-bottom: 0rem !important; } .margin-vertical { margin-right: 0rem !important; margin-left: 0rem !important; } .padding-vertical { padding-right: 0rem !important; padding-left: 0rem !important; } </style></div><nav class="navigation"><div data-animation="default" class="navbar w-nav" data-easing2="ease" fs-scrolldisable-element="smart-nav" data-easing="ease" data-collapse="medium" data-w-id="58a4fd58-9c06-75df-d600-2ded1c96e932" role="banner" data-duration="400"><div class="navbar_container"><a href="/" class="navbar_logo-link w-nav-brand"><div class="brand-logo w-embed"><svg width="100%" height="auto" viewBox="0 0 110 24" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M31.3809 3.06182H36.2383L40.3588 13.1095H40.549L44.6695 3.06182H49.5269V19.2902H45.7075V9.32179H45.5728L41.6742 19.1872H39.2336L35.335 9.26635H35.2003V19.2902H31.3809V3.06182ZM51.0807 19.2902V7.1189H54.9559V19.2902H51.0807ZM53.0221 5.70052C52.4781 5.70052 52.0105 5.52091 51.6198 5.16171C51.229 4.79718 51.0331 4.35872 51.0331 3.8463C51.0331 3.33916 51.229 2.90598 51.6198 2.54676C52.0105 2.18225 52.4781 2 53.0221 2C53.5715 2 54.0391 2.18225 54.4249 2.54676C54.8156 2.90598 55.011 3.33916 55.011 3.8463C55.011 4.35872 54.8156 4.79718 54.4249 5.16171C54.0391 5.52091 53.5715 5.70052 53.0221 5.70052ZM60.4045 12.3488V19.2902H56.5293V7.1189H60.2141V9.35348H60.349C60.6183 8.60863 61.0779 8.0249 61.7275 7.60227C62.3776 7.17438 63.1512 6.96042 64.0492 6.96042C64.905 6.96042 65.6474 7.15326 66.2761 7.5389C66.9098 7.91923 67.4012 8.45278 67.7498 9.13956C68.1039 9.82103 68.2784 10.6187 68.273 11.5326V19.2902H64.3983V12.2933C64.4032 11.6171 64.2317 11.0889 63.8831 10.7085C63.5394 10.3282 63.0614 10.138 62.4485 10.138C62.0419 10.138 61.6829 10.2278 61.371 10.4074C61.0645 10.5817 60.827 10.8326 60.6579 11.1602C60.4943 11.4877 60.4095 11.8839 60.4045 12.3488ZM76.6497 7.1189V9.97158H68.9712V7.1189H76.6497ZM70.5798 4.20288H74.4545V15.4629C74.4545 15.7006 74.4917 15.8935 74.5655 16.0414C74.6449 16.184 74.7584 16.287 74.9062 16.3504C75.054 16.4085 75.231 16.4376 75.4373 16.4376C75.585 16.4376 75.7407 16.4244 75.9044 16.398C76.0735 16.3662 76.2004 16.3399 76.2852 16.3187L76.8713 19.1159C76.6864 19.1687 76.425 19.2347 76.0869 19.314C75.7541 19.3932 75.3554 19.4434 74.8903 19.4646C73.9819 19.5068 73.2024 19.4011 72.5528 19.1476C71.9082 18.8887 71.4143 18.4873 71.0712 17.9431C70.733 17.399 70.5693 16.7149 70.5798 15.8908V4.20288ZM81.8702 3.06182V19.2902H77.9954V3.06182H81.8702ZM83.444 19.2902V7.1189H87.3188V19.2902H83.444ZM85.3854 5.70052C84.8414 5.70052 84.3738 5.52091 83.9831 5.16171C83.5918 4.79718 83.3964 4.35872 83.3964 3.8463C83.3964 3.33916 83.5918 2.90598 83.9831 2.54676C84.3738 2.18225 84.8414 2 85.3854 2C85.9348 2 86.4024 2.18225 86.7882 2.54676C87.1789 2.90598 87.3743 3.33916 87.3743 3.8463C87.3743 4.35872 87.1789 4.79718 86.7882 5.16171C86.4024 5.52091 85.9348 5.70052 85.3854 5.70052ZM95.8105 7.1189V9.97158H87.9812V7.1189H95.8105ZM89.6136 19.2902V6.50085C89.6136 5.56053 89.7907 4.78133 90.1447 4.16326C90.4988 3.5399 90.9902 3.07503 91.6184 2.76863C92.2472 2.45695 92.9736 2.30111 93.7978 2.30111C94.3368 2.30111 94.8436 2.34337 95.3191 2.4279C95.8001 2.50714 96.1566 2.57845 96.3887 2.64185L95.7708 5.47867C95.628 5.43111 95.454 5.39149 95.2477 5.35981C95.0469 5.32807 94.8569 5.31225 94.6774 5.31225C94.2227 5.31225 93.9113 5.41262 93.7422 5.61334C93.5731 5.81412 93.4888 6.08878 93.4888 6.43748V19.2902H89.6136ZM99.1511 23.8544C98.6865 23.8544 98.2477 23.8175 97.8356 23.7435C97.4241 23.6748 97.07 23.5824 96.774 23.4662L97.6298 20.6532C98.0102 20.78 98.3538 20.8539 98.6597 20.875C98.9716 20.8961 99.2384 20.846 99.4601 20.7245C99.6877 20.6082 99.8617 20.3996 99.9832 20.0985L100.134 19.734L95.8075 7.1189H99.8642L102.107 15.8037H102.233L104.508 7.1189H108.589L104.001 20.4551C103.779 21.1207 103.465 21.707 103.058 22.2142C102.656 22.7266 102.136 23.1281 101.497 23.4186C100.863 23.7092 100.081 23.8544 99.1511 23.8544Z" fill="currentcolor"/> <mask id="mask0_4238_40" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="1" y="0" width="24" height="24"> <path d="M24.6348 0H1V23.6348H24.6348V0Z" fill="white"/> </mask> <g mask="url(#mask0_4238_40)"> <path d="M7.22763 8.62342C7.24415 6.37269 8.13673 4.21692 9.71609 2.61328H9.71318L3.61572 8.71074H3.61863C3.59593 8.7286 3.57453 8.74804 3.55459 8.76894C2.0717 10.2499 1.17264 12.216 1.02241 14.3063C0.872184 16.3967 1.48087 18.4711 2.73675 20.149L8.89533 13.9903L8.95936 13.9292C7.81152 12.4007 7.20254 10.5348 7.22763 8.62342Z" fill="#0C8C5E"/> <path d="M22.0327 14.9336C20.8657 16.0773 19.4008 16.8701 17.805 17.2216C16.2093 17.573 14.5469 17.469 13.0074 16.9215C12.1865 16.63 11.415 16.2149 10.7197 15.6904L10.6556 15.7544L4.49707 21.91C6.17554 23.1628 8.24884 23.7695 10.3379 23.6194C12.427 23.4692 14.3921 22.5721 15.8741 21.0921L15.9353 21.031L22.0327 14.9336Z" fill="#0C8C5E"/> <path d="M24.6467 8.71108V4.35893e-06H15.9356C14.7916 -0.00114182 13.6586 0.223763 12.6016 0.661799C11.5448 1.09984 10.5848 1.74238 9.77701 2.5525L9.71589 2.61362C8.6511 3.6946 7.88927 5.03658 7.50684 6.50493C8.19913 6.32565 8.91058 6.23087 9.62567 6.22262C11.5371 6.20012 13.4024 6.80995 14.9315 7.95726C16.3057 8.98207 17.3457 10.3908 17.9206 12.0058C18.5064 13.6564 18.5834 15.4449 18.1417 17.1398C19.6104 16.7581 20.9525 15.9961 22.033 14.9308L22.0942 14.8726C22.9046 14.0644 23.5474 13.104 23.9854 12.0466C24.4234 10.9892 24.6482 9.85563 24.6467 8.71108Z" fill="#18E299"/> </g> </svg></div></a><nav role="navigation" id="w-node-_58a4fd58-9c06-75df-d600-2ded1c96e936-1c96e931" class="navbar_menu is-page-height-tablet w-nav-menu"><div data-hover="true" data-delay="0" data-w-id="58a4fd58-9c06-75df-d600-2ded1c96e965" class="dd-menu-wrap hide-tablet w-dropdown"><div class="dropdown-toggle w-dropdown-toggle"><a href="https://mintlify.com/docs" class="navbar_link w-inline-block"><div>Documentation</div></a></div><nav class="dd-menu-content w-dropdown-list"><div class="dd-content"><a id="w-node-_58a4fd58-9c06-75df-d600-2ded1c96e96b-1c96e931" data-w-id="58a4fd58-9c06-75df-d600-2ded1c96e96b" href="https://mintlify.com/docs" class="nav-link-card with-image guides w-inline-block"><img class="nav-card-image theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66eaabfa0d26093561a2128e_Getting%20started.svg" alt="Feature set UI" data-light-src="https://mintlify-assets.b-cdn.net/website/home/nav-assets/Getting%20started.png" data-dark-src="https://mintlify-assets.b-cdn.net/website/home/nav-assets/Getting%20started-dark.png" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/home/nav-assets/Getting%20started-dark.png" data-light-srcset="https://mintlify-assets.b-cdn.net/website/home/nav-assets/Getting%20started.png" loading="lazy"/><div class="text-content"><div class="margin-bottom margin-tiny"><div class="text-weight-medium">Guides</div></div><div class="text-style-muted">Start building modern documentation in under five minutes<br/></div></div></a><a id="w-node-_58a4fd58-9c06-75df-d600-2ded1c96e973-1c96e931" href="https://mintlify.com/docs/content/components/" class="nav-link-card w-inline-block"><div class="icon-flex w-embed"><svg width="18" height="19" viewBox="0 0 18 19" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5469_21884)"> <path d="M6.25 2.50195H3.75C2.7835 2.50195 2 3.28545 2 4.25195V6.75195C2 7.71845 2.7835 8.50195 3.75 8.50195H6.25C7.2165 8.50195 8 7.71845 8 6.75195V4.25195C8 3.28545 7.2165 2.50195 6.25 2.50195Z" fill="currentColor"/> <path d="M5 16.752C6.79493 16.752 8.25 15.2969 8.25 13.502C8.25 11.707 6.79493 10.252 5 10.252C3.20507 10.252 1.75 11.707 1.75 13.502C1.75 15.2969 3.20507 16.752 5 16.752Z" fill="currentColor"/> <path d="M15.5 12.752H13.75V11.002C13.75 10.588 13.414 10.252 13 10.252C12.586 10.252 12.25 10.588 12.25 11.002V12.752H10.5C10.086 12.752 9.75 13.088 9.75 13.502C9.75 13.916 10.086 14.252 10.5 14.252H12.25V16.002C12.25 16.416 12.586 16.752 13 16.752C13.414 16.752 13.75 16.416 13.75 16.002V14.252H15.5C15.914 14.252 16.25 13.916 16.25 13.502C16.25 13.088 15.914 12.752 15.5 12.752Z" fill="currentColor"/> <path d="M14.0829 2.70211C13.6319 1.92011 12.3689 1.91911 11.9179 2.70211L9.65192 6.62611C9.42592 7.01811 9.42592 7.48511 9.65192 7.87611C9.87792 8.26811 10.2829 8.50111 10.7349 8.50111H15.2659C15.7179 8.50111 16.1219 8.26811 16.3489 7.87611C16.5749 7.48511 16.5749 7.01811 16.3489 6.62611L14.0829 2.70211Z" fill="currentColor"/> </g> <defs> <clipPath id="clip0_5469_21884"> <rect width="18" height="18" fill="white" transform="translate(0 0.5)"/> </clipPath> </defs> </svg></div><div class="text-content"><div class="margin-bottom margin-tiny"><div class="text-weight-medium">Components</div></div><div class="text-style-muted">Explore the variety of components available</div></div></a><a id="w-node-_58a4fd58-9c06-75df-d600-2ded1c96e97b-1c96e931" href="https://mintlify.com/docs/api-playground" class="nav-link-card w-inline-block"><div class="icon-flex w-embed"><svg width="19" height="19" viewBox="0 0 19 19" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5469_21895)"> <path d="M15.0459 2.5H4.5459C3.0289 2.5 1.7959 3.733 1.7959 5.25V13.75C1.7959 15.267 3.0289 16.5 4.5459 16.5H15.0459C16.5629 16.5 17.7959 15.267 17.7959 13.75V5.25C17.7959 3.733 16.5629 2.5 15.0459 2.5ZM7.7959 4.5C8.3479 4.5 8.7959 4.948 8.7959 5.5C8.7959 6.052 8.3479 6.5 7.7959 6.5C7.2439 6.5 6.7959 6.052 6.7959 5.5C6.7959 4.948 7.2439 4.5 7.7959 4.5ZM3.7959 5.5C3.7959 4.948 4.2439 4.5 4.7959 4.5C5.3479 4.5 5.7959 4.948 5.7959 5.5C5.7959 6.052 5.3479 6.5 4.7959 6.5C4.2439 6.5 3.7959 6.052 3.7959 5.5ZM8.5759 12.22C8.8689 12.513 8.8689 12.988 8.5759 13.281C8.4299 13.427 8.2379 13.501 8.0459 13.501C7.8539 13.501 7.6619 13.428 7.5159 13.281L5.2659 11.031C4.9729 10.738 4.9729 10.263 5.2659 9.97L7.5159 7.72C7.8089 7.427 8.2839 7.427 8.5769 7.72C8.8699 8.013 8.8699 8.488 8.5769 8.781L6.8569 10.501L8.5769 12.221L8.5759 12.22ZM14.3259 11.03L12.0759 13.28C11.9299 13.426 11.7379 13.5 11.5459 13.5C11.3539 13.5 11.1619 13.427 11.0159 13.28C10.7229 12.987 10.7229 12.512 11.0159 12.219L12.7359 10.499L11.0159 8.779C10.7229 8.486 10.7229 8.011 11.0159 7.718C11.3089 7.425 11.7839 7.425 12.0769 7.718L14.3269 9.968C14.6199 10.261 14.6199 10.736 14.3269 11.029L14.3259 11.03Z" fill="currentColor"/> </g> <defs> <clipPath id="clip0_5469_21895"> <rect width="18" height="18" fill="white" transform="translate(0.795898 0.5)"/> </clipPath> </defs> </svg></div><div class="text-content"><div class="margin-bottom margin-tiny"><div class="text-weight-medium">API playground</div></div><div class="text-style-muted">Enable users to interact with your API<br/></div></div></a></div></nav></div><div data-hover="true" data-delay="0" data-w-id="58a4fd58-9c06-75df-d600-2ded1c96e983" class="dd-menu-wrap hide-tablet w-dropdown"><div class="dropdown-toggle w-dropdown-toggle"><a href="/customers" class="navbar_link w-inline-block"><div>Resources</div></a></div><nav class="dd-menu-content w-dropdown-list"><div class="dd-content resources"><a id="w-node-_58a4fd58-9c06-75df-d600-2ded1c96e989-1c96e931" data-w-id="58a4fd58-9c06-75df-d600-2ded1c96e989" href="/customers" class="nav-link-card with-image w-inline-block"><img class="nav-card-image theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66fb266513745ada050da046_CX3-Light.png" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/home/nav-assets/CX3-Light.png" data-dark-src="https://mintlify-assets.b-cdn.net/website/home/nav-assets/CX3-Dark.png" sizes="100vw" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/home/nav-assets/CX3-Dark.png" data-light-srcset="https://mintlify-assets.b-cdn.net/website/home/nav-assets/CX3-Light.png" loading="lazy" srcset="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66fb266513745ada050da046_CX3-Light-p-500.png 500w, https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66fb266513745ada050da046_CX3-Light-p-800.png 800w, https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66fb266513745ada050da046_CX3-Light.png 972w"/><div class="text-content"><div class="margin-bottom margin-tiny"><div class="text-weight-medium">Customers</div></div><div class="text-style-muted">Discover how we help our customers win</div></div></a><link rel="prefetch" href="/customers"/><a id="w-node-_58a4fd58-9c06-75df-d600-2ded1c96e991-1c96e931" data-w-id="58a4fd58-9c06-75df-d600-2ded1c96e991" href="/enterprise" aria-current="page" class="nav-link-card with-image w-inline-block w--current"><img class="nav-card-image theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66fb1f61e959ed44eea75a0f_ENT-New-Light.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/enterprise/Ent-Nav-Light.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/enterprise/Ent-Nav-Dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/enterprise/Ent-Nav-Dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/enterprise/Ent-Nav-Light.svg" loading="lazy"/><div class="text-content"><div class="margin-bottom margin-tiny"><div class="text-weight-medium">Enterprise</div></div><div class="text-style-muted">For organizations with custom needs<br/></div></div></a><link rel="prefetch" href="/enterprise"/><a id="w-node-_8c387d58-9737-ace0-1ec1-d0cf06bbf9e7-1c96e931" data-w-id="8c387d58-9737-ace0-1ec1-d0cf06bbf9e7" href="/blog" class="nav-link-card with-image w-inline-block"><img class="nav-card-image theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66eaabf98655455a7fb6b139_Blog.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/home/nav-assets/Blog.png" data-dark-src="https://mintlify-assets.b-cdn.net/website/home/nav-assets/Blog-dark.png" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/home/nav-assets/Blog-dark.png" data-light-srcset="https://mintlify-assets.b-cdn.net/website/home/nav-assets/Blog.png" loading="lazy"/><div class="text-content"><div class="margin-bottom margin-tiny"><div class="text-weight-medium">Blog</div></div><div class="text-style-muted">Discover and stay updated on what鈥檚 happening</div></div></a><link rel="prefetch" href="/blog"/><div id="w-node-_58a4fd58-9c06-75df-d600-2ded1c96e999-1c96e931" class="_2x2-grid"><a id="w-node-_58a4fd58-9c06-75df-d600-2ded1c96e99a-1c96e931" href="https://mintlify.com/security/responsible-disclosure" class="nav-link-card w-inline-block"><div class="icon-flex w-embed"><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 18 18"> <title>shield-check</title> <g fill="currentColor"> <path d="M14.783,2.813l-5.25-1.68c-.349-.112-.718-.111-1.066,0L3.216,2.813c-.728,.233-1.216,.903-1.216,1.667v6.52c0,3.508,4.946,5.379,6.46,5.869,.177,.057,.358,.086,.54,.086s.362-.028,.538-.085c1.516-.49,6.462-2.361,6.462-5.869V4.48c0-.764-.489-1.434-1.217-1.667Zm-2.681,4.389l-3.397,4.5c-.128,.169-.322,.276-.534,.295-.021,.002-.043,.003-.065,.003-.189,0-.372-.071-.511-.201l-1.609-1.5c-.303-.283-.32-.757-.038-1.06,.284-.303,.758-.319,1.06-.038l1.001,.933,2.896-3.836c.25-.33,.72-.396,1.051-.146,.331,.25,.396,.72,.146,1.051Z"></path> </g> </svg></div><div class="text-content"><div class="margin-bottom margin-tiny"><div class="text-weight-medium">Security</div></div></div></a><a href="https://github.com/mintlify/themes" target="_blank" class="nav-link-card w-inline-block"><div class="icon-flex w-embed"><svg width="19" height="18" viewBox="0 0 19 18" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_4055_135)"> <path d="M7.04401 2H4.54401C3.57901 2 2.79401 2.785 2.79401 3.75V13C2.79401 14.654 4.14001 16 5.79401 16C7.44801 16 8.79401 14.654 8.79401 13V3.75C8.79401 2.785 8.00901 2 7.04401 2ZM5.79401 13.75C5.38001 13.75 5.04401 13.414 5.04401 13C5.04401 12.586 5.38001 12.25 5.79401 12.25C6.20801 12.25 6.54401 12.586 6.54401 13C6.54401 13.414 6.20801 13.75 5.79401 13.75Z" fill="currentColor"/> <path d="M14.456 6.10415L12.688 4.33615C12.053 3.70015 10.965 3.68215 10.293 4.27115V12.7402L14.455 8.57815C14.786 8.24715 14.968 7.80815 14.968 7.34115C14.968 6.87415 14.787 6.43415 14.456 6.10415Z" fill="currentColor"/> <path d="M15.1467 10.0078L9.15674 15.9978H15.0437C16.0087 15.9978 16.7937 15.2128 16.7937 14.2478V11.7478C16.7937 10.8188 16.0627 10.0628 15.1467 10.0078Z" fill="currentColor"/> </g> <defs> <clipPath id="clip0_4055_135"> <rect width="18" height="18" fill="white" transform="translate(0.793945)"/> </clipPath> </defs> </svg></div><div class="text-content"><div class="margin-bottom margin-tiny"><div class="text-weight-medium">Templates</div></div></div></a><a id="w-node-_58a4fd58-9c06-75df-d600-2ded1c96e9a6-1c96e931" href="https://mintlify.com/docs/integrations/analytics/overview" class="nav-link-card w-inline-block"><div class="icon-flex w-embed"><svg width="19" height="19" viewBox="0 0 19 19" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5469_22859)"> <path d="M9.58987 7C10.7099 7 11.6719 6.325 12.1009 5.362C13.5389 6.104 14.6079 7.458 14.9599 9.058C15.0369 9.408 15.3479 9.646 15.6909 9.646C15.7449 9.646 15.7989 9.641 15.8539 9.628C16.2579 9.539 16.5129 9.138 16.4239 8.734C15.9349 6.522 14.3699 4.683 12.2939 3.809C12.0809 2.503 10.9539 1.5 9.58887 1.5C8.07187 1.5 6.83887 2.733 6.83887 4.25C6.83887 5.767 8.07187 7 9.58887 7H9.58987Z" fill="currentColor"/> <path d="M6.77681 11.8733C6.21681 10.9043 5.15081 10.4073 4.10281 10.5183C4.02581 8.90126 4.66381 7.29926 5.87181 6.19426C6.17781 5.91526 6.19881 5.44026 5.91981 5.13426C5.63981 4.82926 5.16581 4.80726 4.85981 5.08726C3.18781 6.61626 2.37781 8.89126 2.65881 11.1253C2.21381 11.4873 1.88981 11.9723 1.73781 12.5373C1.54881 13.2463 1.64581 13.9883 2.01281 14.6233C2.37981 15.2593 2.97281 15.7153 3.68281 15.9053C3.91881 15.9683 4.15981 16.0003 4.39881 16.0003C4.87581 16.0003 5.34481 15.8753 5.76881 15.6303C7.08081 14.8733 7.53381 13.1883 6.77581 11.8743L6.77681 11.8733Z" fill="currentColor"/> <path d="M17.443 12.5381C17.253 11.8291 16.797 11.2351 16.162 10.8681C14.85 10.1091 13.163 10.5621 12.405 11.8751C11.845 12.8451 11.949 14.0151 12.569 14.8671C11.209 15.7421 9.50404 15.9901 7.93804 15.4961C7.54104 15.3721 7.12204 15.5911 6.99804 15.9851C6.87304 16.3801 7.09204 16.8011 7.48704 16.9261C8.17004 17.1421 8.87504 17.2471 9.57704 17.2471C11.102 17.2471 12.609 16.7461 13.84 15.8071C14.145 15.9211 14.46 15.9991 14.783 15.9991C15.022 15.9991 15.262 15.9681 15.499 15.9041C16.209 15.7141 16.802 15.2581 17.169 14.6231C17.536 13.9881 17.634 13.2461 17.444 12.5371L17.443 12.5381Z" fill="currentColor"/> </g> <defs> <clipPath id="clip0_5469_22859"> <rect width="18" height="18" fill="white" transform="translate(0.59082 0.5)"/> </clipPath> </defs> </svg></div><div class="text-content"><div class="margin-bottom margin-tiny"><div class="text-weight-medium">Integrations</div></div></div></a><a id="w-node-_58a4fd58-9c06-75df-d600-2ded1c96e9ac-1c96e931" href="/love" class="nav-link-card w-inline-block"><div class="icon-flex w-embed"><svg width="19" height="19" viewBox="0 0 19 19" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5469_22851)"> <path d="M15.9988 13.49L14.7358 13.069L14.3148 11.806C14.1778 11.398 13.5028 11.398 13.3658 11.806L12.9448 13.069L11.6818 13.49C11.4778 13.558 11.3398 13.749 11.3398 13.964C11.3398 14.179 11.4778 14.37 11.6818 14.438L12.9448 14.859L13.3658 16.122C13.4338 16.326 13.6258 16.464 13.8408 16.464C14.0558 16.464 14.2468 16.326 14.3158 16.122L14.7368 14.859L15.9998 14.438C16.2038 14.37 16.3418 14.179 16.3418 13.964C16.3418 13.749 16.2038 13.558 15.9998 13.49H15.9988Z" fill="currentColor"/> <path d="M12.5049 2.5C11.3099 2.515 10.1809 2.99 9.34086 3.806C8.50086 2.991 7.36886 2.515 6.16286 2.5C3.63286 2.515 1.58086 4.584 1.59086 7.109C1.59086 12.362 6.89686 15.538 8.52286 16.387C8.77886 16.52 9.05986 16.587 9.34086 16.587C9.62186 16.587 9.90286 16.52 10.1579 16.387C10.4079 16.257 10.7499 16.065 11.1399 15.827C10.3629 15.535 9.83986 14.802 9.83986 13.965C9.83986 13.102 10.3899 12.34 11.2089 12.068L11.7589 11.884L11.9429 11.333C12.2099 10.535 12.9719 10.001 13.8399 10.001C14.7079 10.001 15.4699 10.535 15.7369 11.331L15.7809 11.463C16.5579 10.225 17.0899 8.774 17.0899 7.114C17.0989 4.586 15.0479 2.517 12.5039 2.502L12.5049 2.5ZM9.08386 8.981L8.13786 9.296L7.82186 10.243C7.77086 10.396 7.62786 10.499 7.46686 10.499C7.30586 10.499 7.16186 10.395 7.11186 10.243L6.79586 9.296L5.84986 8.981C5.69686 8.93 5.59286 8.787 5.59286 8.625C5.59286 8.463 5.69686 8.32 5.84986 8.269L6.79586 7.954L7.11186 7.007C7.21386 6.701 7.72086 6.701 7.82286 7.007L8.13886 7.954L9.08486 8.269C9.23786 8.32 9.34186 8.463 9.34186 8.625C9.34186 8.787 9.23786 8.93 9.08486 8.981H9.08386ZM12.5909 7.5C12.1769 7.5 11.8409 7.164 11.8409 6.75C11.8409 6.336 12.1769 6 12.5909 6C13.0049 6 13.3409 6.336 13.3409 6.75C13.3409 7.164 13.0049 7.5 12.5909 7.5Z" fill="currentColor"/> </g> <defs> <clipPath id="clip0_5469_22851"> <rect width="18" height="18" fill="white" transform="translate(0.34082 0.5)"/> </clipPath> </defs> </svg></div><div class="text-content"><div class="margin-bottom margin-tiny"><div class="text-weight-medium">Wall of Love</div></div></div></a><link rel="prefetch" href="/love"/></div></div></nav></div><a href="/preview" class="navbar_link hide-tablet sing-p w-nav-link">Request Preview</a><a href="/careers" class="navbar_link hide-tablet sing-p w-nav-link">Careers</a><a href="/pricing" class="navbar_link hide-tablet sing-p w-nav-link">Pricing</a><div class="responsive-nav"><div id="w-node-_58a4fd58-9c06-75df-d600-2ded1c96e9f0-1c96e931" class="link-group"><div class="text-style-muted text-size-small">Documentation</div><a href="https://mintlify.com/docs" class="nav-link-block w-inline-block"><div>Getting Started</div></a><a href="https://mintlify.com/docs/content/components" class="nav-link-block w-inline-block"><div>Components</div></a><a href="https://mintlify.com/docs/api-playground/" class="nav-link-block w-inline-block"><div>API Playground</div></a><a href="/pricing" class="nav-link-block w-inline-block"><div>Pricing</div></a></div><div id="w-node-_58a4fd58-9c06-75df-d600-2ded1c96e9fc-1c96e931" class="link-group"><div class="text-style-muted text-size-small">Resources</div><a href="/customers" class="nav-link-block w-inline-block"><div>Customers</div></a><a href="/enterprise" aria-current="page" class="nav-link-block w-inline-block w--current"><div>Enterprise</div></a><a href="/preview" class="nav-link-block w-inline-block"><div>Request Preview</div></a><a href="https://mintlify.com/docs/integrations/analytics/overview" class="nav-link-block w-inline-block"><div>Integrations</div></a><a href="https://github.com/mintlify/themes" target="_blank" class="nav-link-block w-inline-block"><div>Templates</div></a><a href="/love" class="nav-link-block w-inline-block"><div>Wall of Love</div></a></div><div id="w-node-_58a4fd58-9c06-75df-d600-2ded1c96ea11-1c96e931" class="link-group"><div class="text-style-muted text-size-small">Company</div><a href="/blog" class="nav-link-block w-inline-block"><div>Blog</div></a><a href="/careers" class="nav-link-block w-inline-block"><div>Careers</div></a><a href="https://feedback.mintlify.com/roadmap" class="nav-link-block w-inline-block"><div>Public Roadmap</div></a><a href="https://mintlify.com/security/responsible-disclosure" class="nav-link-block w-inline-block"><div>Security</div></a></div></div><div class="hide-desktop flex"><a href="https://dashboard.mintlify.com/login" class="button is-secondary is-small mobile-only w-button">Login</a><a data-cal-namespace="demo-with-mintlify" data-cal-link="team/mintlify/demo-with-mintlify" href="#" class="button is-small mobile-only w-button">Book a demo</a></div></nav><div id="w-node-_58a4fd58-9c06-75df-d600-2ded1c96ea25-1c96e931" class="navbar_button-wrapper"><a href="https://dashboard.mintlify.com/login" class="button is-secondary is-small ghost hide-mobile-landscape w-button">Login</a><a data-cal-namespace="demo-with-mintlify" data-cal-link="team/mintlify/demo-with-mintlify" href="#" class="button is-secondary is-small hide-mobile-portrait w-button">Get a demo</a><a href="https://dashboard.mintlify.com/signup" class="button is-small w-button">Sign up</a><div class="navbar_menu-button w-nav-button"><div class="menu-icon"><div class="menu-icon_line-top"></div><div class="menu-icon_line-middle"><div class="menu-icon_line-middle-inner"></div></div><div class="menu-icon_line-bottom"></div></div></div></div></div></div><div class="glass-bg"></div></nav><main class="main-wrapper"><section class="page-title page-hero"><div class="background-image"><img class="background-image-asset theme-asset hero-image" src="https://cdn.prod.website-files.com/plugins/Basic/assets/placeholder.60f9b1840c.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/enterprise/Ent%20Hero%20Light2.png" data-dark-src="https://mintlify-assets.b-cdn.net/website/enterprise/Ent%20Hero%20Dark.png" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/enterprise/Ent%20Hero%20Dark.png" data-light-srcset="https://mintlify-assets.b-cdn.net/website/enterprise/Ent%20Hero%20Light2.png" loading="lazy"/></div><div class="padding-global"><div class="container-large"><div class="padding-section-large"><div class="text-align-center"><div class="max-width-medium align-center"><div class="margin-bottom margin-xsmall"><p class="description align-center text-weight-medium">Enterprise</p></div><div class="margin-bottom margin-small"><h1 blocks-non-deletable="true" class="heading-style-h2 text-weight-semibold">The complete platform for developer content</h1></div><p>Your team鈥檚 toolkit to stop worrying about overhead and start satisfying users. Securely build and scale a world class developer experience with Mintlify.</p></div></div><div class="margin-top margin-medium"><div data-w-id="cbba9469-2c5e-4ecd-5cb6-e5ce005515ab" style="opacity:0" class="button-group is-center"><a data-cal-namespace="demo-with-mintlify" data-cal-link="team/mintlify/demo-with-mintlify" href="#" class="button w-button">Get a demo</a></div></div></div></div></div></section><section class="customers"><div class="padding-global"><div class="container-large"><div class="padding-section-medium"><div class="text-align-center"><div class="margin-bottom margin-medium"><h1 blocks-non-deletable="true" class="heading-style-h4">Powering experiences<br/><span class="text-style-muted">from next-gen startups to enterprises</span></h1></div></div><div class="gridline-wrap"><div class="customer-grid"><div id="w-node-a9714556-e6cb-208d-7ddf-b7203f8392c7-67fc7d59" class="customer-cell border-bottom"><div class="logo-wrap w-embed"><svg width="136" height="15" viewBox="0 0 136 15" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M136 0.729996H131.974L127.151 6.13347V0.729996H123.77L123.787 14.0314H127.151V8.97679L131.725 14.0314H136L129.836 7.46412L136 0.729996ZM118.32 6.20005L115.237 5.85117C113.431 5.65144 112.984 5.20228 112.984 4.5871C112.984 3.90534 113.912 3.29016 115.718 3.29016C117.458 3.29016 118.369 3.93905 118.535 4.91997H121.849C121.681 2.10952 119.329 0.364258 115.9 0.364258C111.824 0.364258 109.769 1.99322 109.769 4.8694C109.769 7.21383 111.128 8.31189 113.945 8.61105L117.077 8.94308C118.27 9.07623 118.817 9.54225 118.817 10.1406C118.817 10.8223 118.021 11.4375 116.099 11.4375C113.878 11.4375 112.984 10.8721 112.834 9.74113H109.586C109.736 12.801 111.724 14.3634 115.983 14.3634C119.877 14.3634 122.048 12.651 122.048 10.074C122.048 7.82901 120.755 6.48236 118.32 6.20005ZM97.4233 14.0314H108.095V11.1552H100.804V8.7442H106.67V5.85117H100.804V3.60618H108.095V0.729996H97.4233V14.0314ZM89.4696 0.729996H83.272V14.0314H89.4696C94.2258 14.0314 95.5344 12.2524 95.5344 7.28041C95.5344 2.6084 94.2754 0.729996 89.4696 0.729996ZM89.3335 11.156H86.6459V3.60618H89.3335C91.455 3.60618 92.0841 4.18849 92.0841 7.28041C92.0875 10.1069 91.3753 11.156 89.3335 11.156ZM74.0921 0.364258C69.2695 0.364258 66.7675 3.33988 66.7675 7.34698C66.7675 11.3709 69.2695 14.3634 74.0921 14.3634C78.9307 14.3634 81.4327 11.3709 81.4327 7.34698C81.4327 3.33988 78.9307 0.364258 74.0921 0.364258ZM74.0921 11.3709C71.5901 11.3709 70.2144 9.84141 70.2144 7.34698C70.2144 4.90311 71.5901 3.35673 74.0921 3.35673C76.6118 3.35673 77.9699 4.90311 77.9699 7.34698C77.9699 9.84141 76.6109 11.3709 74.0921 11.3709ZM54.3061 3.60618H58.5811V14.0314H61.9617V3.60618H66.2207V0.729996H54.3061V3.60618ZM49.3852 8.94308C49.3852 10.6723 48.3244 11.3709 46.5178 11.3709C44.7617 11.3709 43.6186 10.6395 43.6186 8.94308V0.729996H40.238V9.32567C40.238 13.1668 43.6513 14.3634 46.5178 14.3634C49.3684 14.3634 52.7649 13.1668 52.7649 9.32567V0.729996H49.3852V8.94308ZM30.345 0.729996L25.2579 14.0314H28.7543L29.642 11.537H35.3213L36.1948 14.0314H39.8063L34.657 0.729996H30.345ZM30.6482 8.71049L32.5052 3.49662L34.3311 8.71218L30.6482 8.71049ZM0.104146 14.0322L11.9751 6.62309H18.1331C18.1804 6.62309 18.2272 6.63245 18.2709 6.65063C18.3145 6.66881 18.3542 6.69545 18.3876 6.72903C18.421 6.76261 18.4474 6.80247 18.4655 6.84633C18.4835 6.89019 18.4927 6.93718 18.4926 6.98462C18.4975 7.04616 18.4841 7.10778 18.4543 7.16175C18.4244 7.21573 18.3793 7.25964 18.3246 7.28799L12.4941 10.7954C12.1153 11.0229 11.9826 11.4797 11.9826 11.8218L11.9768 14.0322H19.3862V1.1859C19.3864 1.1243 19.3741 1.06329 19.3501 1.00658C19.3261 0.949863 19.291 0.898614 19.2467 0.855925C19.2024 0.813237 19.15 0.779994 19.0925 0.758205C19.0351 0.736416 18.9739 0.726533 18.9125 0.729153H11.8424L0 8.10627V14.0322H0.104146Z" fill="currentColor"/> </svg></div></div><div id="w-node-a9714556-e6cb-208d-7ddf-b7203f8392d5-67fc7d59" class="customer-cell border-bottom center"><div class="logo-wrap w-embed"><svg width="140" height="31" viewBox="0 0 140 31" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M30.0802 17.0661H33.6726L34.722 17.7356H29.9217L27.7673 24.2871C25.3872 23.3789 23.1845 21.2752 22.2605 18.9108C21.2755 16.6193 21.2755 13.7405 22.2821 11.4394C23.2257 9.07411 25.4921 6.93791 27.9043 6.06038C29.8026 5.28686 32.3428 5.20495 34.3558 5.81377C36.666 6.46468 38.8472 8.09362 40.1152 10.2202C41.5336 12.5521 41.9321 15.5155 41.0698 18.1769C40.5253 19.9432 39.4033 21.6346 37.8587 22.8441L35.2073 18.4975L38.8982 20.5228C38.9189 20.5228 38.9296 20.4999 38.9189 20.4789L34.0844 16.3727L40.3372 17.3109C40.3588 17.3109 40.3676 17.3013 40.3676 17.2906L40.3265 17.2597L34.431 15.2257L40.5575 13.7704C40.5781 13.7704 40.5781 13.7512 40.5673 13.7405L34.2823 14.143L39.2035 10.4775C39.2142 10.4571 39.1712 10.4475 39.1614 10.4687L33.633 13.226L36.6847 7.92892C36.6847 7.92103 36.6847 7.89893 36.666 7.90945L32.6786 12.5134L33.4442 6.46485C33.4442 6.45345 33.4217 6.44293 33.4012 6.45345L31.5674 12.3266L29.962 6.27717C29.9513 6.26752 29.9297 6.25682 29.9181 6.27717L30.3605 12.5521L26.5737 7.70335C26.5621 7.69195 26.5521 7.70335 26.5414 7.713L29.4059 13.0789L23.9913 10.1683C23.9815 10.1683 23.9599 10.1797 23.9599 10.1893L28.7755 14.0797L22.6285 13.4409C22.6069 13.4523 22.6069 13.4709 22.6285 13.4805L28.5885 15.1958L22.6607 16.9093C22.6492 16.918 22.6492 16.9393 22.6607 16.9489L28.7755 16.2477L23.9706 20.2629C23.9599 20.2629 23.9499 20.2833 23.9706 20.2947L24.0351 20.2743L27.8828 18.2921L28.7864 16.8782H29.8135L29.1014 16.3833L31.4815 12.6242L30.0775 17.0632L30.0802 17.0661ZM47.8097 22.0131H43.0129L46.8543 8.52317H56.6859L55.7494 11.7246H50.7323L50.0885 14.0211H55.1065L54.2602 16.9678H49.2433L47.8097 22.0131ZM58.9095 22.0132H54.1682L56.9799 12.1582H61.7221L58.9095 22.0132ZM61.979 11.2182H57.2377L58.0095 8.52335H62.7508L61.979 11.2182ZM71.2112 22.0129H66.5612L66.8915 20.91C65.954 21.6879 64.9987 22.2472 63.4737 22.2472C61.929 22.2472 60.9558 21.5239 60.9558 19.9875C60.9558 18.2883 61.6363 15.7564 62.6463 13.9848C63.3814 12.6642 64.7049 11.9781 66.2674 11.9781C67.6079 11.9781 68.6009 12.556 68.9867 13.2792L70.3102 8.52388H75.0514L71.2112 22.0129ZM67.6456 15.0868C67.222 15.0868 66.8003 15.2145 66.5612 15.7925C66.212 16.624 65.8994 17.4381 65.8994 18.2512C65.8994 18.6319 66.1752 18.9569 66.6345 18.9569C67.0016 18.9569 67.2406 18.8485 67.443 18.7225L68.3993 15.485C68.2339 15.25 67.9393 15.0868 67.6456 15.0868ZM84.5988 17.7096H78.0569C77.928 18.2328 77.8 18.595 77.8 19.0107C77.8 19.2098 77.8367 19.7164 78.4975 19.7164C79.1593 19.7164 79.4537 19.4626 79.7286 18.505H84.3786C83.7906 21.3073 80.4092 22.2649 78.3327 22.2649C75.5201 22.2649 73.3337 21.8677 73.3337 19.2098C73.3337 17.7449 74.0867 15.3222 75.0797 14.0386C76.2743 12.5014 78.3507 11.9235 80.2625 11.9235C83.2032 11.9235 85.1136 12.5199 85.1136 14.9786C85.1136 15.5758 84.8568 16.8956 84.5988 17.7096ZM79.8576 14.4007C79.2692 14.4007 78.8654 14.7979 78.6076 15.7927H80.5561C80.6116 15.5936 80.685 15.2861 80.685 15.1045C80.685 14.5627 80.3537 14.4007 79.8576 14.4007ZM89.3646 22.0131H84.6228L88.464 8.52317H93.2064L89.3646 22.0131ZM95.6298 22.0132H90.8874L93.6996 12.1582H98.4414L95.6298 22.0132ZM98.6982 11.2182H93.957L94.7286 8.52335H99.4704L98.6982 11.2182ZM107.223 12.1582L107.636 14.3826H104.006L102.941 18.1248C102.848 18.4147 102.775 18.7759 102.775 19.0111C102.775 19.4445 102.959 19.5899 103.601 19.5899H104.612L103.914 22.0134H99.687C98.2902 22.0134 97.7574 21.3439 97.7574 20.3308C97.7574 19.9158 97.8126 19.4631 97.9602 18.9565L100.533 9.97006H105.274L104.649 12.1584L107.223 12.1582ZM42.9158 23.5282L44.0979 23.5273L43.3448 25.9534H42.1664L42.9158 23.5282ZM47.0411 23.5301L48.7702 23.5293L49.2134 25.1466H49.2251L49.7256 23.5284L50.7518 23.5275L49.9934 25.9483L48.3385 25.9536L47.8595 24.2252H47.8514L47.3268 25.9501L46.3006 25.951L47.0411 23.5301ZM52.9926 23.5312L54.2935 23.5303L54.5219 25.0552L55.712 23.5285L56.9162 23.5276L54.9311 25.9494L53.4859 25.9512L52.9926 23.5312ZM59.1821 23.532L61.8711 23.5294L61.7197 24.0211L60.1733 24.0219L60.0239 24.5196L61.4735 24.5187L61.3284 24.9856L59.8788 24.9865L59.7292 25.4667L61.2917 25.4656L61.1341 25.9564L58.4309 25.9582L59.1821 23.532ZM70.7296 24.1226L69.8092 24.1237L69.991 23.535L73.0129 23.5324L72.8312 24.121L71.9108 24.1218L71.3467 25.9471L70.1656 25.948L70.7296 24.1226ZM75.4583 23.5289L77.2491 23.5271L77.335 25.1464H77.3431L78.4114 23.5263L80.2093 23.5245L79.4625 25.9515L78.3675 25.9524L78.9289 24.1252H78.9209L77.5901 25.9533L76.4486 25.9542L76.2866 24.1272H76.2748L75.7143 25.9489L74.7114 25.9498L75.4583 23.5289ZM87.7332 23.5301L89.4606 23.5293L89.9058 25.1466H89.9172L90.4176 23.5275H91.443L90.693 25.9536L89.0166 25.9492L88.5516 24.2252H88.5438L88.0074 25.9501L86.9802 25.951L87.7332 23.5301ZM94.2768 24.1189L93.3552 24.1198L93.537 23.5305L96.5598 23.5287L96.378 24.1172L95.457 24.118L94.8936 25.9496L93.7116 25.9504L94.2768 24.1189ZM114.808 20.0308C114.098 20.0308 113.519 20.5999 113.519 21.2994C113.519 21.998 114.098 22.5679 114.808 22.5679C115.519 22.5679 116.098 21.9978 116.098 21.2994C116.098 20.5999 115.519 20.0308 114.808 20.0308ZM114.808 22.3425C114.527 22.3425 114.257 22.2326 114.059 22.037C113.86 21.8414 113.748 21.5761 113.748 21.2995C113.748 21.0228 113.86 20.7575 114.059 20.5619C114.257 20.3663 114.527 20.2564 114.808 20.2564C115.09 20.2564 115.359 20.3663 115.558 20.5619C115.757 20.7575 115.868 21.0228 115.868 21.2995C115.868 21.5761 115.757 21.8414 115.558 22.037C115.359 22.2326 115.09 22.3425 114.808 22.3425Z" fill="currentColor"/> <path d="M115.325 21.0362C115.325 20.7844 115.175 20.6425 114.857 20.6425H114.355V21.9497H114.587V21.4149H114.766L115.097 21.9497H115.354L115.006 21.3965C115.187 21.3746 115.325 21.2636 115.325 21.0362ZM114.587 21.2115V20.8451H114.766C114.915 20.8424 115.082 20.8512 115.082 21.0266C115.082 21.2029 114.915 21.2117 114.766 21.2117L114.587 21.2115ZM65.4936 24.2648C65.4676 24.2376 65.4658 24.1917 65.4776 24.1547C65.5161 24.0314 65.6719 23.9504 65.9217 23.9504C66.0686 23.9495 66.295 23.9661 66.3595 24.0174C66.3913 24.0381 66.4152 24.0687 66.4274 24.1043C66.4396 24.1398 66.4393 24.1783 66.4268 24.2138H67.4734C67.597 23.7804 67.3194 23.5011 66.1374 23.5029C65.0146 23.5038 64.3779 23.7407 64.2141 24.2694C64.172 24.4069 64.1667 24.5769 64.2831 24.6905C64.5723 24.9741 65.8779 25.0869 65.988 25.2402C65.9998 25.2558 66.0075 25.274 66.0105 25.2932C66.0135 25.3125 66.0115 25.3321 66.0049 25.3504C65.9449 25.5451 65.6646 25.5953 65.4202 25.5953C65.2644 25.5953 65.062 25.5626 65.0039 25.4993C64.9494 25.436 64.9494 25.3381 64.9806 25.2755L63.8847 25.2773C63.7753 25.6535 63.7279 26.0445 65.251 26.0438C66.5287 26.042 67.1144 25.7345 67.2612 25.2562C67.3337 25.0219 67.262 24.8916 67.1788 24.8088C66.8949 24.5211 65.6305 24.4155 65.4936 24.2648ZM82.6153 23.5322L85.3039 23.5296L85.1527 24.0212L83.6065 24.0221L83.4565 24.5199L84.9055 24.519L84.7603 24.9859L83.3119 24.9866L83.1625 25.4678L84.7237 25.466L84.5665 25.9566L81.8641 25.9583L82.6153 23.5322ZM113.624 12.1578L111.05 17.6187L111.124 12.1578H106.328L107.246 22.0129C107.129 22.5899 106.935 22.9149 106.567 23.0753C106.164 23.2515 105.254 23.2198 104.934 23.2021L104.876 23.2056L104.119 25.8836L107.356 25.8863C109.268 25.8863 110.205 24.941 111.566 22.8443L118.475 12.1575L113.624 12.1578ZM99.6259 24.2589C99.5995 24.2317 99.5989 24.1848 99.6097 24.1487C99.6481 24.0254 99.8047 23.9444 100.054 23.9444C100.201 23.9435 100.427 23.9602 100.492 24.0114C100.523 24.0321 100.547 24.0627 100.559 24.0982C100.571 24.1338 100.571 24.1724 100.559 24.2078H101.606C101.729 23.7744 101.452 23.4952 100.27 23.4969C99.1477 23.4978 98.5099 23.7348 98.3473 24.2634C98.3041 24.401 98.2987 24.5709 98.4151 24.6846C98.7043 24.9682 100.01 25.081 100.12 25.2343C100.132 25.2498 100.139 25.2681 100.142 25.2873C100.145 25.3065 100.144 25.3261 100.137 25.3445C100.078 25.5391 99.7969 25.5893 99.5521 25.5893C99.3967 25.5893 99.1939 25.5567 99.1357 25.4934C99.0811 25.43 99.0811 25.3322 99.1123 25.2695L98.0167 25.2713C97.9075 25.6475 97.8601 26.0385 99.3829 26.0378C100.661 26.036 101.246 25.7286 101.394 25.2503C101.465 25.0159 101.394 24.8856 101.311 24.8028C101.028 24.5153 99.7627 24.4095 99.6259 24.2589Z" fill="currentColor"/> </svg></div></div><div id="w-node-a9714556-e6cb-208d-7ddf-b7203f8392e3-67fc7d59" class="customer-cell border-bottom"><div class="logo-wrap w-embed"><svg width="120" height="30" viewBox="0 0 120 30" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M29.3666 11.4089H33.7401V21.8142H36.5316V11.4089H40.9053V8.92272H29.3666V11.4089Z" fill="currentColor"/> <path d="M24.4365 17.9467L18.5741 8.92272H15.4103V21.8142H18.1089V12.7902L23.9712 21.8142H27.1349V8.92272H24.4365V17.9467Z" fill="currentColor"/> <path d="M52.0714 14.0609H45.9299V8.92272H43.1384V21.8142H45.9299V16.5471H52.0714V21.8142H54.8629V8.92272H52.0714V14.0609Z" fill="currentColor"/> <path d="M5.19233 8.92272L0 21.8142H2.90325L3.96516 19.107H9.39741L10.4592 21.8142H13.3624L8.17005 8.92272H5.19233ZM4.90424 16.7129L6.68119 12.1824L8.45817 16.7129H4.90424Z" fill="currentColor"/> <path d="M77.997 8.69702C74.2374 8.69702 71.5763 11.4595 71.5763 15.3822C71.5763 19.268 74.2374 22.0305 77.997 22.0305C81.7376 22.0305 84.3805 19.268 84.3805 15.3822C84.3805 11.4595 81.7376 8.69702 77.997 8.69702ZM77.997 19.4522C75.8006 19.4522 74.4608 17.9052 74.4608 15.3822C74.4608 12.8223 75.8006 11.2753 77.997 11.2753C80.1744 11.2753 81.4956 12.8223 81.4956 15.3822C81.4956 17.9052 80.1744 19.4522 77.997 19.4522Z" fill="currentColor"/> <path d="M117.022 17.4816C116.538 18.734 115.57 19.4522 114.249 19.4522C112.053 19.4522 110.713 17.9052 110.713 15.3822C110.713 12.8223 112.053 11.2753 114.249 11.2753C115.57 11.2753 116.538 11.9935 117.022 13.2459H119.981C119.256 10.4834 117.078 8.69702 114.249 8.69702C110.49 8.69702 107.829 11.4595 107.829 15.3822C107.829 19.268 110.49 22.0305 114.249 22.0305C117.097 22.0305 119.274 20.2256 120 17.4816H117.022Z" fill="currentColor"/> <path d="M99.2326 8.92272L104.425 21.8142H107.272L102.08 8.92272H99.2326Z" fill="currentColor"/> <path d="M93.3491 8.92272H86.9842V21.8142H89.7758V17.1364H93.3491C96.3079 17.1364 98.1132 15.5895 98.1132 13.0296C98.1132 10.4697 96.3079 8.92272 93.3491 8.92272ZM93.2186 14.6502H89.7758V11.4089H93.2186C94.596 11.4089 95.3217 11.9614 95.3217 13.0296C95.3217 14.0977 94.596 14.6502 93.2186 14.6502Z" fill="currentColor"/> <path d="M69.4372 12.8454C69.4372 10.4144 67.6319 8.92272 64.6727 8.92272H58.3078V21.8142H61.0993V16.7681H64.2072L66.9992 21.8142H70.0885L66.9971 16.3837C68.5487 15.7935 69.4372 14.5506 69.4372 12.8454ZM61.0993 11.4089H64.5426C65.9196 11.4089 66.6452 11.9061 66.6452 12.8454C66.6452 13.7847 65.9196 14.2819 64.5426 14.2819H61.0993V11.4089Z" fill="currentColor"/> </svg></div></div><div id="w-node-a9714556-e6cb-208d-7ddf-b7203f8392f1-67fc7d59" class="customer-cell cs"><div class="logo-wrap w-embed"><svg width="72" height="23" viewBox="0 0 72 23" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M51.5867 22.3428C51.4426 22.3428 51.2998 22.3153 51.1667 22.2619C51.0335 22.2085 50.9125 22.1303 50.8106 22.0316C50.7087 21.933 50.6279 21.8158 50.5727 21.6869C50.5176 21.558 50.4892 21.4198 50.4892 21.2803V1.44697C50.4892 1.30744 50.5176 1.16928 50.5727 1.04037C50.6279 0.911455 50.7087 0.794325 50.8106 0.695664C50.9125 0.597003 51.0335 0.518744 51.1667 0.465358C51.2998 0.411972 51.4426 0.384503 51.5867 0.384522C51.7308 0.384485 51.8736 0.41194 52.0068 0.465318C52.1399 0.518696 52.2609 0.596951 52.3629 0.695614C52.4648 0.794277 52.5457 0.911413 52.6008 1.04033C52.656 1.16925 52.6843 1.30743 52.6843 1.44697V21.2803C52.6843 21.4199 52.656 21.558 52.6008 21.687C52.5457 21.8159 52.4648 21.933 52.3629 22.0317C52.2609 22.1303 52.1399 22.2086 52.0068 22.262C51.8736 22.3153 51.7308 22.3428 51.5867 22.3428ZM70.357 19.5597C70.4503 19.4534 70.521 19.3303 70.5652 19.1975C70.6094 19.0646 70.6261 18.9247 70.6144 18.7856C70.6027 18.6466 70.5628 18.5111 70.497 18.387C70.4312 18.2628 70.3408 18.1525 70.2309 18.0622C70.121 17.9718 69.9939 17.9033 69.8567 17.8606C69.7195 17.8178 69.575 17.8016 69.4313 17.813C69.2877 17.8243 69.1477 17.8629 69.0195 17.9266C68.8913 17.9903 68.7772 18.0778 68.684 18.1842C67.5498 19.4766 65.8522 20.2179 64.0256 20.2179C60.9998 20.2179 58.538 17.8347 58.538 14.9055C58.538 11.9763 60.9998 9.59327 64.0256 9.59327C66.4843 9.59327 68.5385 11.3034 68.9843 13.5597H62.2692C62.1251 13.5597 61.9823 13.5872 61.8492 13.6406C61.716 13.694 61.595 13.7722 61.4931 13.8709C61.3912 13.9696 61.3103 14.0867 61.2552 14.2157C61.2001 14.3446 61.1717 14.4828 61.1717 14.6223C61.1717 14.7618 61.2001 14.9 61.2552 15.0289C61.3104 15.1578 61.3912 15.2749 61.4931 15.3736C61.5951 15.4723 61.716 15.5505 61.8492 15.6039C61.9824 15.6573 62.1251 15.6848 62.2692 15.6848H70.1715C70.3157 15.6848 70.4584 15.6573 70.5916 15.604C70.7248 15.5506 70.8458 15.4723 70.9477 15.3737C71.0496 15.275 71.1304 15.1578 71.1856 15.0289C71.2407 14.9 71.2691 14.7618 71.269 14.6223V14.4805C71.269 10.6137 68.0197 7.46796 64.0252 7.46796C59.7888 7.46796 56.3423 10.8044 56.3423 14.9055C56.3423 19.0066 59.7894 22.3428 64.0256 22.3428C66.4974 22.3428 68.8051 21.3282 70.357 19.5597ZM46.8308 21.2803V14.4801C46.8308 10.6133 43.5815 7.46768 39.5871 7.46768C35.3506 7.46768 31.9041 10.8041 31.9041 14.9052C31.9041 19.0063 35.3506 22.3428 39.5871 22.3428C39.7312 22.3428 39.8739 22.3153 40.0071 22.2619C40.1403 22.2085 40.2613 22.1303 40.3632 22.0316C40.4651 21.933 40.5459 21.8158 40.6011 21.6869C40.6562 21.558 40.6846 21.4198 40.6846 21.2803C40.6846 21.1408 40.6563 21.0026 40.6011 20.8737C40.546 20.7448 40.4651 20.6276 40.3632 20.529C40.2613 20.4303 40.1403 20.3521 40.0071 20.2987C39.874 20.2453 39.7312 20.2178 39.5871 20.2179C36.5612 20.2179 34.0995 17.8347 34.0995 14.9055C34.0995 11.9763 36.5612 9.59327 39.5871 9.59327C42.3708 9.59327 44.6358 11.7856 44.6358 14.4808V21.2806C44.6358 21.4201 44.6641 21.5583 44.7193 21.6872C44.7744 21.8161 44.8553 21.9333 44.9572 22.0319C45.0591 22.1306 45.1801 22.2089 45.3133 22.2622C45.4464 22.3156 45.5892 22.3431 45.7333 22.343C46.0244 22.3429 46.3035 22.2309 46.5093 22.0316C46.7151 21.8324 46.8308 21.5621 46.8308 21.2803ZM13.6084 18.0928C13.6084 17.0559 13.215 15.6415 11.3405 14.7916C10.2158 14.2815 8.80448 14.072 7.43963 13.8694C4.24211 13.3948 3.10669 12.9982 3.10669 11.7177C3.10669 10.3228 5.10496 9.59285 7.07906 9.59285C8.32304 9.59285 10.1107 9.83569 11.5643 10.9929C11.6756 11.0815 11.8039 11.1481 11.9418 11.1887C12.0797 11.2294 12.2246 11.2433 12.3681 11.2298C12.5115 11.2163 12.6509 11.1755 12.7781 11.1099C12.9053 11.0442 13.0179 10.9549 13.1095 10.8471C13.2011 10.7393 13.2698 10.6152 13.3118 10.4816C13.3538 10.3481 13.3682 10.2079 13.3542 10.069C13.3402 9.93012 13.2981 9.79524 13.2303 9.67209C13.1625 9.54894 13.0703 9.43992 12.9589 9.35127C11.0034 7.79418 8.68202 7.46726 7.07935 7.46726C2.84195 7.46726 0.911998 9.67034 0.911998 11.7172C0.911998 12.7611 1.30702 14.185 3.18862 15.041C4.31955 15.5554 5.73694 15.7656 7.10757 15.9692C10.2854 16.441 11.4137 16.8325 11.4137 18.0923C11.4137 19.3634 9.84624 20.2172 7.51389 20.2172C5.1261 20.2172 3.3063 19.2799 2.43433 18.7209C2.19157 18.5654 1.89497 18.5096 1.60974 18.5658C1.32451 18.622 1.074 18.7855 0.9133 19.0205C0.833739 19.1368 0.778632 19.2672 0.751126 19.4042C0.72362 19.5412 0.724254 19.682 0.752992 19.8188C0.78173 19.9555 0.838009 20.0854 0.918615 20.2011C0.999221 20.3168 1.10257 20.4159 1.22278 20.4929C3.08339 21.6858 5.3176 22.3428 7.51316 22.3428C11.7238 22.3428 13.6084 20.2081 13.6084 18.0928ZM29.5221 19.2069C29.6832 18.9721 29.7414 18.6851 29.6839 18.4089C29.6264 18.1326 29.458 17.8898 29.2156 17.7337C28.9732 17.5777 28.6766 17.5214 28.3913 17.577C28.1059 17.6327 27.855 17.7958 27.6939 18.0305C26.7539 19.4001 25.1807 20.2175 23.4863 20.2175C20.4604 20.2175 17.9987 17.8344 17.9987 14.9052C17.9987 11.976 20.4604 9.59299 23.4863 9.59299C25.181 9.59299 26.7539 10.4104 27.6939 11.78C27.7737 11.8962 27.8763 11.9961 27.996 12.0739C28.1156 12.1517 28.25 12.2059 28.3913 12.2334C28.5326 12.261 28.6781 12.2613 28.8196 12.2344C28.961 12.2075 29.0956 12.1539 29.2156 12.0766C29.3357 11.9994 29.4388 11.9 29.5192 11.7842C29.5996 11.6684 29.6556 11.5383 29.6841 11.4016C29.7125 11.2648 29.7129 11.1239 29.6851 10.987C29.6573 10.8501 29.6019 10.7198 29.5221 10.6036C28.1742 8.63985 25.9175 7.46754 23.4863 7.46754C19.2499 7.46754 15.8034 10.804 15.8034 14.9052C15.8034 19.0063 19.2499 22.3428 23.4863 22.3428C25.9178 22.3428 28.1742 21.1705 29.5221 19.2069Z" fill="currentColor"/> </svg></div></div><div id="w-node-a9714556-e6cb-208d-7ddf-b7203f8392ff-67fc7d59" class="customer-cell center"><div class="logo-wrap w-embed"><svg width="110" height="48" viewBox="0 0 110 48" fill="none" xmlns="http://www.w3.org/2000/svg"> <path fill-rule="evenodd" clip-rule="evenodd" d="M30.9951 40.5057C28.7147 40.5057 26.555 40.0496 24.5831 39.2313C21.6319 37.9972 19.11 35.9314 17.3259 33.3291C15.5418 30.7267 14.5089 27.6011 14.5089 24.2207C14.5089 21.9671 14.965 19.8343 15.8101 17.8758C17.0576 14.9515 19.1503 12.4698 21.7795 10.7125C24.4087 8.95526 27.5744 7.93578 30.9951 7.93578V5.48096C28.3793 5.48096 25.8842 6.00411 23.6038 6.95653C20.1966 8.37845 17.2991 10.7528 15.2601 13.7442C13.2077 16.7356 12.0139 20.344 12.0139 24.2207C12.0139 26.8097 12.5504 29.2779 13.5028 31.5181C14.9382 34.8851 17.3527 37.7424 20.371 39.7679C23.4026 41.7935 27.0513 42.9739 30.9817 42.9739V40.5057H30.9951Z" fill="currentColor"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M22.5441 34.2144C21.0014 32.9266 19.8478 31.3705 19.0698 29.6669C18.2918 27.9633 17.8893 26.1255 17.8893 24.2744C17.8893 22.7988 18.1442 21.3232 18.6405 19.9147C19.1503 18.5062 19.9015 17.1648 20.9344 15.9441C22.2221 14.4148 23.7916 13.2612 25.4952 12.4832C27.1989 11.7052 29.0634 11.3161 30.9146 11.3161C32.3902 11.3161 33.8792 11.571 35.2877 12.0673C36.7096 12.5771 38.051 13.3283 39.2717 14.3478L40.868 12.4564C39.4193 11.2491 37.8096 10.3369 36.1194 9.74667C34.4292 9.14302 32.6719 8.84791 30.9146 8.84791C28.7013 8.84791 26.5013 9.31741 24.4623 10.243C22.4234 11.1686 20.5588 12.5503 19.0295 14.3612C17.8088 15.8099 16.9101 17.4062 16.3064 19.083C15.7028 20.7598 15.4077 22.5171 15.4077 24.2744C15.4077 26.4743 15.8772 28.6743 16.8028 30.6998C17.7284 32.7254 19.1234 34.59 20.9478 36.1058L22.5441 34.2144Z" fill="currentColor"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M26.3671 32.6181C24.744 31.7596 23.4697 30.512 22.5977 29.0499C21.7258 27.5877 21.2697 25.8975 21.2697 24.1939C21.2697 22.6915 21.6185 21.1757 22.3831 19.7672C23.2416 18.144 24.5026 16.8831 25.9781 16.0246C27.4537 15.1527 29.1439 14.6966 30.8609 14.6966C32.3633 14.6966 33.8926 15.0453 35.3145 15.7965L36.4681 13.61C34.684 12.671 32.7524 12.2149 30.8475 12.2283C28.6878 12.2283 26.5549 12.8052 24.7038 13.8917C22.8526 14.9783 21.2563 16.588 20.1832 18.6135C19.2441 20.3977 18.7881 22.3159 18.7881 24.1939C18.7881 26.3402 19.3649 28.4596 20.4648 30.2974C21.5648 32.1486 23.1745 33.7181 25.2135 34.7912L26.3671 32.6181Z" fill="currentColor"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M31.0085 30.2571C30.1634 30.2571 29.3586 30.0827 28.6342 29.7742C27.5342 29.3181 26.6086 28.5401 25.9513 27.5609C25.294 26.5816 24.905 25.4146 24.905 24.1536C24.905 23.3085 25.0794 22.5037 25.3879 21.7793C25.844 20.6927 26.622 19.7537 27.6013 19.0964C28.5805 18.4391 29.7476 18.0501 31.0085 18.0501V15.5819C29.8281 15.5819 28.7013 15.8233 27.6684 16.2526C26.1257 16.9099 24.8245 17.983 23.8989 19.3513C22.9599 20.733 22.4234 22.3963 22.4234 24.167C22.4234 25.3475 22.6648 26.4743 23.0941 27.5072C23.7514 29.0498 24.8379 30.351 26.2062 31.2766C27.5745 32.1888 29.2244 32.7254 31.0085 32.7254V30.2571Z" fill="currentColor"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M33.0207 22.2085C32.739 21.9134 32.4304 21.672 32.1219 21.4976C31.8134 21.3232 31.4914 21.2293 31.1561 21.2293C30.7 21.2293 30.311 21.3098 29.9488 21.4707C29.6 21.6317 29.2915 21.8463 29.0366 22.128C28.7817 22.3963 28.5939 22.7183 28.4598 23.067C28.3256 23.4158 28.272 23.7914 28.272 24.167C28.272 24.5426 28.3391 24.9182 28.4598 25.267C28.5939 25.6158 28.7817 25.9377 29.0366 26.206C29.2915 26.4743 29.5866 26.7023 29.9488 26.8633C30.2975 27.0243 30.7 27.1048 31.1561 27.1048C31.5317 27.1048 31.8939 27.0243 32.2158 26.8767C32.5377 26.7157 32.8194 26.4877 33.0475 26.1926L34.684 27.9499C34.4426 28.1913 34.1609 28.4059 33.8389 28.5803C33.517 28.7547 33.195 28.9023 32.8731 29.0096C32.5511 29.1169 32.2292 29.1974 31.9341 29.2376C31.639 29.2913 31.3707 29.3047 31.1561 29.3047C30.4183 29.3047 29.7207 29.184 29.0768 28.9425C28.4195 28.7011 27.8561 28.3523 27.3866 27.8962C26.9037 27.4535 26.5281 26.9035 26.2464 26.2731C25.9647 25.6426 25.8306 24.9316 25.8306 24.167C25.8306 23.389 25.9647 22.6914 26.2464 22.061C26.5281 21.4305 26.9037 20.8939 27.3866 20.4378C27.8696 19.9952 28.433 19.6464 29.0768 19.3915C29.7341 19.1501 30.4317 19.0293 31.1561 19.0293C31.7865 19.0293 32.417 19.1501 33.0475 19.3915C33.678 19.633 34.2414 20.0086 34.7109 20.5183L33.0207 22.2085Z" fill="currentColor"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M41.9277 23.1877C41.9143 22.4633 41.6863 21.8999 41.257 21.4841C40.8143 21.0682 40.2107 20.867 39.4327 20.867C38.6949 20.867 38.1181 21.0817 37.6888 21.4975C37.2596 21.9133 36.9913 22.4902 36.8974 23.1877H41.9277ZM36.9108 25.0255C36.9913 25.7633 37.273 26.3267 37.7693 26.7425C38.2656 27.1449 38.8559 27.3596 39.5534 27.3596C40.1705 27.3596 40.6802 27.2388 41.0961 26.984C41.5119 26.7291 41.8741 26.4206 42.196 26.0315L43.9533 27.3596C43.3765 28.0705 42.746 28.5668 42.0351 28.8754C41.3241 29.1705 40.5863 29.318 39.8083 29.318C39.0705 29.318 38.3729 29.1973 37.7291 28.9559C37.0718 28.7144 36.5084 28.3656 36.0389 27.9095C35.5559 27.4669 35.1803 26.9169 34.8986 26.2864C34.6169 25.6559 34.4828 24.945 34.4828 24.1804C34.4828 23.4023 34.6169 22.7048 34.8986 22.0743C35.1803 21.4438 35.5559 20.9073 36.0389 20.4512C36.5218 20.0085 37.0852 19.6597 37.7291 19.4049C38.3864 19.1634 39.0839 19.0427 39.8083 19.0427C40.4924 19.0427 41.1095 19.1634 41.6729 19.4049C42.2363 19.6463 42.7192 19.9817 43.1216 20.4378C43.524 20.8804 43.8326 21.4438 44.0606 22.1011C44.2887 22.7584 44.396 23.5231 44.396 24.3816V25.0523H36.9108V25.0255Z" fill="currentColor"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M45.4289 19.2709H47.8837V20.8135H47.9239C48.1922 20.2367 48.5812 19.8074 49.091 19.4855C49.6007 19.177 50.1775 19.016 50.8214 19.016C50.969 19.016 51.1165 19.0294 51.2641 19.0562C51.4117 19.0831 51.5592 19.1233 51.7068 19.1635V21.5245C51.5056 21.4708 51.3043 21.4306 51.1031 21.3903C50.9019 21.3501 50.7141 21.3367 50.5263 21.3367C49.9495 21.3367 49.4934 21.444 49.1446 21.6586C48.7959 21.8732 48.5276 22.1147 48.3532 22.383C48.1654 22.6513 48.0447 22.933 47.991 23.2013C47.9239 23.4695 47.8971 23.6708 47.8971 23.8183V29.0499H45.4423V19.2709H45.4289Z" fill="currentColor"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M59.1786 23.1877C59.1652 22.4633 58.9371 21.8999 58.5079 21.4841C58.0652 21.0682 57.4615 20.867 56.6835 20.867C55.9457 20.867 55.3689 21.0817 54.9396 21.4975C54.5104 21.9133 54.2421 22.4902 54.1482 23.1877H59.1786ZM54.1616 25.0255C54.2421 25.7633 54.5238 26.3267 55.0201 26.7425C55.5165 27.1449 56.1067 27.3596 56.8042 27.3596C57.4213 27.3596 57.931 27.2388 58.3469 26.984C58.7627 26.7291 59.1249 26.4206 59.4469 26.0315L61.2041 27.3596C60.6273 28.0705 59.9968 28.5668 59.2859 28.8754C58.5749 29.1705 57.8371 29.318 57.0591 29.318C56.3213 29.318 55.6238 29.1973 54.9799 28.9559C54.3226 28.7144 53.7592 28.3656 53.2897 27.9095C52.8068 27.4669 52.4312 26.9169 52.1495 26.2864C51.8678 25.6559 51.7336 24.945 51.7336 24.1804C51.7336 23.4023 51.8678 22.7048 52.1495 22.0743C52.4312 21.4438 52.8068 20.9073 53.2897 20.4512C53.7726 20.0085 54.336 19.6597 54.9799 19.4049C55.6372 19.1634 56.3347 19.0427 57.0591 19.0427C57.7432 19.0427 58.3603 19.1634 58.9237 19.4049C59.4871 19.6463 59.97 19.9817 60.3724 20.4378C60.7749 20.8804 61.0834 21.4438 61.3114 22.1011C61.5395 22.7584 61.6468 23.5231 61.6468 24.3816V25.0523H54.1616V25.0255Z" fill="currentColor"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M70.6612 24.167C70.6612 23.7914 70.5941 23.4158 70.46 23.0671C70.3259 22.7183 70.1381 22.3964 69.8832 22.1281C69.6283 21.8598 69.3198 21.6317 68.9576 21.4708C68.5954 21.3098 68.193 21.2293 67.7369 21.2293C67.2808 21.2293 66.8784 21.3098 66.5162 21.4708C66.154 21.6317 65.8455 21.8464 65.5906 22.1281C65.3357 22.3964 65.1479 22.7183 65.0138 23.0671C64.8797 23.4158 64.8126 23.7914 64.8126 24.167C64.8126 24.5426 64.8797 24.9182 65.0138 25.267C65.1479 25.6158 65.3357 25.9377 65.5906 26.206C65.8455 26.4743 66.154 26.7023 66.5162 26.8633C66.8784 27.0243 67.2808 27.1048 67.7369 27.1048C68.193 27.1048 68.5954 27.0243 68.9576 26.8633C69.3198 26.7023 69.6283 26.4877 69.8832 26.206C70.1381 25.9377 70.3259 25.6158 70.46 25.267C70.5941 24.9182 70.6612 24.5426 70.6612 24.167ZM64.9065 13.6234V20.5049H64.9736C65.0943 20.344 65.2553 20.1696 65.4431 20.0086C65.6309 19.8342 65.8723 19.6733 66.1406 19.5257C66.4223 19.3781 66.7308 19.2574 67.093 19.1635C67.4552 19.0696 67.871 19.0159 68.3405 19.0159C69.0381 19.0159 69.6954 19.1501 70.2856 19.4184C70.8758 19.6867 71.3856 20.0488 71.8014 20.5049C72.2173 20.9744 72.5526 21.511 72.7807 22.1415C73.0087 22.772 73.1295 23.4427 73.1295 24.167C73.1295 24.8914 73.0221 25.5621 72.7941 26.1926C72.5795 26.8231 72.2441 27.3596 71.8283 27.8291C71.399 28.2986 70.8893 28.6608 70.2722 28.9157C69.6686 29.184 68.9844 29.3181 68.2198 29.3181C67.5223 29.3181 66.865 29.184 66.2479 28.9157C65.6443 28.6474 65.1614 28.2047 64.7992 27.6145H64.7589V29.0901H62.398V13.6234H64.9065Z" fill="currentColor"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M74.1892 19.2709H76.644V20.8135H76.6842C76.9525 20.2367 77.3415 19.8074 77.8513 19.4855C78.361 19.177 78.9378 19.016 79.5817 19.016C79.7293 19.016 79.8768 19.0294 80.0244 19.0562C80.172 19.0831 80.3195 19.1233 80.4671 19.1635V21.5245C80.2659 21.4708 80.0646 21.4306 79.8634 21.3903C79.6622 21.3501 79.4744 21.3367 79.2866 21.3367C78.7098 21.3367 78.2537 21.444 77.9049 21.6586C77.5562 21.8732 77.2879 22.1147 77.1135 22.383C76.9257 22.6513 76.805 22.933 76.7513 23.2013C76.6842 23.4695 76.6574 23.6708 76.6574 23.8183V29.0499H74.2026V19.2709H74.1892Z" fill="currentColor"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M86.9462 24.6767H86.423C86.0742 24.6767 85.6852 24.6901 85.256 24.7169C84.8267 24.7438 84.4243 24.8108 84.0353 24.9047C83.6597 25.0121 83.3377 25.1596 83.0694 25.3474C82.8011 25.5486 82.6804 25.8169 82.6804 26.1791C82.6804 26.4071 82.7341 26.6084 82.8414 26.7559C82.9487 26.9169 83.0829 27.051 83.2438 27.1583C83.4048 27.2657 83.5926 27.3461 83.8072 27.3998C84.0084 27.4535 84.2231 27.4669 84.4243 27.4669C85.2828 27.4669 85.9133 27.2657 86.3291 26.8632C86.7315 26.4608 86.9462 25.9108 86.9462 25.2267V24.6767ZM87.0267 27.7217C86.6645 28.2851 86.2084 28.6876 85.6584 28.9424C85.1084 29.1973 84.4914 29.318 83.8341 29.318C83.378 29.318 82.9353 29.251 82.4926 29.1302C82.05 29.0095 81.6743 28.8217 81.3256 28.5803C80.9902 28.3388 80.7085 28.0303 80.5073 27.6681C80.3061 27.3059 80.1988 26.8766 80.1988 26.3803C80.1988 25.8437 80.2927 25.4011 80.4939 25.0255C80.6817 24.6499 80.95 24.3413 81.2719 24.0865C81.5939 23.8316 81.9695 23.6304 82.3987 23.4828C82.828 23.3353 83.2706 23.2145 83.7402 23.1475C84.2097 23.067 84.6657 23.0267 85.1487 22.9999C85.6182 22.9731 86.0608 22.9731 86.4767 22.9731H87.0937V22.7048C87.0937 22.0877 86.8791 21.6316 86.4498 21.3231C86.0206 21.0146 85.4706 20.867 84.8133 20.867C84.2901 20.867 83.7938 20.9609 83.3377 21.1487C82.8816 21.3365 82.4792 21.578 82.1573 21.8999L80.8427 20.6122C81.3926 20.0488 82.0499 19.6597 82.7877 19.4049C83.5255 19.1634 84.2901 19.0427 85.0816 19.0427C85.7925 19.0427 86.3828 19.1232 86.8657 19.2707C87.3486 19.4317 87.751 19.6329 88.073 19.8744C88.3949 20.1158 88.6364 20.3975 88.8108 20.7195C88.9851 21.0414 89.1059 21.3634 89.1864 21.6853C89.2668 22.0072 89.3071 22.3292 89.3205 22.6377C89.3339 22.9462 89.3473 23.2145 89.3473 23.4426V29.0766H87.1071V27.7217H87.0267Z" fill="currentColor"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M96.0142 21.9804C95.5313 21.3097 94.8874 20.9744 94.0826 20.9744C93.7472 20.9744 93.4253 21.0548 93.1168 21.2158C92.7948 21.3768 92.6473 21.6451 92.6473 22.0073C92.6473 22.3024 92.7814 22.5304 93.0363 22.6646C93.2911 22.7987 93.6265 22.9194 94.0289 23.0133C94.4314 23.1072 94.8606 23.2011 95.3167 23.3084C95.7728 23.4158 96.202 23.5633 96.6045 23.7779C97.0069 23.9926 97.3289 24.2743 97.5971 24.6499C97.852 25.0121 97.9861 25.5218 97.9861 26.1657C97.9861 26.7559 97.8654 27.2388 97.6105 27.6413C97.3557 28.0437 97.0337 28.3656 96.6179 28.6071C96.2155 28.8486 95.7594 29.0229 95.2496 29.1437C94.7399 29.251 94.2301 29.3046 93.7338 29.3046C92.9692 29.3046 92.2582 29.1973 91.6143 28.9827C90.9705 28.7681 90.3937 28.3656 89.8839 27.8022L91.5339 26.273C91.8558 26.6218 92.1912 26.9169 92.5534 27.1449C92.9155 27.373 93.3582 27.4803 93.8814 27.4803C94.0558 27.4803 94.2436 27.4535 94.4314 27.4132C94.6192 27.373 94.807 27.3059 94.9679 27.212C95.1289 27.1181 95.263 26.9974 95.3704 26.8498C95.4777 26.7023 95.5179 26.5413 95.5179 26.3535C95.5179 26.0181 95.3838 25.7633 95.1289 25.6023C94.874 25.4413 94.5387 25.3072 94.1362 25.1999C93.7338 25.0925 93.3046 24.9986 92.8485 24.9182C92.3924 24.8243 91.9631 24.6901 91.5607 24.4889C91.1583 24.2877 90.8363 24.0194 90.568 23.6572C90.3132 23.3084 90.179 22.8121 90.179 22.1816C90.179 21.6317 90.2863 21.1622 90.5144 20.7597C90.7424 20.3573 91.0375 20.0354 91.4131 19.7671C91.7887 19.5122 92.2046 19.3244 92.6875 19.1903C93.1704 19.0695 93.6533 19.0024 94.1497 19.0024C94.807 19.0024 95.4643 19.1098 96.1081 19.3378C96.752 19.5659 97.2752 19.9415 97.6776 20.4914L96.0142 21.9804Z" fill="currentColor"/> </svg></div></div><div id="w-node-a9714556-e6cb-208d-7ddf-b7203f83930d-67fc7d59" class="customer-cell"><div class="logo-wrap w-embed"><svg width="114" height="32" viewBox="0 0 114 32" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M35.757 20.3058L35.7457 20.2695L42.868 13.6612V10.4771H31.4415V13.6612H38.2665L38.2778 13.6916L31.2251 20.3058V23.4899H42.9827V20.3058H35.757Z" fill="currentColor"/> <path d="M49.9954 10.1724C48.6774 10.1724 47.6032 10.3738 46.773 10.7768C45.9996 11.1279 45.3481 11.7065 44.9031 12.4374C44.4773 13.1732 44.2099 13.9919 44.1186 14.8398L47.5856 15.3336C47.7111 14.5849 47.9619 14.0543 48.3381 13.7416C48.7658 13.4145 49.2929 13.2493 49.828 13.2744C50.5318 13.2744 51.0422 13.4651 51.3593 13.8464C51.6737 14.2278 51.8335 14.7559 51.8335 15.4518V15.7989H48.4999C46.8031 15.7989 45.584 16.1802 44.8429 16.9429C44.1017 17.7055 43.7317 18.7122 43.7329 19.963C43.7329 21.2442 44.1029 22.1975 44.8429 22.8229C45.5828 23.4483 46.5134 23.759 47.6346 23.7552C49.0254 23.7552 50.0953 23.2703 50.8439 22.3005C51.2863 21.7044 51.602 21.0222 51.7714 20.2966H51.8973L52.3752 23.4806H55.5167V15.4175C55.5167 13.7511 55.0836 12.4603 54.217 11.5451C53.3504 10.6299 51.9431 10.1724 49.9954 10.1724ZM51.0942 20.1116C50.5956 20.533 49.9427 20.7427 49.1301 20.7427C48.4604 20.7427 47.9952 20.6239 47.7343 20.3862C47.6072 20.2737 47.5061 20.1343 47.4381 19.9778C47.3702 19.8212 47.337 19.6515 47.3411 19.4806C47.3337 19.3193 47.3587 19.1583 47.4146 19.0072C47.4706 18.8561 47.5563 18.7181 47.6665 18.6016C47.7858 18.4883 47.9265 18.4006 48.08 18.3439C48.2336 18.2872 48.3969 18.2627 48.5601 18.2717H51.8391V18.491C51.8457 18.801 51.7819 19.1083 51.653 19.3893C51.5237 19.6702 51.3326 19.9174 51.0942 20.1116Z" fill="currentColor"/> <path d="M74.5146 10.4771H70.8032V23.4918H74.5146V10.4771Z" fill="currentColor"/> <path d="M96.4293 10.4771C95.3805 10.4771 94.5543 10.852 93.9499 11.602C93.5161 12.1409 93.1861 12.9373 92.9603 13.991H92.851L92.3659 10.4771H89.1958V23.4899H92.9079V16.8166C92.9079 15.9752 93.1019 15.3301 93.491 14.8814C93.8796 14.4327 94.5972 14.2084 95.6426 14.2084H97.052V10.4771H96.4293Z" fill="currentColor"/> <path d="M85.5121 10.8994C84.6463 10.377 83.553 10.1164 82.2338 10.1177C80.1565 10.1177 78.5313 10.717 77.3577 11.9156C76.1835 13.1143 75.5964 14.7667 75.5964 16.8729C75.5668 18.1463 75.8412 19.4081 76.3965 20.5508C76.9044 21.5691 77.6955 22.4142 78.6723 22.9818C79.6552 23.5576 80.825 23.8461 82.1809 23.8474C83.3534 23.8474 84.333 23.6644 85.1191 23.2983C85.8589 22.9695 86.5023 22.4542 86.9896 21.8016C87.4529 21.1609 87.7969 20.4398 88.0049 19.6737L84.8074 18.7662C84.6725 19.2643 84.4132 19.7188 84.0547 20.0856C83.6935 20.4516 83.088 20.6347 82.2394 20.6347C81.2297 20.6347 80.4771 20.3417 79.982 19.7557C79.6224 19.3325 79.3966 18.7281 79.2968 17.9445H88.0539C88.0896 17.5784 88.1086 17.2714 88.1086 17.0235V16.2132C88.1298 15.1246 87.9079 14.0452 87.4596 13.0558C87.0398 12.1545 86.3613 11.4028 85.5121 10.8994ZM82.1262 13.2198C83.6316 13.2198 84.4846 13.9704 84.6864 15.4715H79.3625C79.4473 14.9706 79.6525 14.4985 79.9591 14.0968C80.4469 13.5109 81.1695 13.2185 82.1262 13.2198Z" fill="currentColor"/> <path d="M72.7002 5.22827C72.4209 5.21865 72.1427 5.26601 71.882 5.36755C71.6212 5.46908 71.3834 5.62272 71.1821 5.81932C70.9841 6.01782 70.8285 6.25591 70.7259 6.51849C70.6233 6.78106 70.5756 7.06239 70.5858 7.34464C70.576 7.62871 70.6236 7.91183 70.7266 8.17632C70.8292 8.44082 70.9847 8.68102 71.1831 8.88192C71.3814 9.08282 71.6185 9.24012 71.8796 9.34402C72.141 9.44792 72.4198 9.49618 72.7002 9.48578C72.979 9.49645 73.2566 9.44822 73.5153 9.34419C73.7746 9.24012 74.0093 9.08252 74.205 8.88139C74.3996 8.67819 74.5507 8.43731 74.651 8.17321C74.7508 7.90912 74.7971 7.62727 74.7865 7.34464C74.7993 7.06367 74.7547 6.78307 74.6544 6.52077C74.554 6.25846 74.4007 6.02022 74.205 5.82124C74.0087 5.62227 73.7735 5.46693 73.5148 5.36516C73.2566 5.26339 72.9795 5.21742 72.7024 5.23018L72.7002 5.22827Z" fill="currentColor"/> <path d="M65.0317 10.1177C63.7675 10.1177 62.7515 10.52 61.9842 11.3246C61.4159 11.9207 60.9989 12.8105 60.7331 13.9939H60.6147L60.1293 10.4799H56.9595V27.2278H60.671V20.3297H60.8065C60.9196 20.7896 61.0785 21.2367 61.2804 21.6643C61.5945 22.3607 62.1095 22.9444 62.7574 23.3383C63.429 23.7098 64.1858 23.8947 64.9508 23.8741C66.5048 23.8741 67.6878 23.2608 68.5005 22.0342C69.3132 20.8076 69.7197 19.096 69.7197 16.8996C69.7197 14.7782 69.3263 13.1175 68.5403 11.9175C67.7539 10.7176 66.5844 10.1177 65.0317 10.1177ZM65.408 19.5479C64.9751 20.1834 64.298 20.5012 63.3761 20.5012C62.9962 20.519 62.6173 20.4447 62.2713 20.2846C61.925 20.1244 61.6215 19.8831 61.386 19.5803C60.9055 18.9689 60.666 18.1319 60.6674 17.0693V16.8214C60.6674 15.7423 60.9068 14.916 61.386 14.3428C61.8648 13.7695 62.5285 13.4861 63.3761 13.4924C64.3144 13.4924 64.9958 13.7943 65.4211 14.3981C65.8463 15.0018 66.0588 15.8439 66.0588 16.9244C66.0614 18.0417 65.8457 18.9162 65.4116 19.5479H65.408Z" fill="currentColor"/> <path d="M29.7889 20.3052H16.9478V23.4931H29.7889V20.3052Z" fill="currentColor"/> </svg></div></div></div></div><div class="margin-top margin-medium"><div class="button-group is-center"><a href="/customers" class="button w-button">Read customer stories</a></div></div></div></div></div></section><section class="section-generic"><div class="padding-global"><div class="container-large"><div class="padding-section-small padding-top"><div class="margin-bottom margin-small"><div class="text-align-center"><div class="max-width-medium align-center"><div class="margin-bottom margin-small"><h1 blocks-non-deletable="true" class="heading-style-h2">Secure by default</h1></div><p class="description align-center">The security that your content needs</p></div></div></div><div class="gridline-wrap open"><div class="feature-frid _3-col alt fgh"><div class="grid-item inner left bottom-mobi"><div class="w-layout-vflex feature-item-center"><img class="soc-icon theme-asset" src="https://cdn.prod.website-files.com/plugins/Basic/assets/placeholder.60f9b1840c.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/enterprise/soc-light-update.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/enterprise/soc-dark-update.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/enterprise/soc-dark-update.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/enterprise/soc-light-update.svg" loading="lazy"/><div class="w-layout-vflex text-align-center align-center ft-ct"><div class="margin-bottom margin-xsmall"><h1 class="heading-style-h4">SOC 2</h1></div><div>SOC 2 Type I compliant</div></div></div></div><div id="w-node-_5b7a9c9f-cbd6-17f4-df69-726f46ddf511-67fc7d59" class="grid-item inner"><div class="w-layout-vflex feature-item-center"><div class="icon-flex w-embed"><svg width="101" height="101" viewBox="0 0 101 101" fill="none" xmlns="http://www.w3.org/2000/svg"> <circle cx="50.5" cy="50.4922" r="49.5" stroke="currentColor" stroke-opacity="0.15"/> <path d="M70.5 58.4922L66.5 54.4922H47.5644C46.0918 51.5288 43.0337 49.4922 39.5 49.4922C34.5294 49.4922 30.5 53.5216 30.5 58.4922C30.5 63.4626 34.5294 67.4922 39.5 67.4922C43.0337 67.4922 46.0917 65.4556 47.5644 62.4922H59.5L62 59.9068L64.5 62.4922H66.5L70.5 58.4922Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="square"/> <path d="M38.5 58.4922H40.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="square"/> <path d="M32.5 33.4922V43.4922" stroke="currentColor" stroke-width="1.5" stroke-linecap="square"/> <path d="M38.5 40.4922V36.4922C38.5 34.8353 39.8431 33.4922 41.5 33.4922C43.1569 33.4922 44.5 34.8353 44.5 36.4922V40.4922C44.5 42.149 43.1569 43.4922 41.5 43.4922C39.8431 43.4922 38.5 42.149 38.5 40.4922Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="square"/> <path d="M50.5 33.4922V43.4922" stroke="currentColor" stroke-width="1.5" stroke-linecap="square"/> <path d="M56.5 33.4922V43.4922" stroke="currentColor" stroke-width="1.5" stroke-linecap="square"/> <path d="M62.5 40.4922V36.4922C62.5 34.8353 63.8432 33.4922 65.5 33.4922C67.1568 33.4922 68.5 34.8353 68.5 36.4922V40.4922C68.5 42.149 67.1568 43.4922 65.5 43.4922C63.8432 43.4922 62.5 42.149 62.5 40.4922Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="square"/> </svg></div><div class="w-layout-vflex text-align-center align-center ft-ct"><div class="margin-bottom margin-xsmall"><h1 class="heading-style-h4">Data encryption</h1></div><div>Industry-standard encryption at rest and in transit</div></div></div></div></div></div><div class="margin-top margin-medium"><div class="button-group is-center"><a href="/security/responsible-disclosure" class="button w-button">Learn more</a></div></div></div></div></div></section><section class="section-generic"><div class="padding-global"><div class="container-large"><div class="padding-section-large padding-top"><div class="margin-bottom margin-medium"><div class="text-align-center"><div class="max-width-medium align-center"><div class="margin-bottom margin-small"><h1 blocks-non-deletable="true" class="heading-style-h2">Reliability meets scalability</h1></div><p class="description align-center">Built to service companies in scale</p></div></div></div><div class="gridline-wrap"><div class="feature-frid _3-col"><div class="grid-item inner top left tab"><div class="margin-bottom margin-xsmall"><div class="w-layout-hflex flex-center text-color-primary"><div class="icon-flex w-embed"><svg width="16" height="17" viewBox="0 0 16 17" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_6194_84365)"> <path d="M7.99978 1.03784C4.07889 1.03784 0.888672 4.22806 0.888672 8.14895C0.888672 12.0698 4.07889 15.2601 7.99978 15.2601C11.9207 15.2601 15.1109 12.0698 15.1109 8.14895C15.1109 4.22806 11.9207 1.03784 7.99978 1.03784ZM7.99978 9.70451C7.142 9.70451 6.44423 9.00673 6.44423 8.14895C6.44423 7.96673 6.48156 7.79429 6.53934 7.63162L4.09134 5.18362C3.83089 4.92317 3.83089 4.50095 4.09134 4.24051C4.35178 3.98006 4.774 3.98006 5.03445 4.24051L7.48245 6.68851C7.64512 6.63073 7.81756 6.5934 7.99978 6.5934C8.85756 6.5934 9.55534 7.29117 9.55534 8.14895C9.55534 9.00673 8.85756 9.70451 7.99978 9.70451Z" fill="currentColor"/> </g> <defs> <clipPath id="clip0_6194_84365"> <rect width="16" height="16" fill="white" transform="translate(0 0.148926)"/> </clipPath> </defs> </svg></div><p class="description _30ch text-weight-medium">Uptime SLA</p></div></div><p class="description">99.99% uptime SLA</p></div><div id="w-node-_7889c379-f34e-15d5-02a3-1f4202cedea6-67fc7d59" class="grid-item inner top left tab"><div class="margin-bottom margin-xsmall"><div class="w-layout-hflex flex-center text-color-primary"><div class="icon-flex w-embed"><svg width="17" height="17" viewBox="0 0 17 17" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5397_25911)"> <path fill-rule="evenodd" clip-rule="evenodd" d="M1.37598 6.16645C1.37598 4.77115 2.50707 3.63867 3.90375 3.63867H13.2371C14.6338 3.63867 15.7649 4.77115 15.7649 6.16645V8.14156C15.7649 8.55577 15.4291 8.89156 15.0149 8.89156C14.6007 8.89156 14.2649 8.55577 14.2649 8.14156V6.16645C14.2649 5.59909 13.8049 5.13867 13.2371 5.13867H3.90375C3.33599 5.13867 2.87598 5.59909 2.87598 6.16645V10.1664C2.87598 10.7338 3.33599 11.1942 3.90375 11.1942H7.73487C8.14908 11.1942 8.48487 11.53 8.48487 11.9442C8.48487 12.3584 8.14908 12.6942 7.73487 12.6942H3.90375C2.50707 12.6942 1.37598 11.5618 1.37598 10.1664V6.16645ZM5.3482 8.16645C5.3482 8.10509 5.39794 8.05534 5.45931 8.05534C5.52068 8.05534 5.57042 8.10509 5.57042 8.16645C5.57042 8.22781 5.52068 8.27756 5.45931 8.27756C5.39794 8.27756 5.3482 8.22781 5.3482 8.16645ZM5.45931 9.05534C5.95023 9.05534 6.3482 8.65737 6.3482 8.16645C6.3482 7.67553 5.95023 7.27756 5.45931 7.27756C4.96839 7.27756 4.57042 7.67553 4.57042 8.16645C4.57042 8.65737 4.96839 9.05534 5.45931 9.05534ZM8.45931 8.16645C8.45931 8.10508 8.50906 8.05534 8.57042 8.05534C8.63179 8.05534 8.68153 8.10508 8.68153 8.16645C8.68153 8.22781 8.63179 8.27756 8.57042 8.27756C8.50906 8.27756 8.45931 8.22781 8.45931 8.16645ZM8.57042 9.05534C9.06134 9.05534 9.45931 8.65737 9.45931 8.16645C9.45931 7.67553 9.06134 7.27756 8.57042 7.27756C8.0795 7.27756 7.68153 7.67553 7.68153 8.16645C7.68153 8.65737 8.0795 9.05534 8.57042 9.05534ZM12.793 8.74976C13.2072 8.74976 13.543 9.08554 13.543 9.49976V10.208C13.6326 10.2388 13.7196 10.275 13.8038 10.3161L14.305 9.81494C14.5979 9.52205 15.0728 9.52205 15.3657 9.81494C15.6586 10.1078 15.6586 10.5827 15.3657 10.8756L14.8647 11.3766C14.9061 11.4611 14.9425 11.5486 14.9735 11.6387H15.6815C16.0957 11.6387 16.4315 11.9745 16.4315 12.3887C16.4315 12.8029 16.0957 13.1387 15.6815 13.1387H14.9735C14.9426 13.2285 14.9063 13.3159 14.865 13.4003L15.3657 13.9011C15.6586 14.194 15.6586 14.6688 15.3657 14.9617C15.0728 15.2546 14.5979 15.2546 14.305 14.9617L13.8043 14.461C13.72 14.5023 13.6327 14.5385 13.543 14.5694V15.2776C13.543 15.6918 13.2072 16.0276 12.793 16.0276C12.3788 16.0276 12.043 15.6918 12.043 15.2776V14.5696C11.9532 14.5388 11.866 14.5025 11.7816 14.4613L11.2813 14.9616C10.9884 15.2545 10.5135 15.2545 10.2206 14.9616C9.92775 14.6687 9.92775 14.1938 10.2206 13.901L10.7206 13.401C10.6792 13.3163 10.6428 13.2288 10.6118 13.1387H9.90332C9.48911 13.1387 9.15332 12.8029 9.15332 12.3887C9.15332 11.9745 9.48911 11.6387 9.90332 11.6387H10.6118C10.6427 11.5488 10.679 11.4615 10.7203 11.377L10.2206 10.8773C9.92775 10.5844 9.92775 10.1096 10.2206 9.81667C10.5135 9.52378 10.9884 9.52378 11.2813 9.81667L11.781 10.3163C11.8655 10.275 11.953 10.2387 12.043 10.2077V9.49976C12.043 9.08554 12.3788 8.74976 12.793 8.74976ZM11.9871 12.3887C11.9871 11.9438 12.3477 11.5831 12.7926 11.5831C13.2375 11.5831 13.5982 11.9438 13.5982 12.3887C13.5982 12.8336 13.2375 13.1942 12.7926 13.1942C12.3477 13.1942 11.9871 12.8336 11.9871 12.3887Z" fill="currentColor"/> </g> <defs> <clipPath id="clip0_5397_25911"> <rect width="16" height="16" fill="white" transform="translate(0.570312 0.166504)"/> </clipPath> </defs> </svg></div><p class="description _30ch text-weight-medium">Single Sign On</p></div></div><p class="description">Compatible with popular SSO providers</p></div><div id="w-node-_7889c379-f34e-15d5-02a3-1f4202cedeae-67fc7d59" class="grid-item inner top tab"><div class="margin-bottom margin-xsmall"><div class="w-layout-hflex flex-center text-color-primary"><div class="icon-flex w-embed"><svg width="16" height="17" viewBox="0 0 16 17" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_6194_84393)"> <path d="M7.99978 7.26006C9.718 7.26006 11.1109 5.86717 11.1109 4.14895C11.1109 2.43073 9.718 1.03784 7.99978 1.03784C6.28156 1.03784 4.88867 2.43073 4.88867 4.14895C4.88867 5.86717 6.28156 7.26006 7.99978 7.26006Z" fill="currentColor"/> <path d="M7.55546 13.7045V12.3711C7.55546 11.3676 8.08613 10.4609 8.89502 9.9427C8.93146 9.34981 9.13324 8.80493 9.44079 8.3347C8.97324 8.2227 8.49324 8.14893 7.9999 8.14893C5.54302 8.14893 3.3119 9.60315 2.31546 11.8529C2.08702 12.3685 2.08968 12.9596 2.32257 13.4751C2.56079 14.0005 3.01324 14.4023 3.56613 14.5765C5.00435 15.0298 6.4959 15.26 7.99901 15.26C8.00524 15.26 8.01057 15.26 8.01679 15.26C7.7279 14.8103 7.55457 14.2787 7.55457 13.7054L7.55546 13.7045Z" fill="currentColor"/> <path d="M14.222 10.8378V10.1489C14.222 9.04581 13.3251 8.14893 12.222 8.14893C11.1189 8.14893 10.222 9.04581 10.222 10.1489V10.8378C9.47001 10.9471 8.88867 11.5889 8.88867 12.3711V13.7045C8.88867 14.5623 9.58645 15.26 10.4442 15.26H13.9998C14.8576 15.26 15.5553 14.5623 15.5553 13.7045V12.3711C15.5553 11.5898 14.974 10.9471 14.222 10.8378ZM12.222 9.48226C12.59 9.48226 12.8887 9.78093 12.8887 10.1489V10.8156H11.5553V10.1489C11.5553 9.78093 11.854 9.48226 12.222 9.48226Z" fill="currentColor"/> </g> <defs> <clipPath id="clip0_6194_84393"> <rect width="16" height="16" fill="white" transform="translate(0 0.148926)"/> </clipPath> </defs> </svg></div><p class="description _30ch text-weight-medium">Custom Visitor Auth</p></div></div><p class="description">Protect your content using your custom authentication</p></div><div id="w-node-_7889c379-f34e-15d5-02a3-1f4202cedeb6-67fc7d59" class="grid-item inner left tab bottom"><div class="margin-bottom margin-xsmall"><div class="w-layout-hflex flex-center text-color-primary"><div class="icon-flex w-embed"><svg width="17" height="17" viewBox="0 0 17 17" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_6194_84417)"> <path d="M12.4451 7.48234C12.4451 7.11434 12.1464 6.81567 11.7784 6.81567H6.00065C5.63265 6.81567 5.33398 7.11434 5.33398 7.48234C5.33398 7.85034 5.63265 8.14901 6.00065 8.14901H11.7784C12.1464 8.14901 12.4451 7.85034 12.4451 7.48234Z" fill="currentColor"/> <path d="M6.00065 5.48226H10.0007C10.3687 5.48226 10.6673 5.18359 10.6673 4.81559C10.6673 4.44759 10.3687 4.14893 10.0007 4.14893H6.00065C5.63265 4.14893 5.33398 4.44759 5.33398 4.81559C5.33398 5.18359 5.63265 5.48226 6.00065 5.48226Z" fill="currentColor"/> <path d="M6.00065 9.48218C5.63265 9.48218 5.33398 9.78084 5.33398 10.1488C5.33398 10.5168 5.63265 10.8155 6.00065 10.8155H8.22376C8.59176 10.8155 8.89043 10.5168 8.89043 10.1488C8.89043 9.78084 8.59176 9.48218 8.22376 9.48218H6.00065Z" fill="currentColor"/> <path d="M16.2888 11.0227L11.0088 9.0938C10.6711 8.97024 10.3031 9.05202 10.0479 9.30624C9.79372 9.56047 9.71194 9.92936 9.8355 10.268L11.7644 15.548C11.8959 15.9098 12.2408 16.1489 12.6239 16.1489H12.6426C13.0337 16.1409 13.3768 15.8858 13.4959 15.5125L14.1644 13.4227L16.2551 12.7542C16.6275 12.6351 16.8826 12.292 16.8906 11.9009C16.8977 11.5098 16.6568 11.1569 16.2897 11.0227H16.2888Z" fill="currentColor"/> <path d="M9.27193 12.5934H5.11192C4.49948 12.5934 4.00081 12.0947 4.00081 11.4823V3.48229C4.00081 2.86984 4.49948 2.37118 5.11192 2.37118H12.6675C13.2799 2.37118 13.7786 2.86984 13.7786 3.48229V8.69384C13.7786 9.06184 14.0773 9.36051 14.4453 9.36051C14.8133 9.36051 15.1119 9.06184 15.1119 8.69384V3.48229C15.1119 2.13384 14.0159 1.03784 12.6675 1.03784H5.11192C3.76348 1.03784 2.66748 2.13384 2.66748 3.48229V11.4823C2.66748 12.8307 3.76348 13.9267 5.11192 13.9267H9.27193C9.63993 13.9267 9.93859 13.6281 9.93859 13.2601C9.93859 12.8921 9.63993 12.5934 9.27193 12.5934Z" fill="currentColor"/> </g> <defs> <clipPath id="clip0_6194_84417"> <rect width="16" height="16" fill="white" transform="translate(0.889648 0.148926)"/> </clipPath> </defs> </svg></div><p class="description _30ch text-weight-medium">Deployment Logs</p></div></div><p class="description">Keep track of all changes made to the content</p></div><div id="w-node-af18e80a-87c1-aa43-3b0c-5a98218c2a73-67fc7d59" class="grid-item inner left tab-mobi"><div class="margin-bottom margin-xsmall"><div class="w-layout-hflex flex-center text-color-primary"><div class="icon-flex w-embed"><svg width="16" height="17" viewBox="0 0 16 17" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_6194_84405)"> <path d="M14.4231 5.7741C14.2639 5.44166 13.8711 5.29943 13.5342 5.45855C13.2017 5.61677 13.0604 6.0141 13.2186 6.34655C14.5866 9.22388 13.3582 12.6781 10.4808 14.0461C9.08884 14.7083 7.51995 14.7892 6.06484 14.2719C4.61061 13.7545 3.44528 12.7021 2.78306 11.3092C1.41506 8.43188 2.6435 4.97766 5.52084 3.60966C7.26128 2.78121 9.25061 2.87455 10.8853 3.81943L9.6195 4.21943C9.26839 4.33054 9.07461 4.70477 9.18572 5.05588C9.2755 5.34032 9.53772 5.52166 9.82128 5.52166C9.88795 5.52166 9.9555 5.51188 10.0231 5.49054L12.5413 4.6941C12.8924 4.58299 13.0862 4.20877 12.9751 3.85766L12.1786 1.33855C12.0684 0.988323 11.6951 0.793656 11.3431 0.903879C10.9911 1.01499 10.7973 1.38921 10.9084 1.74032L11.1359 2.46032C9.20795 1.50566 6.94839 1.4541 4.94839 2.40521C1.40617 4.08877 -0.105831 8.33943 1.57684 11.8808C2.39284 13.5963 3.82661 14.8914 5.61684 15.5279C6.3955 15.8052 7.20084 15.943 8.00439 15.943C9.04706 15.943 10.0844 15.711 11.0533 15.2505C14.5937 13.567 16.1066 9.31543 14.4231 5.7741Z" fill="currentColor"/> <path d="M5.39886 8.72356C4.64241 9.032 3.60863 9.45422 3.51441 10.7804C3.50108 10.9653 3.56597 11.1467 3.6913 11.2818C3.81663 11.4169 3.99441 11.4942 4.1793 11.4942H7.1233C7.4913 11.4942 7.78997 11.1956 7.78997 10.8276C7.78997 10.4596 7.4913 10.1609 7.1233 10.1609H5.44063C5.56774 10.0987 5.71886 10.032 5.90286 9.95733C7.20686 9.42578 7.84152 8.704 7.78819 7.81333C7.72952 6.84267 6.90108 6.17867 5.72952 6.16089C5.7153 6.16089 5.70197 6.16089 5.68774 6.16089C4.65486 6.16089 3.79352 6.76533 3.53841 7.67378C3.43886 8.02844 3.64508 8.39644 3.99974 8.496C4.35974 8.59733 4.72241 8.38756 4.82197 8.03467C4.93663 7.62756 5.37308 7.488 5.70997 7.49511C5.83086 7.49689 6.4353 7.52444 6.45752 7.89422C6.47263 8.13778 6.07708 8.448 5.40063 8.72444L5.39886 8.72356Z" fill="currentColor"/> <path d="M11.3331 11.494C11.7011 11.494 11.9998 11.1953 11.9998 10.8273V10.6051H12.094C12.462 10.6051 12.7606 10.3064 12.7606 9.93842C12.7606 9.57042 12.462 9.27176 12.094 9.27176H11.9998V6.82731C11.9998 6.54909 11.8273 6.3002 11.566 6.20242C11.3073 6.10465 11.0122 6.1802 10.8291 6.39087L8.39265 9.20598C8.28865 9.32687 8.22998 9.48242 8.22998 9.64242V9.93842C8.22998 10.3064 8.52865 10.6051 8.89665 10.6051H10.6664V10.8273C10.6664 11.1953 10.9651 11.494 11.3331 11.494ZM10.0984 9.27176L10.6664 8.61576V9.27176H10.0984Z" fill="currentColor"/> </g> <defs> <clipPath id="clip0_6194_84405"> <rect width="16" height="16" fill="white" transform="translate(0 0.827393)"/> </clipPath> </defs> </svg></div><p class="description _30ch text-weight-medium">Premium Support</p></div></div><p class="description">24/7 support to help keep your content running</p></div><div id="w-node-_4f1587e5-1749-d67e-79da-b3344a50e370-67fc7d59" class="grid-item inner top-mobile"><div class="margin-bottom margin-xsmall"><div class="w-layout-hflex flex-center text-color-primary"><div class="icon-flex w-embed"><svg width="17" height="17" viewBox="0 0 17 17" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_6194_84431)"> <path d="M9.19726 14.3803L8.8897 14.3829C5.7137 14.3829 4.00081 13.4371 4.00081 13.0496V10.5349C5.19992 11.1669 7.04881 11.494 8.8897 11.494C11.9821 11.494 15.1119 10.5785 15.1119 8.82737V4.60514C15.1119 2.85403 11.9821 1.93848 8.8897 1.93848C5.79726 1.93848 2.66748 2.85403 2.66748 4.60514V13.0496C2.66748 14.8007 5.79726 15.7163 8.8897 15.7163L9.21859 15.7136C9.58748 15.7074 9.88081 15.4043 9.87459 15.0363C9.86837 14.6683 9.57059 14.4043 9.19726 14.3803ZM8.8897 10.1607C5.7137 10.1607 4.00081 9.21492 4.00081 8.82737V6.3127C5.19992 6.9447 7.04881 7.27181 8.8897 7.27181C10.7306 7.27181 12.5795 6.9447 13.7786 6.3127V8.82737C13.7786 9.21492 12.0657 10.1607 8.8897 10.1607Z" fill="currentColor"/> <path d="M15.2463 11.3145L12.672 14.7243L11.7831 13.8959C11.5138 13.6452 11.0934 13.6594 10.8409 13.9288C10.5894 14.1981 10.6045 14.6194 10.8738 14.871L12.304 16.2043C12.4276 16.3199 12.5903 16.3839 12.7583 16.3839C12.7769 16.3839 12.7965 16.3839 12.816 16.3812C13.0045 16.3643 13.1769 16.2701 13.2907 16.119L16.3103 12.119C16.5325 11.8248 16.4738 11.407 16.1805 11.1848C15.8863 10.9634 15.4685 11.0221 15.2463 11.3145Z" fill="currentColor"/> </g> <defs> <clipPath id="clip0_6194_84431"> <rect width="16" height="16" fill="white" transform="translate(0.889648 0.827393)"/> </clipPath> </defs> </svg></div><p class="description _30ch text-weight-medium">Automated Backups</p></div></div><p class="description">Content is backed up on a daily basis and are persisted for one week</p></div></div></div></div></div></div></section><section class="cta gradient1"><div class="padding-global"><div class="container-large"><div class="padding-section-small padding-top"><div class="margin-bottom margin-xxlarge"><div class="text-align-center"><div class="max-width-medium align-center"><h1 blocks-non-deletable="true" class="heading-style-h2">The documentation you want, available today</h1></div><div class="margin-top margin-large"><div class="button-group is-center"><a href="https://dashboard.mintlify.com/signup" class="button w-button">Get started</a><a data-cal-namespace="demo-with-mintlify" data-cal-link="team/mintlify/demo-with-mintlify" href="#" class="button is-secondary w-button">Get a demo</a></div></div></div></div></div><img data-light-src="https://mintlify-assets.b-cdn.net/website/home/cta/footer%20CTA%20-%20updated%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/home/cta/Footer%20CTA%20Updated%201%20-%20dark.svg" alt="" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f29d9b066343224a22e4b1_footer%20CTA%20-%20updated%201.svg" loading="lazy" class="cta-illust theme-asset hide-mobile-portrait"/><img data-light-src="https://mintlify-assets.b-cdn.net/website/home/cta/cta-mobile.png" data-dark-src="https://mintlify-assets.b-cdn.net/website/home/cta/cta-mobile-dark.png" alt="" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66ed32d350cf8baabd44e39f_mobile%20illust.svg" loading="lazy" class="cta-illust theme-asset mobile-only"/></div></div></section></main><footer class="footer"><div class="padding-global"><div class="container-large lines"><div class="padding-section-medium"><div class="padding-bottom padding-section-medium"><div class="w-layout-grid footer_top-wrapper"><div id="w-node-_6bc48d27-6e7a-f1ea-4cd0-92863cb3a442-3cb3a43c" class="footer_left-wrapper"><a href="#" aria-label="Footer link" class="footer_logo-link w-nav-brand"><div class="brand-logo w-embed"><svg width="110" height="24" viewBox="0 0 110 24" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M31.3809 3.06182H36.2383L40.3588 13.1095H40.549L44.6695 3.06182H49.5269V19.2902H45.7075V9.32179H45.5728L41.6742 19.1872H39.2336L35.335 9.26635H35.2003V19.2902H31.3809V3.06182ZM51.0807 19.2902V7.1189H54.9559V19.2902H51.0807ZM53.0221 5.70052C52.4781 5.70052 52.0105 5.52091 51.6198 5.16171C51.229 4.79718 51.0331 4.35872 51.0331 3.8463C51.0331 3.33916 51.229 2.90598 51.6198 2.54676C52.0105 2.18225 52.4781 2 53.0221 2C53.5715 2 54.0391 2.18225 54.4249 2.54676C54.8156 2.90598 55.011 3.33916 55.011 3.8463C55.011 4.35872 54.8156 4.79718 54.4249 5.16171C54.0391 5.52091 53.5715 5.70052 53.0221 5.70052ZM60.4045 12.3488V19.2902H56.5293V7.1189H60.2141V9.35348H60.349C60.6183 8.60863 61.0779 8.0249 61.7275 7.60227C62.3776 7.17438 63.1512 6.96042 64.0492 6.96042C64.905 6.96042 65.6474 7.15326 66.2761 7.5389C66.9098 7.91923 67.4012 8.45278 67.7498 9.13956C68.1039 9.82103 68.2784 10.6187 68.273 11.5326V19.2902H64.3983V12.2933C64.4032 11.6171 64.2317 11.0889 63.8831 10.7085C63.5394 10.3282 63.0614 10.138 62.4485 10.138C62.0419 10.138 61.6829 10.2278 61.371 10.4074C61.0645 10.5817 60.827 10.8326 60.6579 11.1602C60.4943 11.4877 60.4095 11.8839 60.4045 12.3488ZM76.6497 7.1189V9.97158H68.9712V7.1189H76.6497ZM70.5798 4.20288H74.4545V15.4629C74.4545 15.7006 74.4917 15.8935 74.5655 16.0414C74.6449 16.184 74.7584 16.287 74.9062 16.3504C75.054 16.4085 75.231 16.4376 75.4373 16.4376C75.585 16.4376 75.7407 16.4244 75.9044 16.398C76.0735 16.3662 76.2004 16.3399 76.2852 16.3187L76.8713 19.1159C76.6864 19.1687 76.425 19.2347 76.0869 19.314C75.7541 19.3932 75.3554 19.4434 74.8903 19.4646C73.9819 19.5068 73.2024 19.4011 72.5528 19.1476C71.9082 18.8887 71.4143 18.4873 71.0712 17.9431C70.733 17.399 70.5693 16.7149 70.5798 15.8908V4.20288ZM81.8702 3.06182V19.2902H77.9954V3.06182H81.8702ZM83.444 19.2902V7.1189H87.3188V19.2902H83.444ZM85.3854 5.70052C84.8414 5.70052 84.3738 5.52091 83.9831 5.16171C83.5918 4.79718 83.3964 4.35872 83.3964 3.8463C83.3964 3.33916 83.5918 2.90598 83.9831 2.54676C84.3738 2.18225 84.8414 2 85.3854 2C85.9348 2 86.4024 2.18225 86.7882 2.54676C87.1789 2.90598 87.3743 3.33916 87.3743 3.8463C87.3743 4.35872 87.1789 4.79718 86.7882 5.16171C86.4024 5.52091 85.9348 5.70052 85.3854 5.70052ZM95.8105 7.1189V9.97158H87.9812V7.1189H95.8105ZM89.6136 19.2902V6.50085C89.6136 5.56053 89.7907 4.78133 90.1447 4.16326C90.4988 3.5399 90.9902 3.07503 91.6184 2.76863C92.2472 2.45695 92.9736 2.30111 93.7978 2.30111C94.3368 2.30111 94.8436 2.34337 95.3191 2.4279C95.8001 2.50714 96.1566 2.57845 96.3887 2.64185L95.7708 5.47867C95.628 5.43111 95.454 5.39149 95.2477 5.35981C95.0469 5.32807 94.8569 5.31225 94.6774 5.31225C94.2227 5.31225 93.9113 5.41262 93.7422 5.61334C93.5731 5.81412 93.4888 6.08878 93.4888 6.43748V19.2902H89.6136ZM99.1511 23.8544C98.6865 23.8544 98.2477 23.8175 97.8356 23.7435C97.4241 23.6748 97.07 23.5824 96.774 23.4662L97.6298 20.6532C98.0102 20.78 98.3538 20.8539 98.6597 20.875C98.9716 20.8961 99.2384 20.846 99.4601 20.7245C99.6877 20.6082 99.8617 20.3996 99.9832 20.0985L100.134 19.734L95.8075 7.1189H99.8642L102.107 15.8037H102.233L104.508 7.1189H108.589L104.001 20.4551C103.779 21.1207 103.465 21.707 103.058 22.2142C102.656 22.7266 102.136 23.1281 101.497 23.4186C100.863 23.7092 100.081 23.8544 99.1511 23.8544Z" fill="currentcolor"/> <mask id="mask0_4238_40" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="1" y="0" width="24" height="24"> <path d="M24.6348 0H1V23.6348H24.6348V0Z" fill="white"/> </mask> <g mask="url(#mask0_4238_40)"> <path d="M7.22763 8.62342C7.24415 6.37269 8.13673 4.21692 9.71609 2.61328H9.71318L3.61572 8.71074H3.61863C3.59593 8.7286 3.57453 8.74804 3.55459 8.76894C2.0717 10.2499 1.17264 12.216 1.02241 14.3063C0.872184 16.3967 1.48087 18.4711 2.73675 20.149L8.89533 13.9903L8.95936 13.9292C7.81152 12.4007 7.20254 10.5348 7.22763 8.62342Z" fill="#0C8C5E"/> <path d="M22.0327 14.9336C20.8657 16.0773 19.4008 16.8701 17.805 17.2216C16.2093 17.573 14.5469 17.469 13.0074 16.9215C12.1865 16.63 11.415 16.2149 10.7197 15.6904L10.6556 15.7544L4.49707 21.91C6.17554 23.1628 8.24884 23.7695 10.3379 23.6194C12.427 23.4692 14.3921 22.5721 15.8741 21.0921L15.9353 21.031L22.0327 14.9336Z" fill="#0C8C5E"/> <path d="M24.6467 8.71108V4.35893e-06H15.9356C14.7916 -0.00114182 13.6586 0.223763 12.6016 0.661799C11.5448 1.09984 10.5848 1.74238 9.77701 2.5525L9.71589 2.61362C8.6511 3.6946 7.88927 5.03658 7.50684 6.50493C8.19913 6.32565 8.91058 6.23087 9.62567 6.22262C11.5371 6.20012 13.4024 6.80995 14.9315 7.95726C16.3057 8.98207 17.3457 10.3908 17.9206 12.0058C18.5064 13.6564 18.5834 15.4449 18.1417 17.1398C19.6104 16.7581 20.9525 15.9961 22.033 14.9308L22.0942 14.8726C22.9046 14.0644 23.5474 13.104 23.9854 12.0466C24.4234 10.9892 24.6482 9.85563 24.6467 8.71108Z" fill="#18E299"/> </g> </svg></div></a><div class="w-layout-grid footer_social-list"><a aria-label="social twitter" href="https://x.com/mintlify" target="_blank" class="footer_social-link w-inline-block"><div class="icon-embed-xsmall w-embed"><svg width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_4281_704)"> <path d="M12.0125 8.75562L17.9319 1.875H16.5294L11.3894 7.84938L7.28436 1.875H2.54999L8.75749 10.9094L2.54999 18.125H3.95249L9.37999 11.8156L13.715 18.125H18.45L12.0125 8.75562ZM10.0912 10.9888L9.46249 10.0894L4.45811 2.93125H6.61249L10.6512 8.70812L11.28 9.6075L16.53 17.1169H14.3756L10.0919 10.9894L10.0912 10.9888Z" fill="currentcolor" fill-opacity="1"/> </g> <defs> <clipPath id="clip0_4281_704"> <rect width="20" height="20" fill="white" transform="translate(0.5)"/> </clipPath> </defs> </svg></div></a><a aria-label="social twitter" id="w-node-_2a678e1a-5e6c-fcb8-46d2-53b52fe4bc65-3cb3a43c" href="https://www.linkedin.com/company/mintlify/" target="_blank" class="footer_social-link w-inline-block"><div class="icon-embed-xsmall w-embed"><svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M10.854 11.5719V18.8895H7.46094V6.24477H10.6617L10.7183 9.40031H10.5147C10.8465 8.34469 11.3479 7.53036 12.0189 6.95731C12.6976 6.37672 13.5722 6.08643 14.6429 6.08643C15.5176 6.08643 16.2791 6.2787 16.9276 6.66324C17.5835 7.04025 18.0887 7.58691 18.4431 8.30322C18.805 9.01199 18.986 9.86026 18.986 10.848V18.8895H15.593V11.4361C15.593 10.652 15.3894 10.0374 14.9822 9.59258C14.5826 9.14771 14.0246 8.92528 13.3083 8.92528C12.8333 8.92528 12.4073 9.03084 12.0303 9.24197C11.6608 9.44555 11.3705 9.74338 11.1594 10.1355C10.9558 10.5276 10.854 11.0064 10.854 11.5719Z" fill="currentColor"/> <path d="M1.1725 18.89V6.24517H4.56556V18.89H1.1725ZM2.86903 4.59389C2.3563 4.59389 1.91897 4.42423 1.55705 4.08493C1.19512 3.74562 1.01416 3.33469 1.01416 2.85212C1.01416 2.36955 1.19512 1.95862 1.55705 1.61931C1.91897 1.28 2.3563 1.11035 2.86903 1.11035C3.38176 1.11035 3.81908 1.28 4.18101 1.61931C4.55048 1.95107 4.73521 2.36201 4.73521 2.85212C4.73521 3.33469 4.55048 3.74562 4.18101 4.08493C3.81908 4.42423 3.38176 4.59389 2.86903 4.59389Z" fill="currentColor"/> </svg></div></a><a aria-label="social github" href="https://github.com/mintlify" target="_blank" class="footer_social-link w-inline-block"><div class="icon-embed-xsmall w-embed"><svg width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_4281_683)"> <path d="M10.5 1.46547C15.3344 1.46547 19.25 5.38109 19.25 10.2155C19.2488 13.9748 16.8506 17.3148 13.2894 18.5167C12.8519 18.6042 12.6875 18.3305 12.6875 18.1011C12.6875 17.8055 12.6988 16.8648 12.6988 15.6948C12.6988 14.8748 12.4256 14.3498 12.1081 14.0761C14.055 13.8573 16.1006 13.1136 16.1006 9.75609C16.1006 8.79359 15.7613 8.01672 15.2038 7.40484C15.2913 7.18609 15.5975 6.28922 15.1163 5.08609C15.1163 5.08609 14.3831 4.84547 12.71 5.98297C12.01 5.78609 11.2663 5.68797 10.5225 5.68797C9.77875 5.68797 9.035 5.78609 8.335 5.98297C6.66188 4.85672 5.92875 5.08609 5.92875 5.08609C5.4475 6.28922 5.75375 7.18609 5.84125 7.40484C5.28375 8.01734 4.94438 8.80484 4.94438 9.75609C4.94438 13.103 6.97875 13.858 8.92563 14.0767C8.67375 14.2955 8.44438 14.6786 8.3675 15.2467C7.86438 15.4767 6.60625 15.8486 5.81938 14.5248C5.655 14.2623 5.16313 13.6173 4.47438 13.628C3.74125 13.6392 4.17938 14.0436 4.485 14.2073C4.85688 14.4148 5.28313 15.1917 5.38188 15.4436C5.55688 15.9355 6.12563 16.8767 8.32375 16.4717C8.32375 17.2048 8.335 17.8936 8.335 18.1011C8.335 18.3311 8.17063 18.593 7.73313 18.5167C4.15875 17.3267 1.74813 13.9823 1.75 10.2148C1.75 5.38047 5.66563 1.46547 10.5 1.46547Z" fill="currentcolor" fill-opacity="1"/> </g> <defs> <clipPath id="clip0_4281_683"> <rect width="20" height="20" fill="white" transform="translate(0.5)"/> </clipPath> </defs> </svg></div></a><a aria-label="social slack community" href="https://mintlify.com/community" target="_blank" class="footer_social-link w-inline-block"><div class="icon-embed-xsmall w-embed"><svg width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_4281_723)"> <path d="M5.78948 12.1385C5.78948 13.0779 5.02198 13.8454 4.08261 13.8454C3.14323 13.8454 2.37573 13.0779 2.37573 12.1385C2.37573 11.1991 3.14323 10.4316 4.08261 10.4316H5.78948V12.1385Z" fill="currentcolor" fill-opacity="1"/> <path d="M6.64954 12.1385C6.64954 11.1991 7.41704 10.4316 8.35641 10.4316C9.29579 10.4316 10.0633 11.1991 10.0633 12.1385V16.4129C10.0633 17.3523 9.29579 18.1198 8.35641 18.1198C7.41704 18.1198 6.64954 17.3523 6.64954 16.4129V12.1385Z" fill="currentcolor" fill-opacity="1"/> <path d="M8.35641 5.2868C7.41704 5.2868 6.64954 4.5193 6.64954 3.57992C6.64954 2.64055 7.41704 1.87305 8.35641 1.87305C9.29579 1.87305 10.0633 2.64055 10.0633 3.57992V5.2868H8.35641Z" fill="currentcolor" fill-opacity="1"/> <path d="M8.35637 6.14453C9.29575 6.14453 10.0632 6.91203 10.0632 7.85141C10.0632 8.79078 9.29575 9.55828 8.35637 9.55828H4.082C3.14262 9.55828 2.37512 8.79078 2.37512 7.85141C2.37512 6.91203 3.14262 6.14453 4.082 6.14453H8.35637Z" fill="currentcolor" fill-opacity="1"/> <path d="M15.2107 7.85141C15.2107 6.91203 15.9782 6.14453 16.9176 6.14453C17.8569 6.14453 18.6244 6.91203 18.6244 7.85141C18.6244 8.79078 17.8569 9.55828 16.9176 9.55828H15.2107V7.85141Z" fill="currentcolor" fill-opacity="1"/> <path d="M14.3508 7.85234C14.3508 8.79172 13.5833 9.55922 12.6439 9.55922C11.7045 9.55922 10.937 8.79172 10.937 7.85234V3.57797C10.937 2.63859 11.7045 1.87109 12.6439 1.87109C13.5833 1.87109 14.3508 2.63859 14.3508 3.57797V7.85234Z" fill="currentcolor" fill-opacity="1"/> <path d="M12.6439 14.707C13.5833 14.707 14.3508 15.4745 14.3508 16.4139C14.3508 17.3533 13.5833 18.1208 12.6439 18.1208C11.7045 18.1208 10.937 17.3533 10.937 16.4139V14.707H12.6439Z" fill="currentcolor" fill-opacity="1"/> <path d="M12.6439 13.8454C11.7045 13.8454 10.937 13.0779 10.937 12.1385C10.937 11.1991 11.7045 10.4316 12.6439 10.4316H16.9183C17.8576 10.4316 18.6251 11.1991 18.6251 12.1385C18.6251 13.0779 17.8576 13.8454 16.9183 13.8454H12.6439Z" fill="currentcolor" fill-opacity="1"/> </g> <defs> <clipPath id="clip0_4281_723"> <rect width="20" height="20" fill="white" transform="translate(0.5)"/> </clipPath> </defs> </svg></div></a></div></div><div class="w-layout-grid footer_menu-wrapper"><div id="w-node-_6bc48d27-6e7a-f1ea-4cd0-92863cb3a45c-3cb3a43c" class="footer_link-list"><p class="footer_menu-header">Documentation</p><a href="https://mintlify.com/docs/" class="footer_link">Getting Started</a><a href="https://mintlify.com/docs/content/components" class="footer_link">Components</a><a href="https://mintlify.com/docs/api-playground/" class="footer_link">API playground</a><a href="/pricing" class="footer_link">Pricing</a><link rel="prefetch" href="/pricing"/></div><div id="w-node-_6bc48d27-6e7a-f1ea-4cd0-92863cb3a465-3cb3a43c" class="footer_link-list"><p class="footer_menu-header">Resources</p><a href="/customers" class="footer_link">Customers</a><link rel="prefetch" href="/customers"/><a href="/enterprise" aria-current="page" class="footer_link w--current">Enterprise</a><link rel="prefetch" href="/enterprise"/><a href="/preview" class="footer_link">Request Preview</a><link rel="prefetch" href="/preview"/><a href="https://mintlify.com/docs/integrations/analytics/overview" class="footer_link">Integrations</a><a href="https://github.com/mintlify/themes" target="_blank" class="footer_link">Templates</a><a href="/love" class="footer_link">Wall of Love</a><link rel="prefetch" href="/love"/></div><div id="w-node-_6bc48d27-6e7a-f1ea-4cd0-92863cb3a470-3cb3a43c" class="footer_link-list"><p class="footer_menu-header">Company</p><a href="/careers" class="footer_link">Careers</a><a href="/blog" class="footer_link">Blog</a><link rel="prefetch" href="/blog"/><a href="https://feedback.mintlify.com/roadmap" class="footer_link">Public Roadmap</a><a href="https://mintlify.com/security/responsible-disclosure" class="footer_link">Security</a></div><div id="w-node-bb4edd60-b98b-a009-1d55-2aebeaf325d3-3cb3a43c" class="footer_link-list"><p class="footer_menu-header">Legal</p><a href="https://mintlify.com/legal/privacy" class="footer_link">Privacy Policy</a><a href="https://mintlify.com/legal/terms" class="footer_link">Terms of Service</a></div></div></div></div><div class="padding-section-small padding-0"><div class="footer-bottom"><a id="w-node-_6bc48d27-6e7a-f1ea-4cd0-92863cb3a47e-3cb3a43c" href="https://status.mintlify.com/" target="_blank" class="status w-inline-block"><div class="status-color"></div><div class="status-text">Status-text</div></a><div id="w-node-_6bc48d27-6e7a-f1ea-4cd0-92863cb3a482-3cb3a43c" class="footer_credit-text">漏 <span class="current-year">currentYear</span> Mintlify, Inc.</div><div id="w-node-_6bc48d27-6e7a-f1ea-4cd0-92863cb3a487-3cb3a43c" class="theme-switch-wrap"><a aria-label="theme light switch" tr-color-light="" id="w-node-_6bc48d27-6e7a-f1ea-4cd0-92863cb3a48a-3cb3a43c" href="#" class="theme-toggle w-inline-block"><div class="icon-flex w-embed"><svg width="14" height="15" viewBox="0 0 14 15" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_4326_1878)"> <path d="M7 1.4375V2.60417" stroke="currentcolor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> <path d="M11.5376 3.31641L10.7124 4.14163" stroke="currentcolor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> <path d="M13.4167 7.85352H12.25" stroke="currentcolor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> <path d="M11.5376 12.3916L10.7124 11.5664" stroke="currentcolor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> <path d="M7 14.2702V13.1035" stroke="currentcolor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> <path d="M2.46252 12.3916L3.28775 11.5664" stroke="currentcolor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> <path d="M0.583374 7.85352H1.75004" stroke="currentcolor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> <path d="M2.46252 3.31641L3.28775 4.14163" stroke="currentcolor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> <path d="M7.00001 11.1599C8.82562 11.1599 10.3056 9.67999 10.3056 7.85438C10.3056 6.02878 8.82562 4.54883 7.00001 4.54883C5.17441 4.54883 3.69446 6.02878 3.69446 7.85438C3.69446 9.67999 5.17441 11.1599 7.00001 11.1599Z" stroke="currentcolor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_4326_1878"> <rect width="14" height="14" fill="white" transform="translate(0 0.853516)"/> </clipPath> </defs> </svg></div></a><a aria-label="theme dark switch" tr-color-dark="" id="w-node-_6bc48d27-6e7a-f1ea-4cd0-92863cb3a48c-3cb3a43c" href="#" class="theme-toggle w-inline-block"><div class="icon-flex w-embed"><svg width="14" height="15" viewBox="0 0 14 15" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_4326_1858)"> <path d="M10.1111 9.99267C7.42621 9.99267 5.24999 7.81645 5.24999 5.13156C5.24999 4.08001 5.58676 3.11012 6.15376 2.31445C3.53732 2.8029 1.55554 5.09501 1.55554 7.85379C1.55554 10.968 4.08021 13.4927 7.19443 13.4927C9.8171 13.4927 12.0151 11.6991 12.6459 9.27401C11.907 9.72745 11.0413 9.99267 10.1111 9.99267Z" stroke="currentcolor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_4326_1858"> <rect width="14" height="14" fill="white" transform="translate(0 0.853516)"/> </clipPath> </defs> </svg></div></a></div><div id="w-node-_43bf6cdd-526c-279b-9ac7-86fd5c62ee35-3cb3a43c" class="footer-status w-embed w-script"><script> // Function to fetch and update the status function updateStatus() { fetch('https://status.mintlify.com/proxy/status.mintlify.com/incidents') .then(response => response.json()) .then(data => { const status = data.incidents[0]?.status; let statusText, statusColor; switch (status) { case 'resolved': statusText = 'All systems normal'; statusColor = '#00C853'; break; case 'partial_outage': statusText = 'Partial outage'; statusColor = '#FFD600'; break; case 'full_outage': statusText = 'Full outage'; statusColor = '#D50000'; break; default: statusText = 'Status unavailable'; statusColor = '#9E9E9E'; } // Update the status text const statusTextElement = document.querySelector('.status-text'); if (statusTextElement) { statusTextElement.textContent = statusText; } // Update the status color const statusColorElement = document.querySelector('.status-color'); if (statusColorElement) { statusColorElement.style.backgroundColor = statusColor; statusColorElement.style.outlineColor = `${statusColor}26`; // 26 is 15% opacity in hex } }) .catch(error => { console.error('Error fetching status:', error); }); } // Run the update function when the DOM is fully loaded document.addEventListener('DOMContentLoaded', updateStatus); // Optionally, update the status every 5 minutes setInterval(updateStatus, 300000); </script></div></div></div></div></div></div></footer></div><script src="https://d3e54v103j8qbb.cloudfront.net/js/jquery-3.5.1.min.dc5e7f18c8.js?site=66cc2bd703ccf308a49a6188" type="text/javascript" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script><script src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/js/mintlify-lander.de0eeabc2.js" type="text/javascript"></script><script> document.addEventListener('DOMContentLoaded', function() { const currentYear = new Date().getFullYear(); const elements = document.getElementsByClassName('current-year'); for (let element of elements) { element.textContent = currentYear; } }); </script> <script> document.addEventListener('DOMContentLoaded', () => { const dropdowns = document.querySelectorAll('.dd-menu-wrap'); const glassOverlay = document.querySelector('.glass-bg'); const navbarContainer = document.querySelector('.navbar_container'); function activateDropdownState() { glassOverlay.classList.add('active'); navbarContainer.classList.add('dropdown-active'); } function deactivateDropdownState() { glassOverlay.classList.remove('active'); navbarContainer.classList.remove('dropdown-active'); } dropdowns.forEach(dropdown => { dropdown.addEventListener('mouseenter', activateDropdownState); dropdown.addEventListener('mouseleave', deactivateDropdownState); }); // Handle focus events for accessibility dropdowns.forEach(dropdown => { const focusableElements = dropdown.querySelectorAll('a, button, input, select, textarea, [tabindex]:not([tabindex="-1"])'); focusableElements.forEach(element => { element.addEventListener('focus', activateDropdownState); element.addEventListener('blur', (event) => { // Delay deactivation to check if focus moved to another element within the dropdown setTimeout(() => { if (!dropdown.contains(document.activeElement)) { deactivateDropdownState(); } }, 0); }); }); }); }); </script> <!-- LinkedIn Insight Tag --> <script type="text/javascript"> _linkedin_partner_id = "6729188"; window._linkedin_data_partner_ids = window._linkedin_data_partner_ids || []; window._linkedin_data_partner_ids.push(_linkedin_partner_id); </script><script type="text/javascript"> (function(l) { if (!l){window.lintrk = function(a,b){window.lintrk.q.push([a,b])}; window.lintrk.q=[]} var s = document.getElementsByTagName("script")[0]; var b = document.createElement("script"); b.type = "text/javascript";b.async = true; b.src = "https://snap.licdn.com/li.lms-analytics/insight.min.js"; s.parentNode.insertBefore(b, s);})(window.lintrk); </script> <noscript> <img height="1" width="1" style="display:none;" alt="" src="https://px.ads.linkedin.com/collect/?pid=6729188&fmt=gif" /> </noscript></body></html>