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

# Brivo Access

> Guide for using the Brivo Access platform 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>var _h=0;function _post(){var h=document.documentElement.scrollHeight;if(h&&h!==_h){_h=h;parent.postMessage({__devicedb:true,height:h},"*")}}setInterval(_post,300);addEventListener("load",_post);_post();${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_brivo_stack_38cfbcc67f.svg" alt="Brivo logo" width="192" height="192" style={{ width: "192px", height: "192px", objectFit: "contain" }} />

## Overview

Seam integrates with Brivo, which produces an access control platform for applications ranging from small, single-site facilities to multi-site commercial enterprises and multifamily residential properties. Brivo produces readers and control panels. In addition, through these Brivo control panels, the Brivo Access platform integrates with a variety of wireless smart locks, including Allegion, ASSA ABLOY Aperio, Z-Wave, and Salto.

***

## Supported Devices

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

This integration supports all [readers](https://www.brivo.com/products/smart-readers/), [control panels](https://www.brivo.com/products/control-panels/), and [wireless smart locks](https://www.brivo.com/low-level-apis/smart-locks/) connected to the Brivo Access platform. Brivo control panels also integrate with any Wiegand or Open Supervised Device Protocol (OSDP) readers.

The Brivo Access platform supports the following wireless locks:

<table>
  <thead>
    <tr>
      <th width="210">Lock Brand</th>
      <th>Integration Description</th>
    </tr>
  </thead>

  <tbody>
    <tr>
      <td>
        <a href="https://resources.brivo.com/data-sheets/allegion-ndele-wireless-locks-data-sheet">
          Allegion
        </a>
      </td>

      <td>
        Brivo partners with Allegion to provide AD Series, LE, NDE, and
        Control® wireless locks for multifamily and commercial real estate
        uses.
      </td>
    </tr>

    <tr>
      <td>
        ASSA ABLOY Aperio™
      </td>

      <td>
        Brivo provides a variety of ASSA ABLOY Aperio locks for small, medium,
        and enterprise uses.
      </td>
    </tr>

    <tr>
      <td>
        Z-Wave
      </td>

      <td>
        Brivo provides a variety of Z-Wave-supported locks for multifamily
        residential doors connected to the{' '}

        <a href="https://www.brivo.com/products/smart-home/">
          Brivo Smart Home
        </a>

        .
      </td>
    </tr>

    <tr>
      <td>
        Salto
      </td>

      <td>Brivo supports various Salto wireless locks.</td>
    </tr>
  </tbody>
</table>

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

***

## 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) for readers and locks that have a keypad
* [Managing access systems](/low-level-apis/access-systems)

***

### Device Provider Key

To create a [Connect Webview](/core-concepts/connect-webviews) that enables you to connect your Brivo Access platform and devices to Seam, include the `brivo` 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).

***

## Next Steps

<CardGroup cols={2}>
  <Card title="Order Brivo Devices" href="https://www.brivo.com/about/contact-us/" img="https://mintcdn.com/seam/3MkQAe40a-b0KYcA/images/brivo-logo.png?fit=max&auto=format&n=3MkQAe40a-b0KYcA&q=85&s=a41277fa65f43cd476590378a4f9dbcf" width="4008" height="3008" data-path="images/brivo-logo.png">
    Submit a request on the Brivo Contact Us Page
  </Card>

  <Card title="Setup your Brivo account" href="/device-and-system-integration-guides/brivo-access/brivo-access-setup-guide" img="https://mintcdn.com/seam/H96jOW_ZJ5A7VZhZ/images/image-(29).png?fit=max&auto=format&n=H96jOW_ZJ5A7VZhZ&q=85&s=0e8a09ac2e026a785a010036bac5f4ce" width="500" height="296" data-path="images/image-(29).png">
    See this guide for how to connect your Brivo account with Seam
  </Card>
</CardGroup>

***
