/bff/iot-lock/password-list
Returns a paginated list of keyboard passcodes for a specific lock. Each passcode includes its validity period, active/deleted status, and linked calendar events (if the passcode was generated for a booking).
IoTgetBffIot-lockPassword-list
Parameters
1 query
Query · 1
idstringRequiredTTLock lock ID (from TTLock API).
Request
GET /bff/iot-lock/password-list
curl -X GET "https://api.bizkithub.com/bff/iot-lock/password-list?id=12345" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY"Response
Paginated list of keyboard passcodes.
{
"items": [
{
"id": 0,
"active": false,
"deleted": false,
"password": "example_password",
"eventList": [
{
"title": "example_title",
"calendarCode": "example_calendarCode",
"eventCode": "example_eventCode"
}
]
}
],
"itemCount": 0
}All response codes
1 status code documented
Need an API key?
All BizKitHub API endpoints require authentication via API key.