> ## 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.

# Sifely Locks

> Guide for using Sifely smart 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"
  }} />;
};

## Overview

Sifely produces smart locks and keyless entry systems built on the Sifely platform. Their product line includes deadbolts, lever locks, padlocks, and locker locks designed for residential and light commercial use. Sifely locks support keypad entry, Bluetooth, and Wi-Fi connectivity through the Sifely app and a compatible gateway.

Seam integrates with Sifely locks to provide remote lock and unlock actions and access code programming through a unified API.

***

## Supported Devices

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

This integration supports Sifely smart locks that are paired with a compatible Sifely gateway.

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

***

## 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 a keypad

***

## Device Provider Key

To create a [Connect Webview](/core-concepts/connect-webviews) that enables your users to connect their Sifely devices to Seam, include the `sifely` 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 Sifely locks to Seam, see the [Sifely Setup Guide](./sifely-setup-guide).

***

## Where to Order

<CardGroup cols={1}>
  <Card title="Sifely - Smart Locks" href="https://www.sifely.com/" />
</CardGroup>
