githubEdit

Access Codes

The access_code Object

Represents a smart lock access codearrow-up-right.

An access code is a code used for a keypad or pinpad device. Unlike physical keys, which can easily be lost or duplicated, PIN codes can be customized, tracked, and altered on the fly. Using the Seam Access Code API, you can easily generate access codes on the hundreds of door lock models with which we integrate.

Seam supports programming two types of access codes: ongoingarrow-up-right and time-boundarrow-up-right. To differentiate between the two, refer to the type property of the access code. Ongoing codes display as ongoing, whereas time-bound codes are labeled time_bound. An ongoing access code is active, until it has been removed from the device. To specify an ongoing access code, leave both starts_at and ends_at empty. A time-bound access code will be programmed at the starts_at time and removed at the ends_at time.

In addition, for certain devices, Seam also supports offline access codesarrow-up-right. Offline access (PIN) codes are designed for door locks that might not always maintain an internet connection. For this type of access code, the device manufacturer uses encryption keys (tokens) to create server-based registries of algorithmically-generated offline PIN codes. Because the tokens remain synchronized with the managed devices, the locks do not require an active internet connection—and you do not need to be near the locks—to create an offline access code. Then, owners or managers can share these offline codes with users through a variety of mechanisms, such as messaging applications. That is, lock users do not need to install a smartphone application to receive an offline access code.

A one-time-use offline access code resource.

{
  "access_code_id": "e9cf6dd6-89aa-477f-a701-c08f3de13c1f",
  "code": "1234",
  "common_code_key": null,
  "created_at": "2025-06-14T16:54:17.946242Z",
  "device_id": "c9cd621d-ef0c-45c8-b608-026ebdb74615",
  "ends_at": "2025-07-04T16:54:17.946049Z",
  "errors": [],
  "is_backup": false,
  "is_backup_access_code_available": false,
  "is_external_modification_allowed": false,
  "is_managed": true,
  "is_offline_access_code": true,
  "is_one_time_use": true,
  "is_scheduled_on_device": true,
  "is_waiting_for_code_assignment": false,
  "name": "My Access Code",
  "pulled_backup_access_code_id": null,
  "starts_at": "2025-07-02T16:54:17.946049Z",
  "status": "set",
  "type": "time_bound",
  "warnings": [],
  "workspace_id": "750fc0bc-4450-4356-8d9f-18c6a3a6b2c7"
}

Properties

access_code_id UUID

Unique identifier for the access code.


code String

Code used for access. Typically, a numeric or alphanumeric string.


common_code_key String

Unique identifier for a group of access codes that share the same code.


created_at Datetime

Date and time at which the access code was created.


device_id UUID

Unique identifier for the device associated with the access code.


ends_at Datetime

Date and time after which the time-bound access code becomes inactive.


errors List of Objects

Errors associated with the access codearrow-up-right.

The specific structure of each object in this list depends on the value of its error_code field.

Variants:

chevron-rightsmartthings_failed_to_set_access_codehashtag

Failed to set code on SmartThings device.

created_at Datetime

Date and time at which Seam created the error.


error_code Enum

Unique identifier of the type of error. Enables quick recognition and categorization of the issue.

Enum values:

  • smartthings_failed_to_set_access_code


is_access_code_error Boolean

Indicates that this is an access code error.


message String

Detailed description of the error. Provides insights into the issue and potentially how to rectify it.

chevron-rightsmartthings_failed_to_set_after_multiple_retrieshashtag

Failed to set code after multiple retries.

created_at Datetime

Date and time at which Seam created the error.


error_code Enum

Unique identifier of the type of error. Enables quick recognition and categorization of the issue.

Enum values:

  • smartthings_failed_to_set_after_multiple_retries


is_access_code_error Boolean

Indicates that this is an access code error.


message String

Detailed description of the error. Provides insights into the issue and potentially how to rectify it.

chevron-rightsmartthings_no_free_slots_availablehashtag

No free slots available on the device.

created_at Datetime

Date and time at which Seam created the error.


error_code Enum

Unique identifier of the type of error. Enables quick recognition and categorization of the issue.

Enum values:

  • smartthings_no_free_slots_available


is_access_code_error Boolean

Indicates that this is an access code error.


message String

Detailed description of the error. Provides insights into the issue and potentially how to rectify it.

chevron-rightfailed_to_set_on_devicehashtag

Failed to set code on device.

created_at Datetime

Date and time at which Seam created the error.


error_code Enum

Unique identifier of the type of error. Enables quick recognition and categorization of the issue.

Enum values:

  • failed_to_set_on_device


is_access_code_error Boolean

Indicates that this is an access code error.


message String

Detailed description of the error. Provides insights into the issue and potentially how to rectify it.

chevron-rightfailed_to_remove_from_devicehashtag

Failed to remove code from device.

created_at Datetime

Date and time at which Seam created the error.


error_code Enum

Unique identifier of the type of error. Enables quick recognition and categorization of the issue.

Enum values:

  • failed_to_remove_from_device


is_access_code_error Boolean

Indicates that this is an access code error.


message String

Detailed description of the error. Provides insights into the issue and potentially how to rectify it.

