> ## Documentation Index
> Fetch the complete documentation index at: https://docs.seam.co/llms.txt
> Use this file to discover all available pages before exploring further.

# Wyze Locks

> Guide for using Wyze locks with Seam

export const DeviceList = ({manufacturers, capabilityName, token = "6c51f0a4-d421-429e-8295-d02271aa4f23"}) => {
  const cdn = "https://cdn.devicedb.seam.co/v/0.0.15/DeviceListByCapability.global.js";
  const close = "</scr" + "ipt>";
  const srcDoc = ['<!doctype html><html><head><meta charset="utf-8">', "<style>html,body{margin:0;padding:0;background:transparent}</style></head><body>", `<script type="module" src="${cdn}">${close}`, `<device-list-by-capability manufacturers="${manufacturers}" capability-name="${capabilityName}" token="${token}"></device-list-by-capability>`, `<script>new ResizeObserver(function(){parent.postMessage({__devicedb:true,height:document.documentElement.scrollHeight},"*")}).observe(document.documentElement)${close}`, "</body></html>"].join("");
  const onRef = iframe => {
    if (!iframe || iframe.dataset.devicedbBound) return;
    iframe.dataset.devicedbBound = "1";
    window.addEventListener("message", event => {
      if (event.source === iframe.contentWindow && event.data && event.data.__devicedb) {
        iframe.style.height = `${event.data.height}px`;
      }
    });
  };
  return <iframe ref={onRef} srcDoc={srcDoc} title="Compatible devices" style={{
    width: "100%",
    minHeight: "320px",
    border: "none"
  }} />;
};

<img src="https://strapi-media-bucket.fly.storage.tigris.dev/sq_wyze_cd3d68ae20.svg" alt="Wyze logo" width="192" height="192" style={{ width: "192px", height: "192px", objectFit: "contain" }} />

## Overview

Wyze produces a smart lock with an accompanying gateway and an optional keypad. Intended for the residential and short-term rental industries, Wyze Locks provide fast installation, virtual keys, and automatic unlocking and locking functionality. Wyze Locks replace only the interior side of existing deadbolts, so existing physical keys still work. Further, Wyze Locks are compatible with most single-cylinder deadbolts.

To integrate the Wyze Smart Lock with Seam, you must first install the Wyze Lock Gateway and connect this gateway to the internet.

***

## Supported Devices

<DeviceList manufacturers="wyze" capabilityName="can_remotely_unlock,can_program_online_access_codes,can_provision_mobile_keys" />

This integration supports the [Wyze Lock](https://www.wyze.com/products/wyze-lock), when accompanied by a [Wyze Lock Gateway](https://support.wyze.com/hc/en-us/articles/360037584772-How-does-Wyze-Lock-connect-to-the-internet-) that is connected to the internet. In addition, this integration supports access code functions for the optional [Wyze Lock Keypad](https://www.wyze.com/products/wyze-lock-keypad).

<Info>
  Seam does not integrate with the [Wyze Lock
  Bolt](https://www.wyze.com/products/wyze-lock-bolt).
</Info>

For detailed information about the Wyze devices that Seam supports, see our [Wyze Supported Devices page](https://www.seam.co/manufacturers/wyze).

***

## Supported Features

We support the following features:

* [Triggering web lock and unlock actions](/low-level-apis/smart-locks/lock-and-unlock)
* [Programming access codes](/low-level-apis/smart-locks/access-codes) on locks that have an installed Wyze Lock Keypad

<Info>
  The Seam platform cannot determine the PIN codes for access codes that were
  created outside of the Seam platform.
</Info>

***

### Device Provider Key

To create a [Connect Webview](/core-concepts/connect-webviews) that enables your users to connect their Wyze devices to Seam, include the `wyze` device provider key in the `accepted_providers` list. For more information, see [Customize the Brands to Display in Your Connect Webviews](/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-brands-to-display-in-your-connect-webviews).

***

## Setup Instructions

For instructions on connecting Wyze locks to Seam, see the [Wyze Setup Guide](./wyze-setup-guide).

***

## Where to Order

To purchase Wyze devices, visit the Wyze online store.

<table data-view="cards">
  <thead>
    <tr>
      <th />

      <th />

      <th />

      <th data-hidden data-card-target data-type="content-ref" />

      <th data-hidden data-card-cover data-type="files" />
    </tr>
  </thead>

  <tbody>
    <tr>
      <td />

      <td>
        <strong>Wyze Online Store</strong>
      </td>

      <td />

      <td>
        <a href="https://www.wyze.com/products/wyze-lock">
          [https://www.wyze.com/products/wyze-lock](https://www.wyze.com/products/wyze-lock)
        </a>
      </td>

      <td />
    </tr>
  </tbody>
</table>

***
