Sifely Open API
  1. Lock Manager
Sifely Open API
  • Overview
  • Quick start
  • OAuth Manager
    • Login
      POST
    • Get authorization_code
      POST
    • Get token refresh token
      POST
  • Key Manager
    • Get Ekeys by account
      POST
    • Send ekey
      POST
    • Delete ekey
      POST
  • Passcode Manager
    • Create passcode
      POST
    • Change passcode
      POST
    • Delete passcode
      POST
    • Get passcode
      POST
  • Lock Manager
    • Unlock a lock via gateway
      POST
    • Lock the lock via gateway
      POST
    • Get lock details
      GET
    • Get keys of a lock
      GET
    • Passcode list
      GET
    • Get Lock open state
      GET
  • Group Manager
    • Group list
      GET
  • Card Manager
    • Ic card list
      GET
  • FingerPrint Manager
    • FingerPrint list
      GET
  • Records Manager
    • Get unlock records by lockId
      GET
  1. Lock Manager

Get lock details

test-envirement
test-envirement
GET
/v3/lock/detail
Lock Manager

Request

Authorization
Add the parameter
Authorization
to Headers
,whose value is to concatenate the Token after the Bearer.
Example:
Authorization: Bearer ********************
Query Params
lockId
integer <int64>
required
lockId

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://dev-alexa.sifely.com/v3/lock/detail?lockId'

Responses

🟢200OK
*/*
OK
Body
adminPwd
string 
optional
Administrator password
Example:
ODUsODcsODEsODQsODQsODAsODMsODIsODAsODQsMjc=
aesKeyStr
string 
optional
AES key string
Example:
cf,47,9f,cb,97,b5,e3 ,52,f9,cf,9c,98,93,f9,95,be
autoLockTime
integer <int32>
optional
Auto lock time
Example:
5
deletePwd
string 
optional
Delete password
displayPasscode
integer <int32>
optional
Whether to display the password
Example:
0
electricQuantity
integer <int32>
optional
Battery
Example:
25
featureValue
string 
optional
Feature value
Example:
C2F44654CF5F7
firmwareRevision
string 
optional
Firmware version
Example:
6.4.20.221216
hardwareRevision
string 
optional
Hardware version
Example:
2.2.1
hasGateway
integer <int32>
optional
Whether has a gateway
Example:
0
isFrozen
integer <int32>
optional
Whether to freeze
Example:
2
keyboardPwdVersion
integer <int32>
optional
Keyboard password version
Example:
4
lockAlias
string 
optional
The alias of the lock
Example:
Sifely- S-Z_bd2270
lockFlagPos
integer <int32>
optional
Lock Flag
Example:
0
lockId
integer <int64>
optional
Unique identifier of the lock
Example:
14419484
lockKey
string 
optional
Lock Key
Example:
OTcsMTAwLDEwMSw5OCwxMDIsOTgsMTAwLDk4LDEwMCw5Niw0Nw==
lockMac
string 
optional
MAC address of the lock
Example:
2B:93:6D:70:22:BD
lockName
string 
optional
The name of the lock
Example:
Sifely-S-Z_bd2270
lockUpdateDate
string <date-time>
optional
Lock Update Date
lockVersion
object (LockVersion) 
optional
Lock version information
groupId
integer <int32>
optional
orgId
integer <int32>
optional
protocolType
integer <int32>
optional
protocolVersion
integer <int32>
optional
scene
integer <int32>
optional
noKeyPwd
string 
optional
Keyless Password
Example:
4757335
openDirection
integer <int32>
optional
Open direction
Example:
2
passageMode
integer <int32>
optional
Passage Mode
Example:
2
passageModeAutoUnlock
integer <int32>
optional
Passage mode automatically unlocks
Example:
2
privacyLock
integer <int32>
optional
Privacy lock function
Example:
1
resetButton
integer <int32>
optional
Reset button
Example:
1
sensitivity
integer <int32>
optional
sensitivity
Example:
-1
soundVolume
integer <int32>
optional
Sound volume
Example:
5
specialValue
integer <int64>
optional
Special value
Example:
1699542519
tamperAlert
integer <int32>
optional
Tamper Alert
Example:
2
timezoneRawOffset
integer <int64>
optional
Time zone offset
Example:
28800000
wirelessKeypadFeatureValue
integer <int32>
optional
Wireless keyboard function value
Example
{
  "adminPwd": "ODUsODcsODEsODQsODQsODAsODMsODIsODAsODQsMjc=",
  "aesKeyStr": "cf,47,9f,cb,97,b5,e3 ,52,f9,cf,9c,98,93,f9,95,be",
  "autoLockTime": 5,
  "deletePwd": "string",
  "displayPasscode": 0,
  "electricQuantity": 25,
  "featureValue": "C2F44654CF5F7",
  "firmwareRevision": "6.4.20.221216",
  "hardwareRevision": "2.2.1",
  "hasGateway": 0,
  "isFrozen": 2,
  "keyboardPwdVersion": 4,
  "lockAlias": "Sifely- S-Z_bd2270",
  "lockFlagPos": 0,
  "lockId": 14419484,
  "lockKey": "OTcsMTAwLDEwMSw5OCwxMDIsOTgsMTAwLDk4LDEwMCw5Niw0Nw==",
  "lockMac": "2B:93:6D:70:22:BD",
  "lockName": "Sifely-S-Z_bd2270",
  "lockUpdateDate": "2019-08-24T14:15:22Z",
  "lockVersion": {
    "groupId": 0,
    "orgId": 0,
    "protocolType": 0,
    "protocolVersion": 0,
    "scene": 0
  },
  "noKeyPwd": "4757335",
  "openDirection": 2,
  "passageMode": 2,
  "passageModeAutoUnlock": 2,
  "privacyLock": 1,
  "resetButton": 1,
  "sensitivity": -1,
  "soundVolume": 5,
  "specialValue": 1699542519,
  "tamperAlert": 2,
  "timezoneRawOffset": 28800000,
  "wirelessKeypadFeatureValue": 0
}
🟠401Unauthorized
🟠403Forbidden
🟠404Record Not Found
Modified at 2025-01-23 03:56:39
Previous
Lock the lock via gateway
Next
Get keys of a lock
Built with