In addition to supporting , the Seam integration for igloohome supports the generation of offline access codes (that is, igloohome codes) for all igloohome lock models, without the need for a bridge. You generate offline access (PIN) codes remotely, and the manufacturer maintains a server-based registry of synchronized encryption keys (tokens) to enable these offline codes. Then, owners or managers can share these codes with users through messaging or other similar applications, and the users do not need to install a special application to unlock the device.
To learn about the special requirements regarding offline access codes for igloohome locks, see . For more information about using offline access codes, see and .
Offline Access Code Requirements
Seam supports the following types of for igloohome locks:
Note the following igloohome-specific offline access code constraints:
General igloohome Offline Access Code Constraints
Constraint
Description
Total maximum number of offline codes
199 PINs, including online and offline PINs.
Creation
You cannot set a custom code for an offline access code that represents an algoPIN.
Update
You cannot modify an offline access code that represents an algoPIN.
Activation
For codes that last longer than 24 hours, algoPINs have a 24-hour activation window. Use the code within the first 24 hours of the start time.
Revocation
To delete algoPINs, you must be within Bluetooth® range of the lock. You cannot use the Seam API to delete offline access codes that represent algoPINs.
Hourly-Bound Offline Access Code Constraints
Constraint
Description
Range of hourly-bound codes
1 to 672 hours (28 days).
Maximum number of hourly-bound codes per hour
3
Daily-Bound Offline Access Code Constraints
Constraint
Description
Range of daily-bound codes
29 to 367 days.
Daily-bound code schedule restrictions
Start time and end time must match.
Maximum number of daily-bound codes per day
3
One-Time-User Offline Access Code Constraints
Constraint
Description
Timeframe for one-time-use codes
Must have a start date and time.
Lasts for 24 hours.
Maximum number of one-time-use codes per start date slot
5
One-time-use code expiration
Expire after a single use.
Programming igloohome Offline Access Codes
You can create hourly-bound, daily-bound, and one-time-use offline access codes for igloohome devices.
Hourly-Bound Offline Access Codes
1. Create an Hourly-Bound Offline Access Code
Request:
# Get the device.
device = seam.locks.get(
device_id="11111111-1111-1111-1111-444444444444"
)
# Confirm that the device supports offline access codes.
if device.can_program_offline_access_codes:
# Create the hourly-bound offline access code.
seam.access_codes.create(
device_id = device.device_id,
name = "my hourly-bound offline code",
starts_at = "2023-11-10T00:00:00-00:00",
ends_at = "2023-11-15T18:00:00-00:00",
is_offline_access_code = True
)
Unset: When initially created on Seam, the offline access code remains in an unset state, indicating that it is not yet available for use on the lock due to a configured future activation time.
Setting: As the scheduled starts_at time approaches, Seam initiates the process of readying the code for use on the lock, transitioning the status of the offline code to setting.
Set: Upon successful programming, the status updates to set, signaling that the code is ready to grant the designated user the ability to unlock the door.
There are two methods to verify that an time-bound offline access code has been registered in the offline access code server that the device manufacturer maintains:
Daily-Bound Offline Access Codes
1. Create a Daily-Bound Access Code
Because daily-bound offline access codes require day-level duration granularity, you can also set max_time_rounding to 1day (or 1d), instead of the default 1hour (or 1h). Note that the Seam API returns an error if max_time_rounding is 1hour and the necessary rounding amount exceeds one hour.
Request:
# Get the device.
device = seam.locks.get(
device_id="11111111-1111-1111-1111-444444444444"
)
# Confirm that the device supports offline access codes.
if device.can_program_offline_access_codes:
# Create the daily-bound offline access code.
seam.access_codes.create(
device_id = device.device_id,
name = "my daily-bound offline code",
starts_at = "2023-11-17T00:00:00-00:00",
ends_at = "2023-12-18T00:00:00-00:00",
max_time_rounding = "1d",
is_offline_access_code = True
)
Unset: When initially created on Seam, the offline access code remains in an unset state, indicating that it is not yet available for use on the lock due to a configured future activation time.
Setting: As the scheduled starts_at time approaches, Seam initiates the process of readying the code for use on the lock, transitioning the status of the offline code to setting.
Set: Upon successful programming, the status updates to set, signaling that the code is ready to grant the designated user the ability to unlock the door.
There are two methods to verify that an time-bound offline access code has been registered in the offline access code server that the device manufacturer maintains:
One-Time-Use Offline Access Codes
To , issue an access code creation request. Then, poll or use a webhook to confirm that the code was registered successfully in the igloohome offline access code server.
To create an hourly-bound offline access code, provide the device_id of the lock for which you want to create the code and set is_offline_access_code to true. Specify the starts_at and ends_at timestamps to define the active time window for the offline code. You can also assign an optional name to the offline access code. For more details, see the .
The is marked by distinct phases:
Polling: Continuously query the access code until the status is updated. For instructions, see .
Webhook: Wait for updates to arrive using webhook requests from the Seam API. For instructions, see .
To , first issue a creation request. Then, poll or use a webhook to confirm that the code was registered successfully in the igloohome offline access code server.
To create a daily-bound offline access code, provide the device_id of the lock for which you want to create the code and set is_offline_access_code to true. Specify the starts_at and ends_at timestamps to define the active time window for the offline code. For a daily-bound offline access code, you must specify the same time (but not the same date) in the starts_at and ends_at properties.
You can also assign an optional name to the offline access code. For more details, see the .
The is marked by distinct phases:
Polling: Continuously query the access code until the status is updated. For instructions, see .
Webhook: Wait for updates to arrive using webhook requests from the Seam API. For instructions, see .
igloohome one-time-use offline access codes are valid for 24 hours from the starts_at timestamp that you configure. These codes expire after a single use. For detailed instructions, see .