https://api.sciener.com/v3/lock/unlock
Unlock via gateway or WiFi lock, if get -4043(The function is not supported for this lock) error message, please switch the "remote unlock" on in Sciener APP's lock setting page.
If you are integrating with TTHotel and you have power savers, this API can be used to manage power saver as well. Simply use power saver ID as the lockId. Calling this API will turn on the power.
POST, ContentType:application/x-www-form-urlencoded
xxxxxxxxxx51curl --location -g --request POST 'https://api.sciener.com/v3/lock/unlock' \2--data-urlencode 'clientId=4773aa036f7f49c68d876bb4be85c80c' \3--data-urlencode 'accessToken=dfd5489d0cee31f0bdfaf59d0d42d71f' \4--data-urlencode 'lockId=163377' \5--data-urlencode 'date=1625025703000'| Name | Type | Required | Description |
|---|---|---|---|
| clientId | String | Y | client_id from Create application |
| accessToken | String | Y | Access token,refer to: Get access token |
| lockId | Int | Y | Lock ID, generated by Lock init |
| date | Long | Y | Current time (timestamp in millisecond) |
| Parameter | Type | Description |
|---|---|---|
| errcode | Int | Error code |
| errmsg | String | Error message |
xxxxxxxxxx41{2"errcode": 0,3"errmsg": "none error message"4}