Skip to main content
Back to articles
ARTICLE · EXPLAINER · UNIFI · ACCESS CONTROL

Can one UniFi Access reader unlock two doors?

A common entrance has two doors — an outer street door and an inner lobby door, with a small vestibule between them. The wish list is usually the same: one doorbell that rings every screen inside, the ability to buzz open just the outer door for a courier or both doors for a guest, and a fob or PIN that lets a resident walk straight in. Most of that is exactly how UniFi Access works. One part of it isn't — and the reason is a single rule that shapes the whole design.

PublishedJun 8, 2026
Read time~13 minutes
TopicUniFi Access · intercom · vestibule
AudienceHomeowners · integrators
§ 01 · The scenario

A two-door entrance, one intercom.

Picture a townhouse or small apartment building entrance. There is an outer door onto the street, a short vestibule, and an inner door into the lobby. A video door station lives at the outer door; one or more answering screens live inside. People describe what they want in plain terms:

  • Press the doorbell and every screen inside rings.
  • Whoever answers can open just the outer door (a courier dropping a package in the vestibule) or both doors (a guest walking through to the lobby).
  • A resident's PIN, phone tap, or keyfob lets them in.
  • Ideally, that one credential opens both doors so they don't have to stop twice.

Taken one at a time, three of those four are things UniFi Access does out of the box. The fourth — one credential, two doors — is the one that needs a decision. The rest of this article walks each one, with the relevant line from Ubiquiti's own documentation.

§ 02 · One reader, one door

The rule that shapes everything.

In UniFi Access, a door is a lock relay on an Access hub, and a reader(a keypad, a card reader, or a video door station like the G6 Entry family) is assigned to one door. The hub's documentation frames capacity strictly per door — one reader per door, or two readers on a single door when you want a reader on each side for entry and exit.¹ There is no setting that points one reader at two different doors, and no “linked doors” or interlock feature that fires a second door's relay from the first door's read.

That matters because every unlock method UniFi Access offers is read at a reader — tap an NFC fob on a reader, enter a PIN on a reader, present a face to a reader.² A reader belongs to one door, so the credential opens that one door.

A door does not need a reader, though. A door can be just a lock relay (plus an exit button or motion sensor for people leaving), and Ubiquiti documents that such a reader-less door can still be unlocked remotely through the Access application.¹ Hold onto that fact — it is what makes the “one credential, two doors” options later possible.

§ 03 · The doorbell side

One bell, every intercom — and the reverse.

This is the part people are most often unsure about, and the answer is yes in both directions. A door station's doorbell call is configured with a list of receivers: you add the interior answering screens (UniFi calls them Intercom Viewers), and Ubiquiti's documentation lists those receivers in the plural and notes multiple notification methods can ring at once.³ Put every interior screen in the same call group and pressing the bell rings all of them together.

One detail worth getting right: receivers are organized into call groups that ring in sequence — a later group only rings if an earlier one goes unanswered.³ To make every screen ring at the same time, they all belong in the first group.

The reverse is also supported. A single Intercom Viewer can be a receiver for several door stations, so one screen can answer either entrance. And the Intercom Viewer is not tied to one model of door station — it answers calls from the G6 Entry family as well as the dedicated Intercom readers. The same doorbell press can also notify the UniFi mobile app, so a phone rings alongside the screens.³

§ 04 · Answering the door

Open just the outer door — or both.

When a call comes in, the answering screen shows a separate unlock control for each door it is associated with. So the package-versus-guest distinction is a matter of which button the person inside taps: the outer door alone for a courier, or the outer and then the inner for a guest. There is no single “open both” button — opening both is two taps — but functionally it does exactly what the scenario asks for: the inside person decides, per visit, how far in someone gets.

On the credential side, a current video door station such as the G6 Pro Entry reads the full set residents expect — an NFC card or keyfob, a PIN entered on its touchscreen, an Apple or Google Wallet phone tap, and face recognition. Each of those, read at that reader, opens that reader's door.

§ 05 · The one thing that needs a decision

One credential, two doors.

Here is where the rule from section 02 bites. A resident taps their fob at the outer reader and the outer door opens — but the inner door has its own relay, and the outer reader is not wired to it. UniFi Access has no native way to open two doors from one read. There are two honest ways to give a resident a clean walk-in, and they trade off differently.

Option one — a reader at each door. The inner door gets its own reader. The resident taps at the outer door, steps into the vestibule, and taps again at the inner door. Two taps. It is fully native, nothing custom runs anywhere, and a two-tap vestibule is the more secure arrangement anyway — a courier buzzed into the vestibule for a package cannot drift through the inner door, because the inner door needs its own valid credential.

Option two — a small automation.Keep the inner door as a reader-less relay and add a lightweight controller on the local network that watches the Access event stream. When it sees the outer door unlocked by a real credential, it calls Ubiquiti's official Access API to unlock the inner door as well — one tap, both doors. The API unlocks a single door by its ID, and each unlock event carries an authentication type (NFC, PIN code, or a doorbell call), so the automation can fire on a resident's credential and deliberately ignore a doorbell answer. That is what keeps “buzz open only the outer door for the courier” working even with the automation in place.