chevron-rightduplicate_code_on_devicehashtag

Duplicate access code detected on device.

created_at Datetime

Date and time at which Seam created the error.


error_code Enum

Unique identifier of the type of error. Enables quick recognition and categorization of the issue.

Enum values:

  • duplicate_code_on_device


is_access_code_error Boolean

Indicates that this is an access code error.


message String

Detailed description of the error. Provides insights into the issue and potentially how to rectify it.

chevron-rightduplicate_code_attempt_preventedhashtag

An attempt to modify this access code was prevented.

created_at Datetime

Date and time at which Seam created the error.


error_code Enum

Unique identifier of the type of error. Enables quick recognition and categorization of the issue.

Enum values:

  • duplicate_code_attempt_prevented


is_access_code_error Boolean

Indicates that this is an access code error.


message String

Detailed description of the error. Provides insights into the issue and potentially how to rectify it.

chevron-rightno_space_for_access_code_on_devicehashtag

No space for access code on device.

created_at Datetime

Date and time at which Seam created the error.


error_code Enum

Unique identifier of the type of error. Enables quick recognition and categorization of the issue.

Enum values:

  • no_space_for_access_code_on_device


is_access_code_error Boolean

Indicates that this is an access code error.


message String

Detailed description of the error. Provides insights into the issue and potentially how to rectify it.

chevron-rightkwikset_unable_to_confirm_codehashtag

Unable to confirm that the access code is set on Kwikset device.

created_at Datetime

Date and time at which Seam created the error.


error_code Enum

Unique identifier of the type of error. Enables quick recognition and categorization of the issue.

Enum values:

  • kwikset_unable_to_confirm_code


is_access_code_error Boolean

Indicates that this is an access code error.


message String

Detailed description of the error. Provides insights into the issue and potentially how to rectify it.

chevron-rightkwikset_unable_to_confirm_deletionhashtag

Unable to confirm the deletion of the access code on Kwikset device.

created_at Datetime

Date and time at which Seam created the error.


error_code Enum

Unique identifier of the type of error. Enables quick recognition and categorization of the issue.

Enum values:

  • kwikset_unable_to_confirm_deletion


is_access_code_error Boolean

Indicates that this is an access code error.


message String

Detailed description of the error. Provides insights into the issue and potentially how to rectify it.

chevron-rightcode_modified_external_to_seamhashtag

Code was modified or removed externally after Seam successfully set it on the device.

created_at Datetime

Date and time at which Seam created the error.


error_code Enum

Unique identifier of the type of error. Enables quick recognition and categorization of the issue.

Enum values:

  • code_modified_external_to_seam


is_access_code_error Boolean

Indicates that this is an access code error.


message String

Detailed description of the error. Provides insights into the issue and potentially how to rectify it.

chevron-rightaugust_lock_invalid_code_lengthhashtag

Invalid code length for August lock.

created_at Datetime

Date and time at which Seam created the error.


error_code Enum

Unique identifier of the type of error. Enables quick recognition and categorization of the issue.

Enum values:

  • august_lock_invalid_code_length


is_access_code_error Boolean

Indicates that this is an access code error.


message String

Detailed description of the error. Provides insights into the issue and potentially how to rectify it.

chevron-rightaugust_device_programming_delayhashtag

Access code has not yet been fully moved to the device.

created_at Datetime

Date and time at which Seam created the error.


error_code Enum

Unique identifier of the type of error. Enables quick recognition and categorization of the issue.

Enum values:

  • august_device_programming_delay


is_access_code_error Boolean

Indicates that this is an access code error.


message String

Detailed description of the error. Provides insights into the issue and potentially how to rectify it.

chevron-rightaugust_lock_missing_keypadhashtag

August lock is missing a keypad.

created_at Datetime

Date and time at which Seam created the error.


error_code Enum

Unique identifier of the type of error. Enables quick recognition and categorization of the issue.

Enum values:

  • august_lock_missing_keypad


is_access_code_error Boolean

Indicates that this is an access code error.


message String

Detailed description of the error. Provides insights into the issue and potentially how to rectify it.

chevron-rightaugust_lock_temporarily_offlinehashtag

August lock is temporarily offline.

created_at Datetime

Date and time at which Seam created the error.


error_code Enum

Unique identifier of the type of error. Enables quick recognition and categorization of the issue.

Enum values:

  • august_lock_temporarily_offline


is_access_code_error Boolean

Indicates that this is an access code error.


message String

Detailed description of the error. Provides insights into the issue and potentially how to rectify it.

chevron-rightsalto_ks_user_not_subscribedhashtag

Salto site user is not subscribed.

created_at Datetime

Date and time at which Seam created the error.


error_code Enum

Unique identifier of the type of error. Enables quick recognition and categorization of the issue.

Enum values:

  • salto_ks_user_not_subscribed


is_access_code_error Boolean

Indicates that this is an access code error.


message String

Detailed description of the error. Provides insights into the issue and potentially how to rectify it.

chevron-righthubitat_device_programming_delayhashtag

Access code has not yet been fully moved to the device.

created_at Datetime

