Get Lock Belonging To Tile (v3)
This endpoint identifies which lock belongs to the specific tile.
HTTP Request
GET https://api.doordeck.com/tile/TILE_ID/
Request Headers
| Header | Required | Description |
|---|---|---|
| Accept | true | application/vnd.doordeck.api-v3+json |
Example
- Request
- Response
CURL
curl 'https://api.doordeck.com/tile/00000000-0000-0000-0000-000000000000/' \
-H "Accept: application/vnd.doordeck.api-v3+json" \
-H "Authorization: Bearer TOKEN"
Remember
- Replace
TOKENwith your access token. - Replace
00000000-0000-0000-0000-000000000000with the tile ID.
JSON
{
"siteId": "site-uuid",
"tileId": "tile-uuid",
"deviceIds": [
"device-uuid-1",
"device-uuid-2"
]
}