Bell button pressed
Webhook triggers when bell button is pressed on the keypad connected to the lock. This webhook is sent only to the users with at least Admin permissions on the lock.
Body
Name |
Type |
Description |
---|---|---|
data |
detailed information about the event |
|
event |
string |
event name: “bell-button-pressed” |
timestamp |
datetime |
exact time when the webhook was sent to the receiver |
userIdentity |
string |
receiver of the webhook (user identity) |
Data
Name |
Type |
Description |
---|---|---|
deviceId |
number |
id of the lock device |
eventTime |
datetime |
exact time when bell button was pressed |
Examples
Sample webhook after bell button was pressed
{
"event": "bell-button-pressed",
"timestamp": "2024-12-13T07:36:36.9049417+00:00",
"userIdentity": "<user-identity>",
"data": {
"deviceId": 12345,
"eventTime": "2024-12-13T07:36:36.6926999"
}
}