Creating Door Lock CRUD Endpoints
Door Lock CRUD endpoints Seam to list door locks owned by a Door Lock Owner and trigger the door lock to open a door.
After a Door Lock Owner logs in, Seam lists all the door locks they own and allows them to enable delivery on them. Your API should return a JSON list of door locks.
get
https://devicecloud.example.com
/locks
List all locks owned by Lock Owner
Seam may request door lock information to display information about the lock to the connecting user.
get
https://devicecloud.example.com
/locks/<LOCK_ID>
Get information about a single lock
Seam unlocks doors to let in delivery people. If a door is disconnected or you're unable to unlock the door, return HTTP status code
500
with some details (see example below)post
https://devicecloud.example.com
/locks/<LOCK_ID>/unlock
Temporary unlock the door for a delivery person
You may want to include additional features for your lock, such as configuring settings that are useful for delivery or apartment management. If you add additional endpoints, you should keep a similar URL format
/locks/<LOCK_ID>/<SOME_PROPERTY_OR_FUNCTION>
Last modified 7mo ago