Both are real. The choice is whether a single-tap walk-in is worth running a small piece of custom automation — and the next two sections are the honest fine print on that.

§ 06 · If you automate it

The two things that make or break it.

The automation is built on Ubiquiti's published API, not a hack — but it is still a custom integration, not a feature you toggle on in the Access app. Two realities come with that.

It needs maintenance. The door-event path that the automation listens to has changed across UniFi Access firmware releases. An integration like this should be built against the stable event/webhook interface and re-tested after Access updates, not set up once and forgotten. Treat it as a small, owned piece of the system.

It must fail safe — and here is the trap. If the inner door is reader-less and the automation goes offline, a resident clears the outer door and then cannot get through the inner door, because a reader-less door has no on-door credential path and UniFi has no native fallback to open it.¹ They are not in danger — they can always turn around and exit to the street — but they cannot proceed inward. The fix is simple and worth stating plainly: keep a reader on the inner door even when you automate. Then the automation is a convenience layer on top of a system that already works on its own; if it ever drops, the entrance quietly falls back to the two-tap of option one and nobody is stranded.

Put differently: the reader-less shortcut looks cheaper, but it is the version that strands people. The automation is worth doing on top of readers, not instead of them.

§ 07 · Designing it to be safe

Getting out is hardware, not software.

Whichever option you pick, the safety question is always the same: can a person always get out? Getting out of a door is a hardware property, not a controller decision. A fail-safe lock unlocks when power is removed; a fail-secure lock stays locked without power. Free egress comes from a mechanical inside lever, a request-to-exit button, or a motion sensor that releases the lock for anyone leaving — none of which depend on the network, the cloud, or any automation.

So an outage never traps anyone: egress hardware lets people leave regardless of what the electronics are doing. The thing an outage can break is entry— which is exactly why a reader on the inner door (section 06) matters. The detail to confirm on a real install is which doors a person passes through on the way out, and that each of those has code-compliant free egress; the lock's fail-safe-versus-fail-secure behavior is a building-code question for the local authority, not a UniFi setting.

None of this is exotic. A two-door entrance that rings every screen, lets the person inside choose how far a visitor gets, and gives residents a clean walk-in is a normal, buildable UniFi Access design — provided the one-reader-one-door rule is respected and the egress is sound. Specifying that correctly up front, down to which door gets a reader and how the low-voltage cabling is run, is the kind of work we design and install end to end.

References [8]
  1. [1]Ubiquiti Help Center — Choosing a UniFi Access Control Hub. Documents reader-to-door capacity (one reader per door, or two readers on a single door for entry and exit) and that doors without readers can still be unlocked remotely through the Access application. help.ui.com — Choosing a UniFi Access Control Hub
  2. [2]Ubiquiti Help Center — Configuring Door Unlock Methods in UniFi Access. Lists the unlock methods (NFC card, Mobile Unlock, Face, PIN, QR, and others), each presented at a reader. help.ui.com — Configuring Door Unlock Methods
  3. [3]Ubiquiti Help Center — Configuring Doorbell Call Methods and Receivers in UniFi Access. Documents adding multiple receivers (Viewers, mobile app, and others), that multiple notification methods can be used simultaneously, and the call-group escalation behavior. help.ui.com — Configuring Doorbell Call Methods and Receivers
  4. [4]Ubiquiti Help Center — Configuring UniFi Access Intercom Viewer. Documents that a single Intercom Viewer can be a doorbell-call receiver for multiple readers, and that it receives calls from the G6 Entry family and the Intercom readers. help.ui.com — Configuring UniFi Access Intercom Viewer
  5. [5]Ubiquiti — UniFi G6 Pro Entry technical specifications. Lists the supported credentials: NFC card and keyfob, PIN, Apple / Google Wallet, mobile unlock, and face recognition, plus two-way intercom and doorbell. techspecs.ui.com — UniFi G6 Pro Entry
  6. [6]Ubiquiti — UniFi Access API Reference. Documents the remote door-unlock endpoint, which targets a single door by ID, and the door-unlock event payload, which carries the authentication type (for example NFC, PIN code, or a doorbell call) — the field that lets an automation act on a credential read while ignoring a doorbell answer. assets.identity.ui.com — UniFi Access API Reference (PDF)
  7. [7]Ubiquiti Help Center — Choosing a UniFi Access Lock. Defines fail-safe locks (unlock on power loss, for egress and main entry doors) versus fail-secure locks (stay locked without power). help.ui.com — Choosing a UniFi Access Lock
  8. [8]Ubiquiti Help Center — Wiring Exit and Entry Request Devices to the UniFi Access Control Hub. Documents request-to-exit buttons and motion sensors providing free egress without authentication, wired to the hub's exit input. help.ui.com — Wiring Exit and Entry Request Devices
GET IN TOUCH

Planning access control for a multi-door entrance?

Tell us about the entrance — how many doors, what should ring where, and how residents and visitors get in. We'll come back with a design that respects how UniFi Access actually works, names which door gets a reader, and accounts for egress and cabling, so the install has no surprises.