Date and time at which Seam created the error.


error_code Enum

Unique identifier of the type of error. Enables quick recognition and categorization of the issue.

Enum values:

  • hubitat_device_programming_delay


is_access_code_error Boolean

Indicates that this is an access code error.


message String

Detailed description of the error. Provides insights into the issue and potentially how to rectify it.

chevron-righthubitat_no_free_positions_availablehashtag

No free positions available on the device.

created_at Datetime

Date and time at which Seam created the error.


error_code Enum

Unique identifier of the type of error. Enables quick recognition and categorization of the issue.

Enum values:

  • hubitat_no_free_positions_available


is_access_code_error Boolean

Indicates that this is an access code error.


message String

Detailed description of the error. Provides insights into the issue and potentially how to rectify it.

chevron-rightwyze_duplicate_code_namehashtag

Duplicate access code name detected.

created_at Datetime

Date and time at which Seam created the error.


error_code Enum

Unique identifier of the type of error. Enables quick recognition and categorization of the issue.

Enum values:

  • wyze_duplicate_code_name


is_access_code_error Boolean

Indicates that this is an access code error.


message String

Detailed description of the error. Provides insights into the issue and potentially how to rectify it.

chevron-rightwyze_potential_duplicate_codehashtag

Potential duplicate access code detected.

created_at Datetime

Date and time at which Seam created the error.


error_code Enum

Unique identifier of the type of error. Enables quick recognition and categorization of the issue.

Enum values:

  • wyze_potential_duplicate_code


is_access_code_error Boolean

Indicates that this is an access code error.


message String

Detailed description of the error. Provides insights into the issue and potentially how to rectify it.

chevron-rightdormakaba_oracode_invalid_time_rangehashtag

No Dormakaba Oracode user levels configured for the requested time range.

created_at Datetime

Date and time at which Seam created the error.


error_code Enum

Unique identifier of the type of error. Enables quick recognition and categorization of the issue.

Enum values:

  • dormakaba_oracode_invalid_time_range


is_access_code_error Boolean

Indicates that this is an access code error.


message String

Detailed description of the error. Provides insights into the issue and potentially how to rectify it.

chevron-rightkwikset_insufficient_permissionshashtag

Admin role required—insufficient permissions to manage PINs on this Kwikset device. Please have a Home Admin update your role in the Kwikset app, or ask them to set the PIN.

created_at Datetime

Date and time at which Seam created the error.


error_code Enum

Unique identifier of the type of error. Enables quick recognition and categorization of the issue.

Enum values:

  • kwikset_insufficient_permissions


is_access_code_error Boolean

Indicates that this is an access code error.


message String

Detailed description of the error. Provides insights into the issue and potentially how to rectify it.

chevron-rightkeynest_unsupported_third_party_lockerhashtag

KeyNest locker is not supported.

created_at Datetime

Date and time at which Seam created the error.


error_code Enum

Unique identifier of the type of error. Enables quick recognition and categorization of the issue.

Enum values:

  • keynest_unsupported_third_party_locker


is_access_code_error Boolean

Indicates that this is an access code error.


message String

Detailed description of the error. Provides insights into the issue and potentially how to rectify it.

chevron-rightaccount_disconnectedhashtag

Indicates that the account is disconnected.

created_at Datetime

Date and time at which Seam created the error.


error_code Enum

Unique identifier of the type of error. Enables quick recognition and categorization of the issue.

Enum values:

  • account_disconnected


is_connected_account_error Boolean

Indicates that the error is a connected accountarrow-up-right error.


is_device_error Boolean

Indicates that the error is not a device error.


message String

Detailed description of the error. Provides insights into the issue and potentially how to rectify it.

chevron-rightsalto_ks_subscription_limit_exceededhashtag

Indicates that the Salto site user limit has been reached.

created_at Datetime

Date and time at which Seam created the error.


error_code Enum

Unique identifier of the type of error. Enables quick recognition and categorization of the issue.

Enum values:

  • salto_ks_subscription_limit_exceeded


is_connected_account_error Boolean

Indicates that the error is a connected accountarrow-up-right error.


is_device_error Boolean

Indicates that the error is not a device error.


message String

Detailed description of the error. Provides insights into the issue and potentially how to rectify it.

chevron-rightdevice_offlinehashtag

Indicates that the device is offline.

created_at Datetime

Date and time at which Seam created the error.


error_code Enum

Unique identifier of the type of error. Enables quick recognition and categorization of the issue.

Enum values:

  • device_offline


is_device_error Boolean

Indicates that the error is a device error.


message String

Detailed description of the error. Provides insights into the issue and potentially how to rectify it.

chevron-rightdevice_removedhashtag

Indicates that the device has been removed.

created_at Datetime

Date and time at which Seam created the error.


error_code Enum

Unique identifier of the type of error. Enables quick recognition and categorization of the issue.

Enum values:

  • device_removed


is_device_error Boolean

Indicates that the error is a device error.


message String

Detailed description of the error. Provides insights into the issue and potentially how to rectify it.

chevron-righthub_disconnectedhashtag

Indicates that the hub is disconnected.

created_at Datetime

