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

# ASSA ABLOY Vostio Access Control System

> Guide for using the ASSA ABLOY Vostio access control system 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_assa_vostio_8a42991f29.svg" alt="Vostio logo" width="192" height="192" style={{ width: "192px", height: "192px", objectFit: "contain" }} />

## Overview

ASSA ABLOY Vostio is a cloud-based access control system designed for the hospitality industry. It manages electronic door locks, encoders, and room access across hotel properties. Seam integrates with Vostio to provide entrance management, credential provisioning (mobile keys and physical cards), and card encoding through a unified API.

***

## Supported Devices

<DeviceList manufacturers="assa-abloy" capabilityName="can_remotely_unlock,can_provision_mobile_keys,can_program_online_access_codes,can_encode_plastic_cards" />

This integration supports all electronic door locks and encoders connected to a Vostio system. Vostio manages four types of entrances:

* **Guest doors** — individual hotel room doors
* **Common doors** — shared spaces such as lobbies, gyms, and pools
* **Entrance doors** — building entry points
* **Elevators** — elevator floor access

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

***

## Supported Features

We support the following features:

* Managing ACS users (guests and staff)
* Listing and managing entrances (guest doors, common doors, entrance doors, elevators)
* Creating and revoking credentials (mobile keys and physical cards)
* Encoding plastic cards via connected encoders

***

## Related Features

* [**Access Grants**](/use-cases/granting-access) — The recommended way to manage access in Seam. Integrate once, and your access model works consistently across all providers, including Vostio.
* [**Plastic Card Encoding**](/api/acs/encoders/encode_credential) — Encode and issue physical key cards using Seam's card management API.

***

## Device Provider Key

To create a [Connect Webview](/core-concepts/connect-webviews) that enables your users to connect their Vostio system to Seam, include the `assa_abloy_vostio` 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 step-by-step instructions on connecting a Vostio system to Seam, see the [Vostio Setup Guide](./vostio-setup-guide).

***

## Where to Order

<CardGroup cols={1}>
  <Card title="ASSA ABLOY - Vostio" href="https://www.assaabloy.com/group/solutions/products/categories/access-management-systems/vostio" />
</CardGroup>
