Links

Creating Access Code CRUD Endpoints

Overview

Access Codes CRUD endpoints Seam to list access codes created on a door lock.

Listing Access Codes

After a Door Lock Owner logs in and Seam lists all the access codes that have been programmed and shows them what's been programmed on the door lock. Your Door Locks system should return a JSON list of the access codes on a door lock.
get
https://devicecloud.example.com
/access_codes?lock_id=<LOCK_ID>
List all access codes for a lock

Getting an Access Code

Seam may request access code information to display information about an access code to the connecting user.
get
https://devicecloud.example.com
/access_codes/<ACCESS_CODE_ID>
Get information about a single access code

Removing an Access Code

Seam needs to disable access codes. We need an endpoint to be able to remove an access code.
delete
https://devicecloud.example.com
/access_codes/<ACCESS_CODE_ID>
Remove an access code
© Seam Labs, Inc. All rights reserved.