Issuing Various Types of Guest Mobile Credentials
Learn how to issue guest mobile credentials of various types.
Single Guest in a Single Room
acs_user = seam.acs.user.get(acs_user_id="xxx")
guest_room = seam.acs.entrances.list(
acs_system_id=hotel_acs_system_id
)[0]
seam.acs.credentials.create(
acs_user_id=acs_user.acs_user_id
credential_manager_acs_system_id="xxx"
is_multi_phone_sync_credential=True,
access_method="mobile_key",
starts_at="2023-01-01 10:40:00.000",
ends_at="2023-01-04 10:40:00.000",
allowed_acs_entrance_ids=[
guest_room.acs_entrance_id,
main_entrance.acs_entrance_id
],
visionline_metadata={
"cardFormat": "rfid48",
"cardType": "guest",
"label": "%ROOMNUM% - %SITENAME%",
"override": True
}
)Returning Guest to a Single Room
Multiple Guests in Multiple Rooms
PreviousConfiguring Visionline Mobile CredentialsNextIssuing Various Types of Guest Joiner Mobile Credentials
Last updated
Was this helpful?

