Creating Door Lock CRUD Endpoints
Overview
Door Lock CRUD endpoints Seam to list door locks owned by a Door Lock Owner and trigger the door lock to open a door.
Listing Door Locks
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.
List all locks owned by Lock Owner
GET
https://devicecloud.example.com/locks
Headers
Name | Type | Description |
---|---|---|
Authorization* | String | Bearer <access_token> |
Getting a Lock
Seam may request door lock information to display information about the lock to the connecting user.
Get information about a single lock
GET
https://devicecloud.example.com/locks/<LOCK_ID>
Query Parameters
Name | Type | Description |
---|---|---|
LOCK_ID* | String | Identifier for Lock |
Headers
Name | Type | Description |
---|---|---|
Authorization* | String | Bearer <access_token> |
Unlocking a Door 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)
Temporary unlock the door for a delivery person
POST
https://devicecloud.example.com/locks/<LOCK_ID>/unlock
Headers
Name | Type | Description |
---|---|---|
Authorization* | String | Bearer <access_token> |
Content-Type* | String | application/json |
Other Door Lock Features
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 updated