https://api.sciener.com/v3/gateway/uploadDetail
Upload the gateway's firmware version info and network name to the cloud server after the gateway is successfully initialized.
POST, ContentType:application/x-www-form-urlencoded
xxxxxxxxxxcurl --location -g --request POST 'https://api.sciener.com/v3/gateway/uploadDetail' \--data-urlencode 'clientId=4773aa036f7f49c68d876bb4be85c80c' \--data-urlencode 'accessToken=dfd5489d0cee31f0bdfaf59d0d42d71f' \--data-urlencode 'gatewayId=5678' \--data-urlencode 'modelNum=SN227' \--data-urlencode 'hardwareRevision=1.1.2' \--data-urlencode 'firmwareRevision=1.2.21.0524' \--data-urlencode 'networkName=1-101-WIFI' \--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 |
| gatewayId | Int | Y | Gateway ID, returned by: Gateway init |
| modelNum | String | Y | Product model |
| hardwareRevision | String | Y | Hardware version |
| firmwareRevision | String | Y | Firmware version |
| networkName | String | Y | The network name gateway connected to |
| date | Long | Y | Current time (timestamp in millisecond) |
| Parameter | Type | Description |
|---|---|---|
| errcode | Int | Error code |
| errmsg | String | Error message |
xxxxxxxxxx{"errcode": 0,"errmsg": "none error message"}