Sifely Open API
  1. Passcode 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. Passcode Manager

Get passcode

test-envirement
test-envirement
POST
/v3/keyboardPwd/listKeyboardPwd
Passcode Manager
Get all the get passcodes for a lock

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 POST 'https://dev-alexa.sifely.com/v3/keyboardPwd/listKeyboardPwd?lockId'

Responses

🟢200OK
*/*
OK
Body
array of:
endDate
integer <int64>
optional
keyboardPwd
string 
optional
keyboardPwdId
integer <int32>
optional
keyboardPwdName
string 
optional
keyboardPwdType
string 
optional
lockId
integer <int32>
optional
sendDate
integer <int64>
optional
senderUsername
string 
optional
startDate
integer <int64>
optional
Example
[
  {
    "endDate": 0,
    "keyboardPwd": "string",
    "keyboardPwdId": 0,
    "keyboardPwdName": "string",
    "keyboardPwdType": "string",
    "lockId": 0,
    "sendDate": 0,
    "senderUsername": "string",
    "startDate": 0
  }
]
🟢201Created
🟠401Unauthorized
🟠403Forbidden
🟠404Record Not Found
Modified at 2025-01-23 03:56:39
Previous
Delete passcode
Next
Unlock a lock via gateway
Built with