https://api.sciener.com/v3/wifiLock/configCatOneInfo
After successfully configuring the network for the Cat1 lock, the network information is uploaded to the cloud for easy maintenance. If the lock's feature value does not support Cat1, the interface will return a failure error code.
POST, ContentType:application/x-www-form-urlencoded
xxxxxxxxxx101curl --location -g --request POST 'https://api.sciener.com/v3/wifiLock/configCatOneInfo' \2--data-urlencode 'clientId=4773aa036f7f49c68d876bb4be85c80c' \3--data-urlencode 'accessToken=dfd5489d0cee31f0bdfaf59d0d42d71f' \4--data-urlencode 'lockId=163377' \5--data-urlencode 'catOneNodeId=860717087140669' \6--data-urlencode 'catOneCardNumber=898604081225D0033738' \7--data-urlencode 'catOneOperator=CHINA MOBILE' \8--data-urlencode 'catOneImsi=460042888134165' \9--data-urlencode 'catOneRssi=27' \10--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 |
| catOneNodeId | String | Y | Module number |
| catOneCardNumber | String | Y | Card number |
| catOneOperator | String | Y | Carriers: CHN-CT - China Telecom, CHINAMOBILE - China Mobile, CHINA MOBILE - China Mobile, CHN-UNICOM - China Unicom |
| catOneImsi | String | Y | Phone number |
| catOneRssi | Int | Y | Signal value |
| catOneApn | String | N | APN |
| date | Long | Y | Current time (timestamp in millisecond) |
| Parameter | Type | Description |
|---|---|---|
| errcode | Int | Error code |
| errmsg | String | Error message |
| description | String | Error description |
xxxxxxxxxx51{2"errcode": 0,3"errmsg": "none error message",4"description":"表示成功或是"5}