Set a Matter lock user
Use this action to create or update a user on a Matter lock. A user is a person who can unlock the lock, and each user can have one or more credentials, such as a PIN code or an RFID tag.
If you leave the user index empty, the lock automatically assigns the next available slot.
Your lock must support the Matter Door Lock cluster user management features for this action to work. Use the Get Matter lock info action to check what your lock supports.
Using this action from the user interface
If you prefer building automations and scripts visually, Home Assistant walks you through this action step by step. You pick what to target, tweak a few options, and save. No YAML knowledge required.
To set a lock user from an automation or a script:
- Go to Settings > Automations & scenes.
- Open an existing automation or script, or select Create automation > Create new automation.
- If you’re setting up a new automation, add a trigger in the When section. Scripts don’t need a trigger. They run when something else calls them.
- In the Then do section, select Add action.
- Select what you want to control. Under By target (see Targets), select the lock you want to manage.
- From the actions shown for that target, select Set a Matter lock user.
- Fill in the user details you want to set.
- Select Save.
Options in the UI
The user slot index (1-based). Leave empty to let the lock find an available slot.
The available user types are:
-
unrestricted_user: A regular user with no access restrictions. -
year_day_schedule_user: Access is limited to specific date ranges. -
week_day_schedule_user: Access is limited to specific days and times each week. -
programming_user: A user who can manage other users and credentials on the lock. -
non_access_user: A user record that exists on the lock but cannot unlock it. -
forced_user: A user whose access triggers a special alarm or notification, for example a duress code. -
disposable_user: A user whose credential is automatically revoked after a single use. -
expiring_user: A user whose access expires after a set period. -
schedule_restricted_user: A user restricted by both week-day and year-day schedules. -
remote_only_user: A user who can only operate the lock remotely, not from the physical keypad.
The available credential rules are:
-
single: One credential is required to unlock, for example just a PIN. -
dual: Two different credentials are required to unlock, for example a PIN and an RFID tag. -
tri: Three different credentials are required to unlock.
Using this action in YAML
If you work directly in YAML, or you want to know exactly what Home Assistant does under the hood, this section has the technical reference. It lists the field names you use in YAML, their types, and which ones are required.
In YAML, refer to this action as matter.set_lock_user. A basic example looks like this:
action: matter.set_lock_user
target:
entity_id: lock.front_door
data:
user_name: "Jane"
user_type: unrestricted_user
credential_rule: single
Options in YAML
The user slot index (1-based). Omit this field to let the lock find an available slot.
Targets of the action
This action requires a target. The target is the object of the action. You can point the action at a single entityAn entity represents a sensor, actor, or function in Home Assistant. Entities are used to monitor physical properties or to control other entities. An entity is usually part of a device or a service. [Learn more], a device, an area, a floor, or a label, and Home Assistant will run the action on every matching matter entity behind that target.
-
Entity: one specific matter entity, such as
matter.living_room. - Device: every matter entity that belongs to a device.
- Area: every matter entity in a room or area.
- Floor: every matter entity on a floor.
- Label: every matter entity that shares a label.
You can also select different target types in one action. For example, you can add a specific entity and an area as targets in the same action to run the action on both of them at once.
Good to know
- Creating a user does not give them a way to unlock the door yet. Add a credential, such as a PIN, with the Set a Matter lock credential action.
Still stuck?
The Home Assistant community is quick to help: join Discord for real-time chat, post on the community forum with the action you’re calling and what you expected to happen, or share on our subreddit /r/homeassistant.
AI assistants like ChatGPT or Claude can also explain actions or suggest the right one when you describe what you want in plain language.
Related actions
These actions work well alongside this one:
-
Clear a Matter lock user: Deletes a user and their credentials from a Matter lock.
-
Get Matter lock users: Returns all users configured on a Matter lock.
-
Set a Matter lock credential: Adds or updates a credential, such as a PIN, on a Matter lock.