Date and time at which Seam created the error.


error_code Enum

Unique identifier of the type of error. Enables quick recognition and categorization of the issue.

Enum values:

  • hub_disconnected


is_device_error Boolean

Indicates that the error is a device error.


message String

Detailed description of the error. Provides insights into the issue and potentially how to rectify it.

chevron-rightdevice_disconnectedhashtag

Indicates that the device is disconnected.

created_at Datetime

Date and time at which Seam created the error.


error_code Enum

Unique identifier of the type of error. Enables quick recognition and categorization of the issue.

Enum values:

  • device_disconnected


is_device_error Boolean

Indicates that the error is a device error.


message String

Detailed description of the error. Provides insights into the issue and potentially how to rectify it.

chevron-rightempty_backup_access_code_poolhashtag

Indicates that the backup access code poolarrow-up-right is empty.

created_at Datetime

Date and time at which Seam created the error.


error_code Enum

Unique identifier of the type of error. Enables quick recognition and categorization of the issue.

Enum values:

  • empty_backup_access_code_pool


is_device_error Boolean

Indicates that the error is a device error.


message String

Detailed description of the error. Provides insights into the issue and potentially how to rectify it.

chevron-rightaugust_lock_not_authorizedhashtag

Indicates that the user is not authorized to use the August lock.

created_at Datetime

Date and time at which Seam created the error.


error_code Enum

Unique identifier of the type of error. Enables quick recognition and categorization of the issue.

Enum values:

  • august_lock_not_authorized


is_device_error Boolean

Indicates that the error is a device error.


message String

Detailed description of the error. Provides insights into the issue and potentially how to rectify it.

chevron-rightaugust_lock_missing_bridgehashtag

Indicates that the lock is not connected to a bridge.

created_at Datetime

Date and time at which Seam created the error.


error_code Enum

Unique identifier of the type of error. Enables quick recognition and categorization of the issue.

Enum values:

  • august_lock_missing_bridge


is_device_error Boolean

Indicates that the error is a device error.


message String

Detailed description of the error. Provides insights into the issue and potentially how to rectify it.

chevron-rightttlock_lock_not_paired_to_gatewayhashtag

Indicates that the lock is not paired with a gateway.

created_at Datetime

Date and time at which Seam created the error.


error_code Enum

Unique identifier of the type of error. Enables quick recognition and categorization of the issue.

Enum values:

  • ttlock_lock_not_paired_to_gateway


is_device_error Boolean

Indicates that the error is a device error.


message String

Detailed description of the error. Provides insights into the issue and potentially how to rectify it.

chevron-rightmissing_device_credentialshashtag

Indicates that device credentials are missing.

created_at Datetime

Date and time at which Seam created the error.


error_code Enum

Unique identifier of the type of error. Enables quick recognition and categorization of the issue.

Enum values:

  • missing_device_credentials


is_device_error Boolean

Indicates that the error is a device error.


message String

Detailed description of the error. Provides insights into the issue and potentially how to rectify it.

chevron-rightauxiliary_heat_runninghashtag

Indicates that the auxiliary heat is running.

created_at Datetime

Date and time at which Seam created the error.


error_code Enum

Unique identifier of the type of error. Enables quick recognition and categorization of the issue.

Enum values:

  • auxiliary_heat_running


is_device_error Boolean

Indicates that the error is a device error.


message String

Detailed description of the error. Provides insights into the issue and potentially how to rectify it.

chevron-rightsubscription_requiredhashtag

Indicates that a subscription is required to connect.

created_at Datetime

Date and time at which Seam created the error.


error_code Enum

Unique identifier of the type of error. Enables quick recognition and categorization of the issue.

Enum values:

  • subscription_required


is_device_error Boolean

Indicates that the error is a device error.


message String

Detailed description of the error. Provides insights into the issue and potentially how to rectify it.

chevron-rightlockly_missing_wifi_bridgehashtag

Indicates that the Lockly lock is not connected to a Wi-Fi bridge.

created_at Datetime

Date and time at which Seam created the error.


error_code Enum

Unique identifier of the type of error. Enables quick recognition and categorization of the issue.

Enum values:

  • lockly_missing_wifi_bridge


is_device_error Boolean

Indicates that the error is a device error.


message String

Detailed description of the error. Provides insights into the issue and potentially how to rectify it.

chevron-rightbridge_disconnectedhashtag

Indicates that the Seam API cannot communicate with Seam Bridge, for example, if the Seam Bridge executable has stopped or if the computer running the Seam Bridge executable is offline. See also Troubleshooting Your Access Control System.

created_at Datetime

Date and time at which Seam created the error.


error_code Enum

Unique identifier of the type of error. Enables quick recognition and categorization of the issue.

Enum values:

  • bridge_disconnected


is_bridge_error Boolean

Indicates whether the error is related to Seam Bridge.


is_connected_account_error Boolean

Indicates whether the error is related specifically to the connected account.


message String

Detailed description of the error. Provides insights into the issue and potentially how to rectify it.


is_backup Boolean

Indicates whether the access code is a backup code.


is_backup_access_code_available Boolean

