https://api.sciener.com/v3/waterMeter/gatewayList
If the water meter administrator is also the gateway administrator, this interface will return the gateway located near the water meter.
POST, ContentType:application/x-www-form-urlencoded
xxxxxxxxxx51curl --location -g --request POST 'https://api.sciener.com/v3/waterMeter/gatewayList'\2--data-urlencode 'clientId=4773aa036f7f49c68d876bb4be85c80c' \3--data-urlencode 'accessToken=dfd5489d0cee31f0bdfaf59d0d42d71f' \4--data-urlencode 'waterMeterId=3001' \5--data-urlencode 'date=1625025703000'| Name | Type | Required | Description |
|---|---|---|---|
| clientId | String | Y | Assigned client_id from created application |
| accessToken | String | Y | Access token, obtain by calling get access token API |
| date | Long | Y | Current time (timestamp, in milliseconds) |
| waterMeterId | String | Y | Water Meter ID |
| Name | Type | Description |
|---|---|---|
| list | JSONObject | List |
Objects in the list
| Name | Type | Description |
|---|---|---|
| rssi | Int | Signal strength between the gateway and the lock, according to the following standards: greater than -75 is strong, greater than -85 is medium, less than -75 is weak. |
| gatewayName | String | Gateway Name |
| gatewayVersion | int | Gateway version |
xxxxxxxxxx91 {2 "list": [3 {4 "rssi": -65,5 "gatewayName": "a gateway",6 "gatewayVersion": 27 }8 ]9}