Release Notes

Welcome to the Schlage Home - API developer portal. Here we will provide updates for new features released to the Schlage Home API.

    May 8th, 2024
    Schlage Home API v2 (Beta) Event Schema Update: Lock/unlock accessor
    • When a user subscribes to the event notifications, they can now see which accessor has locked or unlocked the device. These accessors include: "AccessCode", "VirtualKey", "AutoRelock", "Thumbturn", and "1TouchLocking". For more information, check out the Schlage Home API v2 Event Schema

    April 29th, 2024
    Schlage Home API v2 (Beta) Feature: Webhook Signatures
    • Using RSA keypairs, integration partners can now verify the authenticity of requests. For more information, check out the repo
    April 11th, 2024
    Bugfix: Access Code Deletion Sync
    • When access codes would get out of sync, users would not be able to delete access code either from the device or cloud. By using the Access Code ID, you can now successfully Delete access codes no longer being used. For reference - Schlage Home - API

    March 1st, 2024
    New Webhook Notification for when users unlink via "Sign Out Everywhere
    • For improved visibility, integrations will be able to receive a webhook notification whenever their users toggle the "Sign Out Everywhere" option within their Reset password screen.

    Jan 31st, 2024
    ASCII Character Support and 24 character limit extension for Access Code Names
    • Access Codes originally had a limit of 12 characters, you can now add up to 24 ASCII characters as listed in this ASCII table.
    Jan 29th, 2024
    Exposing Timezone Offsets in the Access Code webhooks
    • The AccessCodeManagement webhook now exposes the timezone offset field. For reference:

                {
                  "id": "string",
                  "subject": "string",
                  "data": {
                    "identifier": null,
                    "deviceId": "string",
                    "deviceName": "string",
                    "clientName": null,
                    "eventTypeId": 0,
                    "eventType": "AccessCodeCreate",
                    "accessCode": {
                      "id": "string",
                      "name": "string",
                      "accessCode": "integer",
                      "scheduleType": "Always",
                      "activeSchedules": []
                    },
                    "timezoneOffset": "-06:00",
                    "time": "20240212T20:00"
                  },
                  "eventType": "AccessCodeManagement",
                  "dataVersion": "1.0",
                  "metadataVersion": "1",
                  "eventTime": "string",
                  "topic": "string"
                }