Indicates whether a backup access code is available for use if the primary access code is lost or compromised.


is_external_modification_allowed Boolean

Indicates whether changes to the access code from external sources are permitted.


is_managed Boolean

Indicates whether Seam manages the access code.


is_offline_access_code Boolean

Indicates whether the access code is intended for use in offline scenarios. If true, this code can be created on a device without a network connection.


is_one_time_use Boolean

Indicates whether the access code can only be used once. If true, the code becomes invalid after the first use.


is_scheduled_on_device Boolean

Indicates whether the code is set on the device according to a preconfigured schedule.


is_waiting_for_code_assignment Boolean

Indicates whether the access code is waiting for a code assignment.


name String

Name of the access code. Enables administrators and users to identify the access code easily, especially when there are numerous access codes. Note that the name provided on Seam is used to identify the code on Seam and is not necessarily the name that will appear in the lock provider's app or on the device. This is because lock providers may have constraints on names, such as length, uniqueness, or characters that can be used. In addition, some lock providers may break down names into components such as first_name and last_name. To provide a consistent experience, Seam identifies the code on Seam by its name but may modify the name that appears on the lock provider's app or on the device. For example, Seam may add additional characters or truncate the name to meet provider constraints. To help your users identify codes set by Seam, Seam provides the name exactly as it appears on the lock provider's app or on the device as a separate property called appearance. This is an object with a name property and, optionally, first_name and last_name properties (for providers that break down a name into components).


pulled_backup_access_code_id UUID

Identifier of the pulled backup access code. Used to associate the pulled backup access code with the original access code.


starts_at Datetime

Date and time at which the time-bound access code becomes active.


status Enum

Current status of the access code within the operational lifecycle. Values are setting, a transitional phase that indicates that the code is being configured or activated; set, which indicates that the code is active and operational; unset, which indicates a deactivated or unused state, either before activation or after deliberate deactivation; removing, which indicates a transitional period in which the code is being deleted or made inactive; and unknown, which indicates an indeterminate state, due to reasons such as system errors or incomplete data, that highlights a potential need for system review or troubleshooting. See also Lifecycle of Access Codesarrow-up-right.

chevron-rightEnum valueshashtag
  • setting

  • set

  • unset

  • removing

  • unknown


type Enum

Type of the access code. ongoing access codes are active continuously until deactivated manually. time_bound access codes have a specific duration.

chevron-rightEnum valueshashtag
  • time_bound

  • ongoing


warnings List of Objects

Warnings associated with the access codearrow-up-right.

The specific structure of each object in this list depends on the value of its warning_code field.

Variants:

chevron-rightsmartthings_failed_to_set_access_codehashtag

Failed to set code on SmartThings device.

created_at Datetime

Date and time at which Seam created the warning.


message String

Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.


warning_code Enum

Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.

Enum values:

  • smartthings_failed_to_set_access_code

chevron-rightschlage_detected_duplicatehashtag

Duplicate access code detected.

created_at Datetime

Date and time at which Seam created the warning.


message String

Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.


warning_code Enum

Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.

Enum values:

  • schlage_detected_duplicate

chevron-rightschlage_creation_outagehashtag

Received an error when attempting to create this code.

created_at Datetime

Date and time at which Seam created the warning.


message String

Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.


warning_code Enum

Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.

Enum values:

  • schlage_creation_outage

chevron-rightcode_modified_external_to_seamhashtag

Code was modified or removed externally after Seam successfully set it on the device.

created_at Datetime

Date and time at which Seam created the warning.


message String

Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.


warning_code Enum

Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.

Enum values:

  • code_modified_external_to_seam

chevron-rightdelay_in_setting_on_devicehashtag

Delay in setting code on device.

created_at Datetime

Date and time at which Seam created the warning.


message String

Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.


warning_code Enum

Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.

Enum values:

  • delay_in_setting_on_device

chevron-rightdelay_in_removing_from_devicehashtag

Delay in removing code from device.

created_at Datetime

Date and time at which Seam created the warning.


message String

Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.


warning_code Enum

Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.

Enum values:

  • delay_in_removing_from_device

chevron-rightthird_party_integration_detectedhashtag

Third-party integration detected that may cause access codes to fail.

created_at Datetime

Date and time at which Seam created the warning.


message String

Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.


warning_code Enum

Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.

Enum values:

  • third_party_integration_detected

chevron-rightaugust_device_programming_delayhashtag

Access code has not yet been fully moved to the device.

created_at Datetime

Date and time at which Seam created the warning.


message String

Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.


warning_code Enum

Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.

Enum values:

  • august_device_programming_delay

chevron-rightaugust_lock_temporarily_offlinehashtag

August lock is temporarily offline.

created_at Datetime

Date and time at which Seam created the warning.


message String

Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.


warning_code Enum

Unique identifier of the type of error. Enables quick recognition and categorization of the issue.

Enum values:

  • august_lock_temporarily_offline

chevron-rightigloo_algopin_must_be_used_within_24_hourshashtag

Algopins must be used within 24 hours.

created_at Datetime

Date and time at which Seam created the warning.


message String

Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.


warning_code Enum

Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.

Enum values:

  • igloo_algopin_must_be_used_within_24_hours

