Update QR code
https://api.sciener.com/v3/qrCode/update
Update the name, valid period, cyclic configuration of a QR code.
Note: Qr code type can't be changed.
1. Description
Name |
Type |
Required |
Description |
clientId |
String |
Y |
The app_id which is assigned by system when you create an application |
accessToken |
String |
Y |
Access token |
qrCodeId |
Int |
Y |
QR code id |
name |
String |
N |
Qr code name |
startDate |
Long |
N |
The time when it becomes valid, timestamp in milliseconds |
endDate |
Long |
N |
The time when it is expired, timestamp in milliseconds |
cyclicConfig |
JSONArray |
N |
The cyclic time configuration, the startTime and endTime off each week day must be the same at the moment |
date |
Long |
Y |
Current time (timestamp in millisecond) |
cyclicConfig
Parameter |
Type |
Description |
startTime |
Int |
Start time of cyclic, in minutes, for example 480 for 8:00 |
endTime |
Int |
End time of cyclic, in minutes, for example 1080 for 18:00 |
weekDay |
Int |
Week day, 1-7, 1 for monday and 7 for sunday. |
2.Response
Parameter |
Type |
Description |
errcode |
Int |
Error code |
errmsg |
String |
Error message |
3.Example of response
{
"errcode": 0,
"errmsg": "none error message",
"description": "none error message or means yes"
}