Creating Access Code CRUD Endpoints
Access Codes CRUD endpoints Seam to list access codes created on a door lock.
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
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
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
Last modified 1mo ago