chevron-rightmanagement_transferredhashtag

Management was transferred to another workspace.

created_at Datetime

Date and time at which Seam created the warning.


message String

Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.


warning_code Enum

Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.

Enum values:

  • management_transferred

chevron-rightkwikset_unable_to_confirm_codehashtag

Unable to confirm that the access code is set on Kwikset device.

created_at Datetime

Date and time at which Seam created the warning.


message String

Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.


warning_code Enum

Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.

Enum values:

  • kwikset_unable_to_confirm_code

chevron-rightultraloq_access_code_disabledhashtag

Access code is disabled on Ultraloq device. Re-enable through the Ultraloq mobile app.

created_at Datetime

Date and time at which Seam created the warning.


message String

Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.


warning_code Enum

Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.

Enum values:

  • ultraloq_access_code_disabled


workspace_id UUID

Unique identifier for the Seam workspace associated with the access code.


Errors

wyze_potential_duplicate_code

Potential duplicate access code detected.


wyze_duplicate_code_name

Duplicate access code name detected.


smartthings_no_free_slots_available

No free slots available on the device.


smartthings_failed_to_set_after_multiple_retries

Failed to set code after multiple retries.


smartthings_failed_to_set_access_code

Failed to set code on SmartThings device.


salto_ks_user_not_subscribed

Salto site user is not subscribed.


no_space_for_access_code_on_device

No space for access code on device.


kwikset_unable_to_confirm_deletion

Unable to confirm the deletion of the access code on Kwikset device.


kwikset_unable_to_confirm_code

Unable to confirm that the access code is set on Kwikset device.


kwikset_insufficient_permissions

Admin role required—insufficient permissions to manage PINs on this Kwikset device. Please have a Home Admin update your role in the Kwikset app, or ask them to set the PIN.


keynest_unsupported_third_party_locker

KeyNest locker is not supported.


hubitat_no_free_positions_available

No free positions available on the device.


hubitat_device_programming_delay

Access code has not yet been fully moved to the device.


failed_to_set_on_device

Failed to set code on device.


failed_to_remove_from_device

Failed to remove code from device.


duplicate_code_on_device

Duplicate access code detected on device.


duplicate_code_attempt_prevented

An attempt to modify this access code was prevented.


dormakaba_oracode_invalid_time_range

No Dormakaba Oracode user levels configured for the requested time range.


code_modified_external_to_seam

Code was modified or removed externally after Seam successfully set it on the device.


august_lock_temporarily_offline

August lock is temporarily offline.


august_lock_missing_keypad

August lock is missing a keypad.


august_lock_invalid_code_length

Invalid code length for August lock.


august_device_programming_delay

Access code has not yet been fully moved to the device.


account_disconnected

Indicates that the account is disconnected.


august_lock_missing_bridge

Indicates that the lock is not connected to a bridge.


august_lock_not_authorized

Indicates that the user is not authorized to use the August lock.


bridge_disconnected

Indicates that the Seam API cannot communicate with Seam Bridge, for example, if the Seam Bridge executable has stopped or if the computer running the Seam Bridge executable is offline. See also Troubleshooting Your Access Control System.


device_disconnected

Indicates that the device is disconnected.


device_offline

Indicates that the device is offline.


device_removed

Indicates that the device has been removed.


empty_backup_access_code_pool

Indicates that the backup access code poolarrow-up-right is empty.


hub_disconnected

Indicates that the hub is disconnected.


lockly_missing_wifi_bridge

Indicates that the Lockly lock is not connected to a Wi-Fi bridge.


missing_device_credentials

Indicates that device credentials are missing.


salto_ks_subscription_limit_exceeded

Indicates that the Salto site user limit has been reached.


subscription_required

Indicates that a subscription is required to connect.


ttlock_lock_not_paired_to_gateway

Indicates that the lock is not paired with a gateway.


Warnings

august_device_programming_delay

Access code has not yet been fully moved to the device.


august_lock_temporarily_offline

August lock is temporarily offline.


code_modified_external_to_seam

Code was modified or removed externally after Seam successfully set it on the device.


delay_in_removing_from_device

Delay in removing code from device.


delay_in_setting_on_device

Delay in setting code on device.


igloo_algopin_must_be_used_within_24_hours

Algopins must be used within 24 hours.


kwikset_unable_to_confirm_code

Unable to confirm that the access code is set on Kwikset device.


management_transferred

Management was transferred to another workspace.


schlage_creation_outage

Received an error when attempting to create this code.


schlage_detected_duplicate

Duplicate access code detected.


smartthings_failed_to_set_access_code

Failed to set code on SmartThings device.


third_party_integration_detected

Third-party integration detected that may cause access codes to fail.


ultraloq_access_code_disabled

Access code is disabled on Ultraloq device. Re-enable through the Ultraloq mobile app.


Events

access_code.created

An access codearrow-up-right was created.

chevron-rightPropertieshashtag

access_code_id UUID

ID of the affected access code.

connected_account_custom_metadata Record

Custom metadata of the connected account, present when connected_account_id is provided.

connected_account_id UUID

ID of the connected account associated with the affected access code.

created_at Datetime

Date and time at which the event was created.

device_custom_metadata Record

Custom metadata of the device, present when device_id is provided.

device_id UUID

ID of the device associated with the affected access code.

event_id UUID

ID of the event.

event_type Enum

Value: access_code.created

occurred_at Datetime

Date and time at which the event occurred.

workspace_id UUID

ID of the workspace associated with the event.


access_code.changed

An access codearrow-up-right was changed.

chevron-rightPropertieshashtag

access_code_id UUID

ID of the affected access code.

connected_account_custom_metadata Record

Custom metadata of the connected account, present when connected_account_id is provided.

connected_account_id UUID

ID of the connected account associated with the affected access code.

created_at Datetime

Date and time at which the event was created.

device_custom_metadata Record

Custom metadata of the device, present when device_id is provided.

device_id UUID

ID of the device associated with the affected access code.

event_id UUID

ID of the event.

event_type Enum

Value: access_code.changed

occurred_at Datetime

Date and time at which the event occurred.

workspace_id UUID

ID of the workspace associated with the event.


access_code.scheduled_on_device

An access codearrow-up-right was scheduled nativelyarrow-up-right on a device.

chevron-rightPropertieshashtag

access_code_id UUID

ID of the affected access code.

code String

Code for the affected access code.

connected_account_custom_metadata Record

Custom metadata of the connected account, present when connected_account_id is provided.

connected_account_id UUID

ID of the connected account associated with the affected access code.

created_at Datetime

Date and time at which the event was created.

device_custom_metadata Record

Custom metadata of the device, present when device_id is provided.

device_id UUID

ID of the device associated with the affected access code.

event_id UUID

ID of the event.

event_type Enum

Value: access_code.scheduled_on_device

occurred_at Datetime

Date and time at which the event occurred.

workspace_id UUID

ID of the workspace associated with the event.


access_code.set_on_device

An access codearrow-up-right was set on a device.

chevron-rightPropertieshashtag

access_code_id UUID

ID of the affected access code.

code String

Code for the affected access code.

connected_account_custom_metadata Record

Custom metadata of the connected account, present when connected_account_id is provided.

connected_account_id UUID

ID of the connected account associated with the affected access code.

created_at Datetime

Date and time at which the event was created.

device_custom_metadata Record

Custom metadata of the device, present when device_id is provided.

device_id UUID

ID of the device associated with the affected access code.

event_id UUID

ID of the event.

event_type Enum

Value: access_code.set_on_device

occurred_at Datetime

Date and time at which the event occurred.

workspace_id UUID

ID of the workspace associated with the event.


access_code.removed_from_device

An access codearrow-up-right was removed from a device.

chevron-rightPropertieshashtag

access_code_id UUID

ID of the affected access code.

connected_account_custom_metadata Record

Custom metadata of the connected account, present when connected_account_id is provided.

connected_account_id UUID

ID of the connected account associated with the affected access code.

created_at Datetime

Date and time at which the event was created.

device_custom_metadata Record

Custom metadata of the device, present when device_id is provided.

device_id UUID

ID of the device associated with the affected access code.

event_id UUID

ID of the event.

event_type Enum

Value: access_code.removed_from_device

occurred_at Datetime

Date and time at which the event occurred.

workspace_id UUID

ID of the workspace associated with the event.


access_code.delay_in_setting_on_device

There was an unusually long delay in setting an access codearrow-up-right on a device.

chevron-rightPropertieshashtag

access_code_id UUID

ID of the affected access code.

connected_account_custom_metadata Record

Custom metadata of the connected account, present when connected_account_id is provided.

connected_account_id UUID

ID of the connected account associated with the affected access code.

created_at Datetime

Date and time at which the event was created.

device_custom_metadata Record

Custom metadata of the device, present when device_id is provided.

device_id UUID

ID of the device associated with the affected access code.

event_id UUID

ID of the event.

event_type Enum

Value: access_code.delay_in_setting_on_device

occurred_at Datetime

Date and time at which the event occurred.

workspace_id UUID

ID of the workspace associated with the event.


access_code.failed_to_set_on_device

An access codearrow-up-right failed to be set on a device.

chevron-rightPropertieshashtag

access_code_id UUID

ID of the affected access code.

connected_account_custom_metadata Record

Custom metadata of the connected account, present when connected_account_id is provided.

connected_account_id UUID

ID of the connected account associated with the affected access code.

created_at Datetime

Date and time at which the event was created.

device_custom_metadata Record

Custom metadata of the device, present when device_id is provided.

device_id UUID

ID of the device associated with the affected access code.

event_id UUID

ID of the event.

event_type Enum

Value: access_code.failed_to_set_on_device

occurred_at Datetime

Date and time at which the event occurred.

workspace_id UUID

ID of the workspace associated with the event.


access_code.deleted

An access codearrow-up-right was deleted.

chevron-rightPropertieshashtag

access_code_id UUID

ID of the affected access code.

code String

Code for the affected access code.

connected_account_custom_metadata Record

Custom metadata of the connected account, present when connected_account_id is provided.

connected_account_id UUID

ID of the connected account associated with the affected access code.

created_at Datetime

Date and time at which the event was created.

device_custom_metadata Record

Custom metadata of the device, present when device_id is provided.

device_id UUID

ID of the device associated with the affected access code.

event_id UUID

ID of the event.

event_type Enum

Value: access_code.deleted

occurred_at Datetime

Date and time at which the event occurred.

workspace_id UUID

ID of the workspace associated with the event.


access_code.delay_in_removing_from_device

There was an unusually long delay in removing an access codearrow-up-right from a device.

chevron-rightPropertieshashtag

access_code_id UUID

ID of the affected access code.

connected_account_custom_metadata Record

Custom metadata of the connected account, present when connected_account_id is provided.

connected_account_id UUID

ID of the connected account associated with the affected access code.

created_at Datetime

Date and time at which the event was created.

device_custom_metadata Record

Custom metadata of the device, present when device_id is provided.

device_id UUID

ID of the device associated with the affected access code.

event_id UUID

ID of the event.

event_type Enum

Value: access_code.delay_in_removing_from_device

occurred_at Datetime

Date and time at which the event occurred.

workspace_id UUID

ID of the workspace associated with the event.


access_code.failed_to_remove_from_device

An access codearrow-up-right failed to be removed from a device.

chevron-rightPropertieshashtag

access_code_id UUID

ID of the affected access code.

connected_account_custom_metadata Record

Custom metadata of the connected account, present when connected_account_id is provided.

connected_account_id UUID

ID of the connected account associated with the affected access code.

created_at Datetime

Date and time at which the event was created.

device_custom_metadata Record

Custom metadata of the device, present when device_id is provided.

device_id UUID

ID of the device associated with the affected access code.

event_id UUID

ID of the event.

event_type Enum

Value: access_code.failed_to_remove_from_device

occurred_at Datetime

Date and time at which the event occurred.

workspace_id UUID

ID of the workspace associated with the event.


access_code.modified_external_to_seam

An access codearrow-up-right was modified outside of Seam.

chevron-rightPropertieshashtag

access_code_id UUID

ID of the affected access code.

connected_account_custom_metadata Record

Custom metadata of the connected account, present when connected_account_id is provided.

connected_account_id UUID

ID of the connected account associated with the affected access code.

created_at Datetime

Date and time at which the event was created.

device_custom_metadata Record

Custom metadata of the device, present when device_id is provided.

device_id UUID

ID of the device associated with the affected access code.

event_id UUID

ID of the event.

event_type Enum

Value: access_code.modified_external_to_seam

occurred_at Datetime

Date and time at which the event occurred.

workspace_id UUID

ID of the workspace associated with the event.


access_code.deleted_external_to_seam

An access codearrow-up-right was deleted outside of Seam.

chevron-rightPropertieshashtag

access_code_id UUID

ID of the affected access code.

connected_account_custom_metadata Record

Custom metadata of the connected account, present when connected_account_id is provided.

connected_account_id UUID

ID of the connected account associated with the affected access code.

created_at Datetime

Date and time at which the event was created.

device_custom_metadata Record

Custom metadata of the device, present when device_id is provided.

device_id UUID

ID of the device associated with the affected access code.

event_id UUID

ID of the event.

event_type Enum

Value: access_code.deleted_external_to_seam

occurred_at Datetime

Date and time at which the event occurred.

workspace_id UUID

ID of the workspace associated with the event.


access_code.backup_access_code_pulled

A backup access codearrow-up-right was pulled from the backup access code pool and set on a device.

chevron-rightPropertieshashtag

access_code_id UUID

ID of the affected access code.

backup_access_code_id String

connected_account_custom_metadata Record

Custom metadata of the connected account, present when connected_account_id is provided.

connected_account_id UUID

ID of the connected account associated with the affected access code.

created_at Datetime

Date and time at which the event was created.

device_custom_metadata Record

Custom metadata of the device, present when device_id is provided.

device_id UUID

ID of the device associated with the affected access code.

event_id UUID

ID of the event.

event_type Enum

Value: access_code.backup_access_code_pulled

occurred_at Datetime

Date and time at which the event occurred.

workspace_id UUID

ID of the workspace associated with the event.


Endpoints

/access_codes/create

Creates a new access codearrow-up-right.

/access_codes/create_multiple

Creates new access codesarrow-up-right that share a common code across multiple devices.

/access_codes/delete

Deletes an access codearrow-up-right.

/access_codes/generate_code

Generates a code for an access codearrow-up-right, given a device ID.

/access_codes/get

Returns a specified access codearrow-up-right.

/access_codes/list

Returns a list of all access codesarrow-up-right.

/access_codes/pull_backup_access_code

Retrieves a backup access code for an access codearrow-up-right. See also Managing Backup Access Codesarrow-up-right.

/access_codes/report_device_constraints

Enables you to report access code-related constraints for a device. Currently, supports reporting supported code length constraints for SmartThings devices.

/access_codes/update

Updates a specified active or upcoming access codearrow-up-right.

/access_codes/update_multiple

Updates access codesarrow-up-right that share a common code across multiple devices.

Last updated

Was